:root {
  --magenta: #ec0f8c;
  --cyan: #00aeef;
  --lime: #d6df21;
  --dark: #0f172a;
  --slate: #475569;
  --muted: #f8fafc;
  --soft: #f8fafc;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.12);
}

.site-footer {
  padding: 58px max(20px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #090f1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.footer-brand img {
  width: 168px;
  max-width: 100%;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--magenta);
}

.site-footer p {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.site-footer .footer-cta {
  display: inline-flex;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  color: var(--white);
  filter: brightness(0.94);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--muted);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 158px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 22px);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
.nav-menu-trigger {
  white-space: nowrap;
}

nav a,
.header-cta,
.button {
  text-decoration: none;
}

.nav-menu {
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-menu-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: #334155;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--soft);
  color: var(--magenta);
}

nav > a,
.nav-menu-trigger,
.header-cta,
.button.primary {
  transition: color 0.18s ease, background-color 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

nav > a:hover,
nav > a:focus-visible,
.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible {
  color: var(--magenta);
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  filter: brightness(0.94);
}

.header-cta {
  display: inline-flex;
  padding: 13px 18px;
  color: var(--white);
  background: var(--magenta);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark,
.card-kicker {
  color: var(--magenta);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  align-items: start;
  gap: clamp(32px, 5vw, 68px);
  min-height: auto;
  padding: 176px max(20px, calc((100vw - 1180px) / 2)) 106px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.23), transparent 38%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.18), transparent 48%),
    var(--dark);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 70% 36%, rgba(214, 223, 33, 0.2), transparent 9%),
    radial-gradient(circle at 86% 62%, rgba(236, 15, 140, 0.18), transparent 11%),
    linear-gradient(120deg, transparent 0 43%, rgba(255, 255, 255, 0.12) 43.2% 43.8%, transparent 44% 100%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 46px 46px, 46px 46px;
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.48;
  font-weight: 650;
}

.hero-subcopy {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 650;
}

.diagnosis-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 720px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 223, 33, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(214, 223, 33, 0.08);
}

.diagnosis-strip strong,
.diagnosis-strip span {
  font-size: 15px;
  line-height: 1.45;
}

.diagnosis-strip strong {
  color: var(--lime);
  font-weight: 900;
}

.diagnosis-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 17px 24px;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.form-card button {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 18px 50px rgba(236, 15, 140, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.form-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.form-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
  font-weight: 650;
}

.form-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card .wide,
.form-card button {
  grid-column: 1 / -1;
}

.form-card input,
.form-card select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.form-card input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-card option {
  color: var(--dark);
}

.form-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
  font-weight: 650;
}

.section {
  padding: clamp(80px, 9vw, 130px) clamp(20px, 6vw, 84px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section-copy p,
.section-heading p:not(.eyebrow) {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.section-heading {
  display: grid;
  justify-items: start;
  max-width: 980px;
  margin: 0 auto 44px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.section-heading .eyebrow {
  width: fit-content;
  max-width: 100%;
}

.risk-grid,
.report-grid,
.steps-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.risk-grid article,
.report-grid article,
.steps-grid article,
.faq-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.risk-grid span,
.report-grid span,
.steps-grid span,
.sample-grid span {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--magenta);
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-grid p,
.report-grid p,
.steps-grid p,
.faq-grid p,
.sample-grid p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 680;
}

.faq-grid h3 {
  color: var(--magenta);
}

.report-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-grid article {
  min-height: 250px;
}

.report-visual {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 32px;
}

.report-visual > div {
  position: relative;
  display: grid;
  align-content: center;
  gap: 9px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.07);
}

.report-visual > div + div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 4px);
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

.report-visual span,
.decision-path span {
  color: var(--magenta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-visual strong,
.decision-path strong {
  color: var(--dark);
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
}

.decision-path strong {
  font-size: 17px;
  line-height: 1.35;
  text-transform: none;
}

.report-visual small {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.report-engine {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.92), rgba(0, 174, 239, 0.78)),
    var(--dark) !important;
}

.report-engine span,
.report-engine strong,
.report-engine small {
  color: var(--white);
}

.gap-section {
  color: var(--white);
  background: var(--dark);
}

.gap-section .section-copy p,
.gap-section .section-grid > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.gap-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.gap-row {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.gap-row div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.gap-row span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
}

.gap-row strong {
  color: var(--white);
  font-size: 34px;
}

.bar {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

.gap-row.target .bar i {
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.gap-highlight {
  margin-top: 34px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.gap-highlight h3 {
  color: var(--white);
}

.gap-highlight p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-weight: 700;
}

.urgency-section {
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.075), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.09), transparent 48%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    #f8fafc;
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.sample-report {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
}

.sample-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.9), rgba(0, 174, 239, 0.75)),
    var(--dark);
}

