/* ===========================================================
   INSIDER — Amazon Seller Services
   Dark luxe + warm gold + emerald accent
   =========================================================== */

:root {
  --bg: #07070A;
  --bg-2: #0C0C12;
  --surface: #11111A;
  --surface-2: #16162130;
  --line: rgba(212, 165, 116, 0.12);
  --line-strong: rgba(212, 165, 116, 0.28);

  --gold: #D4A574;
  --gold-bright: #F0D08A;
  --gold-deep: #8C6A3D;
  --emerald: #4ADE80;
  --emerald-deep: #1A3D2A;
  --ink: #F5F0E8;
  --ink-2: #B8B0A2;
  --ink-3: #6E685E;

  --shadow-1:
    0 1px 0 0 rgba(255, 230, 180, 0.04) inset,
    0 24px 48px -24px rgba(0, 0, 0, 0.8),
    0 8px 24px -12px rgba(212, 165, 116, 0.12);

  --shadow-gold:
    0 0 0 1px rgba(212, 165, 116, 0.18) inset,
    0 30px 80px -30px rgba(212, 165, 116, 0.35),
    0 12px 40px -16px rgba(0, 0, 0, 0.8);

  --rad-s: 10px;
  --rad: 18px;
  --rad-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  --t-fast: 220ms;
  --t: 420ms;
  --t-slow: 800ms;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }

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

body {
  font-family: "Manrope", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  min-height: 100vh;
}

body.lang-zh { font-family: "Noto Sans SC", "Manrope", sans-serif; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Selection */
::selection { background: var(--gold); color: #0a0a0a; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212, 165, 116, 0.18); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 165, 116, 0.32); }

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 200;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform var(--t-fast) var(--ease), background-color var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1208;
  box-shadow:
    0 0 0 1px rgba(255, 230, 180, 0.6) inset,
    0 1px 0 rgba(255, 250, 230, 0.7) inset,
    0 18px 40px -16px rgba(212, 165, 116, 0.6),
    0 30px 80px -30px rgba(212, 165, 116, 0.5);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #FFE0A8, var(--gold-bright));
  box-shadow:
    0 0 0 1px rgba(255, 230, 180, 0.8) inset,
    0 22px 50px -18px rgba(212, 165, 116, 0.8),
    0 40px 100px -36px rgba(240, 208, 138, 0.6);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 165, 116, 0.06);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px var(--pad);
  transition: backdrop-filter var(--t) var(--ease), background-color var(--t) var(--ease), padding var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 7, 10, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px var(--pad);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav__mark {
  color: var(--gold);
  display: inline-flex;
  filter:
    drop-shadow(0 0 10px rgba(240, 208, 138, 0.26))
    drop-shadow(0 5px 12px rgba(0, 0, 0, 0.45));
}
.nav__mark img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}
.nav__name {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
}

