/* =============================================================
   SUMMER COIN — style.css
   Design base: 1440px desktop. Backgrounds: full viewport width.
   Content: max 1440px centered within each section.
============================================================= */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Colors */
  /* --clr-sky:          #5CC8E8; */
  --clr-sky-light:    #A8E3F5;
  --clr-white:        #FFFFFF;
  --clr-black:        #0D0D0D;

  /* Brand */
  --clr-yellow:       #FFD100;

  /* Tokenomic label colors */
  --clr-tknm-red:     #E03030;
  --clr-tknm-blue:    #1E9BCF;
  --clr-tknm-orange:  #E88020;
  --clr-tknm-dark:    #111111;

  /* Typography */
  --ff-body:  'Nunito', 'Arial Black', sans-serif;
  --ff-heavy: 'Anton', 'Impact', 'Arial Black', sans-serif;

  /* Content max-width — half used for mascot calc below */
  --content-max:      1440px;
  --content-half:     720px;

  /* Horizontal section padding */
  --section-px: clamp(1.5rem, 5vw, 6rem);
  --section-py: clamp(3rem, 6vw, 6rem);
}

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

body {
  font-family: var(--ff-body);
  color: var(--clr-black);
  /* Sky blue as body bg — shows between sections on any screen */
  background-color: var(--clr-sky);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

:focus-visible { outline: 3px solid var(--clr-yellow); outline-offset: 3px; border-radius: 4px; }

/* ─── Header / Nav ────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  /* background: rgba(92, 200, 232, 0.96); */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.7rem clamp(1.2rem, 3.5vw, 3.5rem);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo__img {
  width: clamp(120px, 13vw, 190px);
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.8vw, 3.5rem);
}

.nav-link {
  font-family: var(--ff-body);
  font-weight: 900;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  color: var(--clr-black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--clr-yellow);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-link:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 0.5rem; border-radius: 8px;
}
.nav-toggle__bar {
  display: block; width: 26px; height: 3px;
  background: var(--clr-black); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Beach Background Wrappers ───────────────────────────── */
/* These are FULL WIDTH — background images fill edge to edge */
.beach-wrap {
  position: relative;
  /* Use clip so mascots can poke in/out vertically without scroll */
  overflow-x: visible;
  overflow-y: clip;
  width: 100%;
}

.beach-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.beach-wrap--top {
  background-color: #5CC8E8;
  min-height: 1900px;
  margin-bottom: -4px; /* overlap next section to hide seam line */
}

.beach-wrap--top .beach-bg-img {
  object-position: center top;
}

.beach-wrap--bottom {
  margin-top: -4px; /* overlap previous section to hide seam line */
  z-index: 2;
  overflow-y: visible;
  /* bg-beach-bottom.png is 1449×2012 — ensure full image height is reserved */
  min-height: calc(100vw * 2012 / 1449);
  /* background-color: #5CC8E8; */
}

.beach-wrap--bottom .beach-bg-img {
  height: auto;
  object-fit: unset;
  object-position: top center;
}

/* Content above the background layer */
.beach-wrap > *:not(.beach-bg-img) { position: relative; z-index: 1; }

/* ─── Section Base ────────────────────────────────────────── */
.section {
  position: relative;
  padding: var(--section-py) var(--section-px);
}

/* ─── Section Title Graphics ─────────────────────────────── */
.section-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1rem, 2.5vw, 2.5rem);
}

/* Default = ROADMAP title: PSD 1372/4724 ≈ 29% → ~418px on 1440 base */
.section-title-img {
  max-width: clamp(240px, 29vw, 430px);
  height: auto;
}
/* tokenomic title PSD 1597/4724 ≈ 33.8% → ~487px */
.section-title-img--tokenomic { max-width: clamp(240px, 34vw, 490px); }
/* FAQS title PSD 923/4724 ≈ 19.5% → ~281px */
.section-title-img--faqs      { max-width: clamp(160px, 19.5vw, 285px); }

