/* ============================================================
   RUSH — Design tokens
   ============================================================ */
:root {
  /* Surfaces */
  --bg: #0a0a0a;
  --bg-1: #0e0e0e;
  --bg-2: #161616;
  --bg-3: #1e1e1e;
  --bg-4: #262624;
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.055);

  /* Text */
  --text: #f0ece4;
  --cream: #fdf8f0;
  --muted: #918d86;
  --muted-2: #625f5a;

  /* Brand */
  --gold: #c9960c;
  --gold-light: #e8b830;
  --gold-dim: rgba(201, 150, 12, 0.18);
  --gold-glow: rgba(201, 150, 12, 0.35);
  --profit: #2eb85c;
  --profit-dim: rgba(46, 184, 92, 0.14);
  --loss: #d1554f;
  --loss-dim: rgba(209, 85, 79, 0.14);

  /* Lines */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(201, 150, 12, 0.35);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Space (8pt rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 450ms;

  --nav-h: 76px;
  --container: 1180px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.1; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus states — visible everywhere, styled to match brand */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection { background: var(--gold-dim); color: var(--cream); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-6); }
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-8);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-top: var(--sp-3);
  letter-spacing: -0.01em;
}

.section-head em {
  font-style: italic;
  color: var(--gold-light);
}

.section-head p {
  margin-top: var(--sp-4);
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center p { margin-inline: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-h: 52px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: var(--btn-h);
  padding-inline: var(--sp-5);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  touch-action: manipulation;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #17130a;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px -8px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 32px -8px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--card-hover);
  border-color: var(--border-strong);
}

.btn-link {
  height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--gold-light); border-color: var(--gold); }
.btn-link svg { transition: transform var(--dur-base) var(--ease-out); }
.btn-link:hover svg { transform: translateX(3px); }

.btn-sm { --btn-h: 44px; font-size: 14px; padding-inline: var(--sp-4); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base);
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur-base);
  position: relative;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }

.nav-badge {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.nav-badge svg { width: 14px; height: 14px; color: var(--gold-light); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-badge { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-1);
  padding: calc(var(--nav-h) + var(--sp-6)) var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
}
.mobile-menu .btn { align-self: flex-start; }

@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--sp-8));
  padding-bottom: var(--sp-9);
  overflow: clip;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 900px;
  z-index: -1;
  background:
    radial-gradient(600px 420px at 18% 10%, var(--gold-dim), transparent 70%),
    radial-gradient(500px 400px at 85% 25%, rgba(46,184,92,0.10), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: var(--sp-9);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-7); }
}

.hero-copy [data-reveal] { transition-delay: calc(var(--i, 0) * 80ms); }

.hero-copy .eyebrow { margin-bottom: var(--sp-4); }

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.hero-copy h1 .accent {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 60%, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: var(--sp-6);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}

.email-form {
  display: flex;
  gap: var(--sp-2);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px;
  max-width: 420px;
  width: 100%;
  transition: border-color var(--dur-base);
}
.email-form:focus-within { border-color: var(--border-gold); }

.email-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding-inline: var(--sp-4);
  font-size: 15px;
  color: var(--text);
}
.email-form input::placeholder { color: var(--muted-2); }
.email-form input:focus { outline: none; }

.email-form .btn { flex-shrink: 0; }

.form-note {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: var(--sp-3);
}

.form-status {
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--sp-3);
  display: none;
  align-items: center;
  gap: 8px;
}
.form-status.is-visible { display: flex; }
.form-status.is-success { color: var(--profit); }
.form-status.is-error { color: var(--loss); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.hero-stat { display: flex; align-items: center; gap: var(--sp-3); }

.hero-stat svg {
  width: 20px; height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.hero-stat b {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
}
.hero-stat span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

/* ---- Hero visual: phone + floating cards ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 375 / 780;
  border-radius: 42px;
  background: linear-gradient(160deg, #201d16, #0c0c0c 60%);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 60px -20px var(--gold-glow);
  padding: 12px;
  transform: rotateY(-10deg) rotateX(4deg);
  transition: transform var(--dur-slow) var(--ease-out);
  will-change: transform;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 16px 16px;
}

.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 20px;
  background: #050505;
  border-radius: var(--r-pill);
  z-index: 2;
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}
.phone-topbar b { font-family: var(--font-display); font-size: 15px; }
.phone-topbar .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border-gold); }

.phone-post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  margin-bottom: 10px;
}
.phone-post-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.phone-avatar { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }
.phone-post-head span { font-size: 11.5px; color: var(--muted); }
.phone-post-amount { font-family: var(--font-display); font-size: 20px; }
.phone-post-amount.profit { color: var(--profit); }
.phone-post-amount.loss { color: var(--loss); }
.phone-post-bar { height: 5px; border-radius: var(--r-pill); background: var(--bg-3); margin-top: 10px; overflow: hidden; }
.phone-post-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: inherit; }

.phone-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.phone-tabbar svg { width: 18px; height: 18px; color: var(--muted-2); }
.phone-tabbar .active svg { color: var(--gold-light); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  font-size: 13px;
  animation: float 6s ease-in-out infinite;
}
.float-card .badge {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.float-card b { font-family: var(--font-body); font-weight: 700; }
.float-card .h { display:block; color: var(--muted); font-size: 11px; }

.float-card.win { top: 8%; left: -8%; }
.float-card.win .badge { background: var(--profit-dim); color: var(--profit); }
.float-card.win b { color: var(--profit); }

.float-card.rank { bottom: 14%; right: -10%; animation-delay: -3s; }
.float-card.rank .badge { background: var(--gold-dim); color: var(--gold-light); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 420px) {
  .float-card { display: none; }
}

/* Ticker (session marquee) */
.ticker-wrap {
  margin-top: var(--sp-9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--sp-4);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: var(--sp-3);
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--border);
  white-space: nowrap;
  font-size: 13.5px;
}
.ticker-chip .badge {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #17130a;
}
.ticker-chip .amt { font-weight: 700; }
.ticker-chip .amt.profit { color: var(--profit); }
.ticker-chip .amt.loss { color: var(--loss); }
.ticker-chip .muted { color: var(--muted); }

/* ============================================================
   Features (bento grid)
   ============================================================ */
.features { padding-block: var(--sp-9); }

.bento {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento .card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .bento .card:nth-child(4) { grid-column: span 2; }
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--card-hover); }