.nav__links {
  display: flex;
  gap: 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.nav__links a {
  color: var(--ink-2);
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .btn--ghost { display: none; }
  .nav__links.is-mobile-open {
    display: flex;
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    background: rgba(7, 7, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 40px var(--pad);
    gap: 24px;
    font-size: 24px;
    font-family: "Unbounded", sans-serif;
  }
}

/* Lang */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.lang__btn:hover { border-color: var(--gold); color: var(--gold-bright); }
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad-s);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility 0s linear var(--t);
  box-shadow: var(--shadow-1);
}
.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.lang__menu button {
  display: block;
  width: 100%;
  padding: 9px 12px;
  text-align: left;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang__menu button:hover {
  background: rgba(212, 165, 116, 0.08);
  color: var(--gold-bright);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 75% 30%, rgba(212, 165, 116, 0.18), transparent 70%),
    radial-gradient(45% 40% at 20% 75%, rgba(74, 222, 128, 0.08), transparent 70%),
    radial-gradient(80% 60% at 50% 100%, rgba(7, 7, 10, 0.9), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Hero title legibility against the animated command center */
.hero__title {
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(0, 0, 0, 0.7);
}
.hero__title .line:nth-child(2) span {
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.8));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(212, 165, 116, 0.45);
  border-radius: 999px;
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse 2s infinite;
}
.dot--gold {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero__title {
  font-family: "Unbounded", "Noto Sans SC", serif;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line span {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__title .line:nth-child(2) span {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 600;
}

.hero__sub {
  max-width: 580px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 44px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
@media (max-width: 700px) {
  .hero__canvas {
    opacity: 0.48;
    transform: translateY(48px);
  }
  .hero__glow {
    background:
      linear-gradient(180deg, rgba(7, 7, 10, 0.92) 0%, rgba(7, 7, 10, 0.58) 42%, rgba(7, 7, 10, 0.94) 100%),
      radial-gradient(95% 42% at 70% 72%, rgba(212, 165, 116, 0.16), transparent 70%),
      radial-gradient(70% 35% at 24% 82%, rgba(74, 222, 128, 0.08), transparent 70%);
  }
  .hero__sub { margin-top: 28px; }
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero__trustNum {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero__trustText {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

.hero__scroll {
  position: absolute;
  bottom: 80px; right: var(--pad);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  z-index: 1;
}
.hero__scrollLine {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scrollLine::after {
  content: "";
  position: absolute;
  top: 0; left: -60px;
  width: 30px; height: 1px;
  background: var(--gold-bright);
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
  0%   { left: -30px; }
  100% { left: 60px; }
}

/* Marquee */
.marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  background: rgba(7, 7, 10, 0.6);
  backdrop-filter: blur(8px);
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  animation: marq 40s linear infinite;
}
.marquee__track span { padding-right: 48px; }
@keyframes marq {
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .hero__scroll { display: none; }
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 100px; }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 0 var(--pad);
}
.section-head__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section-head__title {
  font-family: "Unbounded", "Noto Sans SC", serif;
  font-weight: 600;
  font-size: clamp(32px, 5.6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-head__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head__sub {
  max-width: 600px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   INSIDER (FLAGSHIP)
   ============================================================ */
.insider {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.insider::before {
  content: "";
  position: absolute;
  inset: 0 0 60% 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(212, 165, 116, 0.08), transparent 70%);
  pointer-events: none;
}
.insider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(212, 165, 116, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 165, 116, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
  animation: grid-drift 18s linear infinite;
}

.insider__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insider__card {
  position: relative;
  padding: 28px 26px 32px;
  border-radius: var(--rad);
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.04), rgba(212, 165, 116, 0.01));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), background-color var(--t) var(--ease);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.insider__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at var(--mx, 50%) var(--my, 0%), rgba(212, 165, 116, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}
.insider__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.insider__card:hover::before { opacity: 1; }

.insider__card--lg {
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.02)),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border-color: var(--line-strong);
  min-height: 260px;
}

.insider__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.insider__card h3 {
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.insider__card p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: auto;
}

.insider__chip {
  align-self: flex-start;
  margin-top: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.06);
  color: var(--emerald);
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-transform: uppercase;
}

.insider__cta {
  grid-column: span 2;
  padding: 28px 32px;
  border-radius: var(--rad);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1208;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease);
}
.insider__cta::after {
  content: "→";
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  font-weight: 300;
  margin-left: auto;
  transition: transform var(--t) var(--ease);
}
.insider__cta:hover { transform: translateY(-4px); }
.insider__cta:hover::after { transform: translateX(8px); }

.insider__ctaLabel {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.insider__ctaTitle {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
}

@media (max-width: 1100px) {
  .insider__grid { grid-template-columns: repeat(2, 1fr); }
  .insider__card--lg, .insider__cta { grid-column: span 2; }
}
@media (max-width: 600px) {
  .insider__grid { grid-template-columns: 1fr; }
  .insider__card--lg, .insider__cta { grid-column: span 1; }
  .insider__cta::after { font-size: 44px; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0 100px;
  position: relative;
}
.stats__head {
  max-width: var(--max);
  margin: 0 auto 48px;
  padding: 0 var(--pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stats__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.stats__title {
  font-family: "Unbounded", "Noto Sans SC", serif;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stats__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
@media (max-width: 800px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stats__grid--two { grid-template-columns: repeat(2, 1fr); }
.stats__grid--two .stat:nth-child(odd)  { border-right: 1px solid var(--line); }
.stats__grid--two .stat:nth-child(even) { border-right: 0; }
@media (max-width: 600px) {
  .stats__grid--two { grid-template-columns: 1fr; }
  .stats__grid--two .stat:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--line); }
}
.stats__grid--three { grid-template-columns: repeat(3, 1fr); }
.stats__grid--three .stat:nth-child(3n) { border-right: 0; }
.stats__grid--three .stat:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
@media (max-width: 800px) {
  .stats__grid--three { grid-template-columns: 1fr; }
  .stats__grid--three .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stats__grid--three .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0 120px; }
.faq__list {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--rad);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__item[open] {
  border-color: rgba(212, 165, 116, 0.4);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(212, 165, 116, 0.06), transparent 60%),
    var(--surface);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item p {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 760px;
}

/* Escrow card — distinguished trust card */
.bento__card--escrow {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(74, 222, 128, 0.10), transparent 60%),
    radial-gradient(120% 90% at 0% 100%, rgba(212, 165, 116, 0.10), transparent 60%),
    var(--surface);
  border-color: rgba(212, 165, 116, 0.35);
}
.bento__chipNew {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #0a0a0a;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ============================================================
   SERVICES (BENTO)
   ============================================================ */
.services { padding: 100px 0 120px; }

.service-accordion { display: none; }

.service-hub {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-hub__card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.service-hub__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(240, 208, 138, 0.16) 47%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}
.service-hub__card::after {
  content: "Open";
  position: absolute;
  right: 20px;
  top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.service-hub__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(212, 165, 116, 0.12), transparent 58%),
    var(--surface);
}
.service-hub__card:hover::before {
  opacity: 1;
  animation: scan-sweep 900ms var(--ease) forwards;
}
.service-hub__card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.service-hub__card--featured {
  grid-column: span 2;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(212, 165, 116, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.01)),
    var(--surface);
}
.service-hub__card--danger {
  border-color: rgba(240, 110, 95, 0.28);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(240, 110, 95, 0.12), transparent 58%),
    var(--surface);
}
.service-hub__num,
.service-detail__eyebrow,
.service-hub__count {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-hub__card h3 {
  margin: 36px 0 12px;
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.12;
  color: var(--ink);
}
.service-hub__card p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.service-hub__count {
  color: var(--ink-3);
  margin-top: 26px;
}

.service-page {
  padding: 140px var(--pad) 110px;
  position: relative;
  overflow: hidden;
}
.service-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(212, 165, 116, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 165, 116, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(70% 48% at 72% 10%, #000, transparent 76%);
  animation: grid-drift 22s linear infinite;
}
.service-page::after {
  content: "";
  position: absolute;
  top: 102px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(135deg, transparent 48%, rgba(240, 208, 138, 0.55) 49%, transparent 51%),
    linear-gradient(45deg, transparent 48%, rgba(74, 222, 128, 0.24) 49%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(212, 165, 116, 0.1) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(212, 165, 116, 0.16);
  transform: rotate(12deg);
  animation: quiet-rotate 26s linear infinite;
}
.service-detail {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service-detail__back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--ink-2);
  font-size: 14px;
  transition: color var(--t-fast) var(--ease);
}
.service-detail__back:hover { color: var(--gold); }
.service-detail__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.service-detail__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform-origin: left;
  animation: hero-rail 3.8s var(--ease) infinite;
}
.service-detail__hero h1 {
  margin-top: 14px;
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
}
.service-detail__lead {
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}
.service-detail__summary {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  background: var(--surface);
}
.service-detail__summary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 48%, rgba(240, 208, 138, 0.1) 52%, transparent 62%);
  transform: translateX(-120%);
  animation: scan-sweep 4.8s var(--ease) infinite;
  pointer-events: none;
}
.service-detail__summary strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  color: var(--ink);
}
.service-detail__summary p {
  color: var(--ink-2);
  font-size: 14.5px;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.service-detail__item {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--rad-s);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(17, 17, 26, 0.78);
}
.service-detail__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 208, 138, 0.5), transparent);
  transform: translateX(-70%);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.service-detail__item:hover::after {
  opacity: 1;
  animation: scan-sweep 1.1s var(--ease) forwards;
}
.service-detail__item--wide {
  grid-column: span 2;
}
.service-detail__item--popular {
  position: relative;
  border-color: rgba(212, 165, 116, 0.34);
  background:
    radial-gradient(95% 75% at 100% 0%, rgba(212, 165, 116, 0.12), transparent 58%),
    rgba(17, 17, 26, 0.9);
}
.service-detail__badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #140f08;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-detail__item h2 {
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}
.service-detail__item p {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.58;
}
.service-detail__list {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}
.service-detail__list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}
.service-detail__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.service-detail__note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-style: italic;
  opacity: 0.85;
}
.pricing-page .service-detail__hero h1 {
  font-size: clamp(42px, 6vw, 82px);
}
.pricing-page .service-detail__hero {
  grid-template-columns: 1fr;
}
.pricing-board {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.pricing-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(17, 17, 26, 0.82);
}
.pricing-group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.pricing-group__head span {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.pricing-group__head h2 {
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--ink);
}
.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 210px);
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}
.pricing-row:last-child {
  border-bottom: 0;
}
.pricing-row strong {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}
.pricing-row span {
  justify-self: end;
  min-width: 142px;
  padding: 9px 12px;
  border: 1px dashed rgba(212, 165, 116, 0.34);
  border-radius: 10px;
  color: var(--gold-bright);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  background: rgba(212, 165, 116, 0.06);
}
.pricing-row--hot {
  background: linear-gradient(90deg, rgba(212, 165, 116, 0.12), transparent 68%);
}
@media (max-width: 640px) {
  .service-detail__list { grid-template-columns: 1fr; }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pricing-row span {
    justify-self: start;
  }
  .service-page::after {
    width: 260px;
    height: 260px;
    right: -90px;
    top: 120px;
    opacity: 0.18;
  }
}

