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

:root {
  /* Inks (near-black backgrounds, dominant in dark sections) */
  --ink:        #0B0C0F;
  --ink-2:      #14161B;
  --ink-3:      #1F2229;

  /* Papers (light backgrounds, off-white "premium" feel) */
  --bg:         #F6F4EF;     /* slightly cooler/grayer than before */
  --bg-warm:    #EFEBE2;
  --paper:      #FFFFFF;

  /* Accent — peach is now an OCCASIONAL signature color, not decorative */
  --peach:      #F4C97F;
  --peach-soft: #F9EBCD;
  --peach-deep: #B27328;

  /* Text scale */
  --text:       #0B0C0F;
  --text-2:     #4A5160;     /* main body grey */
  --text-3:     #8A919E;     /* metadata / labels */
  --text-on-dark:    #FFFFFF;
  --text-on-dark-2:  rgba(255,255,255,0.66);
  --text-on-dark-3:  rgba(255,255,255,0.42);

  /* Borders — thin lines = institutional gesture */
  --border:        rgba(11,12,15,0.10);
  --border-strong: rgba(11,12,15,0.18);
  --border-dark:   rgba(255,255,255,0.10);
  --border-dark-strong: rgba(255,255,255,0.18);

  --positive:   #12A16B;
  --solana-1:   #9945FF;
  --solana-2:   #14F195;

  /* Type families — SF Pro across the whole site (no mono mix).
     --font-mono kept as a name only; points to the same SF Pro stack so
     existing eyebrow/label/ticker rules render in SF Pro. */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;

  --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);
  /* SF Pro Text first for body — denser than Display at body sizes, more
     legible. Display is still used in headings via .h1/.h2/.hero__title etc. */
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
               "Helvetica Neue", Arial, sans-serif;
  font-weight: 450;
  -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;
}

/* ============================================================================
   LANGUAGE BAR — slim FIXED top strip on home page only. Sits above the
   nav. The nav's top: 0 is pushed down to top: var(--lang-bar-h) when the
   bar is present (body has .has-lang-bar). Always visible, no dismiss.
   ========================================================================== */
:root { --lang-bar-h: 36px; }
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;            /* above the nav (z:100) */
  height: var(--lang-bar-h);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.70);
  font-family: var(--font-sans);
}
.lang-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lang-bar__msg {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.lang-bar__opts {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-bar__opt {
  display: inline-block;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-radius: 5px;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang-bar__opt:hover {
  color: white;
  background: rgba(255,255,255,0.05);
}
.lang-bar__opt--current {
  color: white;
  background: rgba(244,201,127,0.10);
  cursor: default;
  pointer-events: none;
}

/* Close (X) — dismisses the bar for the current session */
.lang-bar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.40);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang-bar__close:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* Push the nav down by the lang-bar height on pages that have the bar.
   When the bar is closed (body class set), nav snaps back to top: 0. */
.lang-bar ~ .nav,
body:has(.lang-bar) .nav { top: var(--lang-bar-h); }
.lang-bar ~ .nav-overlay,
body:has(.lang-bar) .nav-overlay { top: calc(var(--lang-bar-h) + 64px); }

body.lang-bar--closed .lang-bar { display: none; }
body.lang-bar--closed .nav { top: 0 !important; }
body.lang-bar--closed .nav-overlay { top: 64px !important; }

@media (max-width: 600px) {
  :root { --lang-bar-h: 32px; }
  .lang-bar__inner { padding: 0 18px; }
  .lang-bar__msg { font-size: 9.5px; letter-spacing: 0.12em; }
  .lang-bar__opt { padding: 4px 9px; font-size: 11.5px; }
}
@media (max-width: 380px) {
  .lang-bar__msg { display: none; }
  .lang-bar__inner { justify-content: flex-end; }
}
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 22px;
  height: 46px;
  border-radius: 6px;       /* tighter than pill = more institutional */
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--text-on-dark);
  border-color: var(--text);
}
.btn--primary:hover { background: #1c1f25; border-color: #1c1f25; }

/* Outline button — institutional default for non-primary actions */
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--text); background: rgba(11,12,15,0.04); }
.btn--outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.20);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); }

/* Ghost (subtle, dark sections) — kept but desaturated */
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.30); }

/* Sizes */
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; border-radius: 5px; }
.btn--lg { height: 56px; padding: 0 28px; font-size: 16px; border-radius: 7px; }

/* Eyebrow — monospace number + rule line (Superstate / capital markets gesture) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--accent { color: var(--peach-deep); }
.eyebrow--light  { color: var(--text-on-dark-2); }

/* Numbered eyebrow: pass index via data-num="01" */
.eyebrow--numbered::before {
  content: attr(data-num);
  width: auto;
  height: auto;
  background: none;
  opacity: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Mono utility (for inline labels / metadata) */
.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
}

/* Rule line (institutional dividers) */
.rule {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}
.rule--dark { background: var(--border-dark); }

/* Display headings — bigger, tighter tracking, refined for capital-markets feel.
   Editorial, not "fintech bold". */
.h2 {
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: var(--text);
}
.h2--light { color: var(--text-on-dark); }

/* Em accents inherit everything — same SF Pro, same weight, same color.
   Premium institutional gesture: emphasis via word choice, not decoration. */
.h2 em,
.h2--light em {
  font-style: normal;
  font-weight: inherit;
  color: inherit;
}