.sample-header h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
}

.sample-header .card-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.sample-header strong {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.9;
}

.teaser-header {
  align-items: stretch;
}

.teaser-header > div:first-child {
  display: grid;
  align-content: center;
  max-width: 680px;
}

.teaser-header p:not(.card-kicker) {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  font-weight: 650;
}

.sample-score {
  display: grid;
  min-width: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.sample-score strong {
  font-size: clamp(54px, 7vw, 76px);
}

.sample-score span {
  color: var(--lime);
  font-size: 20px;
  font-weight: 900;
}

.sample-score small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sample-grid div {
  min-height: 150px;
  padding: 26px 30px;
  border-top: 1px solid var(--line);
}

.sample-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.sample-note {
  margin: 0;
  padding: 22px 30px;
  color: #64748b;
  background: #f8fafc;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.teaser-grid,
.teaser-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.teaser-card,
.teaser-insights > div {
  padding: 26px 30px;
  border-top: 1px solid var(--line);
}

.teaser-card:first-child,
.teaser-insights > div:first-child {
  border-right: 1px solid var(--line);
}

.teaser-card.primary {
  background: linear-gradient(135deg, rgba(236, 15, 140, 0.055), rgba(0, 174, 239, 0.035));
}

.teaser-card span,
.teaser-insights span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teaser-card h4,
.teaser-insights h4 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 22px;
}

.teaser-card p,
.teaser-insights p {
  margin: 0;
  color: #475569;
  line-height: 1.62;
  font-weight: 450;
}

.masked-line {
  position: relative;
  margin-top: 14px !important;
  color: transparent !important;
  user-select: none;
}

.masked-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.18), rgba(148, 163, 184, 0.34), rgba(148, 163, 184, 0.16)),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.08) 0 2px, transparent 2px 10px);
  filter: blur(0.2px);
}

.teaser-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 30px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.teaser-lockup p {
  max-width: 640px;
  margin: 0;
  color: #475569;
  line-height: 1.55;
  font-weight: 650;
}

.report-section,
.steps-section,
.after-report-section {
  background: var(--white);
}

.sample-section,
.fit-section,
.faq-section {
  background: var(--soft);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decision-path {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 980px;
  margin: 34px auto 0;
}

.decision-path div {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 100%;
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(236, 15, 140, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.06), rgba(0, 174, 239, 0.06)),
    var(--white);
}

.decision-path i {
  align-self: center;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark);
}

.fit-grid .not-fit {
  background: #1e293b;
}

.fit-grid h2,
.fit-grid p {
  color: var(--white);
}

.fit-grid h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.fit-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
  line-height: 1.45;
}

.fit-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-grid,
.risk-grid,
.report-grid,
.steps-grid,
.fit-grid,
.faq-grid,
.sample-grid,
.bottom-form-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.bottom-form-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.92), rgba(0, 174, 239, 0.78)),
    var(--dark);
}

.bottom-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.bottom-form-grid h2 {
  max-width: 760px;
}

.bottom-form-grid > div > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 680;
}

.bottom-form-card {
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.15), rgba(0, 174, 239, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.assessment-page {
  background: var(--dark);
}

.assessment-header {
  position: fixed;
}

.assessment-shell {
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.16), transparent 36%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.14), transparent 46%),
    var(--dark);
}

.assessment-card,
.report-screen {
  max-width: 1040px;
  margin: 0 auto;
}

