/* ═══════════════════════════════════════════════════════════════════
   CollabTrail Retreat — Raw Editorial / Magazine Meets Wilderness Luxury
   Aesthetic: Brutalist meets premium · Asymmetric · Type as visual element
   Fonts: Playfair Display (editorial serif) + Inter (clean body)
   Palette: #060505 near-black · #E8441A deep gold · #C4522A rust
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette — CollabTrail orange-red */
  --gold:       #E8441A;
  --gold-dim:   rgba(232,68,26,0.12);
  --gold-glow:  rgba(232,68,26,0.06);
  --gold-edge:  rgba(232,68,26,0.28);
  --rust:       #C43510;
  --rust-dim:   rgba(196,53,16,0.15);
  --cream:      #F5F0E8;
  --cream2:     #D4CCBC;
  --cream3:     rgba(245,240,232,0.72);
  --cream4:     rgba(245,240,232,0.45);
  --ink:        #080605;
  --ink2:       #100C0A;
  --ink3:       #1A1210;
  --muted:      #8A8070;
  --border:     rgba(232,68,26,0.14);
  --border2:    rgba(255,255,255,0.06);
  --glass:      rgba(232,68,26,0.06);

  /* Legacy compat — JS reads these for color logic */
  --acc:   #E8441A;
  --acc2:  #C43510;
  --head:  #F5F0E8;
  --body:  #D4CCBC;
  --dim:   rgba(212,204,188,0.6);
  --ctabg: #E8441A;
  --ctatxt:#FFFFFF;

  --max:    1200px;
  --pad:    72px;
  --rl-max: 1200px;
  --rl-pad: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html, body {
  background: var(--ink);
  color: var(--cream2);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

/* ── Film grain texture (cinematic depth) ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.032;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Ambient video ── */
.rl-ambient-video {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: -2; pointer-events: none;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1;
  background: rgba(6,5,5,0.88); pointer-events: none;
}

/* ── Cursor spotlight ── */
.rl-cursor-spotlight {
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(232,68,26,0.04) 0%, transparent 70%);
  pointer-events: none; will-change: transform;
}

/* ── Scroll progress bar ── */
.rl-progress-bar {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--cream));
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(232,68,26,0.4);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL — fm-* animation system (used by retreat.js)
   ═══════════════════════════════════════════════════════════ */
.fm-hidden {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.fm-hidden.fm-visible { opacity: 1; transform: translateY(0); }

.fm-slide-left  { opacity: 0; transform: translateX(-48px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.fm-slide-right { opacity: 0; transform: translateX(48px);  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.fm-slide-left.fm-visible, .fm-slide-right.fm-visible { opacity: 1; transform: translateX(0); }

.fm-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.fm-scale.fm-visible { opacity: 1; transform: scale(1); }

.fm-delay-1 { transition-delay: 0.1s; }
.fm-delay-2 { transition-delay: 0.22s; }
.fm-delay-3 { transition-delay: 0.36s; }
.fm-delay-4 { transition-delay: 0.5s; }
.fm-delay-5 { transition-delay: 0.66s; }

@media (prefers-reduced-motion: reduce) {
  .fm-hidden, .fm-slide-left, .fm-slide-right, .fm-scale {
    opacity: 1; transform: none; transition: none;
  }
  .rl-cursor-spotlight { display: none; }
}

/* ── Layout ── */
.rl-in { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.rl-section { padding: 140px 0; position: relative; overflow: hidden; }
.rl-bg-dark  { background: transparent; }
.rl-bg-mid   { background: linear-gradient(180deg, rgba(14,12,11,0.72) 0%, rgba(6,5,5,0.55) 100%); }
.rl-bg-apply { background: var(--ink2); }
.rl-center   { text-align: center; }
.rl-center .sec-h2 { margin-left: auto; margin-right: auto; }

/* Section divider — thin gold */
.rl-section + .rl-section::before {
  content: ''; display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-edge), transparent);
  position: absolute; top: 0; left: 8%; right: 8%;
}

/* ── Section label ── */
.sec-lbl {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.sec-lbl::before {
  content: ''; width: 36px; height: 1px;
  background: var(--gold); opacity: 0.55; flex-shrink: 0;
}

/* ── Section heading (Playfair — editorial serif) ── */
.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.8vw, 80px); font-weight: 400;
  color: var(--cream); letter-spacing: -0.03em; line-height: 1.04;
  margin-bottom: 60px; cursor: default;
}
.sec-h2 em { font-style: italic; color: var(--gold); }

/* Section number watermark */
.rl-sec-num-wm {
  position: absolute; top: 60px; right: var(--pad);
  font-family: 'Playfair Display', serif;
  font-size: 220px; font-weight: 900;
  color: var(--cream); opacity: 0.018;
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.06em;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — Gold with shimmer + magnetic class
   ═══════════════════════════════════════════════════════════ */
.btn-p {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 20px 56px;
  background: var(--gold); color: var(--cream);
  text-decoration: none; cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  will-change: transform;
}
.btn-p::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.55s cubic-bezier(0.16,1,0.3,1);
  transform: skewX(-18deg);
}
.btn-p:hover::before { left: 170%; }
.btn-p:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(232,68,26,0.3), 0 0 0 1px rgba(232,68,26,0.25);
}
.btn-p.mag {
  transition: box-shadow 0.3s;
  /* transform managed by inline JS */
}
.btn-p-lg { font-size: 12px; padding: 24px 88px; letter-spacing: 0.22em; }

/* ═══════════════════════════════════════════════════════════
   STICKY BAR
   ═══════════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--ink2);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.75);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.sticky-bar.hidden { transform: translateY(100%); pointer-events: none; }
.sticky-in {
  max-width: var(--max); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Left — retreat name + meta */
.sticky-left {
  display: flex; flex-direction: column; gap: 5px; min-width: 0; flex: 1;
}
.sticky-retreat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--cream); line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-meta {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--cream2); letter-spacing: 0.03em;
}
.sticky-sep { opacity: 0.4; }
.sticky-dates { white-space: nowrap; }
.sticky-seats {
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap; color: var(--cream); font-weight: 500;
}
.sticky-seats::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: goldPulse 2.6s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232,68,26,0.6); }
  50%      { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 0 6px rgba(232,68,26,0); }
}

/* Right — price + button */
.sticky-right {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.sticky-price-wrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
}
.sticky-price-row {
  display: flex; align-items: baseline; gap: 8px;
}
.sticky-price-full {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--muted);
  text-decoration: line-through; letter-spacing: 0.01em;
  display: none;
}
.sticky-price-full.visible { display: inline; }
.sticky-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--cream); line-height: 1;
}
.sticky-price-sub-row {
  display: flex; align-items: center; gap: 7px; margin-top: 1px;
}
.sticky-early-badge {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 3px 8px; border-radius: 2px;
  white-space: nowrap;
}
.sticky-early-badge.visible { display: inline-block; }
.sticky-token {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.04em;
  color: var(--cream4);
  white-space: nowrap;
}
.sticky-btn {
  font-size: 11px; padding: 15px 32px;
  letter-spacing: 0.18em; white-space: nowrap;
  color: var(--cream) !important;
  background: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   S1 · HERO — Full-bleed Editorial Split
   ═══════════════════════════════════════════════════════════ */
.rl-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 80px; padding-bottom: 96px; overflow: hidden;
}