/* Lede — bigger, more comfortable line-length, more breathing room */
.lede {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 450;
  max-width: 60ch;
  letter-spacing: -0.005em;
}
.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: auto so :hover works; clicks pass through transparent
     bg by default — only the brand+links are interactive children. */
}
.nav.is-scrolled,
.nav:hover {
  background: rgba(11, 12, 15, 0.86) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav.is-scrolled { padding: 14px 40px; }
/* When the mobile menu is open, force the top nav to a solid dark so the
   transparent hero photo doesn't bleed above the dropdown. */
body.menu-open .nav {
  background: #000 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.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: 1024px) { .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(0.85) brightness(0.38) contrast(1.10);   /* darker */
  will-change: transform;
  opacity: 1;
  z-index: 1;
}

/* Blueprint hidden — too busy. Kept in DOM for backwards compat but invisible. */
.hero__blueprint { display: none; }
.bp, .bp-text { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;       /* above the photo, below the text */
  background:
    radial-gradient(ellipse at top right, rgba(244,201,127,0.03), transparent 55%),
    linear-gradient(180deg,
      rgba(11,12,15,0.86) 0%,
      rgba(11,12,15,0.92) 50%,
      rgba(11,12,15,0.99) 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 {
  /* Override the pill style — now using the mono rule-line eyebrow.
     Resets to plain inline-flex; styling comes from .eyebrow + .eyebrow--light. */
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 0;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  text-transform: uppercase;
}
/* Gold period — matches the wordmark dot. Sits inline at the baseline of
   the headline and inherits the title's font size so it scales with the H1. */
.hero__dot {
  display: inline-block;
  color: var(--peach);
  font-weight: inherit;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__title {
  font-size: clamp(48px, 7.4vw, 124px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin-bottom: 30px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
/* Hero "real" accent — restored gold, same SF Pro weight */
.hero__title em {
  font-style: normal;
  font-weight: inherit;
  color: var(--peach);
}
.hero__line {
  display: block;
  /* No overflow clipping — descenders (g, p, y) need room AND the rotator's
     leaving word slides up behind this line, so we can't clip it here. */
  white-space: normal;
  word-break: keep-all;
  position: relative;
  z-index: 2;             /* sits above the rotator so leaving words pass behind */
}

/* ===== Rotator — spring-style word swap on the second hero line.
   All words occupy the same CSS-grid cell so the container auto-sizes to the
   longest word; opacity + translateY handles the animation. The whole rotator
   line is z-index 1 — the static "Invierte en algo" line above is z-index 2,
   so when a word slides up to leave, it passes BEHIND the white text. */
.hero__line--rotator {
  position: relative;
  z-index: 1;
  display: block;
  overflow: visible;
  text-align: center;
  line-height: 1.0;
  /* Pull up slightly so the rotator line abuts the static line without a gap.
     (Replaces the old `.hero__line + .hero__line { margin-top: -0.22em }`.) */
  margin-top: -0.05em;
}
.hero__rotator {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  vertical-align: top;
  line-height: 1.0;
}
.hero__rot-word {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.6em);
  transition:
    transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.55s ease-out;
  will-change: transform, opacity;
  padding-bottom: 0.18em;   /* room for descenders ('Productivo', 'Tuyo') */
}
.hero__rot-word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero__rot-word.is-leaving {
  opacity: 0;
  transform: translateY(-0.6em);
  transition:
    transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.4s ease-in;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.80);
  margin: 0 auto 44px;
  max-width: 580px;
  font-weight: 450;
}
.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;
  font-weight: inherit;
  color: inherit;
}
.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: 1024px) {
  .manifesto { padding: 80px 20px; }
  .manifesto__title { margin-bottom: 48px; }
  .manifesto__compare { grid-template-columns: 1fr; gap: 22px; }
  .compare-arrow { transform: rotate(90deg); margin: 0 auto; }
}
@media (max-width: 600px) {
  .manifesto { padding: 60px 18px; }
  .manifesto__title { margin-bottom: 36px; font-size: clamp(28px, 8vw, 42px); }
  .manifesto__eyebrow { margin-bottom: 18px; }
  .manifesto__compare { gap: 18px; }
  .compare-price { font-size: 36px; }
  .compare-desc { font-size: 13px; }
}

/* ===========================================================================
   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: transparent;
  overflow: visible;            /* let the grown token shadow extend outside */
  /* Vignette / feathered edges — soft rectangular fade so the photo reads as
     floating in the dark section. drop-shadow follows the masked shape. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
.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. Single linear gradient (no radial highlight) for cheaper
   paint pass on mobile — visually still reads as a gold app-icon tile. */
.tile__gold {
  position: absolute;
  inset: 0;
  background: 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;
  font-weight: inherit;
  color: inherit;
}
.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: 12px;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cstep:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.cstep__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-3);
  margin-bottom: 28px;
}
.cstep__icon {
  font-size: 24px;
  margin-bottom: 24px;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text);
}
.cstep__icon--ink {
  background: var(--ink);
  border-color: 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: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.cstep p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.cstep__arrow {
  align-self: center;
  font-size: 18px;
  color: var(--text-3);
  font-weight: 300;
  opacity: 0.5;
}

@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: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature__list li span svg {
  width: 12px; height: 12px;
  stroke-width: 1.6;
}
.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 — Apple Card-style: sticky single iPhone + scrolling step text.
   The phone is pinned in the left column of a 2-column grid; step text
   scrolls past on the right. As each step enters the viewport, JS swaps
   the active screen image (crossfade).
   ========================================================================= */
.how {
  background: var(--ink);
  color: white;
  padding: 140px 40px 160px;
}
.how__intro {
  max-width: var(--max);
  margin: 0 auto 80px;
  text-align: center;
}
.how__intro .h2 { margin: 18px 0 18px; }
.how__intro .lede { margin: 0 auto; max-width: 50ch; }

.how__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.how__phone-wrap {
  position: sticky;
  top: 14vh;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__phone {
  width: 100%;
  max-width: 360px;
}
.how__phone .phone {
  margin: 0 auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.45));
}
/* Stacked screens — only the active one is visible. */
.how__phone .phone__screen {
  position: relative;
  overflow: hidden;
}
.how__screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.how__screen.is-active { opacity: 1; }
.how__screen:first-child { position: relative; } /* establish height */

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.how-step {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh 0;
  opacity: 0.32;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-step.is-active { opacity: 1; }
.how-step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--peach);
  margin-bottom: 18px;
}
.how-step__h {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: white;
}
.how-step__p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  margin: 0;
  max-width: 42ch;
}

/* Mobile / tablet: stack the phone above each step (no sticky). The phone
   sits above its step text and swaps when scrolling; we keep simple stack
   of 3 step blocks each with its own phone for reliability on iOS. */
@media (max-width: 1024px) {
  .how { padding: 56px 18px 64px; }
  .how__intro { margin-bottom: 24px; }
  .how__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Sticky on mobile: phone pinned at top under the nav, text scrolls past. */
  .how__phone-wrap {
    position: sticky;
    top: 70px;
    z-index: 1;
    background:
      linear-gradient(to bottom, var(--ink) 78%, rgba(11,12,15,0)) ;
    padding: 10px 0 18px;
  }
  .how__phone { max-width: 200px; }
  /* Force the phone mockup to keep iPhone aspect ratio (380:822). Smaller
     mockup on mobile so the 3 steps don't dominate the screen. */
  .how__phone .phone,
  .how__phone .phone--lg {
    width: 190px !important;
    height: calc(190px * 822 / 380) !important;
    aspect-ratio: 380 / 822 !important;
    border-radius: calc(190px * 0.135) !important;
    padding: calc(190px * 0.035) !important;
  }
  .how__phone .phone__screen,
  .how__phone .phone--lg .phone__screen {
    border-radius: calc(190px * 0.10) !important;
  }
  .how__steps {
    margin-top: 0;
  }
  .how-step {
    min-height: 0;
    padding: 16px 0 24px;
    opacity: 1; /* always show on mobile */
    text-align: center;
    align-items: center;
  }
  .how-step__num { font-size: 11px; margin-bottom: 6px; }
  .how-step__h { font-size: 20px; margin-bottom: 8px; }
  .how-step__p { font-size: 13.5px; max-width: 34ch; line-height: 1.45; }
}
@media (max-width: 600px) {
  .how { padding: 44px 14px 52px; }
  .how__phone { max-width: 170px; }
  .how__phone .phone,
  .how__phone .phone--lg {
    width: 160px !important;
    height: calc(160px * 822 / 380) !important;
    border-radius: calc(160px * 0.135) !important;
    padding: calc(160px * 0.035) !important;
  }
  .how__phone .phone__screen,
  .how__phone .phone--lg .phone__screen {
    border-radius: calc(160px * 0.10) !important;
  }
  .how-step__h { font-size: 18px; }
  .how-step__p { font-size: 13px; }
}

