/* ============================================================
   VERIDIAN PAY — styles.css
   Single stylesheet: tokens → base → components → sections
   ============================================================ */

/* === TOKENS === */
:root {
  /* palette — layered viridian darks */
  --bg-900: #060D0B;
  --bg-800: #0A1512;
  --surface: #0F1E19;
  --surface-2: #132620;
  --border: #1C332A;
  --border-strong: #28453A;
  --viridian-600: #2E7A5E;
  --viridian-500: #40826D;
  --mint-400: #5CE0A8;
  --mint-300: #9CF3CF;
  --ink-100: #ECF6F1;
  --ink-300: #A9C4B9;
  --ink-500: #6F8B80;
  --cta-ink: #06231A;
  --grad-brand: linear-gradient(135deg, #9CF3CF 0%, #2E7A5E 100%);

  /* type */
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* spacing (8-pt) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* shape */
  --r-input: 10px;
  --r-card: 16px;
  --r-pill: 999px;

  --container: 1140px;
  --header-h: 76px;
}

/* === RESET / BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg-900);
  color: var(--ink-300);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-100);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
  letter-spacing: 0;
}

p {
  margin: 0 0 var(--s-2);
}

a {
  color: var(--mint-400);
  text-decoration: none;
}

a:hover {
  color: var(--mint-300);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--mint-300);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--viridian-600);
  color: var(--ink-100);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section--alt {
  background: var(--bg-800);
  border-block: 1px solid var(--border);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 10px 18px;
  background: var(--mint-400);
  color: var(--cta-ink);
  border-radius: 0 0 var(--r-input) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  color: var(--cta-ink);
}

/* typographic voices */
.eyebrow {
  display: block;
  margin-bottom: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-400);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 46rem;
}

.mono {
  font-family: var(--font-mono);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p {
  margin-bottom: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.7em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--mint-400);
  color: var(--cta-ink);
}

.btn-primary:hover {
  background: var(--mint-300);
  color: var(--cta-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(92, 224, 168, 0.25);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--ink-100);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--mint-400);
  color: var(--mint-300);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
}

.link-arrow svg {
  transition: transform 0.2s ease;
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(6, 13, 11, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-100);
}

.brand:hover {
  color: var(--ink-100);
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-word em {
  font-style: normal;
  color: var(--mint-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav-links a {
  position: relative;
  padding-block: 6px;
  color: var(--ink-300);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink-100);
}

.nav-links a[aria-current="page"] {
  color: var(--ink-100);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--mint-400);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-input);
  background: transparent;
  color: var(--ink-100);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  pointer-events: none;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* === HERO (home) === */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8.5rem) clamp(4rem, 8vw, 7rem);
}

.hero-glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(64, 130, 109, 0.34) 0%,
    rgba(46, 122, 94, 0.14) 42%,
    transparent 70%
  );
  pointer-events: none;
  will-change: transform;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  margin-bottom: var(--s-3);
}

.hero .lead {
  margin-bottom: var(--s-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

/* signature: registry ledger plate */
.ledger {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-800) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 2.1;
  color: var(--ink-300);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.ledger::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: var(--r-card) 0 0 var(--r-card);
  background: var(--grad-brand);
}

.ledger-title {
  display: flex;
  justify-content: space-between;
  gap: var(--s-2);
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint-400);
}

.ledger-row {
  display: flex;
  align-items: baseline;
  gap: 0.75ch;
  white-space: nowrap;
}

.ledger-row dt {
  color: var(--ink-500);
  flex-shrink: 0;
}

.ledger-row .dots {
  flex: 1;
  min-width: 2ch;
  border-bottom: 1px dotted var(--border-strong);
  transform: translateY(-0.35em);
}

.ledger-row dd {
  margin: 0;
  color: var(--ink-100);
  flex-shrink: 0;
}

.ledger dl {
  margin: 0;
}

/* === TRUST STRIP === */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-800);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  padding-block: var(--s-4);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item .mono {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.trust-item strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink-100);
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: border-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  border-color: rgba(92, 224, 168, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.card h3 {
  margin-bottom: 0;
}

.card p {
  margin-bottom: 0;
  flex-grow: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--mint-400);
}