/* ─── Mascots ─────────────────────────────────────────────── */
/*
  KEY: To stay at the content-area edge on ANY screen width,
  we use: max(0px, calc(50% - var(--content-half)))
  At 1440px: calc(720 - 720) = 0   → flush with section edge
  At 2560px: calc(1280 - 720) = 560px → aligns with content edge
*/
.mascot {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.mascot__img { display: block; height: auto; }

/* ─── HERO SECTION ────────────────────────────────────────── */
.section--hero {
  min-height: 880px;
  padding-top: clamp(6rem, 11vw, 11rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

/* Full sun mascot — PSD: 1409/4724 ≈ 29.8% of design width, flush to left edge.
   Scale factor design→1440 content = 0.305, so ~430px on a 1440 base. */
.mascot--hero {
  left: max(0px, calc(50% - var(--content-half)));
  bottom: clamp(-300px, -20vw, -110px);
  width: clamp(210px, 30vw, 430px);
  z-index: 2;
}

.hero-content {
  text-align: center;
  /* Description block in PSD is ~1086px wide; title sits centered inside */
  max-width: clamp(420px, 82vw, 1090px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  position: relative;
  z-index: 3;
}

.hero-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1rem, 2.2vw, 2.2rem);
}

.hero-title-img {
  /* PSD title group 2643/4724 ≈ 56% of design width → ~806px on 1440 base */
  width: clamp(280px, 56vw, 800px);
  height: auto;
}

/* Description — PSD: ~35px / 5 lines, weight ~800, black, centered */
.hero-description {
  font-size: clamp(0.95rem, 2.35vw, 2.1rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--clr-black);
  margin-bottom: clamp(1.2rem, 2.4vw, 2.1rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.2vw, 1.1rem);
  flex-wrap: nowrap;
}

/* PSD-extracted button graphics */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
  line-height: 0;
}

.hero-btn:focus-visible {
  outline: 3px solid var(--clr-yellow);
  outline-offset: 3px;
  border-radius: 8px;
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.04);
}

.hero-btn__img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

/* PSD social btn 288/4724 ≈ 6.1% → ~88px; height ≈ 80% of BUY height */
.hero-btn--social .hero-btn__img {
  width: clamp(54px, 6.2vw, 92px);
}

/* BUY button: pill PNG as bg, bold text on top */
.hero-btn--buy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/btn-buy-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* PSD BUY 957×324 → ~292×99 on 1440 base (20.3% of design width) */
  width: clamp(168px, 20.5vw, 295px);
  height: clamp(58px, 7vw, 100px);
  font-family: var(--ff-body);
  font-weight: 900;
  font-size: clamp(0.85rem, 1.5vw, 1.28rem);
  color: var(--clr-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 clamp(1rem, 2vw, 1.8rem);
  word-spacing: 0.05em;
}

/* ─── ROADMAP SECTION ────────────────────────────────────── */
.section--roadmap {
  /* Push content ~100px down so title/phases sit lower on the beach background */
  padding-top: clamp(7rem, 10vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 14rem);
  overflow: visible;
}

.roadmap-layout {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-areas:
    "phase1 spacer phase2"
    "path   path   path  "
    "phase3 .      .     ";
  grid-template-columns: 1fr 10% 1fr;
  align-items: start;
}

.phase { padding: 0.3rem 0.5rem; }

/* Wrapper groups phase 2+3; transparent on desktop grid */
.roadmap-phases-row { display: contents; }

.phase--1 {
  grid-area: phase1;
  position: relative;
  /* relative offset — does NOT push the path row down like margin would */
  top: clamp(2.5rem, 7vw, 100px);
  left: clamp(2rem, 7vw, 100px);
  z-index: 2;
}
.phase--2 {
  grid-area: phase2;
  text-align: left;
  position: relative;
  top: clamp(4rem, 14vw, 230px);
  left: calc(clamp(3.5rem, 14vw, 220px) + 50px);
  z-index: 2;
}
.phase--3 {
  grid-area: phase3;
  position: relative;
  top: clamp(-12rem, -20vw, -300px);
  left: clamp(2rem, 7vw, 100px);
  z-index: 2;
}

