/* ============================================================
   Afinitiv — v8 · Plaid-faithful for real this time
   Full-bleed dark gradient hero · floating pill nav · engraved
   $100 bill (compass rose centre) with iridescent holo strip
   ============================================================ */

:root {
  /* Foundation */
  --white: #ffffff;
  --paper: #fafaf7;
  --line: #ececec;
  --line-strong: #d8d8d8;

  /* Ink */
  --ink: #0a0a0a;
  --ink-soft: #3a3a3a;
  --ink-mute: #6a6a6a;
  --ink-faint: #98a0aa;

  /* Brand blue */
  --blue: #004878;
  --blue-deep: #003253;
  --blue-bright: #0072b8;
  --blue-soft: #e9f2f9;
  --blue-line: rgba(0, 72, 120, 0.18);

  /* HERO GRADIENT — deep ocean → Caribbean teal (Plaid pattern) */
  --hero-1: #051a30;
  --hero-2: #0a2c54;
  --hero-3: #0f4576;
  --hero-4: #176c98;
  --hero-5: #2899b1;

  /* HOLOGRAPHIC accent palette — the "iridescent strip" colours */
  --holo-mint:   #c4f3da;
  --holo-spring: #a3eec9;
  --holo-sky:    #b8e4ff;
  --holo-lilac:  #d6c7ff;
  --holo-rose:   #ffc9e8;
  --holo-peach:  #ffd2b0;
  --holo-gold:   #ffe89a;

  /* Legacy iri aliases — still used by solution cards, stats strip, close banner */
  --iri-1: var(--holo-sky);
  --iri-2: var(--holo-lilac);
  --iri-3: var(--holo-rose);
  --iri-4: var(--holo-gold);
  --iri-5: var(--holo-mint);

  /* Currency illustration palette */
  --bill-paper:  #f4eedd;
  --bill-paper-2:#e7debe;
  --bill-ink:    #0d3e60;
  --bill-ink-2:  #0a2f49;
  --bill-gold:   #b89764;

  /* Layout */
  --container: 1240px;
  --container-text: 760px;
  --nav-pill-max: 1320px;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
::selection { background: var(--blue); color: var(--white); }

/* ====================================================================
   Layout
   ==================================================================== */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-text { max-width: var(--container-text); margin: 0 auto; padding: 0 32px; }

.section { padding: 128px 0; position: relative; }
.section-paper { background: var(--paper); }

/* ====================================================================
   Type primitives
   ==================================================================== */

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.kicker::before {
  content: ''; width: 28px; height: 1px;
  background: currentColor; opacity: 0.7;
}

.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.section-title .accent { color: var(--blue); }

.section-sub {
  font-size: 1.1875rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 620px;
}
.section-head.center .section-sub { margin: 0 auto; }

/* ====================================================================
   HERO SHELL — full-bleed dark gradient that wraps nav + hero + trust
   ==================================================================== */

.hero-shell {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(120% 80% at 85% 10%, rgba(40, 153, 177, 0.55) 0%, rgba(40, 153, 177, 0) 60%),
    radial-gradient(90% 90% at 0% 100%, rgba(15, 69, 118, 0.65) 0%, rgba(15, 69, 118, 0) 60%),
    linear-gradient(140deg, var(--hero-1) 0%, var(--hero-2) 38%, var(--hero-3) 65%, var(--hero-4) 88%, var(--hero-5) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Topographic wave-line pattern (Plaid-style) */
.hero-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
  z-index: 0;
}
.hero-pattern svg { width: 100%; height: 100%; display: block; }

/* ====================================================================
   FLOATING PILL NAV — sits inside the dark gradient
   ==================================================================== */

.nav-pill-wrap {
  position: relative;
  z-index: 50;
  padding: 22px 24px 0;
}

.nav-pill {
  max-width: var(--nav-pill-max);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 8px 8px 26px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow:
    0 24px 60px rgba(5, 20, 40, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  height: 64px;
}

.nav-pill .wordmark img { height: 28px; width: auto; }

.nav-pill-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: 18px;
}
.nav-pill-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a2330;
  transition: color 0.15s;
}
.nav-pill-links a:hover { color: var(--blue); }

.nav-pill-spacer { flex: 1; }

.nav-pill-actions { display: flex; align-items: center; gap: 8px; }

/* Pill button — ghost (white pill with holographic outline) */
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.2s, opacity 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.pill-btn .arrow { transition: transform 0.25s; }
.pill-btn:hover .arrow { transform: translateX(3px); }
.pill-btn:hover { transform: translateY(-1px); }

.pill-btn-ghost {
  color: #1a2330;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--holo-sky), var(--holo-lilac), var(--holo-rose), var(--holo-mint)) border-box;
}

.pill-btn-dark {
  color: #ffffff;
  background:
    linear-gradient(#08111e, #08111e) padding-box,
    linear-gradient(135deg, var(--holo-spring), var(--holo-sky), var(--holo-lilac), var(--holo-rose), var(--holo-gold)) border-box;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.pill-btn-dark:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32); }

/* ====================================================================
   BACKGROUND ENGRAVING — compass rose + bill text elements rendered
   directly into the gradient (Plaid Franklin pattern)
   ==================================================================== */

.hero-engraving {
  position: absolute;
  top: 0;
  left: 32%;
  right: -8%;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-engraving svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bill-compass-rose { animation: rose-pulse 14s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes rose-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

/* The diagonal iridescent strip washing across the engraving (Plaid pattern) */
.hero-holo-strip {
  position: absolute;
  top: -12%;
  left: 42%;
  width: 260px;
  height: 130%;
  background: linear-gradient(180deg,
    var(--holo-mint) 0%,
    var(--holo-spring) 22%,
    var(--holo-sky) 45%,
    var(--holo-lilac) 70%,
    var(--holo-rose) 100%);
  transform: rotate(-12deg);
  mix-blend-mode: screen;
  filter: blur(6px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.78;
  animation: holo-shift 9s ease-in-out infinite alternate;
}
@keyframes holo-shift {
  0%   { transform: rotate(-12deg) translateX(0); }
  100% { transform: rotate(-12deg) translateX(24px); }
}

/* ====================================================================
   HERO content (inside .hero-shell)
   ==================================================================== */

.hero {
  position: relative;
  z-index: 3;
  padding: 88px 0 120px;
}

.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--holo-sky);
  box-shadow: 0 0 10px var(--holo-sky);
}

.hero-title {
  font-size: clamp(2.85rem, 6.6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero-title .holo {
  background: linear-gradient(110deg,
    var(--holo-mint) 0%,
    var(--holo-spring) 25%,
    var(--holo-sky) 50%,
    var(--holo-lilac) 75%,
    var(--holo-rose) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.cta-pill .arrow { transition: transform 0.25s; }
.cta-pill:hover .arrow { transform: translateX(4px); }
.cta-pill:hover { transform: translateY(-1px); }

.cta-pill-white {
  color: #08111e;
  background: rgba(255, 255, 255, 0.96);
}
.cta-pill-white:hover { background: #ffffff; box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22); }

.cta-pill-dark {
  color: #ffffff;
  background:
    linear-gradient(#08111e, #08111e) padding-box,
    linear-gradient(135deg, var(--holo-spring), var(--holo-sky), var(--holo-lilac), var(--holo-rose), var(--holo-gold)) border-box;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.cta-pill-dark:hover { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4); }

/* ====================================================================
   HERO TRUST STRIP — partner-logo-row at the bottom of the dark hero
   ==================================================================== */

.hero-trust-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px 0;
}
.hero-trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-trust-strip .trust-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.hero-trust-items {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-trust-pill svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.85; }
.hero-trust-pill .mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--holo-sky);
}

/* ====================================================================
   Legacy .btn classes — kept for non-hero sections (close-banner CTAs)
   ==================================================================== */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  color: var(--white);
  background: #08111e;
  border-color: #08111e;
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 72, 120, 0.25);
}

.btn-ghost {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--blue); color: var(--blue); }

.btn-lg { padding: 15px 26px; font-size: 1rem; }

/* ====================================================================
   Solution cards (4) — Plaid's "Powered by largest network" pattern
   ==================================================================== */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-line);
  box-shadow: 0 24px 48px rgba(10, 10, 10, 0.06);
}

