/* ===========================================================================
   Real — Landing
   ========================================================================= */

:root {
  --ink:        #0F1115;
  --ink-2:      #16191F;
  --ink-3:      #22262E;
  --bg:         #FAF8F4;
  --bg-warm:    #F4EFE5;
  --paper:      #FFFFFF;
  --peach:      #F4C97F;
  --peach-soft: #FDF1DC;
  --peach-deep: #C0892A;
  --text:       #0F1115;
  --text-2:     #555C6A;
  --text-3:     #8A919F;
  --text-on-dark: #FFFFFF;
  --text-on-dark-2: rgba(255,255,255,0.65);
  --text-on-dark-3: rgba(255,255,255,0.45);
  --positive:   #12A16B;
  --border:     #ECE9E2;
  --border-dark: rgba(255,255,255,0.10);

  --solana-1:   #9945FF;
  --solana-2:   #14F195;

  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
  background: var(--ink);     /* fills iOS safe areas (Dynamic Island, bottom) */
}
body {
  background: var(--ink);     /* dark behind everything; sections set their own bg */
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02", "cv01", "cv02";
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overscroll-behavior-x: none;
  /* overscroll-behavior-y left at default: iOS rubber-band stays natural,
     and now exposes the dark html bg instead of white. */
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button { font: inherit; }

/* ===========================================================================
   Wordmark
   ========================================================================= */
.mark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 28px;
  line-height: 1;
  color: currentColor;
}
.mark-sq {
  width: 0.18em; height: 0.18em;
  background: var(--peach);
  border-radius: 1px;
  display: inline-block;
}
.mark--lg { font-size: 56px; }

