
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/ibm-plex-mono-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/ibm-plex-mono-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/manrope-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/manrope-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/manrope-600-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/manrope-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/assets/fonts/manrope-800-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



:root {
  
  --bg: #05070b;
  --bg-alt: #070a12;
  --bg-deep: #0b1020;
  --bg-elevated: #101627;

  
  --purple: #5e6eb4;
  --purple-light: #7484d2;
  --purple-deep: #3f4d8e;

  
  --olive: #5e6a36;
  --olive-fill: #6f7d3f;
  --olive-text: #b6c473;

  
  --ink: #f8fafc;
  --ink-secondary: #cbd5e1;
  --muted: #94a3b8;

  
  --card: rgba(15, 23, 42, 0.74);
  --card-elevated: rgba(20, 31, 52, 0.86);
  --line: rgba(148, 163, 184, 0.16);
  --line-purple: rgba(94, 110, 180, 0.36);
  --line-olive: rgba(182, 196, 115, 0.3);

  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  
  --wrap: 1180px;
  --gutter: 24px;

  
  --section-y: clamp(56px, 7vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-secondary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}



h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 5.2vw, 58px); }
h2 { font-size: clamp(27px, 3.4vw, 40px); }
h3 { font-size: clamp(19px, 1.8vw, 23px); letter-spacing: -0.01em; }
h4 { font-size: 17px; letter-spacing: 0; }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

strong { color: var(--ink); font-weight: 700; }

.lede {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 62ch;
}


.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin: 0 0 14px;
}



a { color: var(--purple-light); }


main p a, main li a { text-decoration: underline; text-underline-offset: 3px; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--olive-text);
  outline-offset: 3px;
  border-radius: 4px;
}


a[href^="mailto:"] { overflow-wrap: anywhere; }



.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }


.section + .section.bg-same { padding-block-start: 0; }

.bg-alt { background: var(--bg-alt); }
.bg-deep { background: var(--bg-deep); }

.section-head { margin-bottom: 40px; max-width: 70ch; }
.section-head p:last-child { color: var(--ink-secondary); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  background: var(--olive-fill);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }


[id] { scroll-margin-block-start: 100px; }





.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              backdrop-filter 0.25s var(--ease);
}
.nav.is-scrolled {
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

.nav-inner { display: flex; align-items: center; gap: 36px; width: 100%; }


.brand { flex: 0 0 auto; display: flex; align-items: center; text-decoration: none; }
.brand img { height: 62px; width: auto; max-width: 240px; object-fit: contain; }

.nav-links {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 24px;
}
.nav-links a {
  color: var(--ink-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s var(--ease);
}
.nav-links a.active { color: var(--ink); }
@media (hover: hover) {
  .nav-links a:hover { color: var(--ink); }
}

.nav-cta-wrap {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  flex: 0 0 auto;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px currentColor, 0 6px currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 190;
  background: rgba(5, 7, 11, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 28px;
  display: none;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  
  overscroll-behavior: contain;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 20px; justify-content: center; border-bottom: 0; }


body.nav-open { position: fixed; inset-inline: 0; overflow: hidden; }


@media (min-width: 881px) and (max-width: 1080px) {
  .nav-inner { gap: 16px; }
  .nav-links { gap: 14px; margin-left: 16px; }
  .nav-links a { font-size: 0.86rem; }
  .brand img { height: 48px; }
  .nav-cta-wrap .btn { padding: 9px 14px; font-size: 13.5px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta-wrap .btn { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 52px; }
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease);
}
.btn-primary { background: var(--olive-fill); color: #fff; }
.btn-secondary {
  background: rgba(94, 110, 180, 0.12);
  border-color: var(--line-purple);
  color: var(--ink);
}
.btn-sm { padding: 10px 18px; font-size: 14.5px; }


@media (hover: hover) {
  .btn-primary:hover { background: #7d8d47; transform: translateY(-1px); }
  .btn-secondary:hover { background: rgba(94, 110, 180, 0.22); }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn-note {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--muted);
}


@media (max-width: 620px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}



.hero {
  
  padding-block: calc(76px + clamp(48px, 6vw, 86px)) clamp(56px, 7vw, 96px);
  background:
    radial-gradient(1100px 520px at 72% -10%, rgba(94, 110, 180, 0.22), transparent 70%),
    radial-gradient(760px 400px at 6% 8%, rgba(111, 125, 63, 0.16), transparent 68%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero h1 { margin-bottom: 10px; }

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin: 0 0 22px;
}

.hero-cover {
  justify-self: center;
  max-width: 300px;
  width: 100%;
}
.hero-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-olive);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}


@media (max-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-cover { max-width: 230px; order: -1; justify-self: start; }
}



.page-hero {
  padding-block: calc(76px + clamp(42px, 5vw, 72px)) clamp(36px, 4.5vw, 60px);
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(94, 110, 180, 0.2), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 14px; }



.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
}
.cards-2 { --cols: 2; }
.cards-4 { --cols: 4; }


.cards-2 > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin-inline: auto;
}

.cards > :only-child:first-child,
.cards.cards-2 > :only-child:first-child {
  grid-column: 1 / -1;
  max-width: none;
  margin-inline: 0;
}
.cards > :only-child > p,
.cards > :only-child > ul { max-width: 72ch; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; color: var(--ink-secondary); }

@media (hover: hover) {
  .card { transition: border-color 0.2s var(--ease); }
  .card:hover { border-color: var(--line-purple); }
}


.kit-card { position: relative; padding-top: 30px; }
.kit-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--olive-text);
  display: block;
  margin-bottom: 12px;
}



