/* ============================================================
   CURRENTS & CRITTERS — Landing Page Styles
   Polished, tighter version of the marketing site.
   ============================================================ */

@import url("assets/colors_and_type.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sky-low);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; }

/* ── THEME (driven by Tweaks) ───────────────────────── */
:root {
  --accent-primary: var(--brand-cyan);
  --accent-primary-deep: var(--brand-cyan-deep);
  --accent-secondary: var(--brand-mint);
  --accent-secondary-deep: var(--brand-mint-deep);
  --motion-cloud: 1;
  --motion-gull: 1;
  --motion-rise: 1;
}
body.motion-none { --motion-cloud: 0; --motion-gull: 0; --motion-rise: 0; }
body.motion-subtle .cloud { animation-duration: 120s !important; opacity: 0.85 !important; }
body.motion-subtle .seagull { animation-duration: 90s !important; }

/* ============================================================
   TOP NAV — floating pill (lighter than reference dark bar)
   ============================================================ */
.nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 22px rgba(8, 52, 77, 0.08);
  border-radius: var(--r-pill);
  padding: 5px 6px 5px 12px;
  max-width: calc(100vw - 24px);
  transition: opacity .2s var(--ease-out), transform .3s var(--ease-out);
}
/* Auto-hide on scroll-down, re-show on scroll-up */
.nav.nav-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-120%);
  pointer-events: none;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  padding-right: 4px;
  text-decoration: none;
}
.nav .brand img { width: 22px; height: 22px; border-radius: 6px; box-shadow: var(--shadow-sm); }
.nav .brand .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-deep);
  letter-spacing: -0.1px;
  white-space: nowrap;
}
.nav .links { display: flex; gap: 2px; margin-right: 8px; }
.nav .links a {
  text-decoration: none;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1px;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.nav .links a:hover { background: rgba(10, 100, 140, 0.08); color: var(--ink-deep); }
.nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--grad-mint-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 2px 10px rgba(22, 163, 107, 0.3);
  letter-spacing: 0.1px;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav .nav-cta:hover { transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav { padding: 5px 6px 5px 10px; }
  .nav .links { display: none; }
  .nav .brand .wordmark { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: var(--ls-button);
  padding: 14px 24px;
  border-radius: var(--r-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-cyan-btn);
  color: #fff;
  box-shadow: var(--shadow-press);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10, 143, 184, 0.55); }
.btn-mint {
  background: var(--grad-mint-btn);
  color: #fff;
  box-shadow: var(--shadow-mint);
}
.btn-mint:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22, 163, 107, 0.45); }
.btn-coral {
  background: var(--grad-coral-btn);
  color: #fff;
  box-shadow: 0 4px 18px rgba(224, 112, 32, 0.45);
}
.btn-coral:hover { transform: translateY(-2px); }
.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-cyan-deep);
  border: 1.5px solid rgba(15, 126, 164, 0.25);
}
.btn-outline:hover { background: #fff; border-color: var(--brand-cyan-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--brand-cyan-deep);
  padding: 12px 14px;
}
.btn-ghost:hover { color: var(--brand-deep); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============================================================
   HERO — Sky → Beach
   ============================================================ */
.hero {
  position: relative;
  min-height: 780px;
  background: var(--grad-sky);
  padding: 110px 24px 0;
  overflow: hidden;
}
.sun {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun-core) 0%, var(--sun-mid) 40%, var(--sun-edge) 65%, transparent 100%);
  box-shadow: 0 0 80px 30px rgba(255, 200, 0, 0.30);
  filter: blur(0.3px);
  pointer-events: none;
}
.sun-rays {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(255, 240, 180, 0.55), transparent 65%);
  pointer-events: none;
}