/* Full-bleed background container */
.rl-hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Hero photo (created by JS) */
.rl-hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 30%;
  filter: saturate(0.7) brightness(0.45) contrast(1.12);
  transform: scale(1.08) translateY(0);
  will-change: transform;
  transition: filter 1s ease;
}
.rl-hero-photo.loaded { filter: saturate(0.72) brightness(0.46) contrast(1.12); }

/* Video fallback */
.rl-hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* No CSS filter — filter forces GPU rasterization and destroys video quality.
     Darkening is handled purely by the ::after overlay gradients below. */
}

/* Dramatic diagonal clip-path overlay — not a simple gradient */
.rl-hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,    rgba(6,5,5,0.96) 0%, rgba(6,5,5,0.72) 26%, rgba(6,5,5,0.18) 58%, transparent 100%),
    linear-gradient(155deg,    rgba(6,5,5,0.55) 0%, rgba(6,5,5,0.12) 40%, transparent 72%),
    linear-gradient(to bottom, rgba(6,5,5,0.50) 0%, transparent 20%),
    radial-gradient(ellipse at 15% 85%, rgba(196,82,42,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(232,68,26,0.04) 0%, transparent 50%);
}

/* Diagonal cut — hard geometric overlay */
.rl-hero-diagonal {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(125deg, rgba(6,5,5,0.65) 0%, transparent 48%);
  clip-path: polygon(0 0, 52% 0, 28% 100%, 0 100%);
}

/* Oversized watermark behind content */
.rl-hero-watermark {
  position: absolute; z-index: 1; pointer-events: none; user-select: none;
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 18vw, 280px); font-weight: 900;
  color: var(--cream); opacity: 0.025;
  line-height: 1; letter-spacing: -0.05em;
  bottom: -0.15em; right: -0.08em;
  white-space: nowrap;
}

/* ── Floating nav ── */
.rl-logo {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease, padding 0.4s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.rl-logo.scrolled {
  background: rgba(8,6,5,0.96);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom-color: var(--border);
}
/* Logo mark + wordmark — matches main site exactly */
.rl-logo-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; opacity: 0.85; transition: opacity 0.3s;
}
.rl-logo-brand:hover { opacity: 1; }
.rl-logo-img { height: 48px; width: auto; object-fit: contain; flex-shrink: 0; }
.rl-logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.rl-logo-sep { margin: 0 6px; color: var(--gold); }
.rl-logo-retreat { color: #ffffff; font-weight: 700; }

.rl-logo-cta {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream2);
  background: none; border: 1px solid var(--gold-edge);
  padding: 10px 26px; cursor: pointer;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.45s, transform 0.45s, border-color 0.25s, color 0.25s, background 0.25s;
}
.rl-logo.scrolled .rl-logo-cta { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.rl-logo-cta:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ── Vertical ribbon (rotated label on left edge) ── */
.rl-hero-ribbon {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 3;
  width: 48px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid rgba(232,68,26,0.12);
  pointer-events: none;
}
.rl-hero-ribbon-text {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0.55; transform: rotate(180deg);
}

/* ── Hero split layout (left text + right image) ── */
.rl-hero-split {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: flex-end;
  /* Left pad accounts for ribbon (48px) + base pad; right pad = base */
  padding: 0 var(--pad) 0 calc(var(--pad) + 48px);
  width: 100%;
  max-width: 1440px;
  /* Ensure content never overlaps the fixed navbar at the top */
  margin-top: auto;
}

.rl-hero-card { position: relative; padding-right: 40px; }

/* ── Right: editorial image panel ── */
.rl-hero-img-panel {
  position: relative;
  align-self: flex-end;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(32px) translateX(16px);
  animation: rlSlideUp 1.2s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.rl-hero-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(232,68,26,0.2);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(232,68,26,0.06),
    inset 0 0 60px rgba(6,5,5,0.3);
}

.rl-hero-img-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.82) saturate(0.85) contrast(1.08);
  transition: filter 0.6s;
  animation: heroImgDrift 18s ease-in-out infinite alternate;
}
@keyframes heroImgDrift {
  from { transform: scale(1.07) translateY(0px); }
  to   { transform: scale(1.03) translateY(-14px); }
}
.rl-hero-img-frame:hover .rl-hero-img-inner {
  filter: brightness(0.9) saturate(0.95);
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  @keyframes heroImgDrift { from { transform: none; } to { transform: none; } }
}

/* Caption strip at the bottom */
.rl-hero-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(6,5,5,0.88) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.rl-hero-img-loc {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream2); opacity: 0.75;
}
.rl-hero-img-tag {
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-style: italic;
  color: var(--gold); opacity: 0.9;
  white-space: nowrap;
}

/* Corner accent marks */
.rl-hero-img-corner {
  position: absolute; width: 18px; height: 18px;
  pointer-events: none;
}
.rl-hero-img-corner--tl {
  top: -1px; left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.rl-hero-img-corner--br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Cohort eyebrow */
.rl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: rlSlideUp 0.9s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.rl-hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.6;
}

/* Giant editorial headline — 180px+ on large screens */
.rl-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 11.5vw, 168px); font-weight: 500;
  color: var(--cream); line-height: 0.92;
  letter-spacing: -0.04em; margin-bottom: 40px;
  opacity: 0; transform: translateY(40px);
  animation: rlSlideUp 1.15s 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}
.rl-hero-h1 em {
  font-style: italic; color: var(--gold);
  text-shadow: 0 0 120px rgba(232,68,26,0.2);
}

.rl-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--cream2); max-width: 480px; margin-bottom: 32px;
  opacity: 0; transform: translateY(22px);
  animation: rlSlideUpDim 1s 0.52s cubic-bezier(0.16,1,0.3,1) forwards;
}

.rl-hero-sub {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-family: 'Inter', sans-serif;
  font-weight: 400; color: var(--cream); margin-bottom: 40px;
  opacity: 0; transform: translateY(16px);
  animation: rlSlideUpSub 1s 0.68s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes rlSlideUp    { to { opacity: 1; transform: translateY(0); } }
@keyframes rlSlideUpDim { to { opacity: 0.78; transform: translateY(0); } }
@keyframes rlSlideUpSub { to { opacity: 0.88; transform: translateY(0); } }

.seat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: goldPulse 2.6s ease-in-out infinite;
}