.ladder {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: rung;
}
.ladder-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-olive);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  counter-increment: rung;
}
.ladder-step h3 {
  font-size: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.ladder-step h3::before {
  content: counter(rung, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-text);
}
.ladder-step p { margin: 0; font-size: 15.5px; color: var(--ink-secondary); }



.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive-text);
}


.checklist-cols { column-width: 260px; column-gap: 34px; }
.checklist-cols li { break-inside: avoid; }



.qband {
  background: var(--card-elevated);
  border: 1px solid var(--line-purple);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.qband .q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 14px;
}
.qband .q:last-of-type { margin-bottom: 0; }
.qband .q-then {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin: 22px 0 10px;
}



.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-purple);
  background: var(--bg-deep);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  color: var(--muted);
  background:
    repeating-linear-gradient(135deg, rgba(94, 110, 180, 0.06) 0 12px,
                              transparent 12px 24px),
    var(--bg-deep);
}
.video-slot .vs-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-secondary);
  font-size: 17px;
}
.video-slot .vs-meta { font-size: 14px; }



.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) {
  .split { grid-template-columns: minmax(0, 1fr); }
}

.aside-card {
  background: var(--card-elevated);
  border: 1px solid var(--line-olive);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.aside-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: var(--radius-sm);
}



.form-panel {
  background: var(--card-elevated);
  border: 1px solid var(--line-purple);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
}
.form-panel iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
}

.form-slot {
  text-align: center;
  padding: 40px 20px;
  border: 1px dashed var(--line-purple);
  border-radius: var(--radius);
  color: var(--muted);
}
.form-slot .fs-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-secondary);
  margin-bottom: 6px;
}

.consent {
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}




.faq {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
  margin-inline: auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.faq-item h3 { font-size: 17.5px; margin-bottom: 10px; }
.faq-item p { margin: 0; font-size: 15.5px; }



.cta-band {
  background:
    radial-gradient(800px 380px at 20% 0%, rgba(111, 125, 63, 0.2), transparent 70%),
    var(--bg-deep);
  border-block: 1px solid var(--line);
}
.cta-band .wrap { text-align: center; }
.cta-band .lede { margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }



.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-block: 54px 32px;
  font-size: 15px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { display: block; width: 150px; height: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 42ch; }
.footer-col h2 {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 14px;
}
.footer-col a,
.footer-brand a {
  display: block;
  color: var(--ink-secondary);
  text-decoration: none;
  padding: 5px 0;
  min-width: 0;
}
.footer-brand a { display: inline; }
@media (hover: hover) {
  .footer-col a:hover, .footer-brand a:hover { color: var(--ink); }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--muted);
  font-size: 13.5px;
}