/* ===========================================================================
   Buttons / utilities
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--text-on-dark);
}
.btn--primary:hover { transform: translateY(-1px); background: #2a2d33; }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-on-dark);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--lg { height: 60px; padding: 0 32px; font-size: 17px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow--accent { color: var(--peach-deep); }

.h2 {
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
}
.h2--light { color: var(--text-on-dark); }
.h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #E0A45D, #B27328);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2--light em {
  background: linear-gradient(180deg, var(--peach), #E0A45D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 400;
  max-width: 56ch;
}
.lede--light { color: var(--text-on-dark-2); }

/* ===========================================================================
   NAV — minimal: only the wordmark, click → scroll to top
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 40px;
  background: rgba(15, 17, 21, 0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  color: white;
  pointer-events: none; /* Don't block hero clicks; brand re-enables */
}
.nav.is-scrolled {
  background: rgba(15, 17, 21, 0.78);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__brand {
  color: white;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav__brand:hover { opacity: 0.8; transform: translateY(-1px); }
@media (max-width: 800px) { .nav { padding: 16px 20px; } }

/* ===========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--ink);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);  /* under blueprint while it draws */
}
.hero__bg {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  inset: -10% 0 0 0;
  filter: saturate(1.05) brightness(0.95);
  will-change: transform, opacity;
  opacity: 0;             /* blueprint draws first; JS fades photo in */
  z-index: 1;
}

/* Architectural blueprint intro layer */
.hero__blueprint {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.bp {
  fill: none;
  stroke: var(--peach);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.bp.bp-thick { stroke-width: 2.2; }
.bp.bp-dim { opacity: 0.45; }
.bp-text {
  fill: var(--peach);
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", Menlo, monospace;
  opacity: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;       /* above the photo, below the text/blueprint */
  background:
    radial-gradient(ellipse at top right, rgba(244,201,127,0.08), transparent 50%),
    linear-gradient(180deg, rgba(15,17,21,0.72) 0%, rgba(15,17,21,0.78) 50%, rgba(15,17,21,0.96) 100%);
}
.hero__noise {
  position: absolute; inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: var(--max);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero__dot {
  width: 8px; height: 8px;
  background: var(--positive);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(18,161,107,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__title {
  font-size: clamp(56px, 9.5vw, 168px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 30px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--peach), #E0A45D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__line {
  display: block;
  overflow: hidden;
  white-space: nowrap;          /* never break a word mid-letter */
  /* Make room for descenders (g, p, y, etc.) inside the clip area.
     Compensate visually so the line spacing stays tight. */
  padding-bottom: 0.22em;
}
.hero__line + .hero__line {
  margin-top: -0.22em;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 44px;
  max-width: 580px;
  font-weight: 400;
}
.hero__sub strong {
  color: white;
  font-weight: 700;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: scrollDown 2s infinite ease-in-out;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ===========================================================================
   MANIFESTO
   ========================================================================= */
.manifesto {
  background: var(--ink);
  color: white;
  padding: 200px 40px 200px;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, rgba(244,201,127,0.08), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.manifesto__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.manifesto__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 36px;
  text-align: center;
}
.manifesto__title {
  font-size: clamp(40px, 7vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-align: center;
  margin-bottom: 120px;
}
.manifesto__title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--peach), #E0A45D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-word.revealed {
  opacity: 1;
  transform: translateY(0);
}

.manifesto__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.compare-col { text-align: center; }
.compare-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.compare-label--accent { color: var(--peach); }
.compare-price {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.compare-price--strike {
  color: rgba(255,255,255,0.25);
  position: relative;
}
.compare-price--strike::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  height: 4px;
  background: rgba(255,255,255,0.4);
  transform: translateY(-50%) rotate(-3deg);
}
.compare-desc {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  margin: 0 auto;
}
.compare-desc strong { color: white; font-weight: 700; }
.compare-arrow {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 20px 60px -10px rgba(244,201,127,0.5);
}

@media (max-width: 800px) {
  .manifesto { padding: 120px 20px; }
  .manifesto__title { margin-bottom: 80px; }
  .manifesto__compare { grid-template-columns: 1fr; gap: 30px; }
  .compare-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ===========================================================================
   SPLIT SECTION (centerpiece animation) — graphic LEFT, copy RIGHT
   ========================================================================= */
.split-section {
  background: var(--ink);
  color: white;
  position: relative;
}
.split-pin {
  height: 100vh;
  min-height: 720px;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.split-layout {
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 0 80px 0 60px;
}

/* LEFT: graphic */
.split-graphic {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
}
.split-grid {
  position: relative;          /* containing block for the hi-res token */
  width: min(78vh, 100%);
  aspect-ratio: 1 / 1;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  grid-template-rows: repeat(30, 1fr);
  gap: 0;
  background: var(--ink-2);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6);
  overflow: visible;            /* let the grown token shadow extend outside */
}
.tile {
  position: relative;
  background-image: url("../assets/img/split-building.jpg");
  background-size: 3000% 3000%;     /* JS overrides per TILES_PER_SIDE */
  background-repeat: no-repeat;
  /* will-change is intentionally OFF here — added dynamically by JS only
     during the active scroll phase, so we don't keep 200+ GPU layers
     permanently allocated (which kills iOS performance). */
  contain: layout paint;
}
/* Gold overlay: fades in when the tiles morph from building texture to
   solid peach. Once visible, the underlying texture is invisible. */
.tile__gold {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.20), transparent 55%),
    linear-gradient(135deg, #F4C97F 0%, #E0A45D 100%);
  border-radius: inherit;
  opacity: 0;
}
/* Token state — focal tile gets z-index above the rest. The visible token
   look (border + glow + crisp gradient) comes from .split-hires-token,
   which is rendered at HD natively and overlays the focal tile from the
   moment grow starts. */
.tile.is-token {
  z-index: 30;
}

/* HD overlay: this is the element the user sees as the "token" once the
   grow phase begins. It's natively the size of the FINAL token, so the
   gradient + border + shadow are rasterized at HD from the first frame.
   GSAP scales/translates it identically to the focal tile beneath, so
   the swap is invisible. */
.split-hires-token {
  position: absolute;
  top: 0; left: 0;
  width: 100px;            /* JS sets the real focalFinalSize on load+resize */
  height: 100px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.20), transparent 55%),
    linear-gradient(135deg, #F4C97F 0%, #E0A45D 100%);
  border-radius: 22%;
  box-shadow:
    inset 0 0 0 2px rgba(244,201,127,0.95),
    0 30px 80px -10px rgba(244,201,127,0.45),
    0 60px 140px -30px rgba(244,201,127,0.30);
  opacity: 0;              /* hidden until grow phase */
  pointer-events: none;
  z-index: 40;             /* above tiles, below the label (60) */
  will-change: transform, opacity;
}

/* Token label is positioned by GSAP (left/top in pixels) at the focal
   tile's center. Black text on peach. z-index above the focal tile (50)
   so it reads ON TOP of the grown token. */
.split-token-label {
  position: absolute;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  z-index: 60;
  color: #0F1115;
}
.split-token-label__brand {
  display: block;
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.split-token-label__sub {
  display: block;
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  margin-top: 10px;
  opacity: 0.65;
}

/* RIGHT: stacked captions, fade in/out */
.split-copy {
  position: relative;
  min-height: 360px;
  height: 60vh;
  max-width: 560px;
}
.split-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.split-caption__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 22px;
}
.split-caption h2 {
  font-size: clamp(40px, 4.8vw, 84px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 22px;
  color: white;
}
.split-caption h2 strong {
  background: linear-gradient(180deg, var(--peach), #E0A45D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.split-caption h2 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--peach), #E0A45D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split-caption p {
  font-size: clamp(15px, 1.3vw, 19px);
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
  font-weight: 400;
  max-width: 480px;
}

/* Phase indicator */
.split-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.split-progress__dot {
  width: 30px;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: all 0.3s ease;
}
.split-progress__dot.active {
  background: var(--peach);
  width: 60px;
  box-shadow: 0 0 12px rgba(244,201,127,0.6);
}


@media (max-width: 1000px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 80px 30px 60px;
  }
  .split-graphic { height: 50vh; }
  .split-copy { height: auto; min-height: 200px; max-width: 100%; text-align: center; }
  .split-caption { position: relative; opacity: 0; }
  .split-caption[data-phase="0"] { opacity: 1; }
}

/* ===========================================================================
   CONCEPT (cómo funciona la tokenización)
   ========================================================================= */
.concept {
  padding: 200px 40px 200px;
  background: var(--bg);
  max-width: 100%;
  overflow: hidden;
}
.concept__head {
  max-width: var(--max);
  margin: 0 auto 100px;
  text-align: center;
}
.concept__head .eyebrow { margin-bottom: 18px; }
.concept__head .h2 { margin-bottom: 24px; }
.concept__head .lede { margin: 0 auto; }

.concept__diagram {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.cstep {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cstep:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.12);
}
.cstep__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.cstep__icon {
  font-size: 40px;
  margin-bottom: 18px;
  width: 64px; height: 64px;
  background: var(--bg-warm);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
/* Dark variant for icons that need ink background (Solana SVG, Real wordmark) */
.cstep__icon--ink {
  background: var(--ink);
  color: white;
}
.cstep__svg-solana {
  width: 32px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(153, 69, 255, 0.4));
}
/* Mini Real wordmark inside the wallet step */
.cstep__real {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  font-size: 32px;
  line-height: 1;
}
.cstep__real-r { display: inline-block; }
.cstep__real-sq {
  display: inline-block;
  width: 0.18em; height: 0.18em;
  background: var(--peach);
  border-radius: 1px;
}
.cstep h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cstep p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.cstep__arrow {
  align-self: center;
  font-size: 28px;
  color: var(--text-3);
  font-weight: 300;
}

@media (max-width: 1100px) {
  .concept__diagram {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cstep__arrow { display: none; }
}
@media (max-width: 600px) {
  .concept { padding: 120px 20px; }
  .concept__diagram { grid-template-columns: 1fr; }
}

/* ===========================================================================
   SOLANA
   ========================================================================= */
.solana {
  background: var(--ink);
  color: white;
  padding: 200px 40px;
  position: relative;
  overflow: hidden;
}
.solana__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(153, 69, 255, 0.20), transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(20, 241, 149, 0.12), transparent 50%);
  pointer-events: none;
}
.solana__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.solana__copy .eyebrow { margin-bottom: 18px; }
.solana__copy .h2 { margin-bottom: 24px; }
.solana__copy .lede { margin-bottom: 56px; }

.solana__stats {
  display: grid;
  gap: 36px;
}
.sol-stat {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}
.sol-stat:last-child { border-bottom: none; }
.sol-stat__num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--solana-1), var(--solana-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 220px;
}
.sol-stat__lbl {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
}

/* Orbit visualization */
.solana__viz {
  position: relative;
  height: 540px;
  display: grid;
  place-items: center;
}
.orbit {
  position: relative;
  width: 100%;
  height: 100%;
}
.orbit__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-shadow:
    0 0 0 8px rgba(153, 69, 255, 0.10),
    0 0 80px rgba(153, 69, 255, 0.35),
    0 0 160px rgba(20, 241, 149, 0.18);
  z-index: 2;
}
.orbit__solana {
  width: 78px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(153, 69, 255, 0.4));
}
.orbit__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.85;
  margin-top: 12px;
  text-transform: uppercase;
}
.orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  transform: translate(-50%, -50%);
}
.orbit__ring--1 { width: 280px; height: 280px; }
.orbit__ring--2 { width: 400px; height: 400px; }
.orbit__ring--3 { width: 520px; height: 520px; }
.orbit__token {
  position: absolute;
  top: 50%; left: 50%;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform-origin: 0 0;
  white-space: nowrap;
  z-index: 1;
}
/* Tokens are placed via JS rotation but defined here as starting positions */
.orbit__token--1 { transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg); }
.orbit__token--2 { transform: translate(-50%, -50%) rotate(72deg) translateX(200px) rotate(-72deg); }
.orbit__token--3 { transform: translate(-50%, -50%) rotate(144deg) translateX(140px) rotate(-144deg); }
.orbit__token--4 { transform: translate(-50%, -50%) rotate(216deg) translateX(260px) rotate(-216deg); }
.orbit__token--5 { transform: translate(-50%, -50%) rotate(288deg) translateX(200px) rotate(-288deg); }

