/* ============================================================
   ROVEN — marketing site styles
   Ink Navy #16202E · Signal Green #1CA45F
   Display: Bricolage Grotesque · Body: Instrument Sans · Data: IBM Plex Mono
   ============================================================ */

:root {
  --ink: #16202E;
  --ink-deep: #0E141D;
  --green: #1CA45F;
  --green-dark: #15804A;
  --green-tint: #DFF2E7;
  --mist: #F4F6F4;
  --white: #FFFFFF;
  --slate: #5B6874;
  --line: #E3E7E4;
  --line-dark: rgba(255,255,255,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --body: "Instrument Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 2px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- wordmark ---------- */
.wordmark {
  display: inline-flex; align-items: baseline; gap: 1px;
  font-family: var(--display); font-weight: 700; font-size: 26px;
  letter-spacing: -0.5px; text-decoration: none; line-height: 1;
}
.wordmark .vcheck { width: .62em; height: .62em; transform: translateY(1px); }
.wordmark .vcheck path {
  fill: none; stroke: var(--green); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.wordmark.on-dark { color: var(--white); }
.wordmark.on-light { color: var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a.active { color: var(--green-dark); }
.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 10px 18px; border-radius: 100px; font-weight: 600 !important;
  transition: background .15s ease;
}
.nav-cta:hover { background: var(--green-dark); color: var(--white) !important; }
.nav-toggle { display: none; }

@media (max-width: 800px) {
  .nav-toggle {
    display: block; background: none; border: 0; cursor: pointer;
    font-family: var(--mono); font-size: 13px; color: var(--ink);
    padding: 8px;
  }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px;
  }
  .nav-links.open { display: flex; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  font-size: 16px; padding: 14px 26px; border-radius: 100px;
  border: 0; cursor: pointer; font-family: var(--body);
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost-dark {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
}
.btn-ghost-dark:hover { box-shadow: inset 0 0 0 1.5px var(--white); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--green-dark); }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: var(--white); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px;
  align-items: center; padding: 96px 0 104px;
}
.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--green); }
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(38px, 5vw, 58px); line-height: 1.06; letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--green); }
.hero .lede {
  font-size: 19px; color: rgba(255,255,255,.78); max-width: 46ch; margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 26px; font-family: var(--mono); font-size: 13px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 64px 0 72px; gap: 44px; }
}

/* ---------- accountability card (signature) ---------- */
.score-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 26px 26px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  max-width: 420px; width: 100%; justify-self: end;
  position: relative;
}
.score-card::before {
  content: "LIVE ACCOUNTABILITY RECORD";
  position: absolute; top: -30px; left: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: rgba(255,255,255,.45);
}
.sc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sc-name { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -.3px; }
.sc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-tint); color: var(--green-dark);
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  padding: 5px 10px; border-radius: 100px; margin-top: 6px;
}
.sc-badge svg { width: 11px; height: 11px; }
.sc-badge svg path { fill: none; stroke: var(--green-dark); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.ring { width: 92px; height: 92px; flex: none; }
.ring .track { fill: none; stroke: var(--line); stroke-width: 8; }
.ring .meter {
  fill: none; stroke: var(--green); stroke-width: 8; stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  stroke-dasharray: 264;
}
.ring text {
  font-family: var(--mono); font-weight: 600; font-size: 26px;
  fill: var(--ink); text-anchor: middle; dominant-baseline: central;
}
.sc-rows { margin-top: 20px; border-top: 1px dashed var(--line); }
.sc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: 14.5px; color: var(--slate);
}
.sc-row .val { font-family: var(--mono); font-weight: 600; color: var(--ink); font-size: 14px; }
.sc-row .val.good { color: var(--green-dark); }
.sc-foot {
  padding-top: 12px; font-family: var(--mono); font-size: 11px;
  color: var(--slate); letter-spacing: .04em;
}

@media (max-width: 900px) { .score-card { justify-self: start; } }

/* ---------- sections ---------- */
.section { padding: 92px 0; }
.section.tint { background: var(--mist); }
.section.dark { background: var(--ink); color: var(--white); }
.kicker {
  font-family: var(--mono); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 14px;
}
.section.dark .kicker { color: var(--green); }
.section h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; letter-spacing: -1px;
  max-width: 22ch; margin-bottom: 18px;
}
.section .sub { color: var(--slate); font-size: 18px; max-width: 60ch; }
.section.dark .sub { color: rgba(255,255,255,.72); }

