/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:             #0B0912;
  --bg-2:           #0F0C1C;
  --surface:        rgba(255,255,255,0.04);
  --surface-2:      rgba(255,255,255,0.07);
  --surface-hover:  rgba(255,255,255,0.10);
  --border:         rgba(255,255,255,0.08);
  --border-bright:  rgba(255,255,255,0.14);

  --banana:         #FFDA30;
  --banana-dim:     #C8A200;
  --banana-glow:    rgba(255,218,48,0.18);
  --orange:         #FF6B35;
  --orange-glow:    rgba(255,107,53,0.18);
  --green:          #22D37A;
  --pink:           #FF5FA9;
  --purple:         #9B7AFF;
  --blue:           #38BDF8;

  --legendary:      #FFDA30;
  --legendary-glow: rgba(255,218,48,0.22);
  --epic-color:     #C084FC;
  --epic-glow:      rgba(192,132,252,0.22);
  --rare-color:     #60A5FA;
  --rare-glow:      rgba(96,165,250,0.22);
  --uncommon-color: #34D399;
  --uncommon-glow:  rgba(52,211,153,0.22);

  --text:           #F0EBE0;
  --text-2:         #9A92A8;
  --text-3:         #5A5268;

  --font-display:   'Space Grotesk', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --max-w:          1200px;
  --px:             clamp(1.25rem, 5vw, 3rem);
  --radius:         14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --radius-phone:   44px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
  --shadow:         0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.6);

  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  min-height: 100dvh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--banana);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  z-index: 9999;
  background: var(--banana);
  color: #0B0912;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ── Ambient background ──────────────────────────────────────── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF6B35, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat1 18s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FFDA30, transparent 70%);
  top: 10%; right: -150px;
  animation: orbFloat2 22s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #9B7AFF, transparent 70%);
  bottom: 10%; left: 30%;
  animation: orbFloat3 26s ease-in-out infinite;
  opacity: 0.2;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s var(--ease-out) var(--delay, 0s),
    transform 0.55s var(--ease-out) var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem var(--px);
  transition: background 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(11,9,18,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  flex-shrink: 0;
}
.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: none;
  gap: 0.25rem;
  margin-left: auto;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.btn-nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--banana);
  color: #0B0912;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .btn-nav { margin-left: 0; }
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,218,48,0.4);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
.hero-inner {
  flex: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 3rem var(--px) 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding-top: 4rem;
  }
}

.hero-content {
  flex: 1;
  min-width: 0;
  text-align: center;
}
@media (min-width: 900px) {
  .hero-content { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7rem);
}
.title-banana {
  color: var(--banana);
  text-shadow:
    0 0 40px rgba(255,218,48,0.5),
    0 0 100px rgba(255,218,48,0.2);
}
.title-bounce {
  color: var(--text);
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
}

.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 52ch;
}
@media (min-width: 900px) {
  .hero-sub { max-width: none; }
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .hero-cta { justify-content: flex-start; }
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero-stats { justify-content: flex-start; }
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
@media (min-width: 900px) {
  .hero-stats li { align-items: flex-start; }
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--banana);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Phone mockup ─────────────────────────────────────────────── */
.hero-phone {
  position: relative;
  flex-shrink: 0;
  align-self: center;
}
.phone-frame {
  width: 240px;
  aspect-ratio: 390/844;
  background: #141020;
  border-radius: var(--radius-phone);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.6),
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  padding: 14px 8px 12px;
}
@media (min-width: 600px) { .phone-frame { width: 280px; } }
@media (min-width: 900px) { .phone-frame { width: 300px; } }

.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #000;
  border-radius: 18px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-phone) - 10px);
  overflow: hidden;
  background: #000;
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.4s var(--ease-smooth);
}
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,107,53,0.3), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

/* ── Scroll hint ──────────────────────────────────────────────── */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--banana), var(--orange));
  color: #0B0912;
  box-shadow: 0 4px 20px rgba(255,150,40,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,150,40,0.55); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.25); }
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ── Sections ─────────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--banana);
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-2);
}

/* ── Pillars ──────────────────────────────────────────────────── */
.pillars { padding-top: 3rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 700px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.pillar:hover { background: var(--bg-2); }
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Core Loop ────────────────────────────────────────────────── */
.loop-section .section-header { text-align: left; margin-left: 0; }
.loop-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.loop-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.loop-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.06em;
  padding-top: 0.2rem;
  flex-shrink: 0;
  min-width: 2.5rem;
  transition: color 0.2s;
}
.loop-step:hover .step-num { color: var(--banana); }
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--text-2);
}