/* Iridescent corner accent */
.solution-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: conic-gradient(from 180deg,
    var(--iri-1), var(--iri-2), var(--iri-3), var(--iri-4), var(--iri-5), var(--iri-1));
  opacity: 0.4;
  filter: blur(30px);
  pointer-events: none;
  transition: opacity 0.4s;
}
.solution-card:hover::before { opacity: 0.6; }

.solution-illu {
  width: 80px; height: 80px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.solution-illu svg { width: 100%; height: 100%; }

.solution-card h3 {
  font-size: 1.4375rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.solution-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  position: relative; z-index: 1;
  margin-bottom: 18px;
}

.solution-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 4px;
  position: relative; z-index: 1;
}
.solution-link .arrow { transition: transform 0.25s; }
.solution-card:hover .solution-link .arrow { transform: translateX(3px); }

/* ====================================================================
   Method — clean numbered flow
   ==================================================================== */

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.method-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
}

.method-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.method-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

.method-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ====================================================================
   Account types — directory rows
   ==================================================================== */

.directory {
  border-top: 1px solid var(--ink);
}
.dir-row {
  display: grid;
  grid-template-columns: 180px 1fr 380px 130px;
  gap: 32px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background 0.2s;
}
.dir-row:hover { background: var(--paper); }
.dir-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); padding-top: 6px;
}
.dir-title {
  font-size: 1.375rem; font-weight: 500; letter-spacing: -0.015em; color: var(--ink);
}
.dir-desc {
  font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55;
}
.dir-action {
  text-align: right; font-family: var(--font-sans);
  font-size: 0.9375rem; font-weight: 500; padding-top: 4px;
}
.dir-action a {
  color: var(--ink); border-bottom: 1px solid var(--blue);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.dir-action a:hover { color: var(--blue); }
.dir-action .arrow { display: inline-block; transition: transform 0.25s; margin-left: 4px; }
.dir-action a:hover .arrow { transform: translateX(3px); }

/* ====================================================================
   Stats / social-proof strip (Plaid pattern)
   ==================================================================== */

.stats-strip {
  padding: 96px 0;
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  width: 800px; height: 400px;
  transform: translateX(-50%);
  background: conic-gradient(from 0deg, var(--iri-1), var(--iri-2), var(--iri-3), var(--iri-4), var(--iri-5), var(--iri-1));
  opacity: 0.20;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative; z-index: 1;
}
.stat {
  text-align: left;
}
.stat-value {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 280px;
  line-height: 1.5;
}

/* ====================================================================
   CTA close
   ==================================================================== */

.close-banner {
  padding: 128px 0;
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.close-banner::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  width: 700px; height: 350px;
  transform: translateX(-50%);
  background: conic-gradient(from 0deg, var(--iri-1), var(--iri-2), var(--iri-3), var(--iri-4), var(--iri-5), var(--iri-1));
  opacity: 0.30;
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}
.close-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.close-banner h2 {
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.close-banner p {
  font-size: 1.1875rem;
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 520px;
}
.close-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ====================================================================
   Footer — Plaid-style 4-column light
   ==================================================================== */

.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 28px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.9375rem; color: var(--ink-mute);
  max-width: 300px; line-height: 1.55;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--ink-soft); font-size: 0.9375rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--blue); }