.phase-title {
  font-weight: 900;
  font-size: clamp(1.32rem, 2.4vw, 1.92rem);
  color: var(--clr-black);
  margin-bottom: 0.55rem;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.phase-list { display: flex; flex-direction: column; gap: 0.35rem; }
.phase-list li {
  font-weight: 800;
  font-size: clamp(1.02rem, 1.62vw, 1.32rem);
  color: var(--clr-black);
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}
.phase-list strong { font-weight: 900; }

.roadmap-path-wrap {
  grid-area: path;
  display: flex;
  justify-content: center;
  margin: -1.5rem 0 0;
}
/* PSD road 3551/4724 ≈ 75.2% → ~1083px on 1440 base */
.roadmap-path-img { width: clamp(300px, 76vw, 1083px); height: auto; }

/* Running sun mascot — PSD 1736/4724 ≈ 36.7%, flush to right edge.
   Capped a touch below full scale to avoid crowding the phases. */
.mascot--roadmap {
  right: max(0px, calc(50% - var(--content-half)));
  bottom: clamp(2rem, 4vw, 6rem);
  width: clamp(170px, 32vw, 470px);
}
.mascot--roadmap .mascot__img { animation: floatSlow 4s ease-in-out infinite; }

/* ─── TOKENOMIC SECTION ──────────────────────────────────── */
.section--tokenomic {
  padding-top: clamp(2.5rem, 4.5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 7rem);
  overflow: visible;
  z-index: 2;
}

.section--tokenomic > .section-title-wrap {
  margin-top: -150px;
}

/* Cash register — PSD 1391/4724 ≈ 29.5%, flush to left edge → ~400px on 1440 base */
.mascot--register {
  left: max(0px, calc(50% - var(--content-half)));
  top: calc(clamp(2rem, 5vw, 7rem) - 350px);
  width: clamp(140px, 27vw, 400px);
  z-index: 10;
}
.mascot--register .mascot__img { animation: floatSlow 4.5s ease-in-out infinite; }

/* Sign-aligned diagram: labels positioned at each arrow's vertical center */
.tokenomic-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.6rem, 1.6vw, 2rem);
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 1.5vw, 2rem);
  overflow: visible;
}

.tknm-signpost-wrap {
  grid-column: 2;
  position: relative;
  width: clamp(240px, 39.2vw, 564px);
  margin-top: 50px;
}

.tknm-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  z-index: 2;
  max-width: clamp(180px, 32vw, 360px);
  margin-top: -20px;
}

.tknm-item--left {
  right: calc(100% + clamp(0.6rem, 1.6vw, 2rem));
  align-items: flex-end;
  text-align: right;
}

.tknm-item--right {
  left: calc(100% + clamp(0.6rem, 1.6vw, 2rem));
  align-items: flex-start;
  text-align: left;
}

/* Vertical positions match sign-num overlays (PSD signpost bbox) */
.tknm-item--sign1 { top: 14%; }
.tknm-item--sign2 { top: 30%; }
.tknm-item--sign3 { top: 38.5%; }
.tknm-item--sign4 { top: 55.5%; }
.tknm-item--sign5 { top: 66%; }
.tknm-percent {
  font-weight: 900;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  display: block;
  transform: translateY(-50%);
}
.tknm-label {
  font-weight: 700;
  font-size: clamp(1.36rem, 2vw, 1.8rem);
  display: block;
  line-height: 1.1;
  white-space: nowrap;
  margin-top: calc(clamp(2.1rem, 3.6vw, 3.1rem) * -0.5);
  color: var(--clr-black);
}

.tknm-item--red    .tknm-percent { color: var(--clr-tknm-red); }
.tknm-item--blue   .tknm-percent { color: var(--clr-tknm-blue); }
.tknm-item--orange .tknm-percent { color: var(--clr-tknm-orange); }
.tknm-item--dark   .tknm-percent { color: var(--clr-tknm-dark); }