/* === STEPS (how we work) === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: var(--s-3);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--mint-400);
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: calc(-1 * var(--s-3));
  height: 1px;
  background: var(--border-strong);
}

.step:last-child::after {
  right: 0;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* === WHY LIST === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-5);
}

.why-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: var(--s-2);
}

.why-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.55rem;
  border-radius: 3px;
  background: var(--grad-brand);
}

.why-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.why-item p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

/* === CTA BAND === */
.cta-band {
  position: relative;
  border-radius: calc(var(--r-card) + 4px);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(156, 243, 207, 0.55),
    rgba(46, 122, 94, 0.4) 45%,
    var(--border) 80%
  );
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  border-radius: var(--r-card);
  padding: clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--bg-800) 70%);
}

.cta-band h2 {
  margin-bottom: 0.4rem;
}

.cta-band p {
  margin-bottom: 0;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-800);
  padding-block: var(--s-6) var(--s-4);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.footer-brand p {
  margin: var(--s-2) 0 0.5rem;
  max-width: 26rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: var(--s-2);
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: var(--ink-300);
}

.footer-col a:hover {
  color: var(--mint-300);
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: var(--s-3);
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--ink-500);
}

.footer-legal p {
  margin: 0;
}

/* === SUBPAGE HERO === */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(
      900px 340px at 85% -60px,
      rgba(64, 130, 109, 0.22),
      transparent 70%
    ),
    var(--bg-900);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: var(--s-2);
}

.page-hero .lead {
  margin-bottom: 0;
}

/* === FACTS TABLE === */
.facts {
  overflow-x: auto;
}

.facts table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.facts th,
.facts td {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.facts th {
  width: 34%;
  min-width: 200px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  background: var(--bg-800);
}

.facts td {
  color: var(--ink-100);
  background: var(--surface);
}

/* === SERVICE DETAIL === */
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.service-detail + .service-detail {
  border-top: 1px solid var(--border);
}

.service-detail h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.included {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}

.included h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: var(--s-2);
}

.included li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--ink-300);
}

.included li:last-child {
  margin-bottom: 0;
}

.included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.note-strip {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  padding: var(--s-3);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  font-size: 0.92rem;
}

.note-strip svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--mint-400);
}

.note-strip p {
  margin: 0;
}

/* === DOC CARDS === */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: clamp(1.6rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  color: var(--ink-300);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.doc-card:hover {
  border-color: rgba(92, 224, 168, 0.35);
  transform: translateY(-3px);
  color: var(--ink-300);
}

.doc-card h3 {
  margin-bottom: 0;
}

.doc-card p {
  margin-bottom: 0;
  flex-grow: 1;
  font-size: 0.95rem;
}

.doc-card .link-arrow {
  color: var(--mint-400);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(1.6rem, 3vw, 2.1rem);
}

.contact-card h3 {
  font-size: 1.05rem;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: var(--s-3);
}

.contact-card dt:first-of-type {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.3rem 0 0;
  color: var(--ink-100);
}

/* === FORMS === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-3);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-100);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-800);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-input);
  color: var(--ink-100);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-500);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mint-400);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--mint-400);
  flex-shrink: 0;
}

.form-actions {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-input);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--ink-100);
  font-size: 0.95rem;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-error {
  border-color: #8a4b3d;
  background: #1e100c;
}

/* honeypot — visually removed, still in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === PROSE (legal pages) === */
.prose {
  max-width: 46rem;
}

.prose h2 {
  font-size: 1.45rem;
  margin-top: var(--s-5);
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose ul {
  list-style: none;
  margin: 0 0 var(--s-2);
  padding: 0;
}

.prose li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--viridian-500);
}

.prose .updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-500);
  margin-bottom: var(--s-4);
}

/* === REVEAL === */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.js [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-glow {
    transform: none !important;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .ledger {
    max-width: 560px;
  }

  .card-grid,
  .doc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--s-4);
  }

  .step:nth-child(2)::after {
    right: 0;
  }

  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--s-2) clamp(20px, 5vw, 40px) var(--s-4);
    min-height: calc(100vh - var(--header-h));
    background: var(--bg-900);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .nav-links a[aria-current="page"] {
    color: var(--mint-400);
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }

  .card-grid,
  .doc-grid,
  .steps,
  .why-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .step::after {
    right: 0;
  }

  .ledger {
    font-size: 0.72rem;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
