/* ============================================================
   FINISIT — HOME PAGE
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  padding: calc(var(--nav-height) + var(--sp-8)) 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-hero);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,184,135,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none; z-index: 0;
}

.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: var(--sp-8);
  position: relative; z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

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

.hero__title {
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  /* Bumped from 0.93 — at hero font sizes, anything below 1.0 clips italic
     descenders (the "y" in Play, the slant of "tide" in italic) when the
     parent has overflow:hidden. 1.05 keeps the tight display look while
     reserving enough vertical room for descenders. */
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin-bottom: var(--sp-5);
  /* Safe area: 10% of font size below baseline so italic em descenders
     never touch the next element. */
  padding-bottom: 0.1em;
}
.hero__title em {
  font-style: italic; font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block;
}

.hero__lead {
  font-size: var(--text-md);
  color: var(--ivory-muted);
  max-width: 440px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-7);
}

.hero__actions {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
}

/* Shark fin emblem */
.hero__emblem {
  position: relative; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero__emblem::before {
  content: '';
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(212,184,135,0.2), transparent 65%);
  filter: blur(32px);
}
.hero__orbit {
  position: absolute; inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  animation: orbit-spin 40s linear infinite;
}
.hero__orbit--2 {
  inset: 12%; border-color: rgba(212,184,135,0.12);
  animation-duration: 60s; animation-direction: reverse;
}
.hero__orbit--3 {
  inset: 24%; border-color: rgba(95,212,232,0.07);
  animation-duration: 90s;
}
.hero__orbit::before {
  content: '';
  position: absolute; top: -3px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold), 0 0 28px rgba(212,184,135,0.35);
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero__fin {
  width: 56%;
  filter: drop-shadow(0 16px 56px rgba(212,184,135,0.4));
  animation: fin-float 6s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes fin-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Bottom ticker — fixed to the viewport so it stays visible across scroll
 * (Bloomberg/TradingView-style brand marquee). Body gets bottom padding
 * equal to the ticker height so page content isn't hidden behind it. */
.hero__ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border-soft);
  background: rgba(7,8,11,0.92);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  overflow: hidden;
  /* hairline shadow upward so it lifts off the canvas */
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.6);
}
body:has(.hero__ticker) { padding-bottom: var(--ticker-h, 46px); }
.hero__ticker-track {
  display: flex; gap: var(--sp-8);
  white-space: nowrap;
  animation: marquee-left 50s linear infinite;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--ivory-muted);
}
.hero__ticker-track span { display: inline-flex; align-items: center; gap: var(--sp-8); }
.hero__ticker-track b { font-weight: 400; color: var(--gold); }
@keyframes marquee-left { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__emblem { max-width: 300px; margin: var(--sp-6) auto 0; }
}
@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.75rem, 11vw, 4.5rem); }
}


/* ── TRUST BAND — sits between hero and stats, proves we're real ──── */
.trust-band {
  border-top: 1px solid var(--border-gold);
  background: linear-gradient(90deg,
    rgba(212,184,135,0.06) 0%,
    rgba(212,184,135,0.02) 50%,
    rgba(212,184,135,0.06) 100%);
  padding: 12px 0;
}
.trust-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
}
.trust-band__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ivory-muted);
  white-space: nowrap;
}
.trust-band__pill strong {
  color: var(--ivory);
  font-weight: 600;
}
.trust-band__sep {
  color: var(--ivory-dim);
  font-size: 11px;
}
@media (max-width: 600px) {
  .trust-band__pill { font-size: 10.5px; }
  .trust-band__sep { display: none; }
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid rgba(212,184,135,0.1);
  background: rgba(212,184,135,0.025);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  border-right: 1px solid rgba(212,184,135,0.08);
  display: flex; flex-direction: column; gap: 6px;
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, var(--text-2xl));
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  /* line-height:1 was clipping descenders on numbers like "$0.0088" with the
     "$" sitting below the number baseline. 1.15 leaves enough vertical room
     while keeping the stat block visually tight. */
  line-height: 1.15;
}
.stats-bar__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
@media (max-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3) {
    border-right: 1px solid rgba(212,184,135,0.08);
    border-top: 1px solid rgba(212,184,135,0.08);
  }
  .stats-bar__item:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(212,184,135,0.08);
  }
}


/* ── ECOSYSTEM (4 houses) ─────────────────────────────────── */
.ecosystem {
  padding: var(--sp-10) 0;
}
.ecosystem .section-head {
  text-align: left;
  max-width: none;
  margin-bottom: var(--sp-7);
}
.ecosystem .section-head h2 { margin-top: var(--sp-2); }
.ecosystem .section-head p  { max-width: 520px; }

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.ecosystem__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}