/* Signpost — PSD 2312/4724 ≈ 49% of design width → scales with viewport, caps ~705px */
.tknm-signpost-img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(4px 8px 12px rgba(0,0,0,0.18));
}

/* Number overlays on arrows */
.sign-num {
  position: absolute;
  color: var(--clr-white);
  font-weight: 900;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* Positions measured from PSD signpost bbox (rel. to 2312×2732) */
.sign-num--1 { left: 70%; top: 14%; }
.sign-num--2 { left: 21.5%; top: 30%; }
.sign-num--3 { left: 73%; top: 38.5%; }
.sign-num--4 { left: 25%; top: 55.5%; }
.sign-num--5 { left: 76.5%; top: 66%; }

/* ─── PRESALE BREAKDOWN ──────────────────────────────────── */
/* Lives inside beach-wrap--bottom; ocean-blue comes from the bg image */
.section--presale {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  padding: clamp(3rem, 5vw, 6rem) var(--section-px) clamp(4rem, 7vw, 9rem);
  text-align: center;
}

.presale-inner  { max-width: 900px; margin: 0 auto; }

.presale-title {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(2rem, 5.5vw, 5.2rem);
  font-weight: 900;
  font-stretch: expanded;
  color: var(--clr-black);
  letter-spacing: 0.1em;
  word-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transform: scaleX(1.12);
  transform-origin: center top;
  margin-bottom: clamp(1.5rem, 3vw, 3.5rem);
}

.presale-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(2.5rem, 7vw, 10rem);
  flex-wrap: wrap;
}

.presale-stat { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

.presale-percent {
  font-family: var(--ff-heavy);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--clr-white);
  -webkit-text-stroke: clamp(2px, 0.45vw, 6px) var(--clr-black);
  paint-order: stroke fill;
  line-height: 1;
  letter-spacing: 0.02em;
}

.presale-stat-label {
  font-weight: 800;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: var(--clr-black);
  text-align: center;
  line-height: 1.45;
}

.presale-divider {
  width: 2px; height: 100px;
  background: rgba(0,0,0,0.15);
  align-self: center; flex-shrink: 0;
}

/* ─── FAQS SECTION ───────────────────────────────────────── */
/* Transparent — sits on beach-wrap--bottom background image */
.section--faqs {
  position: relative;
  width: 100%;
  background: transparent;
  margin-top: -75px;
  padding-top: var(--section-py);
  padding-bottom: clamp(8rem, 14vw, 18rem); /* space for footer overlap */
}

/* PSD card row 3310/4724 ≈ 70% → ~1009px on 1440 base */
.faq-list {
  max-width: clamp(480px, 70vw, 1010px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.2vw, 1.15rem);
}