@keyframes scan-sweep {
  to { transform: translateX(120%); }
}
@keyframes grid-drift {
  to { background-position: 144px 144px; }
}
@keyframes quiet-rotate {
  to { transform: rotate(372deg); }
}
@keyframes hero-rail {
  0%, 100% { transform: scaleX(0.12); opacity: 0.3; }
  50% { transform: scaleX(1); opacity: 0.72; }
}

@media (max-width: 1100px) {
  .service-hub { grid-template-columns: repeat(2, 1fr); }
  .service-detail__hero { grid-template-columns: 1fr; }
  .service-detail__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-hub { grid-template-columns: 1fr; }
  .service-hub__card--featured { grid-column: span 1; }
  .service-hub__card { min-height: 220px; }
  .service-page { padding-top: 110px; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__item--wide { grid-column: span 1; }
}

.bento {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento__card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--rad);
  background: linear-gradient(180deg, var(--surface), rgba(14, 14, 20, 0.4));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 320px;
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.bento__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.bento__card--wide { grid-column: span 2; }
.bento__card--accent {
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.06), rgba(212, 165, 116, 0.01)),
    var(--surface);
  border-color: var(--line-strong);
}

.bento__top { display: flex; flex-direction: column; gap: 10px; }
.bento__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.bento__card h3 {
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.bento__card p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 460px;
  line-height: 1.55;
}