/* ── Hero urgency block ── */
.rl-hero-urgency {
  margin-bottom: 36px;
  opacity: 0; transform: translateY(16px);
  animation: rlSlideUpSub 1s 0.72s cubic-bezier(0.16,1,0.3,1) forwards;
}
.rl-urgency-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.rl-urgency-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(232,68,26,0.5);
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,68,26,0.5); }
  60%  { box-shadow: 0 0 0 7px rgba(232,68,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,68,26,0); }
}
.rl-urgency-seats {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--cream); letter-spacing: 0.02em;
}
.rl-urgency-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  color: rgba(232,68,26,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rl-urgency-label.hot {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(232,68,26,0.4);
}
.rl-urgency-bar-track {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden; width: 100%; max-width: 320px;
}
.rl-urgency-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, rgba(232,68,26,0.5) 0%, var(--gold) 100%);
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.rl-urgency-bar-fill.hot {
  background: linear-gradient(90deg, #E8441A 0%, #FFB347 100%);
  box-shadow: 0 0 10px rgba(232,68,26,0.5);
}

/* ── Hero price urgency pill ── */
.rl-hero-price-pill {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
  padding: 12px 18px;
  background: rgba(232,68,26,0.06);
  border: 1px solid rgba(232,68,26,0.18);
  border-radius: 4px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  max-width: 420px;
  opacity: 0; transform: translateY(14px);
  animation: rlSlideUp 1s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.rl-hpp-badge {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,68,26,0.12);
  border: 1px solid rgba(232,68,26,0.25);
  padding: 3px 9px; border-radius: 2px;
  white-space: nowrap;
}
.rl-hpp-badge:empty { display: none; }
.rl-hpp-price-wrap {
  display: flex; align-items: baseline; gap: 8px;
}
.rl-hpp-full {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.rl-hpp-full:empty { display: none; }
.rl-hpp-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  color: var(--cream); letter-spacing: -0.02em;
}
.rl-hpp-token {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 10px;
  white-space: nowrap;
}

/* Stat pills — float vertically, right-aligned feel */
.rl-hero-stats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px;
  opacity: 0; transform: translateY(14px);
  animation: rlSlideUp 1s 0.84s cubic-bezier(0.16,1,0.3,1) forwards;
}
.rl-hero-stat {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  background: rgba(232,68,26,0.05);
  border: 1px solid rgba(232,68,26,0.14);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.rl-hero-stat:hover {
  background: rgba(232,68,26,0.1);
  border-color: rgba(232,68,26,0.32);
  transform: translateX(4px);
}
.rl-hero-stat-k {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.rl-hero-stat-sep { width: 1px; height: 14px; background: rgba(232,68,26,0.2); }
.rl-hero-stat-v {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--cream); opacity: 0.92;
}

#rl-apply-cta {
  opacity: 0; transform: translateY(12px);
  animation: rlSlideUp 1s 1.0s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Scroll hint */
.rl-scroll-hint {
  position: absolute; bottom: 40px; right: var(--pad); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: rlSlideUp 1s 1.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.rl-scroll-hint span {
  font-family: 'Inter', sans-serif;
  font-size: 8px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream2); opacity: 0.3; writing-mode: vertical-rl;
}
.rl-scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY STRIP — desktop: hover-expand | mobile: auto-cycle
   ═══════════════════════════════════════════════════════════ */
.rl-gallery-strip {
  display: flex; height: 400px; gap: 3px; overflow: hidden;
  border-top: 1px solid rgba(232,68,26,0.07);
  border-bottom: 1px solid rgba(232,68,26,0.07);
  position: relative;
}
.rl-gallery-strip img {
  flex: 2; min-width: 0; height: 100%;
  object-fit: cover; object-position: center;
  display: block; cursor: zoom-in;
  filter: brightness(0.58) saturate(0.5) contrast(1.08);
  transition: flex 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.55s ease;
}
/* Masonry-feel varying flex ratios */
.rl-gallery-strip img:nth-child(2n)   { flex: 1.5; object-position: center 35%; }
.rl-gallery-strip img:nth-child(3n)   { flex: 2.8; }
.rl-gallery-strip img:nth-child(4n+1) { flex: 1.8; object-position: top; }
.rl-gallery-strip img:hover {
  flex: 5;
  filter: brightness(0.88) saturate(1.05) contrast(1.05);
}

/* ── Mobile auto-cycle gallery ──
   JS cycles images: first slides out left, new one comes in from right.
   Hover rules disabled on touch. !important removed so JS can override. */
@media (pointer: coarse), (max-width: 768px) {
  .rl-gallery-strip {
    height: 240px;
    align-items: stretch;
  }
  /* Kill hover-expand on touch — restore base flex so cycling JS can override */
  .rl-gallery-strip img:hover,
  .rl-gallery-strip img:nth-child(2n):hover,
  .rl-gallery-strip img:nth-child(3n):hover,
  .rl-gallery-strip img:nth-child(4n+1):hover { flex: 2; filter: brightness(0.58) saturate(0.5) contrast(1.08); }
}

/* Progress dots for mobile gallery */
.rl-gallery-dots {
  display: none;
  position: absolute; bottom: 12px; left: 0; right: 0;
  justify-content: center; gap: 6px; z-index: 10; pointer-events: none;
}
.rl-gallery-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(232,68,26,0.3);
  transition: background 0.3s, transform 0.3s;
}
.rl-gallery-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (pointer: coarse), (max-width: 768px) {
  .rl-gallery-dots { display: flex; }
}

/* Lightbox */
.rl-lightbox {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(4,3,3,0.97);
  display: grid; place-items: center; padding: 20px;
}
.rl-lightbox-img {
  width: min(1100px, 100%); max-height: calc(100vh - 80px);
  object-fit: contain;
  border: 1px solid var(--border);
  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
}
.rl-lightbox-close {
  position: fixed; top: 22px; right: 22px;
  width: 46px; height: 46px;
  border: 1px solid var(--border2);
  background: rgba(6,5,5,0.85); backdrop-filter: blur(16px);
  color: var(--cream); cursor: pointer; font-size: 14px;
  display: grid; place-items: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  font-family: 'Inter', sans-serif;
}
.rl-lightbox-close:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   S2 · VOICES — Full-width, cinematic horizontal layout
   ═══════════════════════════════════════════════════════════ */
.rl-voice-card {
  display: grid; grid-template-columns: 42% 1fr;
  gap: 0; align-items: stretch; margin-top: 72px;
  position: relative;
}
.rl-voice-card--primary {
  margin-bottom: 80px; padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

/* Photo column with diagonal/torn right edge */
.rl-voice-photo-col {
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  background: #0A0806;
  display: flex; align-items: center; justify-content: center;
}
.rl-voice-photo-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  filter: brightness(0.88) contrast(1.05) saturate(0.82);
  transition: filter 0.55s, transform 0.6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.rl-voice-photo-col:hover .rl-voice-photo-img {
  filter: brightness(0.96) saturate(1); transform: scale(1.02);
}
.rl-voice-initials {
  width: 100%; min-height: 500px;
  background: var(--glass); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 88px; font-weight: 400; color: var(--gold); opacity: 0.35;
}

/* Body (quote) side */
.rl-voice-body {
  padding: 56px 64px; display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

/* Name in massive editorial serif */
.rl-voice-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 400;
  color: var(--cream); letter-spacing: -0.03em; line-height: 1.02; margin-bottom: 18px;
}
.rl-voice-role-badge {
  display: inline-flex; align-items: center;
  background: var(--gold-dim); border: 1px solid var(--gold-edge);
  padding: 6px 18px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}
.rl-voice-section-label {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); opacity: 0.75; margin-bottom: 16px;
}
.rl-voice-section-label::before {
  content: ''; width: 22px; height: 1px; background: var(--gold); opacity: 0.5;
}
.rl-voice-bg-text {
  font-family: 'Lora', serif;
  font-size: clamp(18px, 1.75vw, 24px); line-height: 1.78;
  color: var(--cream); opacity: 0.95; font-style: italic; font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}
.rl-voice-changed-section { margin-top: 32px; }
.rl-voice-changed-text {
  font-family: 'Lora', serif;
  font-size: 15px; line-height: 1.92; color: var(--cream2); opacity: 0.88;
  font-weight: 400; font-style: normal; letter-spacing: 0.005em;
}
.rl-voice-social { display: flex; gap: 10px; margin-top: 36px; }
.rl-voice-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--glass); border: 1px solid var(--gold-edge);
  color: var(--gold); text-decoration: none; cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.rl-voice-social a:hover {
  background: var(--gold-dim); border-color: var(--gold); transform: translateY(-3px);
}
.rl-voice-social svg { width: 14px; height: 14px; }

