:root {
  --ink: #11162a;
  --muted: #667085;
  --paper: #f5f7fb;
  --white: #ffffff;
  --line: #e3e7ef;
  --indigo: #5146e5;
  --indigo-deep: #3027a5;
  --lime: #c7f36b;
  --cyan: #75e4f2;
  --coral: #ff7b6b;
  --shadow: 0 22px 60px rgba(25, 31, 70, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(117, 228, 242, .18), transparent 26rem),
    radial-gradient(circle at 90% 13%, rgba(199, 243, 107, .15), transparent 22rem),
    var(--paper);
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header, footer {
  max-width: 1160px;
  margin: auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { max-width: none; padding-inline: max(24px, calc((100vw - 1160px) / 2 + 24px)); border-bottom: 1px solid rgba(227, 231, 239, .9); position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); }
.brand { color: var(--ink); text-decoration: none; display: flex; align-items: center; }
.brand img { display: block; width: 190px; height: auto; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  color: white; background: var(--ink); font-size: 17px; letter-spacing: -1px;
  box-shadow: 5px 5px 0 var(--lime);
}
.brand-mark span { color: var(--lime); font-size: 9px; align-self: end; margin: 0 0 8px 1px; }
.header-meta { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; background: #1fbc7a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(31,188,122,.12); }
nav { display: flex; align-items: center; gap: 25px; }
nav a, .nav-menu summary { color: #42495c; text-decoration: none; font-size: 14px; font-weight: 700; }
nav a:hover, .nav-menu summary:hover { color: var(--indigo); }
.nav-menu { position: relative; }
.nav-menu summary { display: flex; align-items: center; gap: 5px; list-style: none; cursor: pointer; }
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary span { font-size: 16px; transition: transform .2s ease; }
.nav-menu[open] summary span { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 18px); left: -18px; width: 320px; padding: 10px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 65px rgba(17,22,42,.16); }
.nav-dropdown::before { content: ""; position: absolute; left: 25px; top: -7px; width: 12px; height: 12px; background: white; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); }
.nav-dropdown button { position: relative; z-index: 1; display: block; width: 100%; padding: 12px 13px; text-align: left; color: var(--ink); background: transparent; border: 0; border-radius: 11px; }
.nav-dropdown button:hover { background: #f5f4ff; }
.nav-dropdown b, .nav-dropdown small { display: block; }
.nav-dropdown b { font: 700 14px "Manrope"; }
.nav-dropdown small { color: var(--muted); margin-top: 3px; font-size: 12px; }
nav .nav-cta { color: white; background: var(--ink); border: 0; border-radius: 11px; padding: 11px 16px; font-weight: 700; }
nav .nav-cta:hover { color: white; background: var(--indigo); }

#app { max-width: 1160px; margin: 0 auto; padding: 54px 24px 80px; min-height: calc(100vh - 160px); }
.screen { animation: appear .45s ease both; }
@keyframes appear { from { opacity: 0; transform: translateY(10px); } }

.eyebrow { color: var(--indigo); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 { font-size: clamp(40px, 6.3vw, 78px); line-height: .98; letter-spacing: -.055em; margin: 18px 0 22px; max-width: 780px; }
h1 em { font-style: normal; color: var(--indigo); }
.lead { max-width: 640px; color: var(--muted); font-size: 19px; line-height: 1.65; margin: 0 0 30px; }
.landing-screen { max-width: 1120px; margin: auto; }
.hero { display: grid; grid-template-columns: 1.28fr .72fr; gap: 64px; align-items: center; padding: 20px 0 52px; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; color: var(--indigo-deep); background: rgba(81,70,229,.08); border: 1px solid rgba(81,70,229,.13); border-radius: 99px; padding: 8px 12px; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.hero-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(199,243,107,.24); }
.hero h1 { max-width: 740px; }
.actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.primary, .secondary {
  border: 0; border-radius: 14px; padding: 15px 22px; font-weight: 700; min-height: 52px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary { color: white; background: var(--indigo); box-shadow: 0 12px 28px rgba(81,70,229,.25); }
.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(81,70,229,.32); }
.secondary { color: var(--ink); background: white; border: 1px solid var(--line); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.microcopy { color: var(--muted); font-size: 13px; margin-top: 15px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 22px; color: var(--muted); font-size: 13px; font-weight: 600; }
.hero-trust span::first-letter { color: #159766; }

.score-preview { position: relative; padding: 30px; background: var(--ink); color: white; border-radius: 30px; box-shadow: 0 28px 70px rgba(17,22,42,.22); overflow: hidden; min-height: 430px; transform: rotate(1deg); }
.score-preview::after { content: ""; position: absolute; width: 220px; height: 220px; border: 44px solid rgba(117,228,242,.11); border-radius: 50%; right: -90px; top: -80px; }
.preview-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.preview-label { color: #bfc4d8; font-size: 14px; }
.live-chip { color: var(--lime); border: 1px solid rgba(199,243,107,.28); background: rgba(199,243,107,.08); padding: 5px 8px; border-radius: 99px; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.preview-number { font: 800 82px/1 "Manrope"; margin: 22px 0 3px; letter-spacing: -.06em; }
.preview-number span { color: var(--lime); font-size: 24px; letter-spacing: 0; }
.preview-status { color: var(--lime); font-weight: 700; }
.preview-copy { max-width: 285px; color: #cdd1e0; font-size: 14px; line-height: 1.55; margin: 13px 0 0; position: relative; z-index: 1; }
.mini-bars { margin-top: 30px; display: grid; gap: 18px; position: relative; z-index: 1; }
.mini-row { display: grid; grid-template-columns: 95px 1fr 34px; align-items: center; gap: 10px; color: #d8dbea; font-size: 13px; }
.track { height: 8px; border-radius: 10px; background: rgba(255,255,255,.12); overflow: hidden; }
.fill { display: block; height: 100%; border-radius: inherit; background: var(--cyan); }
.mini-row:nth-child(2) .fill { background: var(--lime); }
.mini-row:nth-child(3) .fill { background: var(--coral); }

.value-strip { display: flex; align-items: center; justify-content: center; gap: 25px; padding: 20px 24px; color: #4b5266; background: rgba(255,255,255,.72); border: 1px solid rgba(227,231,239,.9); border-radius: 16px; font-size: 13px; font-weight: 700; box-shadow: 0 10px 35px rgba(25,31,70,.05); }
.value-strip i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }
.assessment-section { padding-top: 88px; scroll-margin-top: 20px; }
.section-heading { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: end; }
.section-heading h2 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -.045em; margin: 10px 0 0; }
.section-heading p { color: var(--muted); line-height: 1.65; margin: 0 0 5px; }
.content-section { padding: 104px 0 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.steps-grid article { position: relative; min-height: 245px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.steps-grid article::after { content: ""; position: absolute; right: -38px; bottom: -44px; width: 115px; height: 115px; border: 22px solid rgba(81,70,229,.055); border-radius: 50%; }
.steps-grid article > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--indigo); background: rgba(81,70,229,.08); font-weight: 800; font-size: 13px; }
.steps-grid h3 { margin: 52px 0 10px; font-size: 21px; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.coverage-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.coverage-copy h2, .result-preview-copy h2, .faq-section h2 { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.08; letter-spacing: -.045em; margin: 12px 0 18px; }
.coverage-copy > p, .result-preview-copy > p { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 620px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.coverage-tags span { padding: 9px 12px; color: #42495c; background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 700; }
.progress-card { position: relative; padding: 29px; color: white; background: var(--indigo); border-radius: 26px; box-shadow: 0 24px 60px rgba(81,70,229,.22); overflow: hidden; }
.progress-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -90px; bottom: -80px; border: 32px solid rgba(199,243,107,.13); border-radius: 50%; }
.progress-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.progress-card-top span { color: #d7d4ff; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.progress-card-top b { color: var(--lime); font-size: 12px; }
.path-row { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1; }
.path-row > span { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 11px; color: var(--indigo); background: white; font-weight: 800; }
.path-row strong, .path-row small { display: block; }
.path-row small { color: #d7d4ff; margin-top: 3px; }
.path-row.active > span { color: var(--ink); background: var(--lime); }
.path-line { width: 2px; height: 31px; margin: 5px 0 5px 18px; background: rgba(255,255,255,.24); }

.result-preview-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: center; }
.result-preview-copy ul { list-style: none; padding: 0; margin: 25px 0 30px; display: grid; gap: 13px; }
.result-preview-copy li { color: #42495c; font-weight: 600; }
.result-preview-copy li span { color: #13966a; margin-right: 8px; }
.report-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.report-head { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.report-head small, .report-head strong { display: block; }
.report-head small { color: var(--muted); font-weight: 800; letter-spacing: .1em; font-size: 10px; }
.report-head strong { margin-top: 6px; font: 700 19px "Manrope"; }
.report-head > span { display: grid; place-items: center; width: 72px; height: 72px; border: 7px solid #dad7ff; border-top-color: var(--indigo); border-radius: 50%; font: 800 23px "Manrope"; }
.report-bars { display: grid; gap: 19px; padding: 25px 0; }
.report-bars p { display: flex; justify-content: space-between; margin: 0 0 8px; color: #4b5266; font-size: 13px; }
.report-bars i { display: block; height: 8px; border-radius: 99px; background: #eef0f5; overflow: hidden; }
.report-bars i span { display: block; height: 100%; border-radius: inherit; background: var(--indigo); }
.report-focus { display: grid; gap: 5px; padding: 18px; background: #f4f3ff; border-left: 4px solid var(--indigo); border-radius: 4px 13px 13px 4px; }
.report-focus span { color: var(--indigo); font-size: 10px; font-weight: 800; letter-spacing: .11em; }
.report-focus small { color: var(--muted); line-height: 1.5; }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; padding-bottom: 105px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font: 700 16px "Manrope"; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--indigo); font-size: 21px; line-height: 1; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { color: var(--muted); line-height: 1.65; margin: -6px 35px 22px 0; }
.final-cta { display: grid; grid-template-columns: auto 1fr auto; gap: 25px; align-items: center; padding: 34px 38px; color: white; background: var(--ink); border-radius: 28px; overflow: hidden; }
.final-cta img { width: 72px; height: 72px; padding: 9px; background: white; border-radius: 18px; }
.final-cta span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.final-cta h2 { margin: 7px 0 3px; font-size: clamp(25px, 3vw, 36px); letter-spacing: -.035em; }
.final-cta p { margin: 0; color: #cdd1e0; }
.final-cta .primary { color: var(--ink); background: var(--lime); box-shadow: none; white-space: nowrap; }

.section-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 58px; }
.section-card { background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 18px; padding: 19px; }
.section-card strong { display: block; font-family: "Manrope"; margin-bottom: 5px; }
.section-card span { color: var(--muted); font-size: 14px; }
.num { color: var(--indigo); background: rgba(81,70,229,.09); border-radius: 9px; display: inline-grid; place-items: center; width: 29px; height: 29px; font-weight: 700; margin-bottom: 18px; }

.chooser-screen { max-width: 1040px; margin: auto; }
.chooser-intro { max-width: 760px; }
.chooser-intro.compact h2 { font-size: clamp(34px, 6vw, 58px); letter-spacing: -.045em; margin: 12px 0; }
.chooser-intro.compact .lead { margin-bottom: 30px; }
.test-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 38px; }
.test-type-card { min-height: 225px; border: 1px solid var(--line); background: rgba(255,255,255,.88); border-radius: 24px; padding: 24px; color: var(--ink); text-align: left; display: flex; flex-direction: column; align-items: flex-start; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.test-type-card:hover { transform: translateY(-5px); border-color: #a9a3f3; box-shadow: var(--shadow); }
.card-top { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.test-type-card .num { margin-bottom: 0; }
.level-chip { display: inline-flex; align-items: center; min-height: 27px; padding: 5px 9px; color: var(--indigo-deep); background: #eeecff; border-radius: 99px; font-size: 11px; font-weight: 800; }
.test-title { font: 800 25px "Manrope"; margin-bottom: 8px; }
.test-copy { color: var(--muted); line-height: 1.5; min-height: 49px; }
.test-facts { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.test-facts span { padding: 5px 8px; color: #596174; background: #f3f5f8; border-radius: 7px; font-size: 11px; font-weight: 700; }
.test-meta { margin-top: 19px; color: var(--indigo); font-size: 14px; font-weight: 700; }
.test-meta b { margin-left: 5px; }
.trust-line { margin-top: 22px; color: var(--muted); display: flex; align-items: center; gap: 10px; font-size: 14px; }
.text-back { background: none; border: 0; color: var(--muted); padding: 0; margin-bottom: 35px; font-weight: 600; }
.text-back:hover { color: var(--indigo); }
.skill-grid { display: grid; gap: 14px; }
.skill-card { width: 100%; text-align: left; display: flex; align-items: center; gap: 18px; border: 1px solid var(--line); background: white; padding: 20px; border-radius: 18px; color: var(--ink); transition: border-color .2s ease, transform .2s ease; }
.skill-card:hover { border-color: var(--indigo); transform: translateX(4px); }
.skill-icon { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 15px; background: var(--ink); color: var(--lime); display: grid; place-items: center; font: 800 22px "Manrope"; }
.skill-card span:last-child { display: grid; grid-template-columns: 1fr auto; width: 100%; gap: 3px 20px; align-items: center; }
.skill-card strong { font: 700 18px "Manrope"; }
.skill-card small { color: var(--muted); font-size: 14px; }
.skill-card em { grid-column: 2; grid-row: 1 / 3; color: var(--indigo); font-style: normal; font-weight: 700; font-size: 14px; }
.aptitude-track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.aptitude-track-card { min-height: 305px; padding: 22px; color: var(--ink); text-align: left; background: white; border: 1px solid var(--line); border-radius: 22px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.aptitude-track-card:hover { transform: translateY(-5px); border-color: #a9a3f3; box-shadow: var(--shadow); }
.track-card-top { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 34px; }
.track-icon { display: grid; place-items: center; width: 54px; height: 54px; color: var(--lime); background: var(--ink); border-radius: 15px; font: 800 12px "Manrope"; letter-spacing: .06em; }
.aptitude-track-card > strong { font: 800 20px "Manrope"; }
.aptitude-track-card > small { min-height: 60px; margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.track-card-facts { display: flex; gap: 8px; margin-top: auto; }
.track-card-facts b { padding: 6px 8px; color: #596174; background: #f3f5f8; border-radius: 7px; font-size: 11px; }
.aptitude-track-card > em { margin-top: 18px; color: var(--indigo); font-style: normal; font-weight: 800; font-size: 14px; }

.motivation-screen { max-width: 720px; min-height: 540px; margin: auto; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.motivation-screen h2 { font-size: clamp(31px, 6vw, 54px); letter-spacing: -.045em; line-height: 1.12; margin: 16px 0; }
.motivation-screen p { color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.motivation-orbit { width: 112px; height: 112px; border-radius: 50%; border: 2px solid rgba(81,70,229,.18); display: grid; place-items: center; position: relative; margin-bottom: 28px; }
.motivation-orbit::before { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 8px rgba(199,243,107,.18); top: 7px; right: 7px; }
.motivation-orbit span { width: 78px; height: 78px; border-radius: 50%; background: var(--ink); color: white; display: grid; place-items: center; font: 800 25px "Manrope"; }
.result-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.early-access-form { display: grid; gap: 11px; margin-top: 20px; }
.early-access-form > label:first-child { color: var(--ink); font-weight: 700; font-size: 14px; }
.early-access-form input[type="email"] { width: 100%; border: 1px solid #d7dbe5; border-radius: 12px; padding: 13px 14px; background: white; color: var(--ink); font: inherit; font-size: 16px; outline: none; }
.early-access-form input[type="email"]:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(81,70,229,.12); }
.consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; color: var(--muted); font-size: 13px; line-height: 1.45; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--indigo); }
.early-access-form .primary { width: 100%; justify-content: center; }
.early-access-form .primary:disabled { opacity: .65; cursor: wait; }
.form-status { min-height: 20px; margin: 0; color: #9a3412; font-size: 13px; }
.signup-success { display: grid; gap: 8px; padding: 18px; border-radius: 15px; background: rgba(199,243,107,.22); color: var(--ink); }
.signup-success strong { font: 800 20px "Manrope"; }
.signup-success span { color: #4e566a; line-height: 1.5; }

.assessment-shell { max-width: 840px; margin: auto; }
.assessment-top { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.assessment-top h2 { margin: 7px 0 0; font-size: clamp(25px, 4vw, 38px); }
.step-count { color: var(--muted); white-space: nowrap; }
.progress { height: 8px; background: #e4e8f0; border-radius: 20px; overflow: hidden; margin-bottom: 28px; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--indigo), #8b7ff5); transition: width .35s ease; }
.question-card { background: white; border: 1px solid var(--line); border-radius: 26px; padding: clamp(25px, 5vw, 46px); box-shadow: var(--shadow); }
.category { color: var(--indigo); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.question-card h3 { font-size: clamp(21px, 3.5vw, 30px); line-height: 1.35; margin: 16px 0 28px; }
.options { display: grid; gap: 12px; }
.option { width: 100%; padding: 15px 17px; display: flex; align-items: center; gap: 13px; text-align: left; background: #fafbfc; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); }
.option:hover { border-color: #a59ff4; background: #f8f7ff; }
.option.selected { border-color: var(--indigo); background: #f1f0ff; box-shadow: 0 0 0 2px rgba(81,70,229,.08); }
.option-letter { width: 29px; height: 29px; flex: 0 0 29px; border-radius: 8px; background: white; border: 1px solid var(--line); display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.question-actions { margin-top: 28px; display: flex; justify-content: space-between; gap: 12px; }
.question-actions .primary:disabled { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }

.typing-copy { background: #f4f6fa; border-left: 4px solid var(--indigo); padding: 18px; border-radius: 0 12px 12px 0; line-height: 1.7; color: #41485d; }
.typing-box { width: 100%; min-height: 150px; border: 1px solid #cbd1dc; border-radius: 14px; margin-top: 18px; padding: 15px; resize: vertical; line-height: 1.55; outline: none; }
.typing-box:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(81,70,229,.11); }
.typing-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; margin-top: 8px; }

.results-head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 34px; margin-bottom: 34px; }
.score-ring { --score: 72; width: 158px; height: 158px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--indigo) calc(var(--score) * 1%), #e5e8f0 0); position: relative; }
.score-ring::before { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: var(--paper); }
.score-ring div { position: relative; text-align: center; font: 800 45px/1 "Manrope"; }
.score-ring small { display: block; color: var(--muted); font: 600 12px "DM Sans"; letter-spacing: .08em; margin-top: 5px; }
.results-head h2 { font-size: clamp(30px, 5vw, 52px); margin: 7px 0 10px; letter-spacing: -.04em; }
.results-head p { color: var(--muted); font-size: 17px; line-height: 1.55; margin: 0; max-width: 630px; }
.results-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.panel { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.panel h3 { margin-bottom: 22px; }
.result-row { display: grid; grid-template-columns: 145px 1fr 42px; align-items: center; gap: 12px; margin: 18px 0; font-size: 14px; }
.result-row .track { background: #edf0f5; height: 10px; }
.result-row .fill { background: var(--indigo); }
.result-row:nth-of-type(even) .fill { background: #00a7b5; }
.insight { background: var(--ink); color: white; }
.insight h3 { color: white; }
.insight p { color: #cdd1e0; line-height: 1.6; }
.insight .primary { background: var(--lime); color: var(--ink); box-shadow: none; width: 100%; margin-top: 12px; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 20px; color: var(--indigo-deep); background: #e9e7ff; font-weight: 700; font-size: 12px; }
.reset { margin-top: 22px; background: none; border: 0; color: var(--muted); text-decoration: underline; }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ink); color: white; padding: 13px 18px; border-radius: 12px; box-shadow: var(--shadow); z-index: 10; animation: toast 2.8s ease forwards; }
@keyframes toast { 0%,100% { opacity: 0; transform: translate(-50%, 10px); } 12%,85% { opacity: 1; transform: translate(-50%, 0); } }

footer { color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }

@media (max-width: 820px) {
  #app { padding-top: 38px; }
  .hero, .results-grid { grid-template-columns: 1fr; }
  .score-preview { min-height: 390px; transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .assessment-section { padding-top: 65px; }
  .content-section { padding-top: 78px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; }
  .steps-grid h3 { margin-top: 30px; }
  .coverage-section, .result-preview-section, .faq-section { grid-template-columns: 1fr; gap: 38px; }
  .result-preview-copy { order: 1; }
  .report-card { order: 2; }
  .faq-section { padding-bottom: 75px; }
  .final-cta { grid-template-columns: auto 1fr; }
  .final-cta .primary { grid-column: 1 / -1; width: 100%; }
  nav > a { display: none; }
  .section-grid { grid-template-columns: repeat(2, 1fr); margin-top: 38px; }
  .test-type-grid { grid-template-columns: 1fr; }
  .test-type-card { min-height: 210px; }
  .aptitude-track-grid { grid-template-columns: 1fr; }
  .aptitude-track-card { min-height: 235px; }
  .results-head { grid-template-columns: 1fr; }
  .score-ring { width: 130px; height: 130px; }
}
@media (max-width: 520px) {
  .site-header, footer { padding-inline: 18px; }
  .brand img { width: 158px; }
  nav { gap: 10px; }
  nav > a, nav .nav-cta { display: none; }
  .nav-dropdown { left: auto; right: -6px; width: min(310px, calc(100vw - 36px)); }
  .nav-dropdown::before { left: auto; right: 34px; }
  #app { padding: 30px 18px 60px; }
  h1 { font-size: 43px; }
  .lead { font-size: 17px; }
  .section-grid { grid-template-columns: 1fr 1fr; }
  .section-card { padding: 15px; }
  .chooser-screen h1 { font-size: 40px; }
  .test-type-card { min-height: 200px; padding: 20px; }
  .card-top { margin-bottom: 24px; }
  .skill-card { align-items: flex-start; }
  .skill-card span:last-child { grid-template-columns: 1fr; }
  .skill-card em { grid-column: 1; grid-row: auto; margin-top: 8px; }
  .question-card { border-radius: 20px; padding: 23px 18px; }
  .result-row { grid-template-columns: 105px 1fr 36px; gap: 8px; }
  footer { align-items: flex-start; gap: 8px; flex-direction: column; }
  .hero { gap: 40px; padding-top: 4px; }
  .hero-trust { gap: 10px 14px; }
  .value-strip { justify-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; }
  .value-strip i { display: none; }
  .coverage-section { gap: 30px; }
  .progress-card, .report-card { padding: 22px; border-radius: 21px; }
  .final-cta { grid-template-columns: 1fr; padding: 28px 23px; }
  .final-cta img { width: 58px; height: 58px; }
  .faq-section { padding-bottom: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