@media (max-width: 1000px) {
  .solana__inner { grid-template-columns: 1fr; gap: 60px; }
  .solana__viz { height: 400px; }
}

/* ===========================================================================
   APP feature blocks
   ========================================================================= */
.app {
  padding: 200px 40px 100px;
  background: var(--bg);
}
.app__head {
  max-width: var(--max);
  margin: 0 auto 120px;
  text-align: center;
}
.app__head .eyebrow { margin-bottom: 18px; }

.feature {
  max-width: var(--max);
  margin: 0 auto 200px;
  display: grid;
  gap: 80px;
  align-items: center;
}
.feature--right { grid-template-columns: 1fr 1fr; }
.feature--left { grid-template-columns: 1fr 1fr; }

.feature__copy .eyebrow { margin-bottom: 14px; }
.feature__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.feature__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 480px;
}
.feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.feature__list li span {
  width: 22px; height: 22px;
  background: var(--positive);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.feature__phone {
  display: grid;
  place-items: center;
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr !important; gap: 50px; margin-bottom: 120px; }
  .feature--left .feature__phone { order: -1; }
}

/* ===========================================================================
   Phone frames (vector)
   ========================================================================= */
.phone {
  position: relative;
  background: #0c0d10;
  border-radius: 56px;
  padding: 14px;
  width: 380px; height: 822px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    0 12px 24px -8px rgba(0,0,0,0.35),
    0 28px 60px -20px rgba(0,0,0,0.25),
    0 56px 120px -40px rgba(0,0,0,0.18);
}
.phone--lg { width: 440px; height: 951px; border-radius: 64px; padding: 16px; }
.phone--lg .phone__screen { border-radius: 50px; }
.phone--md { width: 320px; height: 692px; border-radius: 48px; padding: 12px; }
.phone--md .phone__screen { border-radius: 38px; }
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.phone__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ===========================================================================
   HOW (3 steps)
   ========================================================================= */