/* Secondary voice — alternating layout (photo right) */
.rl-voice-card--secondary {
  grid-template-columns: 1fr 42%;
}
.rl-voice-card--secondary .rl-voice-photo-col {
  order: 2;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.rl-voice-card--secondary .rl-voice-body { order: 1; padding: 56px 64px 56px var(--pad); }

/* ═══════════════════════════════════════════════════════════
   S3 · WHAT THIS IS — Manifesto cascade + giant numbers
   ═══════════════════════════════════════════════════════════ */
.rl-manifesto {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 58px); font-weight: 400; line-height: 1.38;
  letter-spacing: -0.025em; color: var(--cream);
  max-width: 860px; margin: 0 auto 100px;
  text-align: center;
}
.rl-manifesto p + p { margin-top: 0.1em; }
.rl-manifesto p:first-child { color: var(--cream); opacity: 0.5; }
.rl-manifesto p:nth-child(2) { color: var(--cream); opacity: 0.72; }
.rl-manifesto p:last-child { color: var(--gold); font-style: italic; opacity: 1; }

/* Three giant floating numbers with thin horizontal rules */
.rl-numbers {
  display: flex; align-items: stretch;
  max-width: 760px; margin: 0 auto;
  position: relative;
}
.rl-num-sep { display: none; } /* sep handled by borders */

.rl-num-block {
  flex: 1; text-align: center; padding: 64px 40px;
  position: relative; cursor: default;
  transition: background 0.4s;
}
/* Thin horizontal rule above and below the number */
.rl-num-block::before,
.rl-num-block::after {
  content: ''; position: absolute; left: 20%; right: 20%; height: 1px;
  background: var(--border);
}
.rl-num-block::before { top: 0; }
.rl-num-block::after  { bottom: 0; }

.rl-num-block + .rl-num-block {
  border-left: 1px solid var(--border);
}
.rl-num-block:hover { background: var(--gold-glow); }

.rl-num-val {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 10vw, 128px); font-weight: 400;
  color: var(--cream); line-height: 1; letter-spacing: -0.05em;
  display: block; transition: color 0.4s;
}
.rl-num-block:hover .rl-num-val { color: var(--gold); }
.rl-num-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-top: 18px; display: block;
  transition: color 0.4s;
}
.rl-num-block:hover .rl-num-label { color: var(--cream2); }

/* ═══════════════════════════════════════════════════════════
   S4 · WHO THIS IS FOR — Two columns + gold vertical divider
   ═══════════════════════════════════════════════════════════ */
.rl-who-grid {
  display: grid; grid-template-columns: 1fr 2px 1fr;
  gap: 0; margin-top: 60px;
  align-items: start;
}
/* The gold divider element */
.rl-who-divider {
  background: linear-gradient(to bottom, transparent, var(--gold-edge) 20%, var(--gold-edge) 80%, transparent);
  align-self: stretch; min-height: 400px;
}

/* Asymmetric vertical alignment — left col slightly lower */
.rl-who-col:first-child { padding: 0 64px 0 0; padding-top: 48px; }
.rl-who-col:last-child  { padding: 0 0 0 64px; padding-top: 0; }

.rl-who-col-head {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 400; letter-spacing: -0.025em;
  color: var(--cream); margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
  line-height: 1.1;
}

.rl-who-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.rl-who-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.82; color: var(--cream2); opacity: 0.85;
  padding-left: 28px; position: relative; transition: opacity 0.2s, padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
}
.rl-who-list li:hover { opacity: 1; padding-left: 36px; }
/* Dash prefix that animates to longer line on hover */
.rl-who-list li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 14px; height: 1px; background: var(--gold); opacity: 0.5;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
}
.rl-who-list li:hover::before { width: 24px; opacity: 0.9; }

.rl-who-bridge {
  text-align: center; margin-top: 72px;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-style: italic; font-weight: 400;
  color: var(--cream); opacity: 0.7; letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════════════
   S5 · THE EXPERIENCE — Vertical split (image left, cards right)
   ═══════════════════════════════════════════════════════════ */

/* Full-bleed layout sits outside .rl-in */
.rl-exp-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px; margin: 40px 0 0;
}

/* Portrait video variant — left column sized for portrait video */
.rl-exp-split--video {
  grid-template-columns: 480px 1fr;
  align-items: stretch;
}

/* Left: full bleed image */
.rl-exp-visual {
  position: relative; overflow: hidden;
  height: 100%; min-height: 640px;
}
.rl-exp-visual img,
img.rl-exp-visual {
  width: 100%; height: 100%; min-height: 640px;
  object-fit: cover; object-position: center 40%;
  display: block;
  filter: brightness(0.78) saturate(0.8) contrast(1.06);
  transition: filter 0.55s, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.rl-exp-visual:hover img,
img.rl-exp-visual:hover { filter: brightness(0.88) saturate(0.95); transform: scale(1.03); }

/* Portrait video container */
.rl-exp-video-wrap {
  position: relative; width: 100%; height: 100%;
  min-height: 640px; overflow: hidden;
  background: var(--ink);
}
.rl-exp-video-wrap video {
  width: 100%; height: 100%; min-height: 640px;
  object-fit: cover; object-position: center top;
  display: block;
}
.rl-exp-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 60%, rgba(6,5,4,0.55) 100%),
    linear-gradient(to bottom, rgba(6,5,4,0.25) 0%, transparent 15%, transparent 82%, rgba(6,5,4,0.45) 100%);
  pointer-events: none;
}

/* Right: day cards stack vertically */
.rl-exp-right { display: flex; flex-direction: column; }

.rl-days-grid { display: flex; flex-direction: column; height: 100%; }

.rl-day-card {
  flex: 1; padding: 48px 52px;
  background: linear-gradient(145deg, rgba(232,68,26,0.035) 0%, rgba(6,5,5,0.3) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.rl-day-card:last-child { border-bottom: none; }

/* Sweeping gold bottom border on hover */
.rl-day-card::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rust), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.rl-day-card:hover::after { transform: scaleX(1); }
.rl-day-card:hover {
  background: linear-gradient(145deg, rgba(232,68,26,0.07) 0%, rgba(6,5,5,0.2) 100%);
}

.rl-day-label {
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 900; color: var(--gold);
  opacity: 0.08; line-height: 1; margin-bottom: 14px; display: block;
  letter-spacing: -0.05em; transition: opacity 0.4s;
}
.rl-day-card:hover .rl-day-label { opacity: 0.18; }

.rl-day-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.rl-day-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.88; color: var(--cream2); opacity: 0.85;
}

