/* ════════════════════════════════════════════════════════
   SOCIALITE CLUB — Landing Page
   Brand: League Spartan + DM Sans
   Palette: Exact logo gradient (purple→teal→green→gold)
   ════════════════════════════════════════════════════════ */
:root {
  --bg: #08070E;
  --bg2: #0E0D16;
  --bg3: #14131E;
  --surface: rgba(255,255,255,0.035);
  --surface-h: rgba(255,255,255,0.06);
  --text: #F0EDF5;
  --text-dim: #8E87A0;
  --line: rgba(255,255,255,0.07);

  /* ── Exact logo upper-diamond gradient colors ── */
  --brand-1: #8B52FE;   /* purple        offset 0%    */
  --brand-2: #739AF2;   /* blue          offset 25%   */
  --brand-3: #5CE1E5;   /* teal/cyan     offset 50%   */
  --brand-4: #7FE2C2;   /* seafoam       offset 62.5% */
  --brand-5: #A1E3A0;   /* green         offset 75%   */
  --brand-6: #E6E45C;   /* golden yellow offset 100%  */
  --gold: #D4AF37;      /* true gold for Gold tier     */
  --gold-light: #E8C84A;
  --lower: #5A7C95;     /* lower diamond stroke        */

  --brand-glow-gold: rgba(212,175,55,0.14);

  --grad-brand: linear-gradient(135deg, var(--brand-1), var(--brand-3), var(--brand-5));
  --grad-full: linear-gradient(135deg, #8B52FE, #7F76F8, #739AF2, #67BDEC, #5CE1E5, #7FE2C2, #A1E3A0, #C4E47D, #E6E45C);

  --brand-glow-1: rgba(139,82,254,0.16);
  --brand-glow-3: rgba(92,225,229,0.12);
  --brand-glow-5: rgba(161,227,160,0.10);

  --font-brand: 'League Spartan', sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mx: 1240px;

  --nav-logo-size: 75px;
  --nav-logo-size-mobile: 46px;
}


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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.c { width: min(var(--mx), calc(100% - 48px)); margin: 0 auto; }
.sec { padding: 160px 0; position: relative; }

/* Film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════════ TYPOGRAPHY ════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-brand);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); }

.eyebrow {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 560px;
  margin-top: 18px;
}

/* ─── Glow text: slow CSS animation (GPU-composited, zero CPU) ─── */
.glow {
  background-image: linear-gradient(120deg, var(--brand-1) 0%, var(--brand-2) 18%, var(--brand-3) 40%, var(--brand-4) 58%, var(--brand-5) 78%, var(--brand-6) 100%);
  background-size: 250% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-shift 40s ease-in-out infinite;
}

@keyframes glow-shift {
  0%, 100% { background-position: 10% 50%; }
  50%      { background-position: 90% 50%; }
}

/* ════════════ ANIMATION SYSTEM ════════════ */
/* Scroll reveals - gentle, slow */
.r {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.r.v { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.15s; }
.r.d2 { transition-delay: 0.30s; }
.r.d3 { transition-delay: 0.45s; }
.r.d4 { transition-delay: 0.60s; }

.r-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.r-l.v { opacity: 1; transform: none; }

.r-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.r-r.v { opacity: 1; transform: none; }

.r-s {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.r-s.v { opacity: 1; transform: none; }

/* Hero entrance */
.au {
  opacity: 0;
  transform: translateY(36px);
  animation: rise 1.1s var(--ease) forwards;
}
.au.d1 { animation-delay: 0.2s; }
.au.d2 { animation-delay: 0.4s; }
.au.d3 { animation-delay: 0.65s; }
.au.d4 { animation-delay: 1.8s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ════════════ NAV ════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.6s, backdrop-filter 0.6s;
}
.nav.scrolled {
  background: rgba(8,7,14,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-in {
  max-width: var(--mx);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  height: var(--nav-logo-size);
  width: auto;
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}
.nav-brand-text small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.btn-brand {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333 !important;
  background: var(--grad-brand);
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
    .btn-brand:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px var(--brand-glow-1);
        color: #000 !important;
    }

@media (max-width: 768px) {
  .nav-links a:not(.btn-brand) { display: none; }
  .nav-brand img { height: var(--nav-logo-size-mobile); }
  .nav-brand { gap: 10px; }
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,14,0.72);
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.orb-1 {
  width: 700px;
  height: 700px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(139,82,254,0.12), transparent 70%);
  animation: drift 28s ease-in-out infinite;
}
.orb-2 {
  width: 500px;
  height: 500px;
  top: 25%;
  right: -8%;
  background: radial-gradient(circle, rgba(92,225,229,0.08), transparent 70%);
  animation: drift 34s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: 30%;
  background: radial-gradient(circle, rgba(161,227,160,0.18), transparent 70%);
  animation: drift 26s ease-in-out infinite 5s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.03); }
  66% { transform: translate(-15px, 10px) scale(0.98); }
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg));
  z-index: 2;
}