.how {
  background: var(--ink);
  color: white;
  padding: 200px 40px;
}
.how__head {
  max-width: var(--max);
  margin: 0 auto 120px;
  text-align: center;
}
.how__head .h2 { color: white; margin: 18px 0 24px; }
.how__head .lede { color: var(--text-on-dark-2); margin: 0 auto; }

.how__steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: end;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-step__badge {
  display: inline-block;
  background: var(--peach);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 30px;
}
.how-step .phone {
  margin-bottom: 28px;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14px;
  color: var(--text-on-dark-2);
  max-width: 280px;
}

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

/* ===========================================================================
   CATEGORIES
   ========================================================================= */
.categories {
  background: var(--ink);
  color: white;
  padding: 0 40px 200px;
}
.cat__head {
  max-width: var(--max);
  margin: 0 auto 80px;
  text-align: center;
}
.cat__head .eyebrow { color: var(--peach); margin-bottom: 18px; }

.cat__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 580px;          /* identical row height for all cards */
  gap: 24px;
  align-items: stretch;            /* every card fills the row */
}
.cat-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  display: flex;                   /* push content to bottom uniformly */
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: white;
  cursor: pointer;
  height: 100%;                    /* never less than the row */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card:hover { transform: translateY(-8px); }
.cat-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1s ease;
  z-index: 0;
}
.cat-card:hover .cat-card__bg { transform: scale(1.05); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 30%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.cat-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-card__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
}
.cat-card.cat-card--featured .cat-card__tag {
  background: var(--peach);
  color: var(--ink);
}
.cat-card h3 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}
.cat-card p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 380px;
}
.cat-card__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .cat__grid { grid-template-columns: 1fr; grid-auto-rows: 380px; gap: 18px; }
}