.cloud { position: absolute; background: #fff; border-radius: 60px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); opacity: 0.92; pointer-events: none; }
.cloud::before, .cloud::after { content: ''; position: absolute; background: #fff; border-radius: 60px; }
.cloud.c1 { width: 130px; height: 32px; top: 130px; left: 5%; opacity: 0.88; animation: drift-r 80s linear infinite; }
.cloud.c1::before { width: 60px; height: 50px; top: -22px; left: 24px; }
.cloud.c1::after { width: 50px; height: 42px; top: -18px; left: 64px; }
.cloud.c2 { width: 170px; height: 38px; top: 220px; left: 70%; opacity: 0.8; animation: drift-l 100s linear infinite; }
.cloud.c2::before { width: 80px; height: 64px; top: -30px; left: 30px; }
.cloud.c2::after { width: 54px; height: 44px; top: -20px; left: 90px; }
.cloud.c3 { width: 100px; height: 26px; top: 310px; left: 20%; opacity: 0.7; animation: drift-r 95s linear infinite; }
.cloud.c3::before { width: 50px; height: 40px; top: -18px; left: 18px; }
@keyframes drift-r { from { transform: translateX(-260px); } to { transform: translateX(calc(100vw + 260px)); } }
@keyframes drift-l { from { transform: translateX(calc(100vw + 260px)); } to { transform: translateX(-260px); } }

.seagull { position: absolute; top: 18%; right: 8%; width: 84px; height: 84px; z-index: 4; opacity: 0.95; animation: gull-bob 6s ease-in-out infinite; }
@keyframes gull-bob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-12px) rotate(2deg); } }

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #0a4a64;
  margin-bottom: 22px;
  text-shadow: none;
}
.hero .eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--brand-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(42, 200, 143, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -2px;
  color: var(--brand-deep);
  margin: 0 0 18px;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
}
.hero h1 .amp {
  color: var(--brand-cyan-deep);
  font-weight: 500;
  font-style: italic;
  padding: 0 4px;
}
.hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--brand-cyan-deep);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.hero .meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  margin-bottom: 26px;
}
.hero .meta .sep { color: var(--brand-cyan); font-weight: 800; }

.hero .lead {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--brand-deep);
  font-weight: 500;
  text-wrap: pretty;
}
.hero .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* hand of cards in hero */
.hero-hand {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  perspective: 1200px;
  margin-top: 8px;
  min-height: 280px;
}
.hero-hand .card {
  width: clamp(120px, 14vw, 180px);
  height: clamp(170px, 20vw, 252px);
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 50px rgba(8, 40, 58, 0.32);
  background: var(--brand-cyan-soft);
  transition: transform 0.35s var(--ease-out);
  margin-left: -38px;
}
.hero-hand .card:first-child { margin-left: 0; }
.hero-hand .card:nth-child(1) { transform: rotate(-9deg) translateY(14px); }
.hero-hand .card:nth-child(2) { transform: rotate(-4deg) translateY(4px); }
.hero-hand .card:nth-child(3) { transform: rotate(0deg) translateY(-2px) scale(1.02); z-index: 3; }
.hero-hand .card:nth-child(4) { transform: rotate(4deg) translateY(4px); }
.hero-hand .card:nth-child(5) { transform: rotate(9deg) translateY(14px); }
.hero-hand .card:hover { transform: translateY(-18px) rotate(0) scale(1.08); z-index: 10; }

/* horizon — beach band */
.horizon {
  position: relative;
  height: 90px;
  margin-top: 50px;
  background: linear-gradient(180deg, var(--sand-pale) 0%, var(--sand-top) 100%);
  clip-path: polygon(0 60px, 5% 35px, 15% 55px, 28% 28px, 42% 52px, 55% 32px, 70% 58px, 85% 38px, 100% 50px, 100% 100%, 0 100%);
}

/* ============================================================
   VALUE PROPS BAND (white card on sky)
   ============================================================ */