.hero-ct {
  position: relative;
  z-index: 3;
  padding: 140px 0 100px;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  margin: 0 0 24px;
  line-height: 0.95;
  font-weight: 600;
}
.hero-p {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 620px;
}
.md-show { display: none; }
@media (min-width: 768px) { .md-show { display: inline; } }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.store-link {
  display: inline-flex;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.store-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.store-badge { height: 54px; width: auto; }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--brand-3), transparent);
  animation: pulse-line 3s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.7; }
}

/* ════════════ SOCIAL PROOF BAR ════════════ */
.proof-bar {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.proof-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  will-change: transform;
  /* animation driven by JS Web Animations API */
}
.proof-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
}

/* ════════════ MANIFESTO ════════════ */
.manifesto {
  padding: 180px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg));
}
.manifesto q {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.35;
  max-width: 780px;
  margin: 0 auto;
  quotes: none;
}
.manifesto q em {
  font-style: italic;
  font-weight: 600;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════ FEATURES BENTO ════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
  margin-top: 56px;
}
.bento {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.6s var(--ease), box-shadow 0.6s, border-color 0.5s;
}
.bento:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(92,225,229,0.12);
}
.bento-lg { grid-column: span 2; min-height: 340px; }
.bento-emoji { font-size: 2.8rem; margin-bottom: 20px; }
.bento h3 { font-size: 1.35rem; margin-bottom: 8px; font-weight: 500; }
.bento p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
.bento-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
.bento-glow-p { background: rgba(139,82,254,0.2); }
.bento-glow-t { background: rgba(92,225,229,0.15); }
.bento-glow-g { background: rgba(161,227,160,0.12); }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; }
}

/* ════════════ TIERS ════════════ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.tier {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.tier-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid;
  margin-bottom: 20px;
}
.tier-silver .tier-badge { color: #C0C8D4; border-color: rgba(192,200,212,0.2); background: rgba(192,200,212,0.05); }
.tier-gold .tier-badge { color: var(--gold-light); border-color: rgba(212,175,55,0.25); background: rgba(212,175,55,0.06); }
.tier-diamond .tier-badge { color: var(--brand-1); border-color: rgba(139,82,254,0.25); background: rgba(139,82,254,0.08); }

.tier h3 { font-size: 1.5rem; margin-bottom: 18px; }
.tier-list { list-style: none; }
.tier-list li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.tier-list li::before { content: '◇'; font-size: 9px; margin-top: 5px; flex-shrink: 0; }
.tier-silver .tier-list li::before { color: #C0C8D4; }
.tier-gold .tier-list li::before { color: var(--gold-light); }
.tier-diamond .tier-list li::before { color: var(--brand-1); }

.tier-diamond {
  background: linear-gradient(170deg, rgba(139,82,254,0.04), var(--surface));
  border-color: rgba(139,82,254,0.1);
}
.tier-diamond:hover { box-shadow: 0 20px 60px rgba(139,82,254,0.08); }

.tier-gold {
  background: linear-gradient(170deg, rgba(212,175,55,0.03), var(--surface));
  border-color: rgba(212,175,55,0.08);
}
.tier-gold:hover { box-shadow: 0 20px 60px rgba(212,175,55,0.06); }

/* Founding member badge */
.founding-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-3);
  border: 1px solid rgba(92,225,229,0.15);
  background: rgba(92,225,229,0.04);
}
.founding-note::before { content: '✦'; }
.tier-shine {
  position: absolute;
  inset: -100%;
  background: linear-gradient(135deg, transparent 42%, rgba(92,225,229,0.02) 50%, transparent 58%);
  animation: shine 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0% { transform: translate(-30%, -30%); }
  100% { transform: translate(30%, 30%); }
}

@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* ════════════ DIAMOND SPOTLIGHT ════════════ */
.spotlight { overflow: hidden; }
.spot-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow-1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}
.spot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.spot-copy h2 em { font-style: italic; font-weight: 300; }
.spot-desc { color: var(--text-dim); font-size: 1.05rem; line-height: 1.8; margin-top: 18px; }

.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk {
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.5s, background 0.5s;
}
.perk:hover {
  border-color: rgba(139,82,254,0.15);
  background: var(--surface-h);
}
.perk-ico { font-size: 1.5rem; margin-bottom: 12px; }
.perk h4 { font-family: var(--font-brand); font-size: 1.05rem; font-weight: 500; margin-bottom: 6px; }
.perk p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.6; }

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

