:root {
  color-scheme: light;
  --bg: #f6f8fc;
  --surface: rgba(255,255,255,.84);
  --surface-strong: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(148, 163, 184, .25);
  --brand: #2563eb;
  --brand-2: #7c3aed;
  --accent: #06b6d4;
  --success: #059669;
  --warning: #f97316;
  --danger: #dc2626;
  --shadow: 0 24px 70px rgba(15, 23, 42, .10);
  --soft-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070b16;
  --surface: rgba(15, 23, 42, .76);
  --surface-strong: #111827;
  --ink: #e5eefc;
  --muted: #9ca3af;
  --line: rgba(148, 163, 184, .18);
  --brand: #60a5fa;
  --brand-2: #a78bfa;
  --accent: #22d3ee;
  --shadow: 0 28px 80px rgba(0, 0, 0, .32);
  --soft-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}
body.accent-purple { --brand: #7c3aed; --brand-2: #db2777; --accent: #06b6d4; }
body.accent-blue { --brand: #2563eb; --brand-2: #7c3aed; --accent: #06b6d4; }
html[data-theme="dark"] body.accent-purple { --brand: #a78bfa; --brand-2: #f472b6; --accent: #22d3ee; }
html[data-theme="dark"] body.accent-blue { --brand: #60a5fa; --brand-2: #a78bfa; --accent: #22d3ee; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% -10%, color-mix(in srgb, var(--brand) 26%, transparent), transparent 32%),
    radial-gradient(circle at 86% 0%, color-mix(in srgb, var(--brand-2) 24%, transparent), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 320px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
html[data-theme="dark"] body { background: radial-gradient(circle at 10% -10%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 32%), radial-gradient(circle at 86% 0%, color-mix(in srgb, var(--brand-2) 26%, transparent), transparent 28%), var(--bg); }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
.page-shell { overflow: clip; }
.site-header, main, .site-footer, .sticky-progress { width: var(--container); margin-inline: auto; }
.site-header { padding: 22px 0 28px; }
.top-nav { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 12px; border: 1px solid var(--line); background: var(--surface); backdrop-filter: blur(18px); border-radius: 999px; box-shadow: var(--soft-shadow); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; padding-left: 6px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: white; font-weight: 900; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 28%, transparent); }
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand small { color: var(--muted); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a, .ghost-button { text-decoration: none; border: 0; background: transparent; color: var(--muted); padding: 10px 14px; border-radius: 999px; font-weight: 800; }
.nav-links a:hover, .ghost-button:hover { background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.menu-toggle { display: none; }
.hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 28px; align-items: center; padding: 72px 0 34px; }
.dashboard-hero { padding-bottom: 42px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; color: var(--brand); font-weight: 900; text-transform: uppercase; letter-spacing: .11em; font-size: 12px; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 16%, transparent); }
.hero h1 { margin: 0; max-width: 850px; font-size: clamp(42px, 8vw, 84px); letter-spacing: -.07em; line-height: .94; }
.hero h1 span { background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 2.4vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button, .choice-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 999px; text-decoration: none; font-weight: 900; }
.primary-button, .choice-button { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; box-shadow: 0 18px 38px color-mix(in srgb, var(--brand) 24%, transparent); }
.secondary-button { border: 1px solid var(--line); background: var(--surface-strong); color: var(--ink); }
.hero-card { position: relative; min-height: 430px; border-radius: var(--radius-lg); padding: 1px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 40%, transparent), color-mix(in srgb, var(--brand-2) 32%, transparent), color-mix(in srgb, var(--accent) 30%, transparent)); box-shadow: var(--shadow); isolation: isolate; }
.hero-card-inner { position: relative; height: 100%; min-height: 430px; padding: 32px; border-radius: calc(var(--radius-lg) - 1px); background: color-mix(in srgb, var(--surface-strong) 84%, transparent); backdrop-filter: blur(20px); overflow: hidden; }
.platform-card .hero-card-inner { display: flex; flex-direction: column; justify-content: center; }
.platform-glow { width: 74px; height: 74px; display: grid; place-items: center; font-size: 32px; border-radius: 24px; margin-bottom: 20px; background: color-mix(in srgb, var(--brand) 14%, transparent); border: 1px solid var(--line); }
.orb { position: absolute; width: 170px; height: 170px; border-radius: 999px; filter: blur(8px); opacity: .6; animation: floaty 7s ease-in-out infinite alternate; }
.orb-one { background: color-mix(in srgb, var(--brand) 28%, transparent); top: 28px; right: 36px; }
.orb-two { background: color-mix(in srgb, var(--accent) 22%, transparent); bottom: 42px; left: 42px; animation-delay: -2s; }
.score-ring { width: 152px; height: 152px; display: grid; place-items: center; border-radius: 999px; margin-bottom: 28px; background: conic-gradient(var(--brand) 0deg, var(--brand-2) 0deg, rgba(148,163,184,.22) 0deg); box-shadow: inset 0 0 0 12px color-mix(in srgb, var(--surface-strong) 90%, transparent); }
.score-ring span { width: 112px; height: 112px; display: grid; place-items: center; border-radius: 999px; background: var(--surface-strong); font-size: 30px; font-weight: 950; }
.hero-card h2 { margin: 0 0 8px; font-size: 28px; letter-spacing: -.04em; }
.hero-card p { margin: 0; color: var(--muted); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.mini-grid div { padding: 18px; border: 1px solid var(--line); background: color-mix(in srgb, var(--surface-strong) 76%, transparent); border-radius: 20px; }
.mini-grid strong { display: block; font-size: 27px; }
.mini-grid span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; }
.sticky-progress { position: sticky; top: 12px; z-index: 20; display: grid; grid-template-columns: 230px 1fr auto; gap: 16px; align-items: center; margin-top: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); backdrop-filter: blur(18px); box-shadow: var(--soft-shadow); }
.dashboard-page .sticky-progress { display: none; }
.progress-meta strong, .progress-meta span { display: block; line-height: 1.25; }
.progress-meta span { color: var(--muted); font-size: 13px; font-weight: 700; }
.progress-track { height: 12px; border-radius: 999px; overflow: hidden; background: rgba(148,163,184,.20); border: 1px solid var(--line); }
.progress-track span { display: block; width: 0%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent)); transition: width .35s ease; }
.progress-actions { display: flex; gap: 8px; }
.progress-actions button { border: 1px solid var(--line); color: var(--ink); background: var(--surface-strong); border-radius: 999px; padding: 9px 13px; font-weight: 800; }
main { padding: 28px 0 72px; }
.section-heading { max-width: 780px; margin: 24px 0 22px; }
.section-heading h2, .toolbar h2 { margin: 0; font-size: clamp(30px, 5vw, 48px); letter-spacing: -.055em; line-height: 1.02; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.compact-heading { margin-bottom: 16px; }
.roadmap-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 48px; }
.roadmap-choice { position: relative; padding: 28px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.roadmap-choice::after { content: ""; position: absolute; inset: auto -10% -40% 40%; height: 220px; background: radial-gradient(circle, color-mix(in srgb, var(--brand) 24%, transparent), transparent 62%); pointer-events: none; }
.roadmap-choice:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand) 44%, var(--line)); box-shadow: 0 30px 90px color-mix(in srgb, var(--brand) 14%, transparent); }
.choice-topline { display: flex; justify-content: space-between; align-items: center; gap: 14px; position: relative; z-index: 1; }
.choice-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 22px; font-size: 30px; background: color-mix(in srgb, var(--brand) 13%, transparent); border: 1px solid var(--line); }
.choice-badge { color: var(--brand); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.roadmap-choice h3 { margin: 24px 0 10px; font-size: clamp(28px, 4vw, 40px); letter-spacing: -.05em; line-height: 1; }
.roadmap-choice p { color: var(--muted); margin: 0 0 20px; position: relative; z-index: 1; }
.choice-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0 14px; position: relative; z-index: 1; }
.choice-stats span { border: 1px solid var(--line); background: color-mix(in srgb, var(--surface-strong) 70%, transparent); border-radius: 16px; padding: 12px; color: var(--muted); font-size: 13px; font-weight: 800; }
.choice-stats strong { display: block; color: var(--ink); font-size: 22px; }
.choice-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; position: relative; z-index: 1; }
.choice-tags span { padding: 7px 10px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 10%, transparent); color: var(--brand); font-weight: 900; font-size: 12px; }
.choice-button { width: 100%; position: relative; z-index: 1; }
.compare-section, .project-strip { padding: 28px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--soft-shadow); margin: 26px 0; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.compare-grid article { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: color-mix(in srgb, var(--surface-strong) 74%, transparent); }
.compare-grid span { font-size: 30px; }
.compare-grid h3 { margin: 12px 0 8px; }
.compare-grid p { margin: 0; color: var(--muted); }
.project-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.project-strip h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.05em; }
.project-strip p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 38px; }
.overview-grid article { padding: 24px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--soft-shadow); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; background: color-mix(in srgb, var(--brand) 12%, transparent); font-size: 24px; }
.overview-grid h2 { margin: 16px 0 8px; letter-spacing: -.03em; }
.overview-grid p { color: var(--muted); margin: 0 0 12px; }
.overview-grid a { color: var(--brand); font-weight: 900; text-decoration: none; }
.toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin: 34px 0 22px; }
.toolbar-controls { display: grid; gap: 12px; justify-items: end; }
.search-box { display: grid; gap: 6px; min-width: min(430px, 90vw); }
.search-box span { color: var(--muted); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.search-box input { border: 1px solid var(--line); color: var(--ink); background: var(--surface-strong); border-radius: 999px; padding: 13px 16px; outline: none; box-shadow: var(--soft-shadow); }
.search-box input:focus { border-color: color-mix(in srgb, var(--brand) 56%, var(--line)); box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 12%, transparent); }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.pill { border: 1px solid var(--line); background: var(--surface-strong); color: var(--muted); border-radius: 999px; padding: 10px 13px; font-weight: 900; }
.pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.timeline { position: relative; display: grid; gap: 24px; }
.timeline::before { content: ""; position: absolute; left: 38px; top: 18px; bottom: 18px; width: 2px; background: linear-gradient(var(--brand), var(--brand-2), transparent); opacity: .35; }
.phase-card { position: relative; margin-left: 0; padding: 28px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.phase-card.hidden { display: none; }
.phase-topline { display: grid; grid-template-columns: 76px 1fr auto; gap: 18px; align-items: start; }
.phase-number { position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 23px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; box-shadow: 0 16px 34px color-mix(in srgb, var(--brand) 24%, transparent); }
.phase-number span { font-size: 22px; font-weight: 950; }
.phase-meta { margin: 0 0 4px; color: var(--brand); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.phase-title-block h2 { margin: 0 0 8px; font-size: clamp(28px, 4.4vw, 42px); letter-spacing: -.05em; line-height: 1; }
.phase-title-block p { color: var(--muted); margin: 0; max-width: 820px; }
.phase-progress { min-width: 120px; text-align: right; padding: 12px 14px; border-radius: 18px; background: color-mix(in srgb, var(--surface-strong) 70%, transparent); border: 1px solid var(--line); }
.phase-progress strong { display: block; font-size: 22px; }
.phase-progress small { color: var(--muted); font-weight: 800; }
.outcome-panel { margin: 24px 0; padding: 20px; border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line)); background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 8%, transparent), color-mix(in srgb, var(--accent) 7%, transparent)); border-radius: var(--radius-md); }
.outcome-panel h3 { margin: 0 0 8px; }
.outcome-panel ul { margin: 0; padding-left: 20px; }
.task-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.task-group { border: 1px solid var(--line); background: color-mix(in srgb, var(--surface-strong) 74%, transparent); border-radius: var(--radius-md); padding: 20px; }
.task-group header { display: flex; justify-content: space-between; align-items: start; gap: 14px; }
.task-group h3 { margin: 0; letter-spacing: -.02em; }
.task-group header span { color: var(--brand); font-weight: 900; white-space: nowrap; font-size: 13px; }
.group-body { margin: 8px 0 12px; color: var(--muted); font-size: 14px; }
.tasks { display: grid; margin-top: 12px; }
.task-item { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; padding: 11px 0; border-bottom: 1px dashed var(--line); cursor: pointer; color: color-mix(in srgb, var(--ink) 86%, var(--muted)); }
.task-item:last-child { border-bottom: 0; }
.task-item input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--brand); }
.task-item:has(input:checked) span { text-decoration: line-through; color: var(--muted); opacity: .72; }
.concepts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.concepts span { padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 10%, transparent); color: var(--brand); font-size: 12px; font-weight: 900; }
.accordion-grid { display: grid; gap: 14px; margin-top: 18px; }
details { border: 1px solid var(--line); background: color-mix(in srgb, var(--surface-strong) 72%, transparent); border-radius: var(--radius-md); padding: 16px; }
summary { cursor: pointer; font-weight: 950; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.resource-card { min-height: 128px; display: flex; flex-direction: column; gap: 7px; padding: 15px; border: 1px solid var(--line); background: var(--surface-strong); border-radius: 18px; text-decoration: none; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.resource-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 48%, var(--line)); box-shadow: 0 18px 32px color-mix(in srgb, var(--brand) 10%, transparent); }
.resource-type { width: fit-content; padding: 4px 9px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-size: 11px; font-weight: 950; }
.resource-type.cert { background: linear-gradient(135deg, var(--warning), var(--danger)); }
.resource-card strong { line-height: 1.22; }
.resource-card small { color: var(--muted); overflow-wrap: anywhere; }
.resource-card em { color: var(--muted); font-style: normal; font-size: 13px; line-height: 1.4; }
.resource-grid.compact .resource-card { min-height: 92px; }
.milestone-card { margin-top: 18px; padding: 18px 20px; border-radius: var(--radius-md); color: white; background: linear-gradient(135deg, #0f172a, color-mix(in srgb, var(--brand) 45%, #0f172a)); }
.milestone-card span { display: block; color: #93c5fd; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.milestone-card p { margin: 6px 0 0; font-weight: 700; }
.projects { margin-top: 54px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card { position: relative; min-height: 230px; padding: 24px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--soft-shadow); overflow: hidden; }
.project-card::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: color-mix(in srgb, var(--brand) 11%, transparent); right: -60px; bottom: -70px; }
.project-card > span { color: var(--brand); font-size: 34px; font-weight: 950; }
.project-card small { display: block; color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.project-card h3 { margin: 14px 0 8px; letter-spacing: -.03em; }
.project-card p { color: var(--muted); margin: 0; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 36px 0 56px; color: var(--muted); }
.site-footer strong { color: var(--ink); }
.site-footer a { text-decoration: none; color: var(--brand); font-weight: 900; }
.toast { position: fixed; right: 18px; bottom: 18px; z-index: 50; padding: 13px 16px; border-radius: 999px; color: white; background: #0f172a; box-shadow: var(--shadow); opacity: 0; transform: translateY(14px); pointer-events: none; transition: .22s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.section-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.section-reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes floaty { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(18px, -18px, 0) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto !important; transition: none !important; } .section-reveal { opacity: 1; transform: none; } }
@media (max-width: 980px) {
  .hero, .roadmap-select-grid, .overview-grid, .task-layout, .resource-grid, .project-grid, .compare-grid { grid-template-columns: 1fr; }
  .toolbar, .project-strip { display: block; }
  .toolbar-controls { justify-items: stretch; margin-top: 18px; }
  .search-box { min-width: 0; }
  .filter-pills { justify-content: flex-start; }
  .sticky-progress { grid-template-columns: 1fr; border-radius: var(--radius-md); top: 8px; }
  .phase-topline { grid-template-columns: 70px 1fr; }
  .phase-progress { grid-column: 1 / -1; text-align: left; width: fit-content; }
  .timeline::before { display: none; }
}
@media (max-width: 720px) {
  .site-header { padding-top: 14px; }
  .top-nav { border-radius: 24px; align-items: flex-start; }
  .menu-toggle { display: inline-flex; border: 1px solid var(--line); background: var(--surface-strong); border-radius: 999px; padding: 10px 13px; color: var(--ink); font-weight: 900; }
  .nav-links { display: none; position: absolute; left: 12px; right: 12px; top: calc(100% + 8px); flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); background: var(--surface-strong); border-radius: 22px; box-shadow: var(--shadow); z-index: 30; }
  .nav-links.open { display: flex; }
  .nav-links a, .ghost-button { text-align: left; }
  .hero { padding-top: 46px; }
  .hero-card, .hero-card-inner { min-height: 360px; }
  .choice-stats { grid-template-columns: 1fr; }
  .phase-card, .roadmap-choice, .compare-section, .project-strip { padding: 20px; }
  .phase-topline { grid-template-columns: 1fr; }
  .site-footer { display: block; }
}