.values-band {
  background: linear-gradient(180deg, var(--sand-top) 0%, var(--sand-mid) 100%);
  position: relative;
  padding: 36px 24px 90px;
  overflow: hidden;
}
.values-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px, 14px 14px, 30px 30px;
  pointer-events: none;
}
.values {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--r-3xl);
  padding: 28px;
  box-shadow: 0 18px 44px rgba(120, 80, 30, 0.15);
}
.value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 8px;
  border-right: 1px solid rgba(15, 126, 164, 0.12);
}
.value:last-child { border-right: 0; }
.value .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-cyan-soft);
  color: var(--brand-cyan-deep);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.value h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink-deep);
  margin: 0;
}
.value p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-strong);
  margin: 0;
}

@media (max-width: 900px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .value { border-right: 0; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: 90px 24px; position: relative; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-cyan-soft);
  border: 1px solid #9ddaf0;
  color: var(--brand-cyan-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink-deep);
  line-height: 1.05;
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-head p {
  font-size: 18px;
  color: var(--muted-strong);
  margin: 0 auto;
  max-width: 620px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* on dark sections */
.section.on-dark .section-head .eyebrow {
  background: rgba(93, 214, 247, 0.12);
  border-color: rgba(93, 214, 247, 0.35);
  color: var(--glow);
}
.section.on-dark .section-head h2 { color: #fff; }
.section.on-dark .section-head p { color: rgba(255, 255, 255, 0.78); }

/* ============================================================
   HOW TO PLAY (5 steps + mini cards)
   ============================================================ */
.section.how {
  background: var(--paper);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-coral-btn);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(224, 112, 32, 0.45);
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-deep);
  margin: 8px 0 4px;
}
.step p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted-strong);
  margin: 0;
}
.step .mini-card {
  width: 92px;
  height: 130px;
  border-radius: 10px;
  background: var(--brand-cyan-soft);
  margin-bottom: 4px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(8, 40, 58, 0.18);
}

@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW TO PLAY — detailed rules layout
   ============================================================ */
.rules-subhead {
  text-align: center;
  margin: 0 0 28px;
}
.rules-subhead .kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand-cyan-deep);
  background: var(--brand-cyan-soft);
  border: 1px solid #9ddaf0;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.rules-subhead h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink-deep);
  margin: 0;
  letter-spacing: -0.6px;
}
.rules-subhead h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-cyan-deep);
}

.turn-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 800px) { .turn-actions { grid-template-columns: 1fr; } }
.turn-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 22px 22px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.turn-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.turn-card .num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-cyan-btn);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-press);
  margin-bottom: 12px;
}
.turn-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-deep);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.turn-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-strong);
  margin: 0;
}

.endturn-note {
  background: var(--brand-mint-soft);
  border-left: 4px solid var(--brand-mint);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--brand-mint-deep);
  line-height: 1.5;
}

/* ── Core rules grid ─────────────────────────────────── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .rules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .rules-grid { grid-template-columns: 1fr; } }

.rule-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.rule-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rule-card-feature {
  background: linear-gradient(170deg, #fff 0%, #f0fcff 100%);
  border-color: var(--line-strong);
  grid-column: span 2;
}
@media (max-width: 1000px) { .rule-card-feature { grid-column: span 2; } }
@media (max-width: 640px)  { .rule-card-feature { grid-column: span 1; } }

.rule-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rule-emoji {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-cyan-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.rule-emoji-star { background: #fff7e0; color: var(--brand-sun); font-weight: 800; font-size: 22px; }
.rule-emoji-mint { background: var(--brand-mint-soft); }
.rule-emoji-cyan { background: var(--brand-cyan-soft); }
.rule-emoji-coral { background: #ffeadc; }
.rule-emoji-sun { background: #fff3d4; }

.rule-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-deep);
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.rule-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-strong);
  margin: 0;
}
.rule-card .rule-foot {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}
.rule-card .rule-link {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-cyan-deep);
  text-decoration: none;
  margin-left: 4px;
}
.rule-card .rule-link:hover { text-decoration: underline; }
.rule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.rule-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted-strong);
}
.rule-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
}

/* ── Ocean attachment diagram ─────────────────────── */
.ocean-diagram {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  grid-template-rows: auto 130px auto;
  grid-template-areas:
    ".    top   ."
    "left ocean right"
    ".    bot   .";
  gap: 6px;
  align-items: center;
  padding: 10px 0 6px;
}
.ocean-diagram .slot {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--brand-cyan-deep);
  background: var(--brand-cyan-soft);
  border: 1px dashed rgba(15, 126, 164, 0.4);
  border-radius: 8px;
  padding: 6px 8px;
  text-align: center;
  line-height: 1.25;
}
.ocean-diagram .slot-top    { grid-area: top; }
.ocean-diagram .slot-bottom { grid-area: bot; }
.ocean-diagram .slot-left   { grid-area: left; }
.ocean-diagram .slot-right  { grid-area: right; }
.ocean-diagram .slot-center {
  grid-area: ocean;
  background: none;
  border: 0;
  padding: 0;
}
.ocean-diagram .slot-center img {
  width: 90px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(8, 40, 58, 0.22);
}