.assessment-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.assessment-card h1 {
  max-width: 850px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  text-transform: none;
}

.assessment-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.diagnosis-strip.light {
  max-width: 720px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.08);
}

.intro-card .button {
  margin-top: 26px;
}

.assessment-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assessment-progress strong {
  color: var(--lime);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  margin-bottom: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
  transition: width 180ms ease;
}

.choice-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.choice {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
}

.choice span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.choice.selected {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(236, 15, 140, 0.86), rgba(0, 174, 239, 0.72));
}

.choice.selected span {
  color: var(--dark);
  background: var(--lime);
}

.assessment-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.loading-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.ai-generator {
  position: relative;
  overflow: hidden;
  width: min(520px, 100%);
  height: 10px;
  margin-top: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.ai-generator span,
.ai-generator i {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.ai-generator span {
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
  animation: ai-fill 2.3s ease forwards;
}

.ai-generator i {
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  animation: ai-scan 1.1s ease-in-out infinite;
}

.loading-list span {
  position: relative;
  padding: 18px;
  padding-left: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.loading-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top-color: var(--lime);
  border-radius: 999px;
  transform: translateY(-50%);
}

.loading-list span.active {
  color: var(--white);
  border-color: rgba(167, 243, 208, 0.42);
  background: rgba(167, 243, 208, 0.08);
}

.loading-list span.active::before {
  animation: spin 700ms linear infinite;
}

.loading-list span.complete::before {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: inset 0 0 0 4px var(--dark);
}

.report-screen {
  color: var(--dark);
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.9), rgba(0, 174, 239, 0.72)),
    var(--dark);
}

.report-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-weight: 700;
}

.score-dial {
  display: grid;
  grid-template-rows: auto auto auto;
  place-items: center;
  align-content: center;
  justify-items: center;
  aspect-ratio: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.score-dial span {
  color: var(--white);
  font-size: clamp(58px, 7vw, 86px);
  line-height: 0.88;
  font-weight: 900;
}

.score-dial strong {
  margin-top: 4px;
  color: var(--lime);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.score-dial small {
  max-width: 120px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.report-grid-final {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.report-grid-final article,
.ai-report-mock,
.maturity-report,
.response-summary,
.report-delivery,
.next-move {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.report-grid-final span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-grid-final p,
.ai-report-mock p,
.next-move p,
.response-summary p {
  color: #475569;
  line-height: 1.68;
  font-weight: 450;
}

.ai-report-mock,
.maturity-report,
.response-summary,
.report-delivery,
.next-move {
  margin-top: 18px;
}

.report-delivery {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(167, 243, 208, 0.16), rgba(0, 174, 239, 0.08)),
    var(--white);
}

.report-delivery h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.2vw, 34px);
}

.report-delivery p:not(.eyebrow) {
  max-width: 720px;
  color: #475569;
  line-height: 1.6;
  font-weight: 680;
}

.report-meta {
  margin-top: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.maturity-report {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: 28px;
}

.ai-report-mock {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.06), rgba(0, 174, 239, 0.06)),
    var(--white);
}

.ai-report-mock > div:first-child {
  max-width: none;
}

.ai-report-mock h2,
.maturity-report h2,
.response-summary h2,
.next-move h2 {
  max-width: 520px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.05;
}

.ai-report-mock > div:first-child h2 {
  max-width: none;
}

.ai-report-mock > div:first-child p:not(.eyebrow) {
  max-width: none;
  margin-top: 18px;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.72;
  font-weight: 450;
}

.ai-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ai-brief-grid article {
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.ai-brief-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-brief-grid p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 450;
}

.ai-action-plan {
  padding: 24px;
  border: 1px solid rgba(236, 15, 140, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.ai-action-plan h3 {
  margin-bottom: 14px;
}

.next-move-list {
  display: grid;
  gap: 12px;
}

.next-move-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.next-move-list article.primary {
  border-color: rgba(236, 15, 140, 0.28);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.07), rgba(0, 174, 239, 0.05)),
    var(--white);
}

.next-move-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--magenta);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.next-move-list h4 {
  margin: 0 0 6px;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
}