/* ════════════ HIERARCHY ════════════ */
.hier-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hier-diagram { display: flex; flex-direction: column; align-items: center; }
.hier-ring {
  width: 100%;
  max-width: 360px;
  padding: 26px 28px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid;
  background: var(--surface);
  transition: transform 0.5s var(--ease);
}
.hier-ring:hover { transform: scale(1.03); }
.hier-ring b { display: block; font-family: var(--font-brand); font-size: 1.3rem; font-weight: 500; margin-bottom: 3px; }
.hier-ring small { font-size: 0.78rem; color: var(--text-dim); }
.hier-ring.hd {
  color: var(--brand-1);
  border-color: rgba(139,82,254,0.2);
  background: linear-gradient(180deg, rgba(139,82,254,0.05), var(--surface));
  box-shadow: 0 0 40px rgba(139,82,254,0.05);
}
.hier-ring.hg { color: var(--gold-light); border-color: rgba(212,175,55,0.18); }
.hier-ring.hs { color: #C0C8D4; border-color: rgba(192,200,212,0.1); }
.hier-line { height: 36px; display: flex; justify-content: center; color: var(--line); }
.hier-line svg { width: 2px; height: 36px; }

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

/* ════════════ TRAVEL ════════════ */
.travel {
  background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg));
}
.travel-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
/* travel-visual: styled at end of file for device mockup */
.travel-globe { display: none; }

.travel-cards { display: flex; flex-direction: column; gap: 14px; }
.travel-card {
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.4s, background 0.4s;
}
.travel-card:hover {
  border-color: rgba(92,225,229,0.18);
  background: var(--surface-h);
}
.travel-card-ico { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.travel-card h4 { font-family: var(--font-brand); font-size: 1.05rem; font-weight: 500; margin-bottom: 4px; }
.travel-card p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.6; }

/* Destinations marquee */
.destinations { margin-top: 80px; overflow: hidden; }
.dest-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  /* animation driven by JS Web Animations API */
}
.dest {
  flex-shrink: 0;
  padding: 20px 28px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: border-color 0.4s;
}
.dest:hover { border-color: rgba(92,225,229,0.18); }
.dest-flag { font-size: 1.5rem; }
.dest b { font-family: var(--font-brand); font-size: 0.92rem; font-weight: 500; }
.dest span { font-size: 0.8rem; color: var(--text-dim); }

@media (max-width: 900px) { .travel-hero { grid-template-columns: 1fr; } }

/* ════════════ LIFESTYLE VIBES ════════════ */
.vibes { text-align: center; }
.vibes-grid { display: flex; gap: 16px; margin-top: 56px; justify-content: center; flex-wrap: wrap; }
.vibe {
  flex: 1 1 200px;
  max-width: 260px;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  isolation: isolate;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s ease, background 0.4s ease;
}
.vibe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.01) 38%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
  z-index: 0;
}
.vibe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,0.10), transparent 32%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.vibe:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.14);
}
.vibe-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.95rem;
  opacity: 1;
  filter: saturate(1.28) contrast(1.04) brightness(1.05) drop-shadow(0 12px 28px rgba(0,0,0,0.22));
  z-index: 2;
}
.vibe-label {
  position: relative;
  z-index: 3;
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vibe:nth-child(1) { background: linear-gradient(180deg, rgba(75,40,113,0.42) 0%, rgba(28,22,39,0.20) 100%); }
.vibe:nth-child(2) { background: linear-gradient(180deg, rgba(15,92,102,0.40) 0%, rgba(19,32,38,0.18) 100%); }
.vibe:nth-child(3) { background: linear-gradient(180deg, rgba(42,90,71,0.38) 0%, rgba(20,29,26,0.18) 100%); }
.vibe:nth-child(4) { background: linear-gradient(180deg, rgba(106,100,27,0.40) 0%, rgba(32,30,16,0.18) 100%); }

/* ════════════ TESTIMONIALS ════════════ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.test {
  padding: 36px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.test:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.test-stars { font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; color: var(--brand-6); }
.test q { display: block; font-size: 0.94rem; font-style: italic; line-height: 1.7; margin-bottom: 18px; quotes: none; }
.test cite {
  font-style: normal;
  font-family: var(--font-brand);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ════════════ METRICS ════════════ */
.metrics { padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.met { text-align: center; }
.met-n { display: block; font-family: var(--font-brand); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; letter-spacing: -0.03em; }
.met-l { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
.met-div { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--line), transparent); }
@media (max-width: 600px) { .met-div { display: none; } .metrics-row { gap: 32px; } }

/* ════════════ FINAL CTA ════════════ */
.final { padding-bottom: 120px; }
.final-box {
  position: relative;
  padding: 80px 48px;
  border-radius: 32px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.final-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow-1), transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}