.brand-card {
  position: relative;
  padding: var(--sp-6) var(--sp-5);
  background: linear-gradient(160deg, rgba(22,26,35,0.85), rgba(11,13,18,0.6));
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease-luxe),
              transform .25s var(--ease-luxe),
              box-shadow .25s var(--ease-luxe);
  min-height: 280px;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.brand-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(212,184,135,0.05), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.brand-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,184,135,0.07);
}
.brand-card:hover::after { opacity: 1; }

.brand-card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  background: rgba(212,184,135,0.06);
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.brand-card .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: block;
  position: relative; z-index: 2;
}
.brand-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--sp-3);
  color: var(--ivory);
  position: relative; z-index: 2;
}
.brand-card p {
  color: var(--ivory-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  flex: 1;
  position: relative; z-index: 2;
}
.brand-card__link {
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  position: relative; z-index: 2;
  opacity: 0.6;
  transition: opacity .2s, gap .2s;
}
.brand-card:hover .brand-card__link { opacity: 1; gap: var(--sp-3); }

@media (max-width: 1080px) {
  .ecosystem__grid,
  .ecosystem__grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .ecosystem__grid,
  .ecosystem__grid--3 { grid-template-columns: 1fr; }
  .brand-card { min-height: 200px; }
}


/* ── FINSHARK TEASER ──────────────────────────────────────── */
.nft-teaser {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(700px 500px at 85% 20%, rgba(212,184,135,0.08), transparent 65%),
    radial-gradient(500px 400px at 5% 80%,  rgba(31,73,89,0.12),    transparent 65%);
  position: relative; overflow: hidden;
}
.nft-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,184,135,0.03) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}

.nft-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-12);
  align-items: center;
}

.nft-teaser__preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  transform: rotate(-3deg);
  position: relative; z-index: 1;
}
.nft-teaser__card {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--ink-graphite), var(--ink-charcoal));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: transform .25s var(--ease-luxe), border-color .25s, box-shadow .25s;
}
.nft-teaser__card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nft-teaser__card svg { width: 100%; height: 100%; }

.nft-teaser__perks {
  list-style: none; padding: 0;
  margin: 0 0 var(--sp-6);
}
.nft-teaser__perks li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: var(--text-sm);
  color: var(--ivory-soft);
  line-height: var(--leading-tight);
}
.nft-teaser__perks li:last-child { border-bottom: none; }
.nft-teaser__perks .perk-dot {
  color: var(--gold);
  font-size: 8px;
  margin-top: 5px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .nft-teaser__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .nft-teaser__preview { max-width: 360px; margin: 0 auto; transform: rotate(0); }
}


/* ── PHILOSOPHY (quote + principles) ─────────────────────── */
.philosophy {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--border-soft);
  background: rgba(7,8,11,0.5);
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: var(--sp-12);
  align-items: start;
}

/* Left: pull quote */
.philosophy__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, var(--text-2xl));
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
  margin: 0 0 var(--sp-4);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--gold);
}
.philosophy__quote blockquote em {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: normal;
}
.philosophy__quote cite {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-style: normal;
  display: block;
  padding-left: var(--sp-5);
}
.philosophy__quote .quote-cta {
  margin-top: var(--sp-7);
  padding-left: var(--sp-5);
}

/* Right: principles */
.philosophy__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-5);
}

.principle-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-3) var(--sp-4);
  align-items: start;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-soft);
  transition: border-color .2s;
}
.principle-row:first-of-type { border-top: 1px solid var(--border-soft); }
.principle-row:hover { border-bottom-color: var(--border-gold); }

.principle-row__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(212,184,135,0.2);
  line-height: 1;
  transition: color .2s;
  margin-top: 2px;
}
.principle-row:hover .principle-row__num { color: rgba(212,184,135,0.5); }

.principle-row__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: var(--sp-2);
  line-height: var(--leading-tight);
}
.principle-row__body {
  font-size: var(--text-sm);
  color: var(--ivory-muted);
  line-height: var(--leading-relaxed);
}

@media (max-width: 860px) {
  .philosophy__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}


/* ── CTA / WAITLIST ───────────────────────────────────────── */
.cta {
  padding: var(--sp-10) 0 var(--sp-12);
  border-top: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 100%, rgba(212,184,135,0.06), transparent 65%);
  pointer-events: none;
}

.cta__card {
  padding: var(--sp-10) var(--sp-8);
  background: linear-gradient(140deg, rgba(22,26,35,0.95), rgba(11,13,18,0.75));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative; overflow: hidden;
  max-width: 720px; margin: 0 auto;
}
.cta__card::before {
  content: '';
  position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 110%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212,184,135,0.07), transparent 55%);
  pointer-events: none;
}