.bento__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
  margin-top: auto;
}
.bento__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14.5px;
  font-family: "Manrope", "Noto Sans SC", sans-serif;
}
.bento__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--gold);
}

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 10% 0 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(212, 165, 116, 0.16) 18% 18.2%, transparent 18.2% 100%),
    linear-gradient(180deg, transparent 0 42%, rgba(74, 222, 128, 0.1) 42% 42.2%, transparent 42.2% 100%);
  background-size: 180px 120px;
  animation: grid-drift 24s linear infinite;
}
.process__list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process__list::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.process__step {
  padding: 28px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(17, 17, 26, 0.74), rgba(7, 7, 10, 0.92));
  border: 1px solid rgba(212, 165, 116, 0.08);
  overflow: hidden;
}
.process__step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, transparent 45%, rgba(240, 208, 138, 0.09), transparent 58%);
  transform: translateX(-110%);
  animation: scan-sweep 5.5s var(--ease) infinite;
  pointer-events: none;
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
}
.process__step h3 {
  font-family: "Unbounded", "Noto Sans SC", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.process__step p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .process__list { grid-template-columns: 1fr; gap: 24px; }
  .process__list::before { display: none; }
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta {
  padding: 120px var(--pad) 120px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 50% 0%, rgba(212, 165, 116, 0.18), transparent 70%),
    radial-gradient(50% 50% at 50% 100%, rgba(74, 222, 128, 0.06), transparent 70%);
  pointer-events: none;
}

.cta__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta__eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.cta__title {
  font-family: "Unbounded", "Noto Sans SC", serif;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.cta__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta__sub {
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 580px;
  margin: 0 auto 48px;
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--rad);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.channel:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.06), var(--surface));
}
.channel__icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.16), rgba(212, 165, 116, 0.04));
  color: var(--gold-bright);
  flex: 0 0 auto;
}
.channel__name {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 4px;
}
.channel__handle {
  font-size: 12.5px;
  color: var(--ink-2);
}
.channel__arrow {
  margin-left: auto;
  color: var(--ink-3);
  transition: transform var(--t) var(--ease), color var(--t) var(--ease);
}
.channel:hover .channel__arrow {
  color: var(--gold);
  transform: translate(3px, -3px);
}

.cta__note {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px var(--pad) 36px;
  background: var(--bg-2);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
}
.footer__logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  color: var(--ink);
}
.footer__tag {
  color: var(--ink-2);
  font-size: 14.5px;
  max-width: 360px;
  line-height: 1.55;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__cols h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__cols a {
  color: var(--ink-2);
  font-size: 14px;
  transition: color var(--t) var(--ease);
}
.footer__cols a:hover { color: var(--gold-bright); }

.footer__bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 500px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ANIMATIONS — reveal helpers
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line span { transform: none; }
}