/* ===========================================================================
   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: 620px;
  gap: 16px;
  align-items: stretch;
}
.cat-card {
  position: relative;
  border-radius: 14px;             /* tighter than before — more institutional */
  overflow: hidden;
  display: flex;
  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 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
}
.cat-card__tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.cat-card.cat-card--featured .cat-card__tag { color: var(--peach); }
.cat-card h3 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 6px;
}
.cat-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 380px;
}
.cat-card__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

@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: 1024px) {
  .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;
}

/* Mobile carousel — hidden on desktop */
.showcase__carousel { display: none; }

@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;
  font-weight: inherit;
  color: inherit;
  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;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .waitlist__input {
    height: 56px;
    padding: 0 18px;
    font-size: 16px; /* avoid iOS zoom on focus */
    width: 100%;
    border-radius: 14px;
  }
  .waitlist__form .btn {
    width: 100%;
    height: 56px;
    border-radius: 14px;
    font-size: 16px;
  }
}

/* ===========================================================================
   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 · Donde operamos — markets band above legal bottom
   ========================================================================== */
.footer__operamos {
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__operamos-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.footer__operamos-col { display: flex; flex-direction: column; gap: 12px; }
.footer__operamos-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__operamos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.85);
}
.footer__operamos-list a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer__operamos-list a:hover { color: rgba(255,255,255,0.85); }
.footer__operamos-list--soon { font-size: 13px; }
.footer__operamos-country {
  position: relative;
  padding-left: 14px;
}
.footer__operamos-country::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .footer__operamos { padding: 24px 0 20px; margin-top: 8px; }
  .footer__operamos-row { grid-template-columns: 1fr; gap: 24px; }
  .footer__operamos-list { font-size: 13.5px; gap: 8px 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);
}

/* ============================================================================
   NAV — institutional menu (overrides earlier minimal nav)
   ========================================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  pointer-events: auto;        /* override earlier none */
  padding: 18px 32px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 36px;
  pointer-events: auto;
}
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__link:hover { color: white; background: rgba(255,255,255,0.06); }
.nav.is-scrolled .nav__link { color: rgba(255,255,255,0.78); }
.nav__link.is-current { color: white; }
.nav__link.is-current::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--peach);
  border-radius: 1px;
  opacity: 0.85;
}

/* Empresas dropdown */
.nav__group {
  position: relative;
  pointer-events: auto;
}
.nav__link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  color: rgba(255,255,255,0.72);
}
.nav__link--has-dropdown:hover { color: white; background: rgba(255,255,255,0.06); }
.nav__chevron {
  transition: transform 0.2s ease;
  opacity: 0.85;
}
.nav__group:hover .nav__chevron,
.nav__group.is-open .nav__chevron { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -8px;
  min-width: 280px;
  padding: 10px;
  background: rgba(15,17,21,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.50), 0 0 0 1px rgba(255,255,255,0.04) inset;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.2s;
  z-index: 50;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown,
.nav__group.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}
.nav__dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav__dropdown-item:hover {
  background: rgba(255,255,255,0.06);
}
.nav__dropdown-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.nav__dropdown-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.005em;
}
.nav__dropdown-item.is-current .nav__dropdown-title { color: var(--peach); }

/* Mobile overlay separator */
.nav-overlay__sep {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin: 18px 0 6px;
  padding: 0 28px;
}
.nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.btn--sm { height: 40px; padding: 0 16px; font-size: 13px; }
.nav__cta-secondary {
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: rgba(255,255,255,0.85);
}
.nav__cta-secondary:hover { background: rgba(255,255,255,0.06); color: white; }
.nav__burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}
.nav__burger:hover { opacity: 0.7; }
.nav__burger span {
  width: 16px; height: 1.5px;
  background: white;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ===== Mobile drop-down menu (Apple-style: subtle, solid black, text only) ===== */
.nav-overlay {
  position: fixed;
  top: 64px;            /* sits flush under the nav bar */
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 99;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  padding: 14px 0 22px;
  gap: 0;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.3s ease;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-overlay__link {
  display: block;
  padding: 18px 28px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.012em;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-overlay__link:hover,
.nav-overlay__link:active { color: white; background: rgba(255,255,255,0.04); }
.nav-overlay__link span {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.nav-overlay__link small {
  display: none;        /* keep menu clean, hide the descriptor */
}
.nav-overlay__cta {
  margin-top: 8px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
/* Convert CTAs inside the dropdown to plain text links */
.nav-overlay__cta .btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.78) !important;
  height: auto !important;
  padding: 12px 0 !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.012em;
  justify-content: flex-start;
  border-radius: 0;
}
.nav-overlay__cta .btn:hover { color: white !important; background: transparent !important; }
.nav-overlay__cta .btn--primary { color: var(--peach) !important; }
body.menu-open { overflow: hidden; }

/* Hide desktop nav, show burger on tablet/mobile */
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__cta-secondary { display: none; }
  .nav__burger { display: flex; }
  .nav { gap: 12px; padding: 14px 20px; }
}

/* ============================================================================
   AUDIENCES — three paths
   Institutional treatment: monochrome cards, thin borders, mono labels,
   no gradient backgrounds. Reads like a capital markets product table.
   ========================================================================== */
.audiences {
  background: var(--bg);
  padding: 180px 40px 160px;
  border-top: 1px solid var(--border);
}
.audiences__head {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.audiences__head .eyebrow { margin-bottom: 28px; }
.audiences__head .h2 { margin-bottom: 28px; max-width: 18ch; }
.audiences__head .lede { max-width: 60ch; }
.audiences__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.aud-card {
  position: relative;
  background: transparent;
  padding: 56px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--border);
  transition: background 0.4s ease;
  min-height: 360px;
}
.aud-card:last-child { border-right: none; }
.aud-card:hover { background: var(--paper); }
.aud-card__tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.aud-card__tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--text-3);
}
.aud-card h3 {
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.05;
}
.aud-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-2);
  flex: 1;
  max-width: 36ch;
}
.aud-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  transition: gap 0.3s ease;
}
.aud-card:hover .aud-card__cta { gap: 14px; }
.aud-card__cta svg { transition: transform 0.3s ease; }
.aud-card:hover .aud-card__cta svg { transform: translateX(4px); }

/* ============================================================================
   ARCHITECTURE — five-layer product map
   Treatment: institutional product table on dark. Each layer = a row card
   with mono number, name, status tag, description and discreet link.
   ========================================================================== */