.cta__card h2 { position: relative; margin-bottom: var(--sp-3); z-index: 1; }
.cta__card > p {
  position: relative;
  max-width: 460px; margin: 0 auto var(--sp-7);
  color: var(--ivory-muted);
  z-index: 1;
}
.cta__form {
  position: relative; z-index: 1;
  display: flex; max-width: 460px;
  margin: 0 auto; gap: var(--sp-2);
  flex-wrap: wrap; justify-content: center;
}
.cta__form input {
  flex: 1; min-width: 200px;
  padding: 0.9em 1.25em;
  background: rgba(11,13,18,0.75);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  color: var(--ivory);
  font-family: var(--font-body); font-size: var(--text-sm);
  transition: border-color .2s, box-shadow .2s;
}
.cta__form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,184,135,0.12);
}
.cta__form input::placeholder { color: var(--ivory-dim); }

.cta__social-proof {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(212,184,135,0.5);
  letter-spacing: .06em;
}
.cta__social-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
  animation: social-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes social-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,184,135,0.45); }
  50%       { box-shadow: 0 0 0 5px rgba(212,184,135,0); }
}

/* ── $TIDE TOKEN SECTION ───────────────────────────────────── */
.tide-token {
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--glass-border, rgba(255,255,255,0.07));
}

.tide-token__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12, 48px);
  align-items: start;
  margin-top: var(--sp-10, 40px);
}

/* — Utility rows (left col) — */
.tide-utility {
  display: flex;
  gap: var(--sp-4, 16px);
  padding: var(--sp-5, 20px) 0;
  border-bottom: 1px solid var(--glass-border, rgba(255,255,255,0.07));
}
.tide-utility:last-child { border-bottom: none; }

.tide-utility__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}
.tide-utility strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ivory, #F5F0E8);
}
.tide-utility p {
  font-size: 14px;
  color: var(--ivory-muted, #8A8070);
  line-height: 1.55;
  margin: 0;
}

/* — Token info card (right col) — */
.tide-token__info {
  background: var(--glass-bg, rgba(255,255,255,0.03));
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
  border-radius: var(--r-xl, 20px);
  padding: var(--sp-8, 32px);
}

.tide-supply {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-4, 16px);
  font-size: 13px;
}
.tide-supply__label { color: var(--ivory-dim, #6B6458); }
.tide-supply__val {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  color: var(--gold, #C49A3C);
  letter-spacing: 0.02em;
}

/* Stacked allocation bar */
.tide-bar {
  display: flex;
  height: 10px;
  border-radius: 99px;
  overflow: hidden;
  gap: 2px;
  margin-bottom: var(--sp-3, 12px);
}
.tide-bar__seg           { background: var(--gold, #C49A3C); border-radius: 2px; }
.tide-bar__seg--2        { background: #7B9EA6; }
.tide-bar__seg--3        { background: #5D7A84; }
.tide-bar__seg--4        { background: #3D5A62; }
.tide-bar__seg--5        { background: #2A4048; }

/* Legend dots */
.tide-bar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: var(--sp-8, 32px);
}
.tide-legend__item {
  font-size: 11px;
  color: var(--ivory-dim, #6B6458);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tide-legend__item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold, #C49A3C);
  flex-shrink: 0;
}
.tide-legend__item--2::before { background: #7B9EA6; }
.tide-legend__item--3::before { background: #5D7A84; }
.tide-legend__item--4::before { background: #3D5A62; }
.tide-legend__item--5::before { background: #2A4048; }

/* CTAs */
.tide-token__ctas {
  display: flex;
  gap: var(--sp-3, 12px);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .tide-token__grid { grid-template-columns: 1fr; }
  .tide-token__info { margin-top: var(--sp-6, 24px); }
}

/* ── Light Mode Overrides ───────────────────────────────── */
[data-theme="light"] .hero__ticker {
  background: rgba(249, 245, 238, 0.88);
  border-color: rgba(139, 111, 63, 0.18);
  color: var(--text);
}

[data-theme="light"] .brand-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(139, 111, 63, 0.20);
  box-shadow: 0 4px 24px rgba(60, 40, 10, 0.08);
}
[data-theme="light"] .brand-card:hover {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 8px 32px rgba(60, 40, 10, 0.13);
}

[data-theme="light"] .philosophy {
  background: rgba(249, 245, 238, 0.60);
}

[data-theme="light"] .cta__card {
  background: linear-gradient(140deg, rgba(237, 230, 216, 0.95), rgba(249, 245, 238, 0.85));
  border-color: rgba(139, 111, 63, 0.25);
  box-shadow: 0 8px 40px rgba(60, 40, 10, 0.10);
}

[data-theme="light"] .cta__form input {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(139, 111, 63, 0.25);
  color: var(--text);
}
[data-theme="light"] .cta__form input::placeholder {
  color: var(--text-dim);
}

[data-theme="light"] .tide-token__info {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(139, 111, 63, 0.15);
  border-radius: var(--r-lg, 16px);
  padding: var(--sp-6, 24px);
}

[data-theme="light"] .tide-utility {
  border-color: rgba(139, 111, 63, 0.12);
}

[data-theme="light"] .stats-band__label,
[data-theme="light"] .stats-band__val {
  color: var(--text);
}

[data-theme="light"] .section-head .eyebrow {
  color: var(--gold-deep);
}