/* Logistics strip — horizontal ticker-like row */
.rl-logistics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: rgba(232,68,26,0.025);
  margin-top: 3px;
}
.rl-logistics-item {
  padding: 36px 32px; border-right: 1px solid var(--border);
  transition: background 0.35s;
}
.rl-logistics-item:last-of-type { border-right: none; }
.rl-logistics-item:hover { background: var(--gold-glow); }
.rl-logistics-key {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.rl-logistics-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; color: var(--cream); line-height: 1.35;
}
.rl-logistics-inc {
  grid-column: 1 / -1; padding: 16px 32px;
  border-top: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* Pricing block */
.rl-pricing-outer {
  margin-top: 3px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; border: 1px solid var(--border);
}
.rl-price-block {
  padding: 48px 44px;
  background: linear-gradient(150deg, rgba(232,68,26,0.04) 0%, rgba(6,5,5,0.2) 100%);
  border-right: 1px solid var(--border);
}
.rl-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.rl-price-row {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.rl-price-full {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px); font-weight: 400;
  color: var(--cream); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px;
}
/* When inside .rl-price-row, full price is struck through */
.rl-price-row .rl-price-full,
.rl-price-struck {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px); font-weight: 400;
  color: var(--cream); opacity: 0.35; letter-spacing: -0.03em; line-height: 1;
  text-decoration: line-through; text-decoration-color: rgba(232,68,26,0.5);
  margin-bottom: 0;
}
.rl-price-discounted {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(120deg, var(--gold) 0%, var(--rust) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;
  filter: drop-shadow(0 0 18px rgba(232,68,26,0.55));
  animation: priceGlow 2.8s ease-in-out infinite;
}
.rl-price-discounted-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  background: linear-gradient(120deg, var(--gold) 0%, var(--rust) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-top: 4px; opacity: 0.9;
  animation: none;
}
@keyframes priceGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(232,68,26,0.55)); }
  50%       { filter: drop-shadow(0 0 32px rgba(232,68,26,0.9)); }
}
@media (prefers-reduced-motion: reduce) { .rl-price-discounted { animation: none; } }
.rl-price-includes {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--muted);
  margin-bottom: 28px; line-height: 1.7;
}
.rl-price-hint {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--muted);
  line-height: 1.78; margin-bottom: 22px; font-style: italic;
}
.rl-price-token {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--cream2); opacity: 0.82;
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid var(--border); line-height: 1.65;
}
.rl-price-token-note { font-size: 12px; opacity: 0.65; }

.rl-action-discount {
  padding: 48px 44px;
  background: linear-gradient(150deg, rgba(232,68,26,0.03) 0%, rgba(6,5,5,0.15) 100%);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.rl-action-discount-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.rl-action-discount-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 32px; border: 1px solid var(--gold-edge);
  background: var(--gold-dim); color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-decoration: none; text-transform: uppercase; cursor: pointer; align-self: flex-start;
  transition: background 0.25s, border-color 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.rl-action-discount-btn:hover { background: rgba(232,68,26,0.18); border-color: var(--gold); transform: translateY(-3px); }
.rl-action-discount-hint {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--muted); line-height: 1.78; font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   S6 · WHAT THIS IS NOT — Full-width numbered rows
   ═══════════════════════════════════════════════════════════ */
.rl-not-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
  margin-top: 60px;
}
.rl-not-item {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: center; gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.3s, padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.rl-not-item:first-child { border-top: 1px solid var(--border); }
.rl-not-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--gold-glow);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.rl-not-item:hover::before { width: 100%; }
.rl-not-item:hover { padding-left: 24px; }

.rl-not-x {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--rust); opacity: 0.35; flex-shrink: 0; line-height: 1;
  transition: opacity 0.35s, color 0.35s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center; position: relative; z-index: 1;
}
.rl-not-item:hover .rl-not-x { opacity: 0.9; color: var(--gold); transform: scale(1.15) rotate(5deg); }

.rl-not-body { position: relative; z-index: 1; }
.rl-not-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400;
  color: var(--cream); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.2;
}
.rl-not-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.78; color: var(--cream2); opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   S7 · MORE VOICES — Auto-fill grid
   ═══════════════════════════════════════════════════════════ */
.rl-more-voices-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px; margin-top: 60px; border: 1px solid var(--border);
}
.rl-mv-card {
  padding: 40px;
  background: linear-gradient(145deg, rgba(232,68,26,0.03) 0%, rgba(6,5,5,0.2) 100%);
  display: flex; flex-direction: column; gap: 24px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}
.rl-mv-card:hover { background: linear-gradient(145deg, rgba(232,68,26,0.07) 0%, rgba(6,5,5,0.15) 100%); }
.rl-mv-top { display: flex; align-items: center; gap: 18px; }
.rl-mv-img      {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--gold-edge);
}
.rl-mv-initials {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid var(--gold-edge);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold);
}
.rl-mv-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; color: var(--cream);
}
.rl-mv-role {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; color: var(--gold); opacity: 0.8; margin-top: 4px;
}
.rl-mv-quote {
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.85; color: var(--cream2); opacity: 0.88;
  font-style: italic; padding-left: 20px;
  border-left: 2px solid var(--gold-edge);
}

/* ═══════════════════════════════════════════════════════════
   S8 · FOUNDERS — Portrait cards with name over image
   ═══════════════════════════════════════════════════════════ */
.rl-founders-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 72px;
}
.rl-founder-card {
  position: relative; overflow: hidden; cursor: default;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.rl-founder-card:hover { transform: translateY(-8px); }

/* Tall portrait crop */
.rl-founder-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
/* Rotated credential text on right side of image */
.rl-founder-cred-rotated {
  position: absolute; right: -28px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); opacity: 0.45;
  white-space: nowrap;
  transition: opacity 0.35s;
}
.rl-founder-card:hover .rl-founder-cred-rotated { opacity: 0.85; }

.rl-founder-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: brightness(0.78) saturate(0.72) contrast(1.08);
  transition: filter 0.55s, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.rl-founder-card:hover .rl-founder-img {
  filter: brightness(0.88) saturate(0.88);
  transform: scale(1.06);
}

/* Gold gradient overlay at bottom for name legibility */
.rl-founder-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(6,5,5,0.92) 0%, rgba(6,5,5,0.4) 50%, transparent 100%);
  pointer-events: none;
}

/* Name overlapping bottom of image */
.rl-founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 400; color: var(--cream);
  letter-spacing: -0.02em; line-height: 1;
  padding: 0 28px; margin-top: -0.6em; position: relative; z-index: 2;
}
.rl-founder-role {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); padding: 10px 28px 4px;
}
.rl-founder-cred {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-style: italic; font-weight: 400;
  color: var(--gold); opacity: 0.75; line-height: 1.5;
  padding: 4px 28px 32px;
}

/* ═══════════════════════════════════════════════════════════
   S9 · APPLY — Dark section, magnetic button, horizontal steps
   ═══════════════════════════════════════════════════════════ */
.rl-bg-apply { position: relative; }

/* Large background APPLY watermark */
.rl-apply-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 20vw, 300px); font-weight: 900;
  color: var(--cream); opacity: 0.018;
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.06em; white-space: nowrap;
}

/* Steps as horizontal numbered timeline */
.rl-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 60px 0 80px; text-align: left;
  border: 1px solid var(--border); position: relative;
}
/* Connecting line between steps */
.rl-steps::before {
  content: ''; position: absolute; top: 52px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold-edge), var(--gold-edge));
  pointer-events: none;
}

.rl-step {
  padding: 48px 36px;
  background: linear-gradient(160deg, rgba(232,68,26,0.03) 0%, rgba(6,5,5,0.15) 100%);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.rl-step:last-child { border-right: none; }

/* Top line sweep on hover */
.rl-step::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.rl-step:hover::after { transform: scaleX(1); }
.rl-step:hover {
  background: linear-gradient(160deg, rgba(232,68,26,0.07) 0%, rgba(6,5,5,0.1) 100%);
}

.rl-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 900; color: var(--gold);
  opacity: 0.12; line-height: 1; margin-bottom: 22px; display: block;
  letter-spacing: -0.04em; transition: opacity 0.4s;
}
.rl-step:hover .rl-step-num { opacity: 0.28; }
.rl-step-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.88; color: var(--cream2); opacity: 0.85;
}