.arch {
  background: var(--ink);
  color: white;
  padding: 180px 40px 180px;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.arch__head {
  position: relative;
  max-width: var(--max);
  margin: 0 auto 80px;
}
.arch__head .eyebrow { color: var(--text-on-dark-2); margin-bottom: 28px; }
.arch__head .eyebrow::before { background: var(--text-on-dark-2); }
.arch__head .h2 { margin-bottom: 28px; max-width: 16ch; }
.arch__head .lede { max-width: 64ch; }

.arch__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.arch-card {
  background: transparent;
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border-dark);
  transition: background 0.3s ease;
  min-height: 360px;
  position: relative;
}
.arch-card:last-child { border-right: none; }
.arch-card:hover { background: rgba(255,255,255,0.03); }
.arch-card__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-on-dark-3);
}
.arch-card__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: white;
  line-height: 1.1;
}
.arch-card__tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-3);
}
.arch-card__tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-on-dark-3);
}
.arch-card--featured .arch-card__tag::before { background: var(--peach); }
.arch-card--featured .arch-card__tag { color: var(--peach); }
.arch-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-on-dark-2);
  flex: 1;
}
.arch-card__link {
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
  letter-spacing: -0.005em;
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.arch-card__link:hover { gap: 10px; }
.arch-card--future { opacity: 0.55; }
.arch-card--future .arch-card__link { display: none; }

/* CTA below the RealOS arch grid */
.arch__cta {
  max-width: var(--max);
  margin: 56px auto 0;
  display: flex;
  justify-content: flex-start;
}

/* ============================================================================
   B2B preview — Tokenizar
   Treatment: institutional split with typographic flow on the right
   (mono numbers + names + thin line connectors), no decorative icons.
   ========================================================================== */
.b2b {
  background: var(--ink);
  color: white;
  padding: 180px 40px 180px;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.b2b__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.b2b__copy .h2 { margin: 28px 0; max-width: 14ch; }
.b2b__copy .lede { margin-bottom: 40px; max-width: 50ch; }
.b2b__copy .eyebrow { color: var(--text-on-dark-2); }
.b2b__copy .eyebrow::before { background: var(--text-on-dark-2); }

.b2b__list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-dark);
}
.b2b__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 15px;
  color: var(--text-on-dark-2);
  letter-spacing: -0.005em;
}
.b2b__check {
  width: 22px; height: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--text-on-dark-2);
}
.b2b__check svg { width: 12px; height: 12px; stroke-width: 1.6; }
.b2b__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.b2b__viz {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.b2b-flow {
  display: contents;
}
.b2b-flow__node {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--border-dark);
  transition: padding-left 0.3s ease, background 0.3s ease;
}
.b2b-flow__node:last-child { border-bottom: none; }
.b2b-flow__node:hover { padding-left: 12px; background: rgba(255,255,255,0.02); }
.b2b-flow__node-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-on-dark-3);
}
.b2b-flow__node-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: white;
}
.b2b-flow__node-name small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-on-dark-2);
  margin-top: 4px;
}
.b2b-flow__node--accent .b2b-flow__node-num { color: var(--peach); }
.b2b-flow__node--accent .b2b-flow__node-name { color: var(--peach); }

/* Hide the old decorative bits (kept selectors so HTML still renders w/o errors) */
.b2b-flow__icon, .b2b-flow__line { display: none; }

/* ============================================================================
   TRUST / Legal preview
   Treatment: editorial. Big-aired headline + minimal numbered pillars +
   restrained disclaimer block. No card-y feel.
   ========================================================================== */
.trust {
  background: var(--bg);
  padding: 200px 40px 180px;
  border-top: 1px solid var(--border);
}
/* Compact variant — short eyebrow + headline + lede + "Ver más →" link.
   Used on the homepage to point users to the full /legal page. */
.trust--compact {
  padding: 90px 40px;
}
.trust--compact .trust__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust--compact .eyebrow { justify-content: center; margin-bottom: 16px; }
.trust__h {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--text);
}
.trust__h em {
  font-style: normal;
  color: var(--peach-deep);
}
.trust__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 56ch;
  margin: 0 0 24px;
}
.trust--compact .btn { align-self: center; }
@media (max-width: 1024px) {
  .trust--compact { padding: 44px 18px; }
  .trust__h { font-size: clamp(22px, 6vw, 30px); margin-bottom: 12px; }
  .trust__lede { font-size: 14px; line-height: 1.5; }
}
@media (max-width: 600px) {
  .trust--compact { padding: 36px 14px; }
  .trust--compact .eyebrow { margin-bottom: 12px; }
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.trust__inner .eyebrow { margin-bottom: 28px; }
.trust__inner .h2 { margin-bottom: 28px; max-width: 16ch; }
.trust__inner > .lede { max-width: 60ch; margin-bottom: 80px; }

.trust__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
  border-top: 1px solid var(--border);
}
.trust-pillar {
  padding: 36px 32px 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--border);
  padding-right: 32px;
}
.trust-pillar:last-child { border-right: none; padding-right: 0; }
.trust-pillar:not(:first-child) { padding-left: 32px; }
.trust-pillar__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-3);
}
.trust-pillar__num--icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: var(--text);
}
.trust-pillar__num--icon svg { width: 18px; height: 18px; stroke-width: 1.4; }
.trust-pillar h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.trust-pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}
.trust__disclaimer {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 78ch;
  margin: 0 0 40px;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--peach);
  background: transparent;
  border-radius: 0;
  font-style: normal;
}

/* ============================================================================
   FOOTER — expanded sitemap (5 columns)
   ========================================================================== */