.card-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
}
.card-icon svg { width: 22px; height: 22px; }

.card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-2);
  font-family: var(--font-display);
}
.card p { color: var(--muted); font-size: 14.5px; }

.bento .card:nth-child(1) h3 { font-size: 1.3rem; }
.bento .card:nth-child(1) p { max-width: 32ch; }

/* ============================================================
   How it works
   ============================================================ */
.how { padding-block: var(--sp-9); background: var(--bg-1); border-block: 1px solid var(--border); }

.steps {
  position: relative;
  z-index: 0;
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
  .steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 27px; left: 8%; right: 8%;
    height: 1px;
    background: var(--border);
  }
  .steps::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 27px; left: 8%;
    height: 1px;
    width: var(--line-progress, 0%);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 1.1s var(--ease-out);
  }
}

.step { position: relative; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1.1rem; margin-bottom: var(--sp-2); }
.step p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }

/* ============================================================
   App preview (tabbed illustration)
   ============================================================ */
.preview { padding-block: var(--sp-9); }

.preview-layout {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 960px) {
  .preview-layout { grid-template-columns: 0.85fr 1.15fr; }
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.tab-btn {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  text-align: left;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.tab-btn:hover { background: var(--card); }
.tab-btn.is-active {
  background: var(--card);
  border-color: var(--border);
}
.tab-btn .tab-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3);
  color: var(--muted);
  flex-shrink: 0;
  transition: background var(--dur-base), color var(--dur-base);
}
.tab-btn.is-active .tab-icon { background: var(--gold-dim); color: var(--gold-light); }
.tab-btn .tab-icon svg { width: 19px; height: 19px; }
.tab-btn h4 { font-size: 1rem; margin-bottom: 2px; }
.tab-btn p { font-size: 13.5px; color: var(--muted); }

.preview-stage {
  display: flex;
  justify-content: center;
  position: relative;
}

.preview-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(340px 340px at 50% 40%, var(--gold-dim), transparent 70%);
  z-index: -1;
}

.phone-screen.shots { padding: 0; }
.mock-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.mock-shot.is-active { opacity: 1; pointer-events: auto; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { padding-block: var(--sp-9); background: var(--bg-1); border-block: 1px solid var(--border); }

.t-grid {
  display: grid;
  gap: var(--sp-5);
}
@media (min-width: 780px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }

.t-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.stars { display: flex; gap: 3px; color: var(--gold-light); }
.stars svg { width: 15px; height: 15px; }

.t-card p { font-size: 15px; color: var(--text); flex: 1; }
.t-card p::before { content: "\201C"; }
.t-card p::after { content: "\201D"; }

.t-who { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #17130a;
  flex-shrink: 0;
}
.t-who b { display: block; font-size: 13.5px; }
.t-who span { display: block; font-size: 12.5px; color: var(--muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding-block: var(--sp-9);
  position: relative;
  overflow: clip;
}
.cta-panel {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-gold);
  padding: var(--sp-9) var(--sp-5);
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% -10%, var(--gold-dim), transparent 70%),
    var(--bg-2);
  overflow: hidden;
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--sp-3);
}
.cta-panel > p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto var(--sp-6);
  font-size: 1.05rem;
}

.cta-panel .email-form { margin-inline: auto; }
.cta-panel .form-note { text-align: center; }
.cta-panel .form-status { justify-content: center; }

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
.cta-badge svg { width: 15px; height: 15px; color: var(--gold-light); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-block: var(--sp-7);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: var(--sp-6); }
.footer-links a { font-size: 14px; color: var(--muted); transition: color var(--dur-base); }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--muted-2);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color var(--dur-base), border-color var(--dur-base);
}
.social-link svg { width: 17px; height: 17px; margin: auto; }
.social-link:hover { color: var(--gold-light); border-color: var(--border-gold); }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Stagger children */
[data-reveal-group] > * { transition-delay: calc(var(--stagger-i, 0) * 70ms); }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page { padding-top: calc(var(--nav-h) + var(--sp-8)); padding-bottom: var(--sp-9); }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: var(--sp-2); }
.legal-page .updated { color: var(--muted); font-size: 14px; margin-bottom: var(--sp-7); }
.legal-page h2 { font-family: var(--font-display); font-size: 1.4rem; margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.legal-page p { color: var(--muted); margin-bottom: var(--sp-3); }
.legal-page ul { margin: var(--sp-3) 0 var(--sp-3) 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.legal-page li { color: var(--muted); padding-left: var(--sp-4); position: relative; }
.legal-page li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.legal-page li b, .legal-page strong { color: var(--text); font-weight: 600; }
.legal-page a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: var(--sp-7); color: var(--muted); font-size: 14px; }
.legal-page .back-link:hover { color: var(--text); }
.legal-page .back-link svg { width: 15px; height: 15px; }