.rl-apply-cta-row { margin-bottom: 40px; }
.rl-discount-signal {
  display: inline-block; margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; color: var(--gold);
  border: 1px solid var(--gold-edge); background: var(--gold-glow); padding: 10px 24px;
}

.rl-waitlist-block {
  border-top: 1px solid var(--border); padding-top: 64px;
  max-width: 520px; margin: 64px auto 0;
}
.rl-waitlist-block > p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--cream2); opacity: 0.75;
  margin-bottom: 24px; line-height: 1.78;
}
.rl-waitlist-form { display: flex; }
.rl-waitlist-form input {
  flex: 1; background: rgba(232,68,26,0.04);
  border: 1px solid rgba(232,68,26,0.12); border-right: none;
  color: var(--cream); padding: 18px 22px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.25s;
}
.rl-waitlist-form input::placeholder { color: var(--muted); }
.rl-waitlist-form input:focus { border-color: var(--gold-edge); }
.rl-waitlist-form button {
  background: transparent; border: 1px solid rgba(232,68,26,0.18);
  color: var(--cream); padding: 18px 28px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.rl-waitlist-form button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.rl-waitlist-success {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--gold); margin-top: 16px;
}

/* ── Footer ── */
.rl-footer {
  padding: 44px var(--pad); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.rl-footer-logo { height: 22px; width: auto; opacity: 0.55; transition: opacity 0.25s; }
.rl-footer-logo:hover { opacity: 1; }
.rl-footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: var(--muted); opacity: 0.55; letter-spacing: 0.12em;
}
.rl-footer-top {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0.55; text-decoration: none;
  transition: opacity 0.25s;
}
.rl-footer-top:hover { opacity: 1; }

/* ── Body state selectors (data-state from JS) ── */
body[data-state="waitlist"] .rl-hero-sub,
body[data-state="completed"] .rl-hero-sub { display: none; }

/* ═══════════════════════════════════════════════════════════
   APPLICATION MODAL
   ═══════════════════════════════════════════════════════════ */
.rl-app-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: flex-start; justify-content: center;
  background: rgba(4,3,3,0.94); backdrop-filter: blur(24px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
  padding: 40px 20px; overflow-y: auto;
}
.rl-app-modal.open { opacity: 1; pointer-events: auto; }

.rl-app-modal-inner {
  position: relative; background: #0E0C0B;
  border: 1px solid rgba(232,68,26,0.12);
  width: 100%; max-width: 560px;
  padding: 56px 52px 64px;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,68,26,0.06);
  margin: auto 0;
}
.rl-app-modal.open .rl-app-modal-inner { transform: translateY(0) scale(1); }

.rl-app-modal-close {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none; color: var(--cream4);
  font-size: 16px; cursor: pointer; padding: 6px 10px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.rl-app-modal-close:hover { color: var(--cream); }

.rl-app-screen { display: block; }
.rl-app-header { margin-bottom: 24px; }
.rl-app-eyebrow {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.rl-app-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 46px); font-weight: 400;
  color: var(--cream); letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 14px;
}
.rl-app-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--cream2); opacity: 0.72; line-height: 1.75;
}
.rl-app-field { margin-bottom: 22px; }
.rl-app-lbl {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream2); opacity: 0.7; margin-bottom: 10px;
}
.rl-app-inp {
  width: 100%; padding: 16px 18px;
  background: rgba(232,68,26,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream); font-size: 14px;
  font-family: 'Inter', sans-serif; font-weight: 300;
  outline: none; transition: border-color 0.25s, background 0.25s;
}
.rl-app-inp:focus { border-color: var(--gold-edge); background: rgba(232,68,26,0.04); }
.rl-app-ta { min-height: 112px; resize: vertical; line-height: 1.68; }
.rl-app-inp option { background: #0E0C0B; }
.rl-app-lbl-opt { opacity: 0.5; font-size: 8px; text-transform: none; letter-spacing: 0; }
.rl-app-links-wrap { display: grid; gap: 8px; }
.rl-app-link-row { display: flex; gap: 8px; align-items: center; }
.rl-app-link-row .rl-app-inp { flex: 1; }
.rl-app-link-remove {
  flex: 0 0 32px; width: 32px; height: 46px;
  border: 1px solid rgba(255,255,255,0.10); background: transparent;
  color: rgba(250,247,242,0.40); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.rl-app-link-remove:hover { border-color: var(--gold-edge); color: var(--gold); }
.rl-app-link-add {
  margin-top: 6px; background: transparent; border: none;
  color: var(--gold); opacity: 0.70;
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; padding: 4px 0; text-align: left;
  transition: opacity 0.2s;
}
.rl-app-link-add:hover { opacity: 1; }
.rl-app-verify-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--cream2); opacity: 0.72; line-height: 1.75; margin-bottom: 28px;
}
.rl-app-otp-row { display: flex; gap: 10px; margin-bottom: 18px; }
.rl-app-otp-inp {
  width: 48px; height: 58px; text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 400; color: var(--cream);
  background: rgba(232,68,26,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  outline: none; caret-color: var(--gold);
  transition: border-color 0.25s;
}
.rl-app-otp-inp:focus { border-color: var(--gold-edge); }
.rl-app-resend {
  background: none; border: none; color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.12em; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 4px;
}
.rl-app-resend:disabled { opacity: 0.35; cursor: not-allowed; }

.rl-app-nav {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--border2);
}
.rl-app-back-btn {
  background: none; border: none; color: var(--cream4);
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.14em; cursor: pointer; padding: 0;
  margin-top: 16px; transition: color 0.2s;
}
.rl-app-back-btn:hover { color: var(--cream); }
.rl-app-err {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #FFB4A6; min-height: 16px; text-align: right;
}
.rl-field-err {
  display: none; font-family: 'Inter', sans-serif;
  font-size: 11px; color: #FFB4A6; margin-top: 4px;
}
.rl-app-inp.invalid, .rl-app-inp.invalid:focus {
  border-color: #FFB4A6 !important;
  box-shadow: 0 0 0 2px rgba(255,180,166,0.15);
}
.rl-app-stepper { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.rl-app-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.rl-app-dot.on { background: var(--gold); }

/* Token payment screen */
.rl-token-pricing {
  background: var(--gold-glow); border: 1px solid var(--gold-edge);
  padding: 20px 24px 18px; margin-bottom: 20px;
}
.rl-token-amount-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.rl-token-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 52px); font-weight: 400;
  color: var(--cream); letter-spacing: -0.04em; line-height: 1;
}
.rl-token-badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--gold-edge); padding: 6px 14px;
}
.rl-token-price-breakdown {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--cream2); opacity: 0.72; line-height: 1.85;
}
.rl-token-price-breakdown strong { color: var(--cream); opacity: 1; }
.rl-modal-discounted-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--gold) 0%, var(--rust) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 10px rgba(232,68,26,0.5));
  animation: priceGlow 2.8s ease-in-out infinite;
  line-height: 1;
}
.rl-modal-discounted-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(120deg, var(--gold) 0%, var(--rust) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-top: 3px;
}
.rl-token-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.rl-token-later-btn {
  background: none; border: none; color: var(--cream4);
  font-family: 'Inter', sans-serif;
  font-size: 13px; letter-spacing: 0.08em; cursor: pointer;
  text-decoration: underline; text-underline-offset: 4px;
  padding: 0; text-align: center; transition: color 0.2s;
}
.rl-token-later-btn:hover { color: var(--cream); }
.rl-token-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.12em;
  margin: 20px 0 12px;
}
.rl-token-divider::before, .rl-token-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.rl-token-msg { padding: 14px 18px; margin-bottom: 22px; font-size: 14px; line-height: 1.65; border: 1px solid; font-family: 'Inter', sans-serif; }
.rl-token-msg.ok  { border-color: rgba(100,200,100,0.3); color: #90e090; background: rgba(100,200,100,0.06); }
.rl-token-msg.err { border-color: var(--gold-edge); color: #FFB4A6; background: rgba(232,68,26,0.04); }
.rl-token-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.rl-token-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--cream2); opacity: 0.75; padding-left: 24px;
  position: relative; line-height: 1.58;
}
.rl-token-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); opacity: 0.7; }