/* ── Scoring formula ──────────────────────────────── */
.scoring-formula {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--brand-cyan-soft);
  border: 1px solid #9ddaf0;
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-cyan-deep);
  letter-spacing: 0.2px;
}
.scoring-formula .op {
  color: var(--brand-coral);
  font-weight: 700;
  font-size: 16px;
}
.scoring-formula .result {
  background: var(--grad-mint-btn);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-mint);
}

/* ── Special rules definition list ────────────────── */
.special-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.special-list dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--ink-deep);
  margin: 0;
}
.special-list dd {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-strong);
}
.special-list dd a {
  color: var(--brand-cyan-deep);
  text-decoration: none;
  font-weight: 700;
}
.special-list dd a:hover { text-decoration: underline; }

/* ============================================================
   SNAP & SCORE callout
   ============================================================ */
.section.snap {
  background: linear-gradient(160deg, #0a3951 0%, #105775 60%, #0a4a64 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section.snap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(93, 214, 247, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(42, 200, 143, 0.12), transparent 50%);
  pointer-events: none;
}
.snap-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.snap-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(93, 214, 247, 0.15);
  border: 1px solid rgba(93, 214, 247, 0.4);
  color: var(--glow);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.snap-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.04;
  margin: 0 0 16px;
  text-wrap: balance;
}
.snap-copy h2 em {
  font-style: normal;
  color: var(--glow);
}
.snap-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
  max-width: 480px;
  text-wrap: pretty;
}
.snap-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.snap-feats li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.snap-feats li::before {
  content: '★';
  color: var(--brand-sun);
  font-size: 14px;
  margin-top: 1px;
}
.snap-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.snap-viz {
  position: relative;
  border-radius: var(--r-3xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(93, 214, 247, 0.2);
  padding: 28px;
  aspect-ratio: 1.05 / 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.snap-viz-cards {
  position: relative;
  width: 78%;
  aspect-ratio: 1.1 / 1;
}
.snap-viz-cards img {
  position: absolute;
  width: 44%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: var(--brand-cyan-soft);
}
.snap-viz-cards img:nth-child(1) { top: 8%; left: 5%; transform: rotate(-12deg); }
.snap-viz-cards img:nth-child(2) { top: 0%; left: 30%; transform: rotate(-3deg); z-index: 3; }
.snap-viz-cards img:nth-child(3) { top: 6%; left: 56%; transform: rotate(8deg); }
.snap-scanline {
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(93, 214, 247, 0.5);
  border-radius: var(--r-2xl);
  pointer-events: none;
}
.snap-scanline::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  box-shadow: var(--glow-cyan);
  top: 50%;
  animation: scan 3.4s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 8%; opacity: 1; }
  45%, 55% { top: 88%; opacity: 1; }
  50% { opacity: 0.4; }
}
.snap-score-pill {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--grad-mint-btn);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-mint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.snap-score-pill .total {
  font-size: 22px;
  letter-spacing: -0.5px;
}