.footer__cols { grid-template-columns: repeat(5, 1fr) !important; }
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.footer__social a {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
}
.footer__social a:hover { background: rgba(255,255,255,0.12); }

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

  /* ---- All phone mockups: scale to fit, concentric corner radii ----
     The screen's border-radius is exactly outer-radius minus padding so the
     bezel + screen corners are perfectly concentric (no gap at corners). */
  .phone, .phone--lg, .phone--md {
    --phone-w: min(80vw, 320px);
    width: var(--phone-w);
    height: auto;
    aspect-ratio: 380 / 822;
    border-radius: calc(var(--phone-w) * 0.135);
    padding: calc(var(--phone-w) * 0.035);
  }
  .phone .phone__screen,
  .phone--lg .phone__screen,
  .phone--md .phone__screen {
    border-radius: calc(var(--phone-w) * 0.10);
  }

  /* ---- 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: 70px 20px 90px; }

  /* ---- 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 — single-phone carousel on mobile ---- */
  .showcase { padding: 100px 20px 100px; }
  .showcase__head { margin-bottom: 56px; }
  .showcase__grid { display: none; }            /* hide multi-phone grid */

  .showcase__carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 100%;
  }
  .carousel__phone {
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    will-change: transform;
  }
  .carousel__img {
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .carousel__img.is-fading { opacity: 0; }

  .carousel__info {
    text-align: center;
    max-width: 360px;
    padding: 0 12px;
  }
  .carousel__counter {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--peach-deep);
    margin-bottom: 12px;
  }
  .carousel__title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.05;
  }
  .carousel__desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-2);
  }

  .carousel__nav {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 380px;
    padding: 0 8px;
  }
  .carousel__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    min-width: 48px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  }
  .carousel__btn:active { transform: scale(0.96); }
  .carousel__btn[disabled] { opacity: 0.35; cursor: default; }
  .carousel__btn--next {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    margin-left: auto;
    padding: 0 18px;
  }
  .carousel__btn-label { display: inline; }

  .carousel__dots {
    display: flex;
    gap: 6px;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  .carousel__dot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--border-dark, rgba(0,0,0,0.18));
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }
  .carousel__dot.is-active {
    width: 22px;
    background: var(--peach-deep);
  }

  /* ---- 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; }
}

  /* ---- AUDIENCES (Phase 1 institutional) ---- */
  .audiences { padding: 100px 20px 100px; }
  .audiences__head { margin-bottom: 56px; }
  .audiences__grid { grid-template-columns: 1fr; gap: 14px; }
  .aud-card { padding: 28px 24px 26px; border-radius: 22px; }
  .aud-card h3 { font-size: 24px; }
  .aud-card p { font-size: 14px; }

  /* ---- ARCHITECTURE ---- */
  .arch { padding: 100px 20px 100px; }
  .arch__head { margin-bottom: 56px; }
  .arch__grid { grid-template-columns: 1fr; gap: 12px; }
  .arch-card { padding: 24px 20px; border-radius: 18px; }
  .arch-card__name { font-size: 20px; }
  .arch-card p { font-size: 13px; }

  /* ---- B2B preview ---- */
  .b2b { padding: 100px 20px 100px; }
  .b2b__inner { grid-template-columns: 1fr; gap: 50px; }
  .b2b__copy .h2 { font-size: clamp(34px, 9vw, 54px); line-height: 1.05; }
  .b2b__list li { font-size: 14px; }
  .b2b-flow__node { padding: 18px 20px; font-size: 13px; gap: 14px; }
  .b2b-flow__icon { width: 38px; height: 38px; font-size: 17px; }
  .b2b__ctas .btn { width: 100%; max-width: 320px; }

  /* ---- TRUST ---- */
  .trust { padding: 100px 20px 100px; }
  .trust__pillars { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; }
  .trust-pillar { padding: 22px 20px; border-radius: 18px; }
  .trust-pillar h3 { font-size: 16px; }
  .trust-pillar p { font-size: 12.5px; }
  .trust__disclaimer { font-size: 12px; padding: 18px 20px; }

  /* ---- FOOTER 5-cols → 2-cols on mobile ---- */
  .footer__cols { grid-template-columns: repeat(2, 1fr) !important; gap: 28px 20px; }
}

/* 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; }
}

/* ============================================================================
   PHASE 13 — Premium photo backdrops + interactivity layer
   ========================================================================== */

/* Generic photo-backdrop layer used in dark sections */
.photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  filter: grayscale(0.85) contrast(1.05) brightness(0.55);
  mix-blend-mode: luminosity;
}
.photo-bg::after {
  /* dark vignette so type stays readable */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,12,15,0.55) 0%, rgba(11,12,15,0.85) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(11,12,15,0.30) 0%, rgba(11,12,15,0.85) 100%);
}
.photo-bg--soft  { opacity: 0.10; }
.photo-bg--strong { opacity: 0.28; }

/* Hero backdrop — sweet spot: photo legible, text reads cleanly */
.hero__bg {
  filter: grayscale(0.30) contrast(1.06) brightness(0.55);
  transition: filter 1.2s ease;
}

/* ===== HERO: subtle dark overlay so the photo shows but text wins ===== */
.hero__overlay {
  background:
    /* fine pattern grid */
    repeating-linear-gradient(0deg,   rgba(255,255,255,0.020) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg,  rgba(255,255,255,0.020) 0 1px, transparent 1px 80px),
    /* soft vignette around title */
    radial-gradient(ellipse at 50% 35%, rgba(11,12,15,0.20) 0%, rgba(11,12,15,0.65) 70%),
    /* gentle dark wash, darker at the bottom for the next-section transition */
    linear-gradient(180deg, rgba(11,12,15,0.45) 0%, rgba(11,12,15,0.65) 50%, rgba(11,12,15,0.92) 100%);
}

/* ===== MANIFESTO: subtle architecture under text ===== */
.manifesto > .photo-bg {
  background-image: url('/assets/img/bg-architecture.jpg');
  opacity: 0.12;
}

/* ===== SOLANA section: data backdrop ===== */
.solana > .photo-bg {
  background-image: url('/assets/img/bg-data.jpg');
  opacity: 0.10;
}

/* ===== CATEGORIES (already has bg images per card; keep) ===== */

/* ===== TRUST section gets a marble/architecture lift ===== */
.trust > .photo-bg {
  background-image: url('/assets/img/bg-marble.jpg');
  opacity: 0.10;
}

/* ===== WAITLIST: skyline at night ===== */
.waitlist > .photo-bg {
  background-image: url('/assets/img/bg-skyline-night.jpg');
  opacity: 0.18;
}

/* ===== STATS gets a subtle architectural rhythm ===== */
.stats {
  position: relative;
  overflow: hidden;
}
.stats > .photo-bg {
  background-image: url('/assets/img/bg-construction.jpg');
  opacity: 0.08;
  filter: grayscale(1) contrast(1.1) brightness(0.5);
}

/* ============================================================================
   TICKER — mono data ribbon flying across the page
   <div class="ticker"><div class="ticker__row">...</div></div>
   ========================================================================== */
.ticker {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 22px 0;
  color: rgba(255,255,255,0.55);
}
.ticker__row {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerRun 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: max-content;
}
.ticker__item { display: inline-flex; align-items: center; gap: 12px; }
.ticker__item strong { color: var(--peach); font-weight: 600; }
.ticker__item .ticker__dot {
  width: 5px; height: 5px;
  background: var(--peach);
  border-radius: 50%;
  display: inline-block;
  animation: tickerPulse 2s ease-in-out infinite;
}
@keyframes tickerRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes tickerPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ============================================================================
   GLOW-CARD — interactive hover with cursor-following spotlight
   Used on .cat-card, .arch-card, etc. via the data-glow attribute.
   ========================================================================== */
.glow-card {
  position: relative;
  isolation: isolate;
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(244,201,127,0.10),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.glow-card:hover::before { opacity: 1; }
/* Lift only the *content* layer above the glow — never override absolutely-
   positioned children like card backgrounds, overlays, or photos. */
.glow-card > *:not([class*="__bg"]):not([class*="__overlay"]):not([class*="__photo"]) {
  position: relative;
  z-index: 2;
}

/* ============================================================================
   REVEAL — generic scroll-driven reveal helper
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   STAT counter — bigger / more dramatic
   ========================================================================== */
.stat__num {
  position: relative;
}
.stat::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,201,127,0.55), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.stat.is-visible::after { opacity: 1; }

/* ============================================================================
   FLOATING PARTICLES — subtle ambient motion under dark sections
   ========================================================================== */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(244,201,127,0.55);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 14s linear infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-220px) scale(1); }
}

/* Bigger headline punch on key dark sections */
.solana__inner,
.trust__inner,
.manifesto__inner,
.waitlist__inner { position: relative; z-index: 2; }