.next-move-list p {
  margin: 0;
  color: #475569;
  font-weight: 450;
  line-height: 1.62;
}

.next-move-list a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.response-summary {
  display: grid;
  gap: 24px;
}

.report-tie-note {
  max-width: 940px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(236, 15, 140, 0.18);
  border-radius: 8px;
  background: rgba(236, 15, 140, 0.045);
}

.response-list {
  display: grid;
  gap: 18px;
}

.response-category {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.response-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.response-category-head h3 {
  margin-bottom: 0;
}

.category-insight-head {
  align-items: flex-start;
  padding: 22px 24px 18px;
}

.category-insight-head > div {
  display: grid;
  gap: 8px;
}

.category-insight-head small {
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.response-category-head strong {
  color: var(--magenta);
  font-size: 22px;
  font-weight: 900;
}

.category-insight-score {
  display: grid;
  gap: 10px;
  padding: 0 24px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.category-insight-score .bar {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.category-insight-score .bar i {
  background: var(--magenta);
}

.category-insight-score small {
  color: #64748b;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.45;
}

.category-recommendation {
  padding: 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.06), rgba(0, 174, 239, 0.06)),
    var(--white);
}

.category-recommendation span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-recommendation p {
  max-width: none;
  margin-bottom: 0;
  font-weight: 450;
}

.progress-lens-note {
  display: block;
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.response-items {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.insight-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.response-items article {
  padding: 18px;
  background: #f8fafc;
}

.category-insights-section .response-items article {
  padding: 22px 24px;
}

.response-items span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.response-items h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.response-items p {
  margin-bottom: 0;
  font-weight: 450;
}

.next-move h2 {
  max-width: none;
  font-size: clamp(24px, 2.2vw, 34px);
  white-space: nowrap;
}

.category-bars {
  display: grid;
  gap: 12px;
}

.category-bars article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.category-bars article.lead {
  border-color: rgba(236, 15, 140, 0.38);
  background: rgba(236, 15, 140, 0.06);
}

.category-bars article > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.category-bars span {
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
}

.category-bars strong {
  color: var(--magenta);
}

.category-bars small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-weight: 700;
}

.is-hidden {
  display: none !important;
}

@keyframes ai-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes ai-scan {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(340%);
  }
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero,
  .section-grid,
  .fit-grid,
  .bottom-form-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    max-width: 760px;
  }

  .risk-grid,
  .report-visual,
  .report-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .decision-path {
    grid-template-columns: 1fr;
  }

  .decision-path i {
    width: 3px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, var(--magenta), var(--cyan), var(--lime));
  }

  .report-visual > div + div::before {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu-trigger {
    display: inline-flex;
  }

  .nav-dropdown {
    top: calc(100% + 10px);
    display: grid;
    min-width: min(300px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 74px 18px 52px;
  }

  h1 {
    overflow-wrap: anywhere;
  }

  .button,
  .form-card button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .form-card form,
  .risk-grid,
  .report-visual,
  .report-grid,
  .steps-grid,
  .decision-path,
  .fit-grid,
  .faq-grid,
  .sample-grid,
  .teaser-grid,
  .teaser-insights,
  .bottom-form-grid {
    grid-template-columns: 1fr;
  }

  .sample-grid div:nth-child(odd),
  .teaser-card:first-child,
  .teaser-insights > div:first-child {
    border-right: 0;
  }

  .sample-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-score {
    width: 100%;
  }

  .fit-grid h2 {
    white-space: normal;
  }

  .teaser-lockup {
    align-items: stretch;
    flex-direction: column;
  }

  .assessment-shell {
    padding: 42px 18px;
  }

  .assessment-header {
    position: static;
  }

  .assessment-actions,
  .report-hero,
  .report-grid-final,
  .ai-brief-grid,
  .insight-support-grid,
  .maturity-report {
    grid-template-columns: 1fr;
  }

  .response-category-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .next-move h2 {
    white-space: normal;
  }

  .assessment-actions {
    display: grid;
  }

  .choice {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 15px;
  }

  .choice span {
    width: 36px;
    height: 36px;
  }

  .score-dial {
    max-width: 220px;
  }
}