/* ===========================================================================
   STATS (counters)
   ========================================================================= */
.stats {
  background: var(--ink);
  color: white;
  padding: 100px 40px 160px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border-dark);
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, white, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stat__prefix { color: rgba(255,255,255,0.55); font-weight: 600; font-size: 0.5em; }
.stat__suffix { color: var(--peach); font-weight: 800; -webkit-text-fill-color: var(--peach); }
.stat__lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================================
   SHOWCASE (parallax phones)
   ========================================================================= */
.showcase {
  background: var(--bg);
  padding: 200px 40px 100px;
  overflow: hidden;
}
.showcase__head {
  max-width: var(--max);
  margin: 0 auto 100px;
  text-align: center;
}
.showcase__head .eyebrow { margin-bottom: 18px; }
.showcase__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 32px;            /* extra row gap so the bottom caps have air */
  align-items: center;
  justify-items: center;
}
.showcase__phone {
  position: relative;
  will-change: transform;
}
.showcase__cap {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.01em;
  background: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

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

/* ===========================================================================
   WAITLIST CTA
   ========================================================================= */
.waitlist {
  background: var(--ink);
  color: white;
  padding: 180px 40px 180px;
  position: relative;
  overflow: hidden;
}
.waitlist__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(244,201,127,0.12), transparent 60%);
  pointer-events: none;
}
.waitlist__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.waitlist__inner .eyebrow { margin-bottom: 28px; }
.waitlist__title {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.waitlist__title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--peach), #E0A45D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;        /* keep "S/ 100" together on any width */
}
.waitlist__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}
.waitlist__form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto 16px;
}
.waitlist__input {
  flex: 1;
  height: 60px;
  padding: 0 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  border-radius: 999px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-text-fill-color: white;
}
.waitlist__input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist__input:focus {
  border-color: var(--peach);
  background: rgba(255,255,255,0.10);
}
.waitlist__form .btn--primary {
  background: var(--peach);
  color: var(--ink);
}
.waitlist__form .btn--primary:hover { background: #f0bd6a; }

.waitlist__btn-success { display: none; }
.waitlist__form.done .waitlist__btn-default { display: none; }
.waitlist__form.done .waitlist__btn-success { display: inline; }
.waitlist__form.done .waitlist__input { opacity: 0.4; }

.waitlist__small {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 18px;
}

@media (max-width: 600px) {
  .waitlist__form { flex-direction: column; }
}

/* ===========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 40px 36px;
  border-top: 1px solid var(--border-dark);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__brand .mark { color: white; }
.footer__tag {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.footer__cols a:hover { color: white; }
.footer__lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 36px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

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

/* ===========================================================================
   Reveal animation utility (used by JS for sections)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   MOBILE — comprehensive pass for iPhone-class viewports (≤768px)
   Desktop (>768px) is untouched. Pixel-tight at 320–430px.
   ========================================================================== */
@media (max-width: 768px) {

  /* ---- All phone mockups: scale to fit any iPhone width ---- */
  .phone, .phone--lg, .phone--md {
    width: min(80vw, 320px);
    height: auto;
    aspect-ratio: 380 / 822;
    border-radius: 11vw;
    padding: 2.6vw;
  }
  .phone .phone__screen,
  .phone--lg .phone__screen,
  .phone--md .phone__screen {
    border-radius: 9vw;
  }

  /* ---- HERO ---- */
  .hero { min-height: 640px; }
  .hero__content { padding: 0 22px; }
  .hero__title { line-height: 0.92; margin-bottom: 22px; }
  .hero__sub { font-size: 15px; margin-bottom: 32px; }
  .hero__sub br { display: none; }
  .hero__ctas { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero__ctas .btn { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero__scroll-cue { bottom: 22px; font-size: 10px; }
  .bp-text { font-size: 24px !important; }   /* SVG text scales w viewBox; bump for legibility */

  /* ---- MANIFESTO ---- */
  .manifesto { padding: 90px 20px 100px; }
  .manifesto__eyebrow { margin-bottom: 28px; }
  .manifesto__title {
    font-size: clamp(34px, 9.2vw, 56px);
    margin-bottom: 70px;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }
  .manifesto__compare { gap: 36px; }
  .compare-label { font-size: 11px; margin-bottom: 16px; }
  .compare-price {
    font-size: clamp(60px, 18vw, 110px);
    margin-bottom: 22px;
    letter-spacing: -0.045em;
  }
  .compare-price--strike::after { height: 3px; }
  .compare-desc { font-size: 14px; max-width: 320px; line-height: 1.55; }
  .compare-arrow {
    width: 72px; height: 72px;
    font-size: 28px;
    transform: rotate(90deg);
    box-shadow: 0 16px 36px -6px rgba(244,201,127,0.4);
  }

  /* ---- SPLIT (centerpiece) — flex column, content distributed so the
     caption lands in the lower-middle of the viewport (not pinned to the
     grid). Uses `space-around` to give breathing room above/between/below. ---- */
  .split-pin {
    height: auto;
    min-height: 100vh;
    padding: 0;
  }
  .split-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
    min-height: 600px;
    padding: 60px 16px 60px;
    gap: 0;                  /* space-around handles spacing */
  }
  .split-graphic {
    height: auto;
    flex-shrink: 0;
  }
  .split-grid {
    width: min(64vw, 320px);    /* smaller so caption fits below in same viewport */
    max-width: 100%;
  }
  .split-copy {
    position: relative;          /* keep absolute captions stacked here */
    width: 100%;                 /* MUST be width (not max-width) so absolute
                                    children span full available width */
    height: 200px;
    padding: 0 16px;
    text-align: center;
    flex-shrink: 0;
  }
  .split-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
  }
  .split-caption[data-phase="0"] { opacity: 1; }
  .split-caption h2 {
    font-size: clamp(24px, 6.5vw, 36px);
    margin-bottom: 10px;
    line-height: 1.05;
  }
  .split-caption p {
    font-size: 13px;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.4;
  }
  .split-caption h2 { max-width: 100%; margin-left: auto; margin-right: auto; }
  .split-caption__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .split-progress {
    bottom: 22px;
  }
  .split-progress__dot { width: 18px; height: 3px; }
  .split-progress__dot.active { width: 36px; }

  /* ---- CONCEPT ---- */
  .concept { padding: 100px 20px 100px; overflow: hidden; }
  .concept__head { margin-bottom: 50px; }
  .concept__head .lede { font-size: 15px; margin: 0 auto; text-align: center; }
  .concept__diagram { gap: 18px; }
  /* Cards: center-aligned content for visual balance in stacked mobile flow. */
  .cstep {
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }
  .cstep__num { font-size: 11px; }
  .cstep__icon {
    width: 64px; height: 64px;
    font-size: 32px;
    margin-bottom: 20px;
  }
  .cstep__svg-solana { width: 30px; }
  .cstep__real { font-size: 30px; }
  .cstep h3 { font-size: 22px; margin-bottom: 8px; }
  .cstep p { font-size: 14px; max-width: 320px; line-height: 1.5; }

  /* ---- SOLANA ---- */
  .solana { padding: 100px 20px; }
  .solana__inner { gap: 50px; }
  .solana__copy .lede { margin-bottom: 36px; }
  .sol-stat { gap: 14px; padding-bottom: 18px; }
  .sol-stat__num { min-width: auto; font-size: clamp(30px, 9vw, 44px); }
  .sol-stat__lbl { font-size: 14px; }
  .solana__viz { height: 320px; }
  .orbit__core { width: 130px; height: 130px; padding: 14px; }
  .orbit__solana { width: 56px; }
  .orbit__label { font-size: 9px; margin-top: 8px; }
  .orbit__ring--1 { width: 220px; height: 220px; }
  .orbit__ring--2 { width: 300px; height: 300px; }
  .orbit__ring--3 { width: 380px; height: 380px; }
  .orbit__token { font-size: 11px; padding: 6px 10px; }
  .orbit__token--1 { transform: translate(-50%, -50%) rotate(0deg) translateX(110px) rotate(0deg); }
  .orbit__token--2 { transform: translate(-50%, -50%) rotate(72deg) translateX(150px) rotate(-72deg); }
  .orbit__token--3 { transform: translate(-50%, -50%) rotate(144deg) translateX(110px) rotate(-144deg); }
  .orbit__token--4 { transform: translate(-50%, -50%) rotate(216deg) translateX(190px) rotate(-216deg); }
  .orbit__token--5 { transform: translate(-50%, -50%) rotate(288deg) translateX(150px) rotate(-288deg); }

  /* ---- APP feature blocks ---- */
  .app { padding: 100px 20px 40px; }
  .app__head { margin-bottom: 80px; }
  .feature { gap: 36px; margin-bottom: 90px; }
  .feature__title { font-size: clamp(28px, 7.5vw, 40px); margin-bottom: 18px; }
  .feature__desc { font-size: 15px; margin-bottom: 22px; }
  .feature__list li { font-size: 14px; gap: 10px; }
  .feature__list li span { width: 20px; height: 20px; font-size: 10px; }

  /* ---- HOW (3 steps) ---- */
  .how { padding: 100px 20px; }
  .how__head { margin-bottom: 70px; }
  .how__steps { gap: 60px; }
  .how-step__badge { padding: 6px 12px; font-size: 11px; margin-bottom: 22px; }
  .how-step h3 { font-size: 20px; }
  .how-step p { font-size: 13px; }

  /* ---- CATEGORIES ---- */
  .categories { padding: 0 20px 100px; }
  .cat__head { margin-bottom: 50px; }
  .cat__grid { grid-auto-rows: 360px; gap: 16px; }
  .cat-card { padding: 26px 22px; }
  .cat-card h3 { font-size: 32px; }
  .cat-card p { font-size: 14px; }
  .cat-card__meta { font-size: 11px; }

  /* ---- STATS ---- */
  .stats { padding: 60px 20px 100px; gap: 30px; }
  .stat__num { font-size: clamp(40px, 11vw, 70px); }
  .stat__lbl { font-size: 11px; }

  /* ---- SHOWCASE ---- */
  .showcase { padding: 100px 20px 80px; }
  .showcase__head { margin-bottom: 80px; }
  .showcase__grid { grid-template-columns: 1fr; gap: 100px; }
  .showcase__cap { font-size: 13px; bottom: -42px; padding: 6px 14px; }

  /* ---- WAITLIST ---- */
  .waitlist { padding: 100px 20px 120px; }
  .waitlist__title {
    font-size: clamp(34px, 9vw, 54px);
    margin-bottom: 22px;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }
  .waitlist__title br { display: none; }     /* let it flow naturally on mobile */
  .waitlist__sub { font-size: 15px; margin-bottom: 36px; }
  .waitlist__form { flex-direction: column; gap: 10px; }
  .waitlist__input, .waitlist__form .btn { width: 100%; }
  .waitlist__small { font-size: 11px; }

  /* ---- FOOTER ---- */
  .footer { padding: 50px 20px 30px; }
  .footer__inner { gap: 36px; padding-bottom: 36px; }
  .footer__cols { gap: 24px 18px; }
  .footer__cols a { font-size: 13px; }
  .footer__bottom { padding-top: 28px; font-size: 10px; gap: 20px; }
  .mark--lg { font-size: 44px; }
}

/* Extra-tight tuning for very small phones (≤390px = SE/12 mini/13 mini) */
@media (max-width: 390px) {
  .phone, .phone--lg, .phone--md { width: min(86vw, 300px); }
  .compare-price { font-size: clamp(46px, 17vw, 80px); }
  .feature__title, .waitlist__title { letter-spacing: -0.03em; }
  .cat__grid { grid-auto-rows: 320px; }
}