.final-box .sub { margin: 16px auto 0; }
.final-box .hero-cta { justify-content: center; }
.final-box > * { position: relative; z-index: 1; }

/* ════════════ FOOTER ════════════ */
.foot { padding: 48px 0; border-top: 1px solid var(--line); }
.foot-in { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-logo img { height: 40px; opacity: 0.5; }
.foot-logo-text {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.001em;
  color: var(--text-dim);
}
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.foot-links a { font-size: 0.84rem; color: var(--text-dim); transition: color 0.3s; }
.foot-links a:hover { color: var(--brand-3); }
.foot small { font-size: 0.76rem; color: var(--text-dim); opacity: 0.4; }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 768px) {
  .sec { padding: 100px 0; }
  .hero-ct { padding: 120px 0 80px; }
  .store-badge { height: 48px; }
  .nav-in { height: 72px; }
}
@media (prefers-reduced-motion: reduce) {
  /* Stop ALL animations — especially infinite ones (orbs, shine, pulse-line)
     that would loop 100x/sec with a short duration, burning CPU */
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01s !important;
  }
  /* Hero entrance — complete instantly so content is visible */
  .au                   { animation: rise 0.01s forwards !important; }
  /* Scroll reveals — keep a gentle transition */
  .r, .r-l, .r-r, .r-s { transition-duration: 0.8s !important; }
  /* Glow — slow ambient effect, keep it */
  .glow                 { animation: glow-shift 5s ease-in-out infinite !important; }
}

/* ════════════ HOW IT WORKS — STEPS ════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.step-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease), box-shadow 0.6s, border-color 0.5s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(92,225,229,0.12);
}
.step-num {
  display: block;
  font-family: var(--font-brand);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}
.step-card h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 500; }
.step-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ════════════ SPECIAL TIERS (Free & Celebrity) ════════════ */
.special-tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .special-tiers-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* Free tier */
.tier-free .tier-badge {
  color: var(--brand-3);
  border-color: rgba(92,225,229,0.18);
  background: rgba(92,225,229,0.04);
}
.tier-free .tier-list li::before { color: var(--brand-3); }

/* Celebrity tier */
.tier-celeb {
  background: linear-gradient(170deg, rgba(230,228,92,0.04), var(--surface));
  border-color: rgba(230,228,92,0.1);
}
.tier-celeb:hover { box-shadow: 0 20px 60px rgba(230,228,92,0.06); }
.tier-celeb .tier-badge {
  color: var(--brand-6);
  border-color: rgba(230,228,92,0.25);
  background: rgba(230,228,92,0.06);
}
.tier-celeb .tier-list li::before { color: var(--brand-6); }

/* ════════════ TIER PRICING ════════════ */
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}
.price-amount {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.price-period {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* ════════════ HIERARCHY — Celebrity & Free rings ════════════ */
.hier-ring.hc {
  color: var(--brand-6);
  border-color: rgba(230,228,92,0.2);
  background: linear-gradient(180deg, rgba(230,228,92,0.05), var(--surface));
  box-shadow: 0 0 40px rgba(230,228,92,0.04);
}
.hier-ring.hf {
  color: var(--brand-3);
  border-color: rgba(92,225,229,0.1);
  background: var(--surface);
}

/* ════════════ WHY CLUB ════════════ */
.why-club {
  background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg));
}
.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.club-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.6s var(--ease), box-shadow 0.6s, border-color 0.5s;
}
.club-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(212,175,55,0.15);
}
.club-card-lg { grid-column: span 2; }
.club-card-ico {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.club-card h3 {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.club-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .club-grid { grid-template-columns: 1fr; }
  .club-card-lg { grid-column: span 1; }
}

/* ════════════ HERO SPLIT (text + device mockup) ════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.hero-device {
  position: relative;
  flex-shrink: 0;
}
.hero-phone {
  width: 550px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-device { display: flex; justify-content: center; }
  .hero-phone { width: 220px; }
}
@media (max-width: 500px) {
  .hero-device { display: none; }
}

/* ════════════ APP SHOWCASE ════════════ */
.app-showcase {
  background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg));
  overflow: hidden;
}
.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-copy { max-width: 520px; }
.showcase-device {
  display: flex;
  justify-content: center;
}
.showcase-phone {
  width: 470px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(139,82,254,0.12));
}

@media (max-width: 900px) {
  .showcase-layout { grid-template-columns: 1fr; gap: 48px; }
  .showcase-device { order: -1; }
  .showcase-phone { width: 260px; }
}

/* ════════════ TRAVEL VISUAL — device mockup ════════════ */
.travel-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.travel-phone {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(92,225,229,0.08));
}

@media (max-width: 900px) {
  .travel-phone { width: 260px; }
}