.footer-meta {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-family: var(--font-mono);
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.footer-disclaimer {
  font-size: 0.8125rem; line-height: 1.7;
  color: var(--ink-mute); margin-top: 24px; max-width: 920px;
}

/* ====================================================================
   Reveal animations
   ==================================================================== */

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ====================================================================
   Responsive
   ==================================================================== */

@media (max-width: 1000px) {
  .hero-engraving { left: 18%; opacity: 0.55; }
  .hero-holo-strip { left: 32%; width: 200px; opacity: 0.65; }
  .hero-text { max-width: none; }
  .nav-pill-links { display: none; }
  .nav-pill { padding-left: 20px; gap: 12px; }
  .solutions-grid { grid-template-columns: 1fr; gap: 16px; }
  .method-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dir-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 4px; }
  .dir-action { text-align: left; padding-top: 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 96px 0; }
  .hero { padding: 64px 0 72px; }
  .hero-trust-strip .container { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .nav-pill-wrap { padding: 14px 16px 0; }
  .nav-pill { padding: 6px 6px 6px 18px; height: 56px; }
  .nav-pill .wordmark img { height: 22px; }
  .pill-btn { padding: 8px 16px; font-size: 0.875rem; }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 56px; }
  .hero-engraving { left: 4%; opacity: 0.32; }
  .hero-holo-strip { left: 18%; width: 160px; opacity: 0.5; filter: blur(10px); }
  .method-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas .cta-pill { flex: 1; justify-content: center; }
  .close-actions .btn { flex: 1; justify-content: center; }
  .hero-trust-items { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
}