/* WhatsApp button */
.rl-whatsapp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 14px 24px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  color: #4ddb80;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; cursor: pointer;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.rl-whatsapp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.rl-whatsapp-btn:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.5);
  color: #6de89a;
}
.rl-whatsapp-btn--done { width: auto; padding: 14px 32px; }

/* Done screen */
.rl-done-actions {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 32px; width: 100%; max-width: 320px;
}
.rl-done-actions .btn-p { width: 100%; justify-content: center; }
.rl-app-done {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 24px 0 12px;
}
.rl-app-done-icon {
  width: 58px; height: 58px;
  background: rgba(100,200,100,0.1); border: 1px solid rgba(100,200,100,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #90e090; margin-bottom: 32px;
  animation: popIn 0.65s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first collapses
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad: 48px; --rl-pad: 48px; }
  .rl-hero-h1 { font-size: clamp(64px, 9vw, 128px); }
  /* Narrow the right image panel */
  .rl-hero-split { grid-template-columns: 1fr 340px; }
  .rl-hero-img-frame { aspect-ratio: 2 / 3; }
  /* Scale down video column at mid-size screens */
  .rl-exp-split--video { grid-template-columns: 420px 1fr; }
}

@media (max-width: 900px) {
  :root { --pad: 28px; --rl-pad: 28px; }
  .rl-section { padding: 100px 0; }

  /* Hero: stack image below on tablet */
  .rl-hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 var(--pad);
    gap: 40px;
    align-items: flex-end;
    padding-bottom: 20px;
  }
  .rl-hero-card { padding-right: 0; }
  .rl-hero-img-panel {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .rl-hero-img-frame { aspect-ratio: 16 / 9; }
  .rl-hero-img-inner { background-position: center 30%; }

  /* Hero */
  .rl-hero-ribbon { display: none; }
  .rl-hero-split { padding: 0 var(--pad) 0 var(--pad); }
  .rl-hero-h1 { font-size: clamp(56px, 12vw, 96px); }
  .rl-urgency-bar-track { max-width: 100%; }
  .rl-hero-price-pill { max-width: 100%; }
  .rl-hpp-token { border-left: none; padding-left: 0; }

  /* Voices */
  .rl-voice-card { grid-template-columns: 1fr; }
  .rl-voice-card--secondary { grid-template-columns: 1fr; }
  .rl-voice-photo-col { clip-path: none; min-height: 280px; }
  .rl-voice-photo-col .rl-voice-photo-img { min-height: 280px; }
  .rl-voice-card--secondary .rl-voice-photo-col { order: 0; clip-path: none; }
  .rl-voice-card--secondary .rl-voice-body { order: 1; padding: 40px var(--pad); }
  .rl-voice-body { padding: 40px var(--pad); }
  .rl-voice-initials { min-height: 280px; }

  /* Who */
  .rl-who-grid { grid-template-columns: 1fr; }
  .rl-who-divider { display: none; }
  .rl-who-col:first-child { padding: 0 0 40px; }
  .rl-who-col:last-child  { padding: 40px 0 0; border-top: 1px solid var(--border); }

  /* Experience */
  .rl-exp-split { grid-template-columns: 1fr; }
  .rl-exp-split--video { grid-template-columns: 1fr; }
  .rl-exp-video-wrap { min-height: 420px; aspect-ratio: 9/16; height: auto; }
  .rl-exp-visual img, img.rl-exp-visual { min-height: 320px; }
  .rl-days-grid { flex-direction: column; }

  /* Logistics */
  .rl-logistics { grid-template-columns: 1fr 1fr; }
  .rl-logistics-item:nth-child(2) { border-right: none; }
  .rl-logistics-item:nth-child(3),
  .rl-logistics-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* Not list */
  .rl-not-item { grid-template-columns: 60px 1fr; gap: 24px; }

  /* Founders */
  .rl-founders-grid { grid-template-columns: 1fr; gap: 3px; }
  .rl-founder-card:hover { transform: none; }

  /* Apply steps */
  .rl-steps { grid-template-columns: 1fr 1fr; }
  .rl-step:nth-child(2n) { border-right: none; }
  .rl-step:nth-child(n+3) { border-top: 1px solid var(--border); }

  /* Pricing */
  .rl-pricing-outer { grid-template-columns: 1fr; }
  .rl-price-block { border-right: none; border-bottom: 1px solid var(--border); }

  /* Gallery */
  .rl-gallery-strip { height: 260px; }

  /* Nav */
  .rl-logo { padding: 16px var(--pad); }
  .rl-logo.scrolled { padding-top: 10px; padding-bottom: 10px; }
  .rl-logo-img { height: 36px; }
  .rl-logo-wordmark { font-size: 11px; letter-spacing: 0.2em; }
  .rl-logo-cta { display: none; }

  /* Sticky — single row, slightly smaller */
  .sticky-in { padding: 12px var(--pad); gap: 14px; }
  .sticky-retreat-name { font-size: 15px; }
  .sticky-price { font-size: 20px; }
  .sticky-btn { font-size: 10px; padding: 12px 22px; letter-spacing: 0.15em; }
  .rl-footer { flex-direction: column; text-align: center; gap: 16px; }
  .rl-scroll-hint { display: none; }
  .rl-waitlist-form { flex-direction: column; }
  .rl-waitlist-form input { border-right: 1px solid rgba(232,68,26,0.12); border-bottom: none; }
  .rl-numbers { flex-direction: column; }
  .rl-num-block { padding: 44px 40px; }
  .rl-num-block + .rl-num-block { border-left: none; border-top: 1px solid var(--border); }
  .rl-num-block::before { left: 10%; right: 10%; }
  .sec-h2 { font-size: clamp(36px, 7vw, 58px); }
  .rl-manifesto { font-size: clamp(24px, 5.5vw, 40px); }
  .rl-hero-watermark { font-size: clamp(80px, 22vw, 160px); }
  .rl-apply-wm { font-size: clamp(80px, 22vw, 160px); }
  .rl-sec-num-wm { display: none; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; --rl-pad: 20px; }
  .rl-section { padding: 72px 0; }

  /* Nav */
  .rl-logo { padding: 14px var(--pad); }
  .rl-logo.scrolled { padding-top: 10px; padding-bottom: 10px; }
  .rl-logo-img { height: 30px; }
  .rl-logo-wordmark { font-size: 10px; letter-spacing: 0.16em; }
  .rl-logo-cta {
    display: none;
  }

  /* Hero */
  .rl-hero { padding-bottom: 120px; padding-top: 100px; }
  .rl-hero-bg::after {
    background:
      linear-gradient(to top,    rgba(6,5,5,1) 0%, rgba(6,5,5,0.90) 30%, rgba(6,5,5,0.45) 58%, rgba(6,5,5,0.15) 78%, transparent 100%),
      linear-gradient(to bottom, rgba(6,5,5,0.70) 0%, rgba(6,5,5,0.20) 20%, transparent 40%);
  }
  .rl-hero-img-panel { display: none; }
  .rl-hero-split { padding: 0 var(--pad); gap: 0; }
  .rl-hero-h1 { font-size: clamp(44px, 13vw, 72px); line-height: 0.94; margin-bottom: 28px; }
  .rl-hero-diagonal { display: none; }
  .rl-hero-watermark { display: none; }
  .rl-hero-ribbon { display: none; }
  .rl-hero-eyebrow { font-size: 9px; letter-spacing: 0.28em; margin-bottom: 22px; }
  .rl-hero-tagline { font-size: 15px; max-width: 100%; }
  .rl-hero-sub { font-size: 13px; }
  .rl-hero-stats { gap: 6px; margin-bottom: 32px; }
  .rl-hero-stat { padding: 8px 14px; }
  .rl-hero-stat-k { font-size: 9px; }
  .rl-hero-stat-v { font-size: 12px; }
  .btn-p { font-size: 10px; padding: 16px 36px; letter-spacing: 0.2em; }
  .btn-p-lg { padding: 16px 36px; }
  /* 768px — still single row, tighten up */
  .sticky-in { padding: 12px var(--pad); gap: 12px; }
  .sticky-retreat-name { font-size: 15px; }
  .sticky-meta { font-size: 11px; }
  .sticky-right { gap: 12px; }
  .sticky-price { font-size: 20px; }
  .sticky-price-full { font-size: 12px; }
  .sticky-token { display: none; }
  .sticky-early-badge { font-size: 8px; padding: 3px 7px; }
  .sticky-btn { font-size: 10px; padding: 12px 20px; letter-spacing: 0.15em; }

  /* Gallery */
  .rl-gallery-strip { height: 210px; }

  /* Manifesto / S3 */
  .rl-manifesto { font-size: clamp(20px, 5.5vw, 32px); margin-bottom: 60px; }
  .rl-num-val { font-size: clamp(60px, 15vw, 88px); }
  .rl-num-label { font-size: 10px; }

  /* Who (S4) */
  .rl-who-col-head { font-size: 28px; }
  .rl-who-list li { font-size: 14px; }
  .rl-who-bridge { font-size: 20px; margin-top: 40px; }

  /* Experience (S5) */
  .rl-exp-visual img, img.rl-exp-visual { min-height: 260px; }
  .rl-day-card { padding: 32px 24px; }
  .rl-day-label { font-size: 52px; }
  .rl-day-text { font-size: 14px; }

  /* Logistics */
  .rl-logistics { grid-template-columns: 1fr; }
  .rl-logistics-item { border-right: none; border-bottom: 1px solid var(--border); padding: 22px 20px; }
  .rl-logistics-val { font-size: 18px; }

  /* Pricing */
  .rl-price-block { padding: 28px 24px; }
  .rl-price-full { font-size: clamp(36px, 10vw, 52px); }

  /* Not list (S6) */
  .rl-not-item { padding: 24px 20px; gap: 16px; }
  .rl-not-x { font-size: 22px; min-width: 36px; }
  .rl-not-item strong { font-size: 14px; }
  .rl-not-item p { font-size: 13px; }

  /* More voices (S7) */
  .rl-more-voices-grid { grid-template-columns: 1fr; }
  .rl-mv-card { padding: 24px 20px; }

  /* Founders (S8) */
  .rl-founders-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .rl-founder-card { padding: 28px 16px 24px; }
  .rl-founder-name { font-size: 22px; }
  .rl-founder-role { font-size: 9px; }
  .rl-founder-cred { font-size: 14px; }
  .rl-founder-cred-rotated { display: none; }

  /* Apply (S9) */
  .rl-steps { grid-template-columns: 1fr; }
  .rl-step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .rl-steps::before { display: none; }
  .rl-step-num { font-size: 40px; }
  .rl-step-text { font-size: 14px; }
  .rl-apply-wm { font-size: clamp(70px, 22vw, 130px); }
  .rl-waitlist-block { padding-top: 40px; margin-top: 40px; }
  .rl-waitlist-form input { font-size: 16px; } /* prevent iOS zoom */

  /* Voices (S2) */
  .rl-voice-body { padding: 28px var(--pad); }
  .rl-voice-name { font-size: clamp(28px, 8vw, 44px); }
  .rl-voice-bg-text { font-size: 17px; line-height: 1.72; }
  .rl-voice-changed-text { font-size: 14px; line-height: 1.85; }
  .rl-voice-card--primary { margin-bottom: 48px; padding-bottom: 48px; }

  /* Modal */
  .rl-app-modal { padding: 0; align-items: flex-end; overflow-y: auto; }
  .rl-app-modal-inner {
    padding: 40px 20px 48px;
    max-height: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .rl-app-title { font-size: 30px; }
  .rl-app-otp-inp { width: 40px; height: 50px; font-size: 20px; }
  .rl-app-otp-row { gap: 7px; }
  .rl-token-amount { font-size: 48px; }
  .rl-token-pricing { padding: 22px 20px 18px; }

  /* Section headings */
  .sec-h2 { font-size: clamp(32px, 8vw, 52px); margin-bottom: 40px; }
  .sec-lbl { font-size: 9px; letter-spacing: 0.32em; margin-bottom: 20px; }

  /* Footer */
  .rl-footer { padding: 28px var(--pad); flex-direction: column; text-align: center; gap: 12px; }
  .rl-footer-logo { height: 20px; }
  .rl-footer-copyright { font-size: 10px; }
  .rl-footer-top { font-size: 10px; }

  /* Numbers (S3) */
  .rl-numbers { flex-direction: column; }
  .rl-num-block { padding: 36px 32px; }
  .rl-num-block + .rl-num-block { border-left: none; border-top: 1px solid var(--border); }
}

/* ── Sticky bar: two-row stacked layout on small phones ── */
@media (max-width: 540px) {
  .sticky-in {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 20px;
  }
  .sticky-left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex: none;
    width: 100%;
  }
  .sticky-retreat-name { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
  .sticky-meta { font-size: 11px; flex-shrink: 0; }
  .sticky-dates { display: none; }
  .sticky-sep { display: none; }
  .sticky-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  .sticky-price-wrap { align-items: flex-start; flex: 1; }
  .sticky-price-row { gap: 7px; }
  .sticky-price { font-size: 20px; }
  .sticky-price-full { font-size: 11px; }
  .sticky-price-sub-row { margin-top: 2px; }
  .sticky-early-badge { font-size: 8px; padding: 3px 7px; }
  .sticky-token { display: none; }
  .sticky-btn { font-size: 10px; padding: 13px 22px; letter-spacing: 0.14em; flex-shrink: 0; }
}

@media (max-width: 400px) {
  .rl-founders-grid { grid-template-columns: 1fr; }
  .rl-hero-h1 { font-size: clamp(38px, 12vw, 60px); }
  .rl-hero-stat { padding: 7px 10px; }
  .rl-app-otp-inp { width: 36px; height: 46px; font-size: 18px; }
  .rl-app-otp-row { gap: 5px; }
  .rl-hero { padding-bottom: 110px; }
}

/* ── Prefers reduced motion — disable all animations ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .rl-hero-photo { transform: none !important; }
  .rl-gallery-strip img { filter: brightness(0.78) saturate(0.88) !important; }
  .rl-cursor-spotlight { display: none; }
}