/* White card with dark border — matches original */
.faq-item {
  border-radius: clamp(10px, 1.2vw, 18px);
  overflow: hidden;
  background: var(--clr-white);
  border: 2.5px solid var(--clr-black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.9rem, 1.5vw, 1.3rem) clamp(1rem, 1.8vw, 1.8rem);
  background: var(--clr-white);
  border: none; cursor: pointer; text-align: left; gap: 1rem;
  transition: background 0.25s;
  /* PSD card height 351/4724 of width → ~107px on 1440 base */
  min-height: clamp(64px, 7.4vw, 105px);
}
.faq-trigger:hover { background: #F5F5F5; }
.faq-trigger:focus-visible { outline: 3px solid var(--clr-yellow); outline-offset: -3px; }

.faq-question {
  font-weight: 800;
  font-size: clamp(0.82rem, 1.2vw, 1.08rem);
  color: var(--clr-black);
  flex: 1; line-height: 1.3;
}

/* Black + square button */
/* PSD + button 273×261 ≈ 5.8% of width → ~83px on 1440 base */
.faq-toggle-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: clamp(42px, 5.4vw, 82px); height: clamp(42px, 5.4vw, 82px);
  background: var(--clr-black); color: var(--clr-white);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem); font-weight: 400; line-height: 1;
  border-radius: 8px;
  transition: transform 0.25s, background 0.25s;
}
.faq-trigger[aria-expanded="true"] .faq-toggle-icon { transform: rotate(45deg); background: #333; }

.faq-body { background: #FAFAFA; border-top: 2px solid #eee; }
.faq-body[hidden] { display: none; }
.faq-body p {
  padding: clamp(0.8rem, 1.2vw, 1.2rem) clamp(1rem, 1.8vw, 1.8rem);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  color: #444; line-height: 1.65;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  width: 100%;
  /* Fade in over the beach-bottom image, then solid sky blue */
  background: linear-gradient(180deg, transparent 0%, #25a7e3 25%, #25a7e3 100%);
  position: relative;
  /* Overlap up into the FAQ padding-bottom */
  margin-top: -10rem;
  padding-top: 2rem;
  overflow: hidden;
}

.footer-scene-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-scene-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  background: rgba(0,0,0,0.15);
  padding: 0.9rem clamp(1.2rem, 3vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.78rem; font-weight: 700; color: var(--clr-white); }
.footer-nav  { display: flex; gap: 1.5rem; }
.footer-link { font-size: 0.78rem; font-weight: 700; color: var(--clr-white); transition: opacity 0.2s; }
.footer-link:hover { opacity: 0.75; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes floatSlow  { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-7px)}  }
@keyframes titlePulse { 0%,100%{transform:scale(1)}         50%{transform:scale(1.012)}      }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ─── TABLET (≤1100px) ───────────────────────────────────── */
@media (max-width: 1100px) {
  .beach-wrap--top    { min-height: 1500px; }
  .tokenomic-diagram { max-width: 1000px; }
}

/* ─── MOBILE (≤768px) ────────────────────────────────────── */
@media (max-width: 768px) {

  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(92,200,232,0.97); backdrop-filter: blur(10px);
    padding: 0; overflow: hidden; max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .nav-menu.is-open { max-height: 320px; padding: 0.5rem 0 1rem; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 0.8rem 1.5rem; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .nav-link::after { display: none; }

  .beach-wrap--top    { min-height: auto; }
  .beach-wrap--bottom { min-height: auto; }

  /* Hero — content first, mascot below buy buttons on mobile */
  .section--hero {
    flex-direction: column; align-items: center;
    padding-top: 5.5rem; min-height: auto; padding-bottom: 2rem;
  }
  .hero-content {
    order: 1;
    max-width: 100%; padding: 0 0.75rem;
  }
  .mascot--hero {
    order: 2;
    position: relative; left: auto; bottom: auto;
    width: clamp(180px, 55vw, 320px);
    align-self: center;
    margin: clamp(1rem, 4vw, 1.5rem) 0 0;
  }
  .hero-title-img { width: clamp(240px, 88vw, 420px); }
  .hero-description { font-size: clamp(0.95rem, 4.2vw, 1.25rem); }
  .hero-description br { display: none; }
  .hero-actions { flex-wrap: wrap; gap: 0.65rem; }
  .hero-btn--social .hero-btn__img { width: clamp(48px, 12vw, 72px); }
  .hero-btn--buy { width: clamp(150px, 42vw, 240px); height: clamp(53px, 14.8vw, 85px); font-size: clamp(0.78rem, 3.5vw, 1rem); }

  /* Roadmap — separate top row (phase 1 + mascot) and bottom row (phase 2 + 3) */
  .section--roadmap { margin-top: -150px; padding-bottom: 3rem; }
  .roadmap-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.31fr) minmax(0, 0.69fr);
    grid-template-areas:
      "phase1     mascot"
      "path       path"
      "phases-row phases-row";
    gap: 0.5rem 0.65rem;
    align-items: start;
    width: 100%;
    overflow: visible;
  }
  .roadmap-phases-row {
    grid-area: phases-row;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.65rem;
    width: 100%;
  }
  .phase--1 {
    grid-area: phase1;
    top: 0;
    left: 0;
    position: relative;
    min-width: unset;
    max-width: none;
    width: auto;
  }
  .phase--1 .phase-title {
    font-size: clamp(1.19rem, 2.16vw, 1.73rem);
  }
  .phase--1 .phase-list li {
    font-size: clamp(0.92rem, 1.46vw, 1.19rem);
  }
  .phase--2,
  .phase--3 {
    top: 0;
    left: 0;
    position: relative;
    text-align: left;
    min-width: 0;
    grid-area: auto;
  }
  .roadmap-path-wrap {
    grid-area: path;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .roadmap-path-img { width: clamp(260px, 92vw, 500px); }
  .phase--2 .phase-title,
  .phase--3 .phase-title {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
    margin-bottom: 0.35rem;
  }
  .phase--2 .phase-list li,
  .phase--3 .phase-list li {
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
    line-height: 1.35;
  }
  .mascot--roadmap {
    grid-area: mascot;
    position: relative;
    right: auto;
    bottom: auto;
    width: clamp(104px, 28.6vw, 169px);
    align-self: end;
    justify-self: end;
    margin: 0;
    /* ~50% of mascot sits over the roadmap path image */
    margin-bottom: calc(-1 * clamp(104px, 28.6vw, 169px) * 0.965 * 0.55);
    z-index: 3;
  }

  /* Tokenomic */
  .section--tokenomic {
    display: flex;
    flex-direction: column;
    margin-top: 150px;
    padding-bottom: 0.5rem;
  }
  .section--tokenomic > .section-title-wrap { order: 1; }
  .tokenomic-diagram {
    order: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.2rem 0.35rem;
    max-width: 100%;
    width: 100%;
    padding: 0 0.1rem;
    overflow: visible;
  }
  .mascot--register {
    order: 3;
    position: relative;
    left: auto;
    top: auto;
    width: clamp(100px, 30vw, 170px);
    margin: clamp(0.75rem, 3vw, 1rem) auto 0;
  }
  .tknm-signpost-wrap {
    grid-column: 2;
    width: clamp(150px, 44vw, 210px);
    margin-top: 0;
    margin-bottom: 0;
  }
  /* Keep labels anchored to each sign — same layout as desktop, scaled for mobile */
  .tknm-item {
    position: absolute;
    max-width: clamp(68px, 30vw, 118px);
    margin-top: -8px;
  }
  .tknm-item--left {
    right: calc(100% + 0.3rem);
    align-items: flex-end;
    text-align: right;
  }
  .tknm-item--right {
    left: calc(100% + 0.3rem);
    align-items: flex-start;
    text-align: left;
  }
  .tknm-percent {
    font-size: clamp(0.85rem, 4.2vw, 1.15rem);
    transform: translateY(-50%);
  }
  .tknm-label {
    font-size: clamp(0.5rem, 2.3vw, 0.68rem);
    line-height: 1.05;
    white-space: normal;
    margin-top: calc(clamp(0.85rem, 4.2vw, 1.15rem) * -0.5);
  }
  .sign-num {
    font-size: clamp(0.6rem, 2.8vw, 0.85rem);
  }

  /* Presale */
  .section--presale {
    margin-top: 0;
    padding-top: clamp(1rem, 3vw, 1.5rem);
  }
  .presale-divider { display: none; }
  .presale-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    align-items: start;
    width: 100%;
  }
  .presale-stat { min-width: 0; }

  /* FAQs */
  .section--faqs { padding-bottom: clamp(5rem, 10vw, 10rem); }

  /* Footer */
  .site-footer { margin-top: -5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ─── SMALL MOBILE (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-px: 1rem; --section-py: 2rem; }
  .hero-title-img { width: clamp(200px, 90vw, 340px); }
  .hero-description { font-size: 0.9rem; }
  .presale-title { font-size: clamp(1.5rem, 8.5vw, 2.2rem); }
  .presale-percent { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .section-title-img { max-width: clamp(180px, 76vw, 300px); }
}

@media (max-width: 360px) {
  .hero-actions { gap: 0.5rem; }
  .hero-btn--social .hero-btn__img { width: 44px; }
}

@media print {
  .site-header,.mascot,.beach-bg-img,.footer-scene-wrap { display: none; }
  body { background: white; color: black; }
}