.footer-bottom a {
  color: var(--muted);
  display: inline-block;
  padding: 3px 0;
  margin: -3px 0;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}



@media (max-width: 1080px) {
  .cards-4 { --cols: 2; }
}

@media (max-width: 880px) {
  .cards, .ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-4 { --cols: 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards, .ladder, .faq { grid-template-columns: minmax(0, 1fr); }
  
  .cards-2 > :last-child:nth-child(odd),
  .faq > :last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
  }
  .checklist-cols { column-width: auto; columns: 1; }
}




@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }
  [data-reveal].is-visible { opacity: 1; transform: none; }
}




.note-after { margin-top: 28px; max-width: 62ch; }
.list-inset { margin-top: 16px; }


.wrap-narrow { max-width: 820px; }
.wrap-narrow h2 { margin-top: 36px; font-size: clamp(22px, 2.4vw, 27px); }
.wrap-narrow h2:first-of-type { margin-top: 24px; }




[hidden] { display: none !important; }

.cc { display: grid; gap: 22px; }

.cc-q {
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-olive);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px 24px 22px;
  margin: 0;
  min-width: 0;
}
.cc-q.is-missing { border-color: var(--olive-text); }


.cc-q::after { content: ""; display: table; clear: both; }
.cc-q legend {
  float: left;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cc-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-text);
}

.cc-scenario { margin: 14px 0 8px; color: var(--ink-secondary); }
.cc-ask { margin: 0 0 18px; color: var(--ink); font-weight: 600; }


.cc-scale {
  display: grid;
  grid-template-columns: repeat(10, minmax(44px, 1fr));
  gap: 8px;
}
.cc-opt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.5);
  color: var(--ink-secondary);
  font-family: var(--font-mono);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease),
              color 0.15s var(--ease);
}

.cc-opt input {
  position: absolute;
  inset: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.cc-opt span { pointer-events: none; }
.cc-opt:has(input:checked) {
  background: var(--olive-fill);
  border-color: var(--olive-fill);
  color: #fff;
  font-weight: 700;
}
.cc-opt:has(input:focus-visible) {
  outline: 2px solid var(--olive-text);
  outline-offset: 2px;
}
@media (hover: hover) {
  .cc-opt:hover { border-color: var(--line-purple); color: var(--ink); }
  .cc-opt:has(input:checked):hover { background: #7d8d47; }
}

.cc-key li { margin-bottom: 10px; }
.cc-key strong {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--olive-text);
  margin-right: 6px;
}

.cc-error {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid var(--olive-text);
  border-radius: var(--radius-sm);
  background: rgba(182, 196, 115, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.cc-result {
  background: var(--card-elevated);
  border: 1px solid var(--line-purple);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
}
.cc-result h2 { margin-bottom: 22px; }
#cc-score { color: var(--olive-text); }
.cc-band h3 { margin-bottom: 10px; }
.cc-band p { max-width: 68ch; margin: 0; }

.cc-start {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.cc-start-area {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.cc-start-note { margin: 0; color: var(--ink-secondary); }


.cc-disclaimer {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
}

@media (max-width: 620px) {
  .cc-scale { grid-template-columns: repeat(5, minmax(44px, 1fr)); }
  .cc-q { padding: 20px 18px; }
}




.author-photo {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line-olive);
  margin-bottom: 18px;
}
.author-role {
  color: var(--olive-text);
  font-weight: 600;
  font-size: 15.5px;
  margin: 0 0 14px;
}
.author-orcid {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
}

.author-orcid a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 620px) {
  .author-photo { width: 140px; height: 140px; }
}