/* ============================================================================
   PHASE 14 — Mobile coherence pass (Apple-iPhone style)
   • Centered everything that should be centered
   • Coherent paddings
   • Stronger text legibility under photo backgrounds
   • Photo backgrounds tuned softer on mobile so text stays sharp
   ========================================================================== */
@media (max-width: 1024px) {

  /* HERO — title centered vertically on mobile (with a slight upward bias
     via padding-bottom so the "Cómo funciona" CTA sits below center). */
  .hero {
    align-items: center;
    padding-top: 0;
    padding-bottom: 5vh;
    min-height: 100vh;
  }
  .hero__content { padding: 0 22px; max-width: 100%; text-align: center; }
  .hero__eyebrow { font-size: 11px; margin-bottom: 22px; letter-spacing: 0.16em; }
  .hero__title {
    font-size: clamp(36px, 9.4vw, 50px);
    letter-spacing: -0.035em;
    line-height: 1.02;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
  }
  /* The accent line ("Real.") gets a slight size bump so it lands as the
     headline's punchline. */
  .hero__title .hero__line:last-child {
    font-size: 1.18em;
    line-height: 1.0;
  }
  .hero__sub {
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 38ch;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.78);
  }
  .hero__sub strong { color: var(--peach); font-weight: 700; }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__scroll-cue { bottom: 24px; }

  /* Photo backgrounds — softer on mobile so text wins */
  .photo-bg { opacity: 0.10 !important; }
  .photo-bg::after {
    background:
      linear-gradient(180deg, rgba(11,12,15,0.75) 0%, rgba(11,12,15,0.92) 100%);
  }

  /* MANIFESTO — centered */
  .manifesto { padding: 100px 22px 100px; }
  .manifesto__inner { text-align: center; }
  .manifesto__title { font-size: clamp(34px, 9vw, 50px); margin-bottom: 60px; line-height: 1.1; }
  .manifesto__compare { gap: 30px; }
  .compare-arrow { transform: rotate(90deg); }

  /* Section heads everywhere — centered */
  .audiences__head,
  .arch__head,
  .concept__head,
  .cat__head,
  .app__head,
  .how__head,
  .showcase__head,
  .b2b__copy,
  .trust__inner,
  .waitlist__inner,
  .solana__copy {
    text-align: center;
  }
  .audiences__head .lede,
  .arch__head .lede,
  .concept__head .lede,
  .cat__head .lede,
  .trust__inner .lede,
  .b2b__copy .lede,
  .solana__copy .lede {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 42ch;
  }

  /* Eyebrow centered on mobile (rule line + text inline) */
  .eyebrow {
    justify-content: center;
    text-align: center;
  }

  /* H2 centered */
  .h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 8.5vw, 52px);
    letter-spacing: -0.035em;
    line-height: 1.05;
    max-width: 18ch;
  }

  /* Lede / sub-text */
  .lede {
    font-size: 15.5px;
    max-width: 42ch;
  }

  /* Section padding base */
  section { padding-left: 22px !important; padding-right: 22px !important; }
  section.solana,
  section.manifesto,
  section.waitlist,
  section.trust { padding-left: 22px !important; padding-right: 22px !important; }

  /* CONCEPT diagram — vertical centered */
  .concept { padding: 90px 22px; }
  .concept__diagram {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .cstep {
    text-align: center;
    align-items: center;
    max-width: 320px;
  }
  .cstep__icon { margin: 0 auto; }
  .cstep__arrow { transform: rotate(90deg); }

  /* SOLANA section */
  .solana { padding: 90px 22px; }
  .solana__inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .solana__viz { margin: 0 auto; }
  .solana__stats { justify-items: center; }

  /* APP feature blocks — center, phone above text */
  .app { padding: 90px 22px; }
  .feature {
    grid-template-columns: 1fr !important;
    gap: 36px;
    text-align: center;
  }
  .feature__copy {
    order: 2;
    text-align: center;
    align-items: center;
  }
  .feature__copy .eyebrow { justify-content: center; }
  .feature__title {
    font-size: clamp(28px, 7vw, 40px);
    text-align: center;
    margin: 0 auto 18px;
    max-width: 22ch;
  }
  .feature__desc {
    text-align: center;
    max-width: 42ch;
    margin: 0 auto 22px;
  }
  .feature__list {
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
  }
  .feature__phone { order: 1; justify-self: center; }

  /* HOW (3 pasos) */
  .how { padding: 70px 22px 90px; }

  /* CATEGORIES */
  .categories { padding: 90px 22px; }
  .cat__grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 320px;
    gap: 14px;
  }
  .cat-card { border-radius: 16px; }

  /* STATS — 2x2 centered */
  .stats {
    padding: 70px 22px !important;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    text-align: center;
  }
  .stat__num { font-size: clamp(32px, 11vw, 56px); }

  /* SHOWCASE */
  .showcase { padding: 90px 22px; }
  .showcase__head { text-align: center; }

  /* TICKER — slightly tighter on mobile */
  .ticker { padding: 14px 0; }
  .ticker__row { gap: 28px; font-size: 10.5px; }
  /* Waitlist — tighter on mobile */
  .waitlist { padding: 64px 20px 80px !important; }
  /* Hide the hero scroll-cue arrow on small screens — redundant */
  .hero__scroll-cue { display: none; }

  /* TRUST */
  .trust { padding: 90px 22px; }
  .trust__pillars {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--border-dark);
  }
  .trust-pillar {
    padding: 26px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-dark);
    text-align: left;
    align-items: flex-start;
  }
  .trust__disclaimer { text-align: center; max-width: 42ch; margin-left: auto; margin-right: auto; }

  /* WAITLIST */
  .waitlist { padding: 90px 22px; }
  .waitlist__title { font-size: clamp(34px, 9vw, 50px); }
  .waitlist__form { max-width: 360px; margin: 0 auto; flex-direction: column; }
  .waitlist__form .btn { width: 100%; justify-content: center; }

  /* FOOTER — centered cols */
  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 22px 30px; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer__cols > div { text-align: left; }
  .footer__bottom { padding: 22px; flex-direction: column; gap: 12px; text-align: center; }

  /* NAV bar height + burger */
  .nav { padding: 12px 18px; height: 64px; }
  .nav__cta .btn:not(.nav__cta-secondary) { display: none; }
  /* Adjust nav-overlay top to match new nav height */
  .nav-overlay { top: 64px; }
}