@media (max-width: 900px) {
  .snap-grid { grid-template-columns: 1fr; gap: 40px; }
  .snap-viz { aspect-ratio: 1.3 / 1; }
}

/* ============================================================
   MEET THE CRITTERS (ocean band)
   ============================================================ */
.section.critters {
  background: linear-gradient(180deg, var(--sea-surf) 0%, var(--sea-shallow) 60%, var(--sea-mid) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section.critters::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, transparent 0, transparent 80px, rgba(255, 255, 255, 0.05) 80px, rgba(255, 255, 255, 0.05) 81px),
    repeating-linear-gradient(65deg, transparent 0, transparent 60px, rgba(255, 255, 255, 0.04) 60px, rgba(255, 255, 255, 0.04) 61px);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.critter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px 10px;
  margin: 0 auto 36px;
  flex-wrap: wrap;
  max-width: 760px;
}
.critter-tabs button {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.critter-tabs button:hover { background: rgba(255, 255, 255, 0.2); }
.critter-tabs button.active {
  background: #fff;
  color: var(--brand-cyan-deep);
  border-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.critter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.critter {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-xl);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.critter:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.22); }
.critter .thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--brand-cyan-soft), #b8e4f9);
  object-fit: contain;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.critter .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.critter .meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.critter .points {
  color: var(--brand-sun);
  font-weight: 700;
}

@media (max-width: 1000px) { .critter-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .critter-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   EXPLORE THE OCEANS
   ============================================================ */
.section.oceans {
  background: linear-gradient(180deg, var(--sea-mid) 0%, var(--sea-deep) 60%, var(--sea-night) 100%);
  color: #fff;
}
.oceans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ocean-tile {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 0.75 / 1;
  cursor: pointer;
  background: var(--brand-deep);
  border: 1px solid rgba(93, 214, 247, 0.18);
  transition: transform var(--dur-base) var(--ease-out);
}
.ocean-tile:hover { transform: translateY(-4px); }
.ocean-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.ocean-tile:hover img { transform: scale(1.06); }
.ocean-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 30, 48, 0.85) 100%);
  pointer-events: none;
}
.ocean-tile .label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: #fff;
}
.ocean-tile .label .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ocean-tile .label .stat {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 900px) { .oceans-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SPONSORS / CONSERVATION
   ============================================================ */
.section.sponsor {
  background: linear-gradient(180deg, var(--sea-night) 0%, var(--abyss) 100%);
  color: #fff;
  padding-bottom: 110px;
}
.impact-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 56px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(93, 214, 247, 0.22);
  border-radius: var(--r-3xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.impact {
  text-align: center;
  position: relative;
}
.impact + .impact::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(93, 214, 247, 0.18);
}
.impact .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--glow);
  letter-spacing: -1.5px;
  line-height: 1;
}
.impact .label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 800px) {
  .impact-band { grid-template-columns: repeat(2, 1fr); }
  .impact:nth-child(3)::before { display: none; }
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 40px;
}
.tier {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(93, 214, 247, 0.22);
  border-radius: var(--r-2xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.tier:hover { transform: translateY(-4px); border-color: rgba(93, 214, 247, 0.5); }
.tier.featured {
  background: linear-gradient(170deg, rgba(42, 200, 143, 0.18), rgba(12, 164, 203, 0.12));
  border-color: rgba(42, 200, 143, 0.5);
}
.tier .ribbon {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--grad-mint-btn);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: var(--shadow-mint);
}
.tier .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.tier .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.2px;
}
.tier .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--glow);
  font-size: 22px;
  letter-spacing: -0.5px;
}
.tier .price small { font-size: 12px; color: rgba(255, 255, 255, 0.6); font-weight: 500; }
.tier .desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.tier .perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.tier .perks li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.tier .perks li::before {
  content: '✓';
  color: var(--brand-mint);
  font-weight: 800;
}
.tier .btn { margin-top: auto; justify-content: center; }
.tier-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(93, 214, 247, 0.25);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.tier-meta .k {
  display: inline-block;
  min-width: 92px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand-cyan);
  margin-right: 6px;
}

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