/* ── Bento Grid ───────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 700px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-wide { grid-column: span 2; }
}

.bento-card {
  background: var(--bg);
  padding: 1.75rem;
  transition: background 0.2s;
}
.bento-card:hover { background: var(--bg-2); }

.bento-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 0.6rem;
}
.daily-label { color: var(--banana); }

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.bento-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.bento-tags span {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
}

/* upgrade mini list inside bento */
.upgrade-mini-list {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.upgrade-mini-list li {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.upgrade-mini-list .rarity-legendary {
  background: rgba(255,218,48,0.08);
  border-color: rgba(255,218,48,0.2);
  color: var(--legendary);
}
.upgrade-mini-list .rarity-epic {
  background: rgba(192,132,252,0.08);
  border-color: rgba(192,132,252,0.2);
  color: var(--epic-color);
}
.upgrade-mini-list .rarity-rare {
  background: rgba(96,165,250,0.08);
  border-color: rgba(96,165,250,0.2);
  color: var(--rare-color);
}
.upgrade-mini-list .rarity-uncommon {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.2);
  color: var(--uncommon-color);
}

.daily-quote {
  font-style: italic;
  color: var(--banana) !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.75rem !important;
}

/* stat cards */
.bento-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--banana);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px var(--banana-glow);
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.45;
}

.peel-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.peel-examples span {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-2);
}

.mods-list {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mods-list li {
  font-size: 0.85rem;
  color: var(--text-2);
}
.mods-list strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Upgrades Scroll ──────────────────────────────────────────── */
.upgrades-section { overflow: hidden; }
.upgrades-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}
@media (min-width: 700px) { .upgrades-scroll { grid-auto-columns: 220px; } }

.upgrade-card {
  scroll-snap-align: start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  cursor: default;
}
.upgrade-card:hover {
  transform: translateY(-4px);
}
.upgrade-rarity-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.upgrade-emoji {
  font-size: 2rem;
  line-height: 1;
  margin: 0.25rem 0;
}
.upgrade-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.upgrade-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
}
.upgrade-card.rarity-legendary {
  border-color: rgba(255,218,48,0.28);
  box-shadow: 0 0 30px var(--legendary-glow);
}
.upgrade-card.rarity-legendary .upgrade-rarity-tag { color: var(--legendary); }

.upgrade-card.rarity-epic {
  border-color: rgba(192,132,252,0.28);
  box-shadow: 0 0 30px var(--epic-glow);
}
.upgrade-card.rarity-epic .upgrade-rarity-tag { color: var(--epic-color); }

.upgrade-card.rarity-rare {
  border-color: rgba(96,165,250,0.28);
  box-shadow: 0 0 30px var(--rare-glow);
}
.upgrade-card.rarity-rare .upgrade-rarity-tag { color: var(--rare-color); }

.upgrade-card.rarity-uncommon {
  border-color: rgba(52,211,153,0.28);
  box-shadow: 0 0 30px var(--uncommon-glow);
}
.upgrade-card.rarity-uncommon .upgrade-rarity-tag { color: var(--uncommon-color); }

/* ── Screenshots ──────────────────────────────────────────────── */
.screenshots-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .screenshots-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.screenshots-main {
  flex-shrink: 0;
}
.screenshot-phone-frame {
  width: 220px;
  aspect-ratio: 390/844;
  background: #141020;
  border-radius: var(--radius-phone);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.5),
    var(--shadow-lg);
  position: relative;
  overflow: hidden;
  padding: 12px 7px 10px;
}
@media (min-width: 500px) { .screenshot-phone-frame { width: 260px; } }
.screenshot-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 15px;
  z-index: 10;
}
.screenshot-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: calc(var(--radius-phone) - 8px);
  transition: opacity 0.25s var(--ease-smooth);
}

.screenshots-thumbs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (min-width: 800px) {
  .screenshots-thumbs { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .screenshots-thumbs { grid-template-columns: repeat(3, 1fr); }
}

.screenshot-thumb {
  aspect-ratio: 390/844;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s var(--ease-spring);
  position: relative;
}
.screenshot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.screenshot-thumb:hover {
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.screenshot-thumb.is-active {
  border-color: var(--banana);
  box-shadow: 0 0 0 3px rgba(255,218,48,0.2);
}
.screenshot-thumb--gif {
  position: relative;
}
.thumb-gif-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0,0,0,0.7);
  color: var(--banana);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 4px;
  pointer-events: none;
}

/* ── Tone / Quotes ────────────────────────────────────────────── */
.tone-section {
  text-align: center;
}
.tone-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
}
.game-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--banana);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.game-quote:hover {
  background: var(--surface-2);
  border-left-color: var(--orange);
}
.game-quote p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  font-style: italic;
}

/* ── Final CTA ────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding-bottom: 6rem;
}
.cta-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  max-width: 560px;
  margin: 0 auto;
}
.cta-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255,107,53,0.3);
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.cta-inner > p {
  color: var(--text-2);
  margin-bottom: 1.75rem;
}
.cta-fine {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-size: 0.8rem;
  color: var(--text-3) !important;
  letter-spacing: 0.04em;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-2);
}
.footer-brand img { border-radius: 7px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}
.footer-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-3);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover {
  color: var(--text);
  background: var(--surface);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ── Privacy page ─────────────────────────────────────────────── */
.privacy-page main {
  max-width: 52rem;
  margin: 0 auto;
  padding: 6rem var(--px) 4rem;
  position: relative;
  z-index: 1;
}
.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.privacy-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.privacy-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--banana);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.privacy-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}
.privacy-card strong { color: var(--text); }

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, 30px) scale(1.05); }
  66%       { transform: translate(-20px, 50px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, 40px) scale(1.08); }
  70%       { transform: translate(30px, -20px) scale(0.92); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, -40px) scale(1.06); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.6; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