/* ---------- problem strip ---------- */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.problem {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.problem .stat {
  font-family: var(--mono); font-size: 30px; font-weight: 600;
  color: var(--ink); letter-spacing: -1px;
}
.problem .stat s { color: #C0483B; text-decoration-thickness: 2.5px; }
.problem h3 { font-family: var(--display); font-size: 18px; margin: 12px 0 8px; letter-spacing: -.3px; }
.problem p { font-size: 15px; color: var(--slate); }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }

/* ---------- pillars ---------- */
.pillar-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px;
}
.pillar {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; background: var(--white);
  transition: border-color .15s ease, transform .15s ease;
}
.pillar:hover { border-color: var(--green); transform: translateY(-3px); }
.pillar .p-mark { width: 34px; height: 34px; margin-bottom: 18px; }
.pillar .p-mark path { fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-family: var(--display); font-size: 21px; letter-spacing: -.4px; margin-bottom: 10px; }
.pillar p { color: var(--slate); font-size: 15.5px; }
@media (max-width: 820px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ---------- how it works split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px;
}
.lane {
  border-radius: var(--radius); padding: 34px;
}
.lane.candidate { background: var(--white); border: 1px solid var(--line); }
.lane.employer { background: var(--ink-deep); color: var(--white); }
.lane .lane-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 20px;
}
.lane.candidate .lane-tag { color: var(--green-dark); }
.lane.employer .lane-tag { color: var(--green); }
.lane h3 { font-family: var(--display); font-size: 23px; letter-spacing: -.4px; margin-bottom: 22px; }
.step { display: flex; gap: 16px; padding: 14px 0; }
.step + .step { border-top: 1px dashed var(--line); }
.lane.employer .step + .step { border-top: 1px dashed var(--line-dark); }
.step .n {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--green-dark); flex: none; padding-top: 3px;
}
.lane.employer .step .n { color: var(--green); }
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.step p { font-size: 14.5px; color: var(--slate); }
.lane.employer .step p { color: rgba(255,255,255,.68); }
.lane .lane-price {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 14px;
}
.lane.employer .lane-price { border-top-color: var(--line-dark); }
.lane .lane-price strong { color: var(--green-dark); }
.lane.employer .lane-price strong { color: var(--green); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ---------- score showcase ---------- */
.showcase {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.metric-list { list-style: none; margin-top: 28px; }
.metric-list li {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line-dark);
  font-size: 15.5px; color: rgba(255,255,255,.78);
}
.metric-list .m {
  font-family: var(--mono); font-size: 13px; color: var(--green);
  flex: none; width: 140px; padding-top: 2px;
}
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-top: 40px; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; padding: 18px 0;
  font-family: var(--display); font-weight: 600; font-size: 17.5px; letter-spacing: -.2px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--mono); font-size: 20px; color: var(--green-dark);
  flex: none; transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--slate); font-size: 15.5px; max-width: 64ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--white); text-align: center; }
.cta-band h2 { margin: 0 auto 16px; }
.cta-band .sub { margin: 0 auto 34px; }
.pilot-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 8px;
}
.pilot-form input[type="email"] {
  font-family: var(--body); font-size: 16px; padding: 14px 20px;
  border-radius: 100px; border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); color: var(--white); min-width: 300px;
}
.pilot-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.pilot-form input[type="email"]:focus { border-color: var(--green); outline: none; }
.form-note {
  margin-top: 18px; font-family: var(--mono); font-size: 12.5px;
  color: rgba(255,255,255,.5);
}

/* ---------- prose pages ---------- */
.page-head { background: var(--mist); padding: 72px 0 56px; }
.page-head h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 50px); letter-spacing: -1.2px; line-height: 1.08;
  max-width: 20ch;
}
.prose { max-width: 720px; }
.prose p { margin-bottom: 20px; color: #3B4652; }
.prose h3 { font-family: var(--display); font-size: 22px; letter-spacing: -.4px; margin: 36px 0 12px; }

/* ---------- footer ---------- */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.6); padding: 56px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px;
}
.footer .tag { margin-top: 14px; font-size: 14px; max-width: 30ch; }
.footer h4 {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer a { text-decoration: none; font-size: 14.5px; color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--green); }
.footer-legal {
  border-top: 1px solid var(--line-dark); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.4);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   MOTION + GLASS LAYER
   Glass recipe: white 7% fill · blur 20 · white 12% border
   ============================================================ */