/* Even smaller phones */
@media (max-width: 390px) {
  .hero__title { font-size: clamp(32px, 8.6vw, 40px); }
  .h2 { font-size: clamp(30px, 8vw, 42px); }
  .manifesto__title { font-size: clamp(30px, 8.5vw, 42px); }
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================================
   PHASE 15 — Asset spotlight (Superstate-style imagery grid)
   Three large photo-driven cards with brand-style mono tags + yield rows.
   ========================================================================== */
.spotlight {
  background: var(--ink);
  color: white;
  padding: 160px 40px 160px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spotlight__head {
  max-width: var(--max);
  margin: 0 auto 70px;
  text-align: left;
}
.spotlight__head .eyebrow { margin-bottom: 22px; }
.spotlight__head .h2 { margin-bottom: 24px; max-width: 22ch; }
.spotlight__head .lede { max-width: 64ch; }

/* Centered variant */
.spotlight__head--center { text-align: center; }
.spotlight__head--center .h2 { margin-left: auto; margin-right: auto; max-width: 26ch; }
.spotlight__head--center .lede { margin-left: auto; margin-right: auto; }
.spotlight__head--center .eyebrow { justify-content: center; }

.spotlight__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  min-height: 540px;
}

.spot-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background: #14161B;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.spot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,201,127,0.40);
}
.spot-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Original color treatment — keep saturation, just darker overall. */
  filter: grayscale(0.45) contrast(1.05) brightness(0.50) saturate(1.1);
  z-index: 0;
  transition: transform 1.2s ease, filter 0.6s ease;
}
.spot-card:hover .spot-card__photo {
  transform: scale(1.04);
  filter: grayscale(0.20) contrast(1.05) brightness(0.58) saturate(1.15);
}
.spot-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,12,15,0.30) 0%, rgba(11,12,15,0.65) 50%, rgba(11,12,15,0.96) 100%);
}
.spot-card__body {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.spot-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  padding: 6px 10px;
  border: 1px solid rgba(244,201,127,0.30);
  border-radius: 3px;
  margin-bottom: 14px;
}
.spot-card h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: white;
  margin: 0;
  max-width: 18ch;
}
.spot-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 38ch;
}
.spot-card__yield {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.spot-card__yield span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.spot-card__yield strong {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--peach);
}

/* Featured (left) card: bigger headline + slight gold inner glow */
.spot-card--lg h3 {
  font-size: clamp(30px, 3.2vw, 48px);
}
.spot-card--lg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 80% 100%, rgba(244,201,127,0.10), transparent 55%);
  pointer-events: none;
}

/* Mobile spotlight — compact cards (5 categories visible on one screen with scroll) */
@media (max-width: 900px) {
  .spotlight { padding: 60px 18px; }
  .spotlight__head { text-align: center; margin-bottom: 32px; }
  .spotlight__head .h2,
  .spotlight__head .lede { margin-left: auto; margin-right: auto; }
  .spotlight__head .h2 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 14px; }
  .spotlight__head .lede { font-size: 14px; line-height: 1.5; }
  .spotlight__head .eyebrow { justify-content: center; }
  .spotlight__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 10px;
  }
  .spot-card { min-height: 220px; }
  .spot-card__body { padding: 18px 18px; gap: 8px; }
  .spot-card__tag { font-size: 10px; padding: 4px 8px; margin-bottom: 6px; }
  .spot-card h3 { font-size: clamp(20px, 5.6vw, 26px); line-height: 1.15; }
  .spot-card p { font-size: 13px; line-height: 1.5; max-width: none; }
  /* Hide the long description on mobile to keep cards compact — keep yield badge */
  .spot-card p { display: none; }
  .spot-card__yield { margin-top: 4px; padding-top: 12px; }
  .spot-card__yield span { font-size: 9.5px; letter-spacing: 0.16em; }
  .spot-card__yield strong { font-size: 20px; }
  /* Featured card is same size as others on mobile */
  .spot-card--lg { min-height: 220px; }
  .spot-card--lg h3 { font-size: clamp(20px, 5.6vw, 26px); }
}