.sponsor-cta-band {
  margin-top: 12px;
  background: linear-gradient(170deg, rgba(93, 214, 247, 0.08), rgba(42, 200, 143, 0.05));
  border: 1px solid rgba(93, 214, 247, 0.25);
  border-radius: var(--r-3xl);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
}
.sponsor-cta-band h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.sponsor-cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 580px;
}
.sponsor-cta-band p + p { margin-top: 14px; }
.sponsor-cta-band .cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .sponsor-cta-band { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: var(--abyss);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 24px 36px;
  border-top: 1px solid rgba(93, 214, 247, 0.18);
}
.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(93, 214, 247, 0.12);
}
.foot-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.foot-brand .brand img { width: 32px; height: 32px; border-radius: 8px; }
.foot-brand .brand .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.foot-brand p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.foot h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.foot ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.foot ul a:hover { color: var(--glow); }

.foot-bottom {
  max-width: 1180px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
}
.foot-bottom .impact-line {
  color: var(--glow);
  font-weight: 700;
  letter-spacing: 0.4px;
}
@media (max-width: 900px) {
  .foot-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   GENERAL UTILITIES
   ============================================================ */
.species-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  border: 1px solid;
}
.t-bird       { background: var(--tag-bird-bg);       color: var(--tag-bird-fg);       border-color: var(--tag-bird-bd); }
.t-mammal     { background: var(--tag-mammal-bg);     color: var(--tag-mammal-fg);     border-color: var(--tag-mammal-bd); }
.t-gamefish   { background: var(--tag-gamefish-bg);   color: var(--tag-gamefish-fg);   border-color: var(--tag-gamefish-bd); }
.t-baitfish   { background: var(--tag-baitfish-bg);   color: var(--tag-baitfish-fg);   border-color: var(--tag-baitfish-bd); }
.t-crustacean { background: var(--tag-crustacean-bg); color: var(--tag-crustacean-fg); border-color: var(--tag-crustacean-bd); }
.t-cephalopod { background: var(--tag-cephalopod-bg); color: var(--tag-cephalopod-fg); border-color: var(--tag-cephalopod-bd); }
.t-coral      { background: var(--tag-coral-bg);      color: var(--tag-coral-fg);      border-color: var(--tag-coral-bd); }
.t-invert     { background: var(--tag-invert-bg);     color: var(--tag-invert-fg);     border-color: var(--tag-invert-bd); }
.t-cross      { background: var(--tag-cross-bg);      color: var(--tag-cross-fg);      border-color: var(--tag-cross-bd); }
.t-ocean      { background: var(--tag-ocean-bg);      color: var(--tag-ocean-fg);      border-color: var(--tag-ocean-bd); }

/* page rise (suppressed when motion off) */
.rise { animation: rise var(--dur-rise) var(--ease-out) both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(calc(12px * var(--motion-rise, 1))); }
  to   { opacity: 1; transform: translateY(0); }
}
body.motion-none .rise { animation: none; }
body.motion-none .cloud, body.motion-none .seagull, body.motion-none .snap-scanline::after { animation: none !important; }

/* tweaks toggle button */
.tweaks-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 70;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-cyan-btn);
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-press);
  display: none;
  place-items: center;
}


/* ============================================================
   PEOPLE WHO CARE — full-bleed backers banner (underwater wall)
   Spans the entire viewport width, edge to edge.
   ============================================================ */
.people-care {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.people-care-img {
  display: block;
  width: 100%;
  height: auto;
}
.learn60 {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.learn60-img {
  display: block;
  width: 100%;
  height: auto;
}