/* ambient orbs in dark sections */
.hero, .section.dark { position: relative; isolation: isolate; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: -1; opacity: .55;
}
.orb.green {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(28,164,95,.55), transparent 65%);
  top: -160px; right: -120px;
  animation: drift1 16s ease-in-out infinite alternate;
}
.orb.blue {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(58,110,200,.4), transparent 65%);
  bottom: -240px; left: -180px;
  animation: drift2 20s ease-in-out infinite alternate;
}
.orb.small {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(28,164,95,.4), transparent 65%);
  top: 40%; left: 42%;
  animation: drift1 13s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-70px, 50px) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(80px, -60px) scale(1.08); }
}

/* glass surfaces */
.glass {
  background: rgba(255,255,255,.07) !important;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.15);
}

/* glass nav */
.nav {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(22,32,46,.08);
}

/* glass variant of the accountability card (for dark sections) */
.score-card.glass { color: var(--white); }
.score-card.glass::before { color: rgba(255,255,255,.45); }
.score-card.glass .sc-name { color: var(--white); }
.score-card.glass .sc-badge {
  background: rgba(28,164,95,.18); color: #7BE8AE;
}
.score-card.glass .sc-badge svg path { stroke: #7BE8AE; }
.score-card.glass .ring .track { stroke: rgba(255,255,255,.14); }
.score-card.glass .ring text { fill: var(--white); }
.score-card.glass .sc-rows { border-top-color: rgba(255,255,255,.14); }
.score-card.glass .sc-row { border-bottom-color: rgba(255,255,255,.14); color: rgba(255,255,255,.62); }
.score-card.glass .sc-row .val { color: var(--white); }
.score-card.glass .sc-row .val.good { color: #3ADB8B; }
.score-card.glass .sc-foot { color: rgba(255,255,255,.42); }

/* glass metric panel */
.metric-panel {
  border-radius: var(--radius); padding: 10px 28px;
}

/* floating hero card */
.floaty { animation: floatY 6.5s ease-in-out infinite alternate; will-change: transform; }
@keyframes floatY {
  from { transform: translateY(-8px); }
  to   { transform: translateY(10px); }
}
.tilt-target { transition: transform .18s ease-out; will-change: transform; transform-style: preserve-3d; }

/* tilt-on-hover cards */
.tilt { transition: transform .18s ease-out, border-color .15s ease; will-change: transform; }

/* glass chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 100px; padding: 8px 16px;
  font-family: var(--mono); font-size: 12.5px; color: rgba(255,255,255,.75);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 10px var(--green); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

@media (prefers-reduced-motion: reduce) {
  .orb, .floaty, .chip .dot { animation: none !important; }
  .tilt, .tilt-target { transition: none; }
}

/* ============================================================
   DEEP MOTION LAYER — entrances, counters, live feed
   ============================================================ */

/* hero entrance stagger */
.hero .eyebrow, .hero h1, .hero .lede, .hero .hero-ctas, .hero .chip-row, .hero .floaty {
  opacity: 0; transform: translateY(16px);
  animation: riseIn .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .eyebrow   { animation-delay: .05s; }
.hero h1         { animation-delay: .15s; }
.hero .lede      { animation-delay: .28s; }
.hero .hero-ctas { animation-delay: .40s; }
.hero .chip-row  { animation-delay: .52s; }
.hero .floaty    { animation-delay: .45s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }
/* floaty needs its float after the entrance finishes */
.hero .floaty { animation: riseIn .7s .45s cubic-bezier(.2,.7,.2,1) forwards,
                floatY 6.5s 1.2s ease-in-out infinite alternate; }

/* accent underline draw */
.hero h1 .accent {
  background: linear-gradient(var(--green), var(--green)) no-repeat left 96% / 0% 3px;
  padding-bottom: 4px;
  animation: underdraw .6s 1s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes underdraw { to { background-size: 100% 3px; } }

/* wordmark + badge checkmark draw */
.vcheck path, .sc-badge svg path {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: drawCheck .7s .4s ease-out forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

/* strikethrough draws across when the problem card reveals */
.problem .stat s { text-decoration: none; position: relative; color: var(--ink); }
.problem .stat s::after {
  content: ""; position: absolute; left: -2%; top: 52%; height: 3px; width: 0;
  background: #C0483B; border-radius: 2px;
  transition: width .55s cubic-bezier(.2,.7,.2,1) .25s;
}
.problem.in .stat s { color: var(--slate); transition: color .4s .5s; }
.problem.in .stat s::after { width: 104%; }

/* score-card metric rows cascade in when card plays */
.score-card .sc-row { opacity: 0; transform: translateX(-8px); }
.score-card.play .sc-row {
  animation: rowIn .45s cubic-bezier(.2,.7,.2,1) forwards;
}
.score-card.play .sc-row:nth-child(1) { animation-delay: .15s; }
.score-card.play .sc-row:nth-child(2) { animation-delay: .30s; }
.score-card.play .sc-row:nth-child(3) { animation-delay: .45s; }
.score-card.play .sc-row:nth-child(4) { animation-delay: .60s; }
@keyframes rowIn { to { opacity: 1; transform: none; } }

/* live activity line in the card */
.sc-live {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 9px 12px; border-radius: var(--radius-sm);
  background: var(--green-tint);
  font-family: var(--mono); font-size: 11.5px; color: var(--green-dark);
  overflow: hidden; white-space: nowrap;
}
.score-card.glass .sc-live { background: rgba(28,164,95,.14); color: #7BE8AE; }
.sc-live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); flex: none;
  animation: pulse 2.2s ease-in-out infinite;
}
.sc-live .sc-live-text { transition: opacity .3s ease, transform .3s ease; }
.sc-live .sc-live-text.swap { opacity: 0; transform: translateY(6px); }

/* magnetic buttons */
.magnet { transition: transform .15s ease-out; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero .lede, .hero .hero-ctas, .hero .chip-row, .hero .floaty {
    animation: none; opacity: 1; transform: none;
  }
  .hero h1 .accent { animation: none; background-size: 100% 3px; }
  .vcheck path, .sc-badge svg path { animation: none; stroke-dashoffset: 0; }
  .problem .stat s::after { transition: none; width: 104%; }
  .problem .stat s { color: var(--slate); }
  .score-card .sc-row { opacity: 1; transform: none; }
  .sc-live .dot { animation: none; }
}

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 68px; left: 0; z-index: 49;
  width: 100%; height: 3px; background: transparent; pointer-events: none;
}
.scroll-progress .bar {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--green), #3ADB8B);
  box-shadow: 0 0 12px rgba(28,164,95,.55);
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress .bar { box-shadow: none; }
}

/* ---------- form states + role select ---------- */
.form-success {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 15px; color: #7BE8AE;
  padding: 14px 22px; border-radius: 100px;
  background: rgba(28,164,95,.14); border: 1px solid rgba(28,164,95,.35);
}
.form-success svg { width: 16px; height: 16px; }
.form-success svg path { fill: none; stroke: #7BE8AE; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.contact-form .form-success { color: var(--green-dark); background: var(--green-tint); border-color: var(--green); }
.contact-form .form-success svg path { stroke: var(--green-dark); }
.form-error {
  width: 100%; text-align: center; margin-top: 12px;
  font-family: var(--mono); font-size: 13px; color: #F0A9A0;
}
.contact-form .form-error { text-align: left; color: #C0483B; }
.pilot-form select {
  font-family: var(--body); font-size: 16px; padding: 14px 18px;
  border-radius: 100px; border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); color: var(--white);
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
.pilot-form select:focus { border-color: var(--green); outline: none; }
.pilot-form select option { color: var(--ink); }

/* ---------- image wordmark ---------- */
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; }
.logo-img.foot { height: 46px; }
.footer .tag { margin-top: 16px; }
/* 404 hero logo sizing */
.hero .logo-img.foot { height: 56px; margin: 0 auto; }