/* Spotlight light variant — for use on .page bodies (e.g., invertir) */
.spotlight--light {
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spotlight--light .h2 { color: var(--text); }
.spotlight--light .lede { color: var(--text-2); }

/* ============================================================================
   PHASE 17 — Agro split (concrete blueberry-field example on tokenizar)
   Reuses .split-* base styles. Overrides bg image + token color → purple.
   ========================================================================== */
.split-section--agro .tile {
  background-image: url("../assets/img/agro-field.jpg");
}
/* Purple token gradient (matches the arándano berries) */
.split-section--agro .tile__gold {
  background: linear-gradient(135deg, #8c5fc0 0%, #5a3a96 100%);
}
.split-section--agro .split-hires-token {
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.20), transparent 55%),
    linear-gradient(135deg, #8c5fc0 0%, #5a3a96 100%);
  box-shadow:
    inset 0 0 0 2px rgba(168,136,208,0.95),
    0 30px 80px -10px rgba(140,95,192,0.45),
    0 60px 140px -30px rgba(140,95,192,0.30);
}
.split-section--agro .split-caption__eyebrow { color: #a888d0; }
.split-section--agro .split-caption h2 strong {
  background: linear-gradient(180deg, #b58fe0, #7d54b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split-section--agro .split-progress__dot.active {
  background: #a888d0;
  box-shadow: 0 0 12px rgba(168,136,208,0.6);
}
/* Token label colors stay black on the purple token (good contrast). */

/* When a "how-intro" heading psec sits directly above the agro animation,
   tighten the bottom padding so it reads as ONE moment (intro → animation). */
.how-intro { padding-bottom: 30px !important; }
.how-intro + .split-section--agro .split-pin { padding-top: 0; }
@media (max-width: 1024px) {
  .how-intro { padding-bottom: 20px !important; }
}

/* ============================================================================
   PHASE 19 — iPad LANDSCAPE narrow band (1025–1280px)
   Keep the desktop layout but scale a few elements down so they fit in
   the narrower viewport. Goal: full desktop look without horizontal overflow.
   ========================================================================== */
@media (min-width: 1025px) and (max-width: 1280px) {
  /* "Tres pasos. Treinta segundos." — narrower phone on iPad landscape */
  .how__phone { max-width: 300px; }
  .how__inner { gap: 56px; }
  .how-step__h { font-size: 32px; }

  /* Centerpiece (building → tokens) — graphic was overflowing into the
     copy column on iPad landscape. Cap to a smaller fraction of viewport. */
  .split-grid {
    width: min(60vh, 100%);
    max-width: 540px;
  }
  .split-layout {
    padding: 0 60px 0 40px;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .split-caption h2  { font-size: clamp(34px, 4.4vw, 64px); }
  .split-caption p   { font-size: clamp(14px, 1.2vw, 17px); max-width: 380px; }

  /* App features — phones too big at this width too */
  .feature__phone .phone--lg {
    width: 360px;
    height: 778px;
    border-radius: 52px;
    padding: 13px;
  }
  .feature__phone .phone--lg .phone__screen { border-radius: 42px; }
  .feature { gap: 50px; }
}

/* ============================================================================
   PHASE 20 — Hero stats (Stake-inspired, right under the hero)
   Three big numbers that anchor the user in "earning money" territory
   before scrolling into the catalog.
   ========================================================================== */
.hero-stats {
  background: var(--ink);
  padding: 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 3;
}
.hero-stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hero-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat__num {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: white;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.hero-stat__num .hero-stat__prefix {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--peach);
  margin-right: 4px;
}
.hero-stat__num .hero-stat__suffix {
  font-size: 0.65em;
  font-weight: 700;
  color: var(--peach);
  margin-left: 2px;
}
.hero-stat__lbl {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .hero-stats { padding: 60px 22px; }
  .hero-stats__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 0 0 36px 0;
  }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-stat__num { font-size: clamp(48px, 14vw, 72px); }
}

/* "Ver más" link inside spot-cards (home) */
.spot-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  align-self: flex-start;
  transition: background 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.spot-card__more span {
  font-family: var(--font-mono);
  color: var(--peach);
  transition: transform 0.25s ease;
}
.spot-card__more:hover {
  background: rgba(244,201,127,0.10);
  border-color: rgba(244,201,127,0.40);
  gap: 12px;
}

/* ============================================================================
   PHASE 21 — Stake-style feature phone treatment
   Each phone sits on a colored circle, tilted slightly, with floating data
   cards anchored to corners. Replicates Stake's "Earn / Long term capital
   appreciation / Liquidity" sections' visual rhythm.
   ========================================================================== */
.feature__phone {
  position: relative;
  display: grid;
  place-items: center;
}
/* Colored disc behind the phone — different per feature for variety */
.feature__phone::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(244,201,127,0.18);
  filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature--right .feature__phone::before {
  background: radial-gradient(circle at 30% 30%, rgba(140,95,192,0.35), rgba(140,95,192,0.10) 70%);
}
.feature--left .feature__phone::before {
  background: radial-gradient(circle at 60% 40%, rgba(244,201,127,0.35), rgba(244,201,127,0.10) 70%);
}
.feature:nth-of-type(3) .feature__phone::before {
  background: radial-gradient(circle at 50% 50%, rgba(107,212,155,0.35), rgba(107,212,155,0.10) 70%);
}
.feature .phone {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter:
    drop-shadow(0 30px 60px rgba(11,12,15,0.25))
    drop-shadow(0 12px 30px rgba(11,12,15,0.15));
}
.feature--left .phone { transform: rotate(3deg); }
.feature__phone:hover .phone { transform: rotate(0deg) translateY(-6px); }
.feature__phone:hover::before { transform: scale(1.05); }

/* ============================================================================
   FEATURE BADGES — floating data chips anchored to phone corners
   ========================================================================== */
.feature__badge {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow:
    0 18px 40px -12px rgba(11,12,15,0.32),
    0 4px 12px -4px rgba(11,12,15,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  backdrop-filter: blur(8px);
}
.feature__badge--top-right {
  top: 8%;
  right: -5%;
  transform: rotate(4deg);
}
.feature__badge--bottom-left {
  bottom: 12%;
  left: -8%;
  transform: rotate(-3deg);
}
.feature__badge--top-left {
  top: 10%;
  left: -6%;
  transform: rotate(-4deg);
}
.feature__badge--bottom-right {
  bottom: 14%;
  right: -6%;
  transform: rotate(3deg);
}
.feature__badge__lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.feature__badge__val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.feature__badge__val--pos { color: #12A16B; }
.feature__badge__val--peach { color: var(--peach-deep); }
.feature__badge__sub {
  font-size: 11.5px;
  color: var(--text-2);
}

/* Pulse / live-data feel for the income notification badge */
.feature__badge--notif {
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.feature__badge--notif .feature__badge__icon {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  background: var(--peach);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.feature__badge--notif .feature__badge__lbl { color: rgba(255,255,255,0.55); }
.feature__badge--notif .feature__badge__val { color: white; font-size: 15px; }

@media (max-width: 1024px) {
  .feature__phone::before { width: 90%; }
  /* Hide badges on mobile — too cluttered */
  .feature__badge { display: none; }
  .feature .phone { transform: none; }
}

/* Home mobile-only Stake-style 3-phone block. Hidden on desktop where the
   .app section's larger feature blocks tell the story. On mobile, hide .app
   entirely — the iphones composition + spotlight + how covers it. */
.iphones--home { display: none; }
@media (max-width: 1024px) {
  .iphones--home { display: block; }
  .app { display: none; }
}

/* ============================================================================
   PHASE 22 — Mobile typography + whitespace pass
   Bigger body text, tighter section paddings, no more white-on-white.
   ========================================================================== */
@media (max-width: 1024px) {
  /* Larger body text everywhere on mobile */
  .lede,
  .lede--light,
  .feature__desc,
  .compare-desc,
  .trust-pillar p,
  .audiences p,
  .cstep p,
  .arch-card p,
  .b2b__copy p,
  .solana__copy p,
  .how-step p,
  .cat-card p,
  .spot-card p {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }
  /* Section heads — slightly bigger eyebrow + h2 */
  .eyebrow {
    font-size: 12px !important;
  }

  /* Spotlight section — tighten the cream-colored padding so less empty space */
  .spotlight {
    padding: 60px 20px 60px !important;
  }
  .spotlight__head {
    margin-bottom: 36px !important;
  }
  .spotlight__head .h2 {
    font-size: clamp(32px, 9vw, 48px) !important;
    margin-bottom: 16px !important;
  }
  .spotlight__head .lede {
    margin-bottom: 0 !important;
    font-size: 16px !important;
  }
  .spotlight__grid {
    gap: 16px !important;
    min-height: 0 !important;
  }
  .spot-card {
    min-height: 380px !important;
  }
  .spot-card__body {
    padding: 24px 22px !important;
  }
  .spot-card h3 {
    font-size: clamp(26px, 7.5vw, 34px) !important;
    line-height: 1.1 !important;
  }
  .spot-card__yield strong {
    font-size: 24px !important;
  }
  .spot-card__more {
    margin-top: 12px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
  }

  /* Hero stats — tighten padding */
  .hero-stats {
    padding: 50px 22px !important;
  }
  .hero-stats__inner {
    gap: 30px !important;
  }
  .hero-stat {
    padding-bottom: 30px !important;
  }
  .hero-stat__num {
    font-size: clamp(54px, 16vw, 80px) !important;
  }
  .hero-stat__lbl {
    font-size: 12px !important;
  }

  /* Manifesto + How + Trust — tighten padding so less dead space */
  .manifesto { padding: 70px 22px !important; }
  .how       { padding: 70px 22px !important; }
  .trust     { padding: 70px 22px !important; }
  .waitlist  { padding: 70px 22px !important; }

  /* Make sure trust disclaimer + final link are readable on cream bg */
  .trust__disclaimer {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: var(--text-2) !important;
  }
}

/* ============================================================================
   PHASE 23 — Hero "Cómo funciona" scroll button
   Replaces the cleared CTA buttons with a single subtle pill that smooth-
   scrolls to the next section so the user understands "scroll = more info".
   ========================================================================== */
.hero__cta-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: white;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}
.hero__cta-scroll svg {
  color: var(--peach);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__cta-scroll:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(244,201,127,0.45);
  gap: 14px;
}
.hero__cta-scroll:hover svg { transform: translateY(3px); }
/* Tiny bounce hint so the user knows it's an action target */
@keyframes heroCtaBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(4px); }
}
.hero__cta-scroll svg { animation: heroCtaBounce 2.4s ease-in-out infinite; }
.hero__cta-scroll:hover svg { animation: none; }
