/* =========================================================
   UREYZ — Design Tokens
   Navy #0B1D3A · Void #05080F · Royal Blue #1D3C78
   Gold #D4AF37 · Purple #8A4FFF · Silver #B0B7C3
   Display/Body: Montserrat · HUD accent: Orbitron
   ========================================================= */
:root{
  --navy: #0B1D3A;
  --void: #05080F;
  --royal: #1D3C78;
  --royal-soft: #16294f;
  --gold: #D4AF37;
  --gold-bright: #F2CB63;
  --purple: #8A4FFF;
  --purple-soft: #6a3ad1;
  --silver: #B0B7C3;
  --ivory: #F4F1E9;

  --grad-gold: linear-gradient(135deg, #F2CB63 0%, #D4AF37 45%, #9c7a1f 100%);
  --grad-purple: linear-gradient(135deg, #a877ff 0%, #8A4FFF 60%, #5a2fc2 100%);
  --grad-bg: radial-gradient(120% 100% at 50% -10%, #142a52 0%, #0B1D3A 45%, #05080F 100%);

  --font-display: 'Montserrat', sans-serif;
  --font-hud: 'Orbitron', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --section-pad: clamp(64px, 10vw, 128px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:84px; overflow-x:hidden; width:100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  background:var(--void);
  color:var(--ivory);
  font-family:var(--font-display);
  font-weight:500;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

::selection{ background:var(--gold); color:var(--navy); }

.section-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:var(--font-hud);
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 16px;
}
.eyebrow-hero{ color:var(--gold-bright); }
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); box-shadow:0 0 10px var(--gold); }
.eyebrow-center{ justify-content:center; text-align:center; }

.h2{
  font-size:clamp(28px, 4vw, 44px);
  font-weight:800;
  line-height:1.12;
  margin:0 0 20px;
  letter-spacing:-.01em;
}
.h2-center{ text-align:center; max-width:820px; margin-left:auto; margin-right:auto; }

.lead{ color:var(--silver); font-size:17px; line-height:1.7; max-width:52ch; margin:0 0 12px; }
.lead-center{ text-align:center; max-width:640px; margin-left:auto; margin-right:auto; }

.callout{
  font-size:19px;
  line-height:1.6;
  color:var(--ivory);
  border-left:3px solid var(--gold);
  padding:14px 0 14px 20px;
  margin-top:24px;
}
.callout strong{ color:var(--gold-bright); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  border:1px solid transparent;
  padding:13px 26px;
  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn-lg{ padding:16px 32px; font-size:15px; }
.btn-gold{
  background:var(--grad-gold);
  color:#231a04;
  box-shadow:0 8px 24px -8px rgba(212,175,55,.55);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 12px 30px -8px rgba(212,175,55,.7); }
.btn-outline{
  background:transparent;
  border-color:rgba(244,241,233,.35);
  color:var(--ivory);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-bright); transform:translateY(-2px); }
.btn-ghost{
  background:rgba(212,175,55,.08);
  border-color:rgba(212,175,55,.4);
  color:var(--gold-bright);
  padding:10px 20px;
  font-size:13px;
}
.btn-ghost:hover{ background:rgba(212,175,55,.16); }

/* =========================================================
   CONTENT LOCK — hide site until gate is passed
   ========================================================= */
body.gate-locked{ overflow:hidden; height:100vh; }
body.gate-locked .topnav,
body.gate-locked main,
body.gate-locked .site-footer,
body.gate-locked .tabbar{ display:none; }

/* =========================================================
   GATE — intro video + password protection
   ========================================================= */
.gate{
  position:fixed; inset:0; z-index:999; background:#000;
  transition:opacity .7s ease, visibility .7s ease;
}
.gate.gate-hide{ opacity:0; visibility:hidden; pointer-events:none; }

.gate-stage{
  position:absolute; inset:0;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .6s ease, visibility .6s ease;
}
.gate-stage.active{ opacity:1; visibility:visible; pointer-events:auto; }

/* --- video stage --- */
.gate-video-el{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; background:#000; }
@media (max-width:760px) and (orientation:portrait){
  .gate-video-el{ object-fit:contain; }
}
.gate-video-scrim{ position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.35) 100%); pointer-events:none; }

.gate-skip{
  position:absolute; top:22px; right:22px; z-index:2;
  display:flex; align-items:center; gap:4px;
  background:rgba(5,8,15,.45); backdrop-filter:blur(8px);
  border:1px solid rgba(244,241,233,.25); color:var(--ivory);
  font-size:13px; font-weight:700; letter-spacing:.03em;
  padding:9px 16px; border-radius:999px;
  transition:background .2s ease, border-color .2s ease;
}
.gate-skip:hover{ background:rgba(212,175,55,.2); border-color:var(--gold); }
.gate-skip span{ font-size:15px; }

.gate-mute{
  position:absolute; bottom:44px; right:22px; z-index:2;
  width:42px; height:42px; border-radius:50%;
  background:rgba(5,8,15,.45); backdrop-filter:blur(8px);
  border:1px solid rgba(244,241,233,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; transition:background .2s ease, border-color .2s ease;
}
.gate-mute:hover{ background:rgba(212,175,55,.2); border-color:var(--gold); }

.gate-playbtn{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3;
  width:76px; height:76px; border-radius:50%;
  background:rgba(5,8,15,.55); backdrop-filter:blur(10px);
  border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 8px rgba(212,175,55,.12), 0 20px 40px -10px rgba(0,0,0,.6);
  transition:transform .2s ease, background .2s ease;
  animation:playPulse 2s ease-in-out infinite;
}
.gate-playbtn:hover{ transform:translate(-50%,-50%) scale(1.08); background:rgba(212,175,55,.25); }
.gate-playbtn[hidden]{ display:none; }
.gate-playbtn-tri{
  width:0; height:0; margin-left:6px;
  border-top:14px solid transparent; border-bottom:14px solid transparent; border-left:22px solid var(--gold-bright);
}
@keyframes playPulse{ 0%,100%{ box-shadow:0 0 0 8px rgba(212,175,55,.12), 0 20px 40px -10px rgba(0,0,0,.6); } 50%{ box-shadow:0 0 0 14px rgba(212,175,55,.05), 0 20px 40px -10px rgba(0,0,0,.6); } }

.gate-video-foot{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  display:flex; align-items:center; gap:16px;
  padding:0 22px 22px;
}
.gate-video-mark{ width:26px; height:32px; flex-shrink:0; filter:drop-shadow(0 0 10px rgba(212,175,55,.5)); }
.gate-progress{ flex:1; height:3px; border-radius:2px; background:rgba(244,241,233,.2); overflow:hidden; }
.gate-progress-fill{ display:block; height:100%; width:0%; background:var(--grad-gold); }

/* --- password stage --- */
.gate-password{ background:var(--grad-bg); display:flex; align-items:center; justify-content:center; padding:24px; }
.gate-password-card{
  width:100%; max-width:420px; text-align:center;
  padding:clamp(32px,6vw,48px) clamp(24px,5vw,40px);
  background:linear-gradient(180deg, rgba(29,60,120,.28), rgba(5,8,15,.6));
  border:1px solid rgba(212,175,55,.25); border-radius:var(--radius-lg);
  box-shadow:0 30px 70px -30px rgba(0,0,0,.8);
}
.gate-password-mark{ width:56px; height:68px; margin:0 auto 20px; filter:drop-shadow(0 0 20px rgba(212,175,55,.45)); }
.gate-password-h{ font-size:clamp(19px,3vw,24px); margin-bottom:26px; }
.gate-form{ display:flex; flex-direction:column; gap:14px; }
.gate-input{
  width:100%; padding:14px 18px; border-radius:12px;
  background:rgba(5,8,15,.5); border:1px solid rgba(176,183,195,.3); color:var(--ivory);
  font-family:var(--font-display); font-size:15px; text-align:center; letter-spacing:.08em;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.gate-input::placeholder{ color:rgba(176,183,195,.6); letter-spacing:normal; }
.gate-input:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(212,175,55,.15); }
.gate-submit{ width:100%; }
.gate-error{ margin:16px 0 0; min-height:18px; font-size:13px; color:#ff6b8a; }
.gate-password-card.shake{ animation:gateShake .4s ease; }
@keyframes gateShake{ 0%,100%{ transform:translateX(0); } 20%{ transform:translateX(-8px); } 40%{ transform:translateX(8px); } 60%{ transform:translateX(-6px); } 80%{ transform:translateX(6px); } }

@media (max-width:600px){
  .gate-skip{ top:16px; right:16px; padding:7px 13px; font-size:12px; }
  .gate-mute{ bottom:88px; right:16px; width:38px; height:38px; }
  .gate-video-foot{ padding:0 16px 78px; }
}

/* =========================================================
   TOP NAV
   ========================================================= */
.topnav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px;
  background:linear-gradient(to bottom, rgba(5,8,15,.85), rgba(5,8,15,0));
  backdrop-filter:blur(0px);
  transition:background .35s ease, backdrop-filter .35s ease, padding .35s ease;
}
.topnav.scrolled{
  background:rgba(7,14,28,.72);
  backdrop-filter:blur(14px);
  padding:11px 24px;
  box-shadow:0 1px 0 rgba(212,175,55,.15), 0 10px 30px -20px rgba(0,0,0,.6);
}
.brand{ display:flex; align-items:center; }
.brand-lockup-nav{ height:38px; width:auto; display:block; transition:height .3s ease; }
.topnav.scrolled .brand-lockup-nav{ height:32px; }
.topnav-links{ display:flex; gap:28px; }
.topnav-links a{
  font-size:13px; font-weight:600; letter-spacing:.03em; color:var(--silver);
  position:relative; padding-bottom:4px;
  transition:color .2s ease;
}
.topnav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold);
  transition:width .25s ease;
}
.topnav-links a:hover{ color:var(--ivory); }
.topnav-links a:hover::after{ width:100%; }

.hamburger{ display:none; background:none; border:0; width:44px; height:44px; position:relative; padding:0; }
.hamburger span{ position:absolute; left:8px; right:8px; height:2px; background:var(--ivory); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }
.hamburger span:nth-child(1){ top:15px; }
.hamburger span:nth-child(2){ top:22px; }
.hamburger span:nth-child(3){ top:29px; }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(82vw, 340px); z-index:206;
  background:linear-gradient(180deg, #0e2242, var(--navy) 40%, #060c18);
  border-left:1px solid rgba(212,175,55,.2);
  display:flex; flex-direction:column;
  padding:70px 26px 32px;
  transform:translateX(100%);
  transition:transform .45s var(--ease);
  overflow:hidden;
}
.drawer.open{ transform:translateX(0); }

.drawer-blob{
  position:absolute; top:-60px; right:-60px; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(138,79,255,.55), rgba(138,79,255,0) 70%);
  filter:blur(6px); pointer-events:none;
}
.drawer-close{
  position:absolute; top:20px; right:20px; width:36px; height:36px; border-radius:50%;
  background:rgba(244,241,233,.08); border:1px solid rgba(244,241,233,.2); color:var(--ivory);
  font-size:14px; display:flex; align-items:center; justify-content:center; z-index:2;
}
.drawer-profile{ position:relative; z-index:1; text-align:center; margin-bottom:28px; }
.drawer-avatar{ width:64px; height:64px; border-radius:50%; background-color:rgba(212,175,55,.12); border:2px solid var(--gold); margin:0 auto 14px; box-shadow:0 0 0 5px rgba(212,175,55,.12); }
.drawer-profile h3{ margin:0 0 4px; font-size:17px; }
.drawer-profile p{ margin:0; font-size:12.5px; color:var(--silver); }

.drawer-menu{ position:relative; z-index:1; display:flex; flex-direction:column; gap:6px; flex:1; }
.drawer-menu a{
  display:flex; align-items:center; gap:14px; font-size:15px; font-weight:700;
  padding:11px 12px; border-radius:14px; transition:background .2s ease;
}
.drawer-menu a:hover, .drawer-menu a:active{ background:rgba(244,241,233,.06); }
.d-ico{
  width:34px; height:34px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  font-size:14px; flex-shrink:0;
}
.d-ico-1{ background:rgba(212,175,55,.18); color:var(--gold-bright); }
.d-ico-2{ background:rgba(138,79,255,.2); color:#c3a4ff; }
.d-ico-3{ background:rgba(240,90,140,.18); color:#ff8fb3; }
.d-ico-4{ background:rgba(29,60,120,.5); color:#8fb0ee; }
.d-ico-5{ background:rgba(212,175,55,.18); color:var(--gold-bright); }

.drawer-cta{ position:relative; z-index:1; width:100%; margin-top:18px; }

.drawer-scrim{
  position:fixed; inset:0; z-index:205; background:rgba(2,4,9,.55);
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.drawer-scrim.show{ opacity:1; pointer-events:auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:flex-end;
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center 30%;
  opacity:0; transform:scale(1.06); transition:opacity 1.4s ease;
}
.hero-slide.active{ opacity:1; }
.hero-slide[data-banner="true"]{ background-size:contain; background-repeat:no-repeat; background-color:#03050a; }
.hero-scrim{ position:absolute; inset:0; background:linear-gradient(to top, rgba(5,8,15,.98) 8%, rgba(5,8,15,.55) 45%, rgba(5,8,15,.35) 70%, rgba(11,29,58,.55) 100%); transition:opacity .6s ease; }
.hero-vignette{ position:absolute; inset:0; box-shadow:inset 0 0 180px 40px rgba(0,0,0,.65); pointer-events:none; transition:opacity .6s ease; }
.hero.banner-slide .hero-scrim{ opacity:.72; }
.hero.banner-slide .hero-vignette{ opacity:.6; }

.hero-dots{
  position:absolute; left:50%; bottom:32px; transform:translateX(-50%); z-index:3;
  display:flex; gap:9px;
}
.hero-dot{
  width:28px; height:28px; padding:0; border:none; background:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.hero-dot::after{
  content:''; display:block; width:8px; height:8px; border-radius:50%;
  background:rgba(244,241,233,.35); transition:background .3s ease, width .3s ease;
}
.hero-dot.active::after{ background:var(--gold-bright); width:24px; border-radius:4px; }
@media (max-width:720px){ .hero-dots{ bottom:78px; } }

.hero-content{ position:relative; z-index:2; padding:0 24px clamp(64px, 9vw, 96px); max-width:900px; margin:0 auto; width:100%; }
.hero-headline-group{ transition:opacity .6s ease, transform .6s ease; }
.hero.banner-slide .hero-headline-group{ opacity:0; transform:translateY(10px); pointer-events:none; }
.hero-title{ margin:0 0 22px; font-weight:900; text-transform:uppercase; }
.hero-title .line{ display:block; font-size:clamp(44px, 10vw, 96px); line-height:.98; letter-spacing:-.01em; opacity:0; transform:translateY(24px); animation:riseIn .8s var(--ease) forwards; }
.hero-title .line:nth-child(1){ animation-delay:.15s; }
.hero-title .line-accent{ background:var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent; -webkit-text-fill-color:transparent; animation-delay:.32s; }
.ellipsis{ color:var(--purple); -webkit-text-fill-color:var(--purple); }
@keyframes riseIn{ to{ opacity:1; transform:translateY(0); } }

.hero-sub{ color:var(--silver); font-size:clamp(15px,2vw,18px); max-width:56ch; margin:0 0 32px; opacity:0; animation:riseIn .8s .5s var(--ease) forwards; }
.hero-action-panel{
  margin-top:32px; padding:22px clamp(18px,3vw,28px);
  background:rgba(5,8,15,.4); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(244,241,233,.1); border-radius:var(--radius-md);
  display:inline-block; max-width:100%;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; opacity:0; animation:riseIn .8s .65s var(--ease) forwards; }
.hero-cta-center{ justify-content:center; }

.hero-stats{ display:flex; flex-wrap:wrap; gap:clamp(20px,5vw,56px); margin-top:22px; opacity:0; animation:riseIn .8s .8s var(--ease) forwards; }
.hstat{ display:flex; flex-direction:column; }
.hstat-num{ font-family:var(--font-hud); font-size:clamp(26px,4vw,38px); font-weight:700; color:var(--gold-bright); }
.hstat-label{ font-size:12px; color:var(--silver); letter-spacing:.03em; margin-top:2px; }

.scroll-cue{ position:absolute; right:32px; bottom:28px; z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scroll-cue span{ font-family:var(--font-hud); font-size:10px; letter-spacing:.25em; color:var(--silver); writing-mode:vertical-rl; }
.scroll-cue-line{ width:1px; height:44px; background:linear-gradient(to bottom, var(--gold), transparent); position:relative; overflow:hidden; }
.scroll-cue-line::after{ content:''; position:absolute; top:-44px; left:0; width:1px; height:44px; background:var(--ivory); animation:cueDrop 2s ease-in-out infinite; }
@keyframes cueDrop{ 0%{ top:-44px; } 100%{ top:44px; } }
@media (max-width:720px){ .scroll-cue{ display:none; } }

/* =========================================================
   REVEAL (scroll animation utility)
   ========================================================= */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* =========================================================
   SHIFT / PROBLEM
   ========================================================= */
.shift{ padding:var(--section-pad) 0; background:var(--void); }
.shift-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(32px,6vw,80px); align-items:center; }
@media (max-width:860px){ .shift-grid{ grid-template-columns:1fr; } }

.phone-mock{ position:relative; width:min(260px, 100%); margin:0 auto; }
.phone-notch{
  position:relative; width:100%; aspect-ratio:9/17.5; border-radius:34px; border:2px solid rgba(176,183,195,.25);
  background:linear-gradient(160deg, var(--royal-soft), var(--navy)); box-shadow:0 30px 60px -20px rgba(0,0,0,.7);
  display:flex; flex-direction:column; padding:18px 14px 16px; overflow:hidden;
}

.app-header{ display:flex; align-items:center; justify-content:space-between; padding-bottom:12px; flex-shrink:0; }
.app-ico{ width:24px; font-size:15px; color:var(--silver); line-height:1; }
.app-ico-profile{ text-align:right; }
.app-title{ font-family:var(--font-hud); font-size:11px; letter-spacing:.16em; color:var(--gold); text-transform:uppercase; }

.profile-stack{ position:relative; flex:1; margin:2px 0 14px; }
.profile-card{ position:absolute; inset:0; border-radius:16px; overflow:hidden; background:linear-gradient(160deg,#233a63,#111f38); border:1px solid rgba(176,183,195,.16); }
.profile-card-back{ transform:rotate(-7deg) translate(-12px,8px) scale(.95); opacity:.7; z-index:1; }
.profile-card-front{ transform:rotate(4deg) translate(10px,-2px); z-index:2; border-color:rgba(212,175,55,.35); box-shadow:0 20px 36px -14px rgba(0,0,0,.65); }

.profile-avatar{ position:absolute; inset:0; }
.profile-avatar-a{ background:
  radial-gradient(circle at 50% 34%, rgba(138,79,255,.32) 0 19%, transparent 20%),
  radial-gradient(ellipse 46% 30% at 50% 88%, rgba(138,79,255,.22) 0 100%, transparent 100%),
  linear-gradient(160deg,#2c4576,#152645); }
.profile-avatar-b{ background:
  radial-gradient(circle at 50% 34%, rgba(212,175,55,.32) 0 19%, transparent 20%),
  radial-gradient(ellipse 46% 30% at 50% 88%, rgba(212,175,55,.22) 0 100%, transparent 100%),
  linear-gradient(160deg,#2c4576,#152645); }

.profile-info{ position:absolute; left:0; right:0; bottom:0; padding:9px 11px; background:linear-gradient(to top, rgba(5,8,15,.88), transparent); }
.profile-name{ display:block; font-weight:800; font-size:12.5px; color:var(--ivory); }
.profile-age{ display:block; font-size:10px; color:var(--silver); margin-top:1px; }

.cursor-click{
  position:absolute; right:22px; bottom:38px; z-index:3; width:32px; height:32px; border-radius:50%;
  background:rgba(212,175,55,.22); border:2px solid var(--gold-bright);
  display:flex; align-items:center; justify-content:center; font-size:15px;
  animation:cursorPulse 2.2s ease-in-out infinite;
}
@keyframes cursorPulse{ 0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(212,175,55,.35); } 50%{ transform:scale(1.08); box-shadow:0 0 0 8px rgba(212,175,55,0); } }

.profile-actions{ display:flex; justify-content:center; align-items:center; gap:22px; flex-shrink:0; }
.swipe-choice{ position:static; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:800; }
.swipe-x{ background:rgba(244,241,233,.12); color:#F4F1E9; border:1px solid rgba(244,241,233,.35); }
.swipe-heart{ background:var(--grad-gold); color:#231a04; }
.swipe-caption{ text-align:center; font-size:12px; color:var(--silver); margin-top:18px; font-style:italic; }

.shift-copy{ }

/* =========================================================
   CATEGORY / ORBIT (opportunity)
   ========================================================= */
.category{ padding:var(--section-pad) 0; background:linear-gradient(180deg, var(--void), #071022 60%, var(--void)); position:relative; }
.orbit-wrap{ position:relative; width:min(560px, 92vw); aspect-ratio:1/1; margin:56px auto 40px; display:flex; align-items:center; justify-content:center; }
.orbit-core{ width:96px; height:96px; border-radius:50%; background:radial-gradient(circle at 35% 30%, #16294f, var(--navy)); display:flex; align-items:center; justify-content:center; box-shadow:0 0 0 1px rgba(212,175,55,.35), 0 0 50px rgba(138,79,255,.35); z-index:2; }
.orbit-core img{ width:52px; height:52px; object-fit:contain; }
.orbit-ring{ position:absolute; inset:6%; border-radius:50%; border:1px dashed rgba(176,183,195,.25); animation:spin 60s linear infinite; }
.orbit-ring::before, .orbit-ring::after{ content:''; position:absolute; inset:14%; border-radius:50%; border:1px dashed rgba(138,79,255,.2); }
@keyframes spin{ to{ transform:rotate(360deg); } }

.orbit-list{ position:absolute; inset:0; }
.orbit-item{
  position:absolute; display:flex; flex-direction:column; align-items:center; gap:8px;
  width:120px; text-align:center; font-size:12.5px; font-weight:700; color:var(--ivory);
  transform:translate(-50%,-50%);
}
.orbit-ico{ width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; background:linear-gradient(160deg, rgba(138,79,255,.28), rgba(11,29,58,.9)); border:1px solid rgba(212,175,55,.35); box-shadow:0 8px 20px -8px rgba(0,0,0,.6); }
.oi-1{ top:6%; left:50%; }
.oi-2{ top:32%; left:92%; }
.oi-3{ top:78%; left:80%; }
.oi-4{ top:78%; left:20%; }
.oi-5{ top:32%; left:8%; }
@media (max-width:560px){
  .orbit-item{ width:88px; font-size:11px; }
  .orbit-ico{ width:38px; height:38px; }
}
@media (max-width:400px){
  .orbit-item{ width:74px; font-size:10.5px; }
  .orbit-ico{ width:34px; height:34px; }
  .oi-1{ left:50%; }
  .oi-2{ top:30%; left:86%; }
  .oi-3{ top:80%; left:78%; }
  .oi-4{ top:80%; left:22%; }
  .oi-5{ top:30%; left:14%; }
}

.category-tag{
  text-align:center; font-family:var(--font-hud); font-weight:700; letter-spacing:.14em;
  font-size:clamp(13px,2.4vw,17px); color:var(--gold-bright); max-width:760px; margin:0 auto;
  line-height:1.7;
}
.tm{ font-size:.6em; vertical-align:super; }

/* =========================================================
   ACTS (three-act experience)
   ========================================================= */
.acts{ padding:var(--section-pad) 0; background:var(--void); }
.act-track{ position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
.act-progress{ position:absolute; top:-24px; left:0; right:0; height:2px; background:rgba(176,183,195,.15); }
.act-progress-fill{ height:100%; width:0%; background:var(--grad-gold); transition:width 1.2s var(--ease); }
@media (max-width:900px){ .act-track{ grid-template-columns:1fr; } }

.act-card{
  background:linear-gradient(180deg, rgba(29,60,120,.35), rgba(5,8,15,.6));
  border:1px solid rgba(212,175,55,.18);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.act-card:hover{ transform:translateY(-6px); border-color:rgba(212,175,55,.5); box-shadow:0 20px 44px -20px rgba(0,0,0,.65); }
.act-media{ aspect-ratio:16/10; overflow:hidden; }
.act-media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.act-card:hover .act-media img{ transform:scale(1.06); }
.act-body{ padding:22px 22px 26px; position:relative; }
.act-num{ font-family:var(--font-hud); font-size:28px; font-weight:900; color:var(--gold); display:block; margin-bottom:6px; }
.act-body h3{ margin:0 0 10px; font-size:19px; }
.act-body p{ margin:0; color:var(--silver); font-size:14.5px; line-height:1.65; }

.act-flow{ display:flex; align-items:center; justify-content:center; gap:14px; margin-top:44px; font-family:var(--font-hud); letter-spacing:.2em; font-size:12px; color:var(--silver); text-transform:uppercase; }
.act-flow i{ width:28px; height:1px; background:linear-gradient(to right, var(--gold), var(--purple)); }
.act-flow span:nth-child(1){ color:var(--gold-bright); }
.act-flow span:nth-child(5){ color:var(--purple); }

/* =========================================================
   EVERYONE'S INVITED — inclusive connection-type chips
   ========================================================= */
.inclusion{ padding:var(--section-pad) 0; background:linear-gradient(180deg, var(--void), #0a1224 50%, var(--void)); }
.inclusion .lead-center{ max-width:720px; }

.connect-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin:48px 0 32px;
}
@media (max-width:900px){ .connect-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .connect-grid{ grid-template-columns:1fr; } }
.connect-chip{
  display:flex; align-items:flex-start; gap:14px; padding:20px 22px; border-radius:var(--radius-md);
  background:rgba(29,60,120,.16); border:1px solid rgba(176,183,195,.15);
  transition:border-color .3s ease, transform .3s ease;
}
.connect-chip:hover{ transform:translateY(-3px); }
.connect-chip h4{ margin:0 0 6px; font-size:15px; }
.connect-chip p{ margin:0; font-size:13px; color:var(--silver); line-height:1.55; }
.connect-dot{ width:12px; height:12px; border-radius:50%; flex-shrink:0; margin-top:5px; box-shadow:0 0 10px currentColor; }

.connect-pink .connect-dot{ background:#ec4899; color:#ec4899; }
.connect-pink:hover{ border-color:rgba(236,72,153,.5); }
.connect-purple .connect-dot{ background:var(--purple); color:var(--purple); }
.connect-purple:hover{ border-color:rgba(138,79,255,.5); }
.connect-green .connect-dot{ background:#22c55e; color:#22c55e; }
.connect-green:hover{ border-color:rgba(34,197,94,.5); }
.connect-blue .connect-dot{ background:#3b82f6; color:#3b82f6; }
.connect-blue:hover{ border-color:rgba(59,130,246,.5); }
.connect-orange .connect-dot{ background:#f59e0b; color:#f59e0b; }
.connect-orange:hover{ border-color:rgba(245,158,11,.5); }

.inclusion-tag{
  text-align:center; font-family:var(--font-hud); letter-spacing:.14em; font-size:12.5px;
  color:var(--gold); max-width:680px; margin:0 auto;
}

/* =========================================================
   DREAM CHESTS (signature interactive grid)
   ========================================================= */
.chests-section{ padding:var(--section-pad) 0; background:radial-gradient(80% 60% at 50% 0%, rgba(138,79,255,.12), transparent 60%), var(--void); }
.chest-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(140px,1fr)); gap:18px; margin-top:48px;
}
.chest{
  position:relative; aspect-ratio:1/1; border-radius:var(--radius-sm);
  background:linear-gradient(160deg, #16294f, #060c18);
  border:1px solid rgba(212,175,55,.3);
  cursor:pointer; overflow:hidden;
  perspective:800px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chest:hover{ transform:translateY(-4px); box-shadow:0 16px 34px -14px rgba(212,175,55,.35); }
.chest:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.chest-face{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; transition:transform .55s var(--ease), opacity .4s ease; backface-visibility:hidden; }
.chest-num{ font-family:var(--font-hud); font-size:11px; letter-spacing:.2em; color:var(--gold); }
.chest-lock{ font-size:26px; color:var(--gold-bright); filter:drop-shadow(0 0 8px rgba(212,175,55,.5)); }
.chest-hint{ font-size:10px; color:var(--silver); letter-spacing:.05em; text-transform:uppercase; }

.chest-back{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px; padding:12px; text-align:center; background:linear-gradient(160deg, rgba(138,79,255,.35), rgba(11,29,58,.95)); opacity:0; transform:scale(.7) rotateY(90deg); transition:opacity .4s ease, transform .55s var(--ease); }
.chest-icon{ font-size:20px; }
.chest-label{ font-size:12.5px; font-weight:800; color:var(--ivory); }
.chest-detail{ font-size:10.5px; color:var(--silver); line-height:1.4; }

.chest.opened{ border-color:var(--gold); background:linear-gradient(160deg, #23305e, #0a1226); }
.chest.opened .chest-face{ opacity:0; transform:scale(.8) rotateY(-90deg); pointer-events:none; }
.chest.opened .chest-back{ opacity:1; transform:scale(1) rotateY(0); }

.burst{ position:absolute; inset:0; pointer-events:none; }
.burst span{
  position:absolute; top:50%; left:50%; width:6px; height:6px; border-radius:50%;
  background:var(--gold-bright);
  opacity:0;
}
.chest.bursting .burst span{ animation:burstOut .7s ease-out forwards; }
@keyframes burstOut{
  0%{ opacity:1; transform:translate(-50%,-50%) scale(1); }
  100%{ opacity:0; transform:translate(calc(-50% + var(--bx)), calc(-50% + var(--by))) scale(.3); }
}

.chest-status{ text-align:center; margin-top:36px; font-family:var(--font-hud); letter-spacing:.15em; font-size:13px; color:var(--silver); }
.chest-status #chestCount{ color:var(--gold-bright); font-size:18px; font-weight:800; }

/* =========================================================
   THE FEED — Stories row + reaction cards
   ========================================================= */
.feed-section{ padding:var(--section-pad) 0; background:linear-gradient(180deg, var(--void), #0a1530 50%, var(--void)); }

.stories-row{
  display:flex; gap:18px; overflow-x:auto; padding:8px 4px 20px; margin:44px 0 8px;
  scrollbar-width:none;
}
.stories-row::-webkit-scrollbar{ display:none; }
.story{ flex:0 0 auto; width:76px; display:flex; flex-direction:column; align-items:center; gap:8px; text-align:center; }
.story span{ font-size:11px; color:var(--silver); font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:76px; }
.story-ring{
  width:64px; height:64px; border-radius:50%; padding:3px;
  background:conic-gradient(from 45deg, var(--gold), var(--purple), var(--gold));
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.story-ring-add{ background:none; border:2px dashed rgba(176,183,195,.4); }
.story-ring-add span{ font-size:22px; color:var(--silver); }

.avatar-fill{
  width:100%; height:100%; border-radius:50%; border:2px solid var(--void);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-hud); font-weight:700; font-size:16px; color:#fff;
}
.avatar-v1{ background:linear-gradient(150deg, #F2CB63, #8A4FFF); }
.avatar-v2{ background:linear-gradient(150deg, #8A4FFF, #1D3C78); }
.feed-avatar{ width:36px; height:36px; font-size:13px; border-width:0; flex-shrink:0; }

.shield-ico{ display:inline-block; background-image:url("assets/shield.png?v=3"); background-repeat:no-repeat; background-position:center; background-size:contain; }

.feed-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-top:12px; }
.feed-card{
  border-radius:var(--radius-md); overflow:hidden;
  background:linear-gradient(180deg, rgba(29,60,120,.28), rgba(5,8,15,.75));
  border:1px solid rgba(176,183,195,.15);
  transition:transform .3s var(--ease), border-color .3s ease;
}
.feed-card:hover{ transform:translateY(-4px); border-color:rgba(212,175,55,.35); }
.feed-head{ display:flex; align-items:center; gap:10px; padding:14px 16px 10px; }
.feed-avatar{ width:36px; height:36px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.feed-who{ flex:1; min-width:0; }
.feed-name{ font-size:13.5px; font-weight:700; display:block; }
.feed-time{ font-size:11px; color:var(--silver); }
.feed-media{ aspect-ratio:4/3; overflow:hidden; }
.feed-media img{ width:100%; height:100%; object-fit:cover; }
.feed-caption{ padding:12px 16px 4px; font-size:13.5px; color:var(--silver); line-height:1.55; }
.feed-actions{ display:flex; align-items:center; gap:14px; padding:10px 16px 16px; position:relative; }
.feed-react{
  display:flex; align-items:center; gap:6px; font-size:13px; font-weight:700; color:var(--silver);
  background:rgba(244,241,233,.06); border:1px solid rgba(176,183,195,.18); border-radius:999px; padding:11px 16px;
  min-height:44px;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.feed-react:hover{ border-color:var(--gold); color:var(--gold-bright); }
.feed-react.active{ color:#ff6b8a; border-color:rgba(255,107,138,.5); background:rgba(255,107,138,.1); }
.feed-react .ico{ font-size:14px; }
.feed-share{ margin-left:auto; font-size:12px; color:rgba(176,183,195,.6); font-weight:600; }

/* =========================================================
   HIGHLIGHT — bold gradient quote moment
   ========================================================= */
.highlight-card{
  position:relative; margin-top:56px; border-radius:var(--radius-lg); overflow:hidden;
  padding:clamp(32px,6vw,56px) clamp(28px,6vw,64px) clamp(26px,4vw,34px);
  background:linear-gradient(155deg, #6a3ad1 0%, #4423a0 45%, #180b3d 100%);
  box-shadow:0 30px 70px -30px rgba(90,45,200,.55);
}
.highlight-quote-mark{ font-family:Georgia, serif; font-size:64px; line-height:.5; color:rgba(244,241,233,.5); margin-bottom:10px; }
.highlight-quote{ font-size:clamp(14.5px,1.9vw,17.5px); font-weight:600; line-height:1.7; max-width:640px; margin:0 0 28px; color:var(--ivory); }
.highlight-quote strong{ display:inline-block; margin-top:6px; font-size:1.2em; font-weight:800; color:var(--gold-bright); text-shadow:0 0 20px rgba(212,175,55,.35); }
.highlight-meta{ display:flex; align-items:center; gap:16px; margin-bottom:26px; }
.highlight-progress{ flex:1; height:3px; border-radius:2px; background:rgba(244,241,233,.2); overflow:hidden; }
.highlight-progress-fill{ display:block; height:100%; width:0%; background:var(--grad-gold); border-radius:2px; transition:width 1.4s var(--ease); }
.highlight-time{ font-family:var(--font-hud); font-size:10.5px; letter-spacing:.18em; color:rgba(244,241,233,.65); white-space:nowrap; }
.highlight-foot{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.highlight-social{ display:flex; gap:10px; }
.highlight-social a{ width:32px; height:32px; border-radius:50%; background:rgba(244,241,233,.1); border:1px solid rgba(244,241,233,.25); display:flex; align-items:center; justify-content:center; font-size:12.5px; font-weight:700; transition:background .2s ease; }
.highlight-social a:hover{ background:rgba(212,175,55,.3); }
.highlight-credit{ font-size:12px; color:rgba(244,241,233,.6); }

/* =========================================================
   PRODUCT-CARD POLISH — badges + star ratings
   ========================================================= */
.act-media{ position:relative; }
.act-chip{
  position:absolute; top:14px; left:14px; z-index:2;
  font-family:var(--font-hud); font-size:10px; letter-spacing:.12em; font-weight:700;
  padding:6px 12px; border-radius:999px; color:#231a04;
  background:var(--grad-gold);
  box-shadow:0 6px 16px -6px rgba(0,0,0,.5);
}
.act-chip-purple{ background:var(--grad-purple); color:#fff; }
.act-chip-gold{ background:var(--grad-gold); color:#231a04; }
.act-rating{ margin-top:14px; font-size:12.5px; color:var(--silver); display:flex; align-items:center; gap:6px; }
.act-rating em{ font-style:normal; color:rgba(176,183,195,.7); }
.stars{ color:var(--gold-bright); letter-spacing:1px; font-size:12px; }
.tier-social{ font-size:12.5px; color:var(--silver); margin:-6px 0 16px; display:flex; align-items:center; gap:6px; }
.tier-social em{ font-style:normal; color:rgba(176,183,195,.7); }

/* =========================================================
   FLOATING BLOBS — decorative premium 3D feel
   ========================================================= */
.blob{
  position:absolute; border-radius:50%; filter:blur(4px); pointer-events:none; z-index:1;
  animation:blobFloat 9s ease-in-out infinite;
  opacity:.55;
}
.blob-gold{ background:radial-gradient(circle at 35% 30%, rgba(242,203,99,.9), rgba(212,175,55,.15) 70%); }
.blob-purple{ background:radial-gradient(circle at 35% 30%, rgba(168,119,255,.9), rgba(138,79,255,.12) 70%); }
.blob-a{ width:120px; height:120px; top:12%; left:6%; animation-delay:0s; }
.blob-b{ width:90px; height:90px; top:60%; right:9%; animation-delay:-3s; }
.blob-c{ width:160px; height:160px; top:10%; left:10%; animation-delay:-1.5s; }
.blob-d{ width:100px; height:100px; bottom:12%; right:12%; animation-delay:-4.5s; }
@keyframes blobFloat{ 0%,100%{ transform:translateY(0) scale(1); } 50%{ transform:translateY(-22px) scale(1.06); } }
@media (max-width:720px){ .blob{ display:none; } }

/* =========================================================
   VIP STRIP
   ========================================================= */
.vip-strip{ position:relative; height:clamp(280px,42vw,460px); overflow:hidden; }
.vip-strip img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.vip-strip::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(5,8,15,.95), rgba(5,8,15,.25) 60%); }
.vip-strip-copy{ position:absolute; left:0; right:0; bottom:0; padding:32px 24px clamp(28px,5vw,48px); max-width:1180px; margin:0 auto; z-index:2; }
.vip-strip-copy h3{ font-size:clamp(14px,2.2vw,20px); font-weight:700; color:var(--ivory); max-width:900px; line-height:1.7; margin:0; }

/* =========================================================
   MEMBERSHIP TIERS
   ========================================================= */
.tiers{ padding:var(--section-pad) 0; background:var(--void); }
.tier-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
@media (max-width:900px){ .tier-grid{ grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; } }

.tier-card{
  position:relative; border-radius:var(--radius-md); padding:34px 28px 28px;
  border:1px solid rgba(176,183,195,.18);
  background:linear-gradient(180deg, rgba(29,60,120,.28), rgba(5,8,15,.7));
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tier-card:hover{ transform:translateY(-8px); }
.tier-icon{ font-size:26px; margin-bottom:14px; }
.tier-rank{ position:absolute; top:26px; right:28px; font-family:var(--font-hud); font-size:12px; color:rgba(176,183,195,.5); }
.tier-card h3{ font-size:21px; margin:0 0 18px; }
.tier-card ul li{ font-size:14px; color:var(--silver); padding:8px 0; border-top:1px solid rgba(176,183,195,.12); }
.tier-card ul li:first-child{ border-top:none; }
.tier-explorer{ }
.tier-vip{ border-color:rgba(138,79,255,.5); box-shadow:0 20px 50px -24px rgba(138,79,255,.6); transform:scale(1.03); }
.tier-vip .tier-icon{ color:var(--purple); }
.tier-badge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--grad-purple); color:#fff; font-size:11px; font-weight:800; letter-spacing:.05em; padding:5px 16px; border-radius:999px; }
.tier-elite{ border-color:rgba(212,175,55,.55); }
.tier-elite .tier-icon{ color:var(--gold); }
@media (max-width:900px){ .tier-vip{ transform:scale(1); } }

.tiers-tag{ text-align:center; margin-top:40px; font-family:var(--font-hud); letter-spacing:.16em; font-size:13px; color:var(--silver); }

/* =========================================================
   JOURNEY
   ========================================================= */
.journey{ padding:var(--section-pad) 0; background:linear-gradient(180deg, var(--void), #081226); }
.journey-track{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin:48px 0 64px; position:relative; }
.journey-track::before{ content:''; position:absolute; top:26px; left:10%; right:10%; height:1px; background:linear-gradient(to right, var(--gold), var(--purple)); z-index:0; }
@media (max-width:760px){ .journey-track{ grid-template-columns:repeat(2,1fr); } .journey-track::before{ display:none; } }
.journey-step{ position:relative; z-index:1; text-align:center; }
.journey-ico{ width:52px; height:52px; margin:0 auto 14px; border-radius:50%; background:var(--navy); border:1px solid rgba(212,175,55,.4); display:flex; align-items:center; justify-content:center; font-size:19px; box-shadow:0 0 0 6px var(--void); }
.journey-step h4{ margin:0 0 6px; font-size:15px; }
.journey-step p{ margin:0; font-size:12.5px; color:var(--silver); }

.wheel-widget{
  display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center;
  background:linear-gradient(135deg, rgba(138,79,255,.14), rgba(212,175,55,.08));
  border:1px solid rgba(212,175,55,.25); border-radius:var(--radius-lg); padding:clamp(28px,5vw,52px);
}
@media (max-width:760px){ .wheel-widget{ grid-template-columns:1fr; text-align:center; } .wheel-copy .btn{ margin:0 auto; } }
.wheel-copy h3{ font-size:clamp(19px,3vw,26px); margin:6px 0 12px; }
.wheel-copy p{ color:var(--silver); margin:0 0 20px; }
.wheel-result{ margin-top:16px; font-family:var(--font-hud); color:var(--gold-bright); font-size:14px; letter-spacing:.05em; min-height:20px; }

.wheel-visual{ position:relative; width:min(240px,100%); aspect-ratio:1/1; margin:0 auto; }
.wheel-pointer{ position:absolute; top:-6px; left:50%; transform:translateX(-50%); width:0; height:0; border-left:10px solid transparent; border-right:10px solid transparent; border-top:16px solid var(--gold-bright); z-index:3; filter:drop-shadow(0 0 6px rgba(212,175,55,.6)); }
.wheel-disc{
  width:100%; height:100%; border-radius:50%;
  background:conic-gradient(
    #D4AF37 0deg 32.7deg, #1D3C78 32.7deg 65.4deg, #8A4FFF 65.4deg 98.1deg,
    #D4AF37 98.1deg 130.8deg, #1D3C78 130.8deg 163.5deg, #8A4FFF 163.5deg 196.2deg,
    #D4AF37 196.2deg 229deg, #1D3C78 229deg 261.7deg, #8A4FFF 261.7deg 294.4deg,
    #D4AF37 294.4deg 327.1deg, #1D3C78 327.1deg 360deg
  );
  border:4px solid var(--navy);
  box-shadow:0 0 0 2px rgba(212,175,55,.5), 0 20px 40px -14px rgba(0,0,0,.6);
  transition:transform 3.2s cubic-bezier(.15,.8,.15,1);
  position:relative;
}
.wheel-disc::after{ content:''; position:absolute; inset:38%; border-radius:50%; background:var(--navy); border:2px solid var(--gold); }

/* =========================================================
   BRAND INTRO — moved above final CTA, recap + gallery
   ========================================================= */
.brand-intro{
  padding:var(--section-pad) 0 48px;
  background:var(--grad-bg);
  position:relative;
}
.brand-intro-inner{ text-align:center; margin-bottom:40px; }
.brand-lockup{
  width:min(220px, 50vw); margin:0 auto 26px; display:block;
  filter:drop-shadow(0 10px 34px rgba(212,175,55,.35));
}
.brand-intro-tag{
  text-align:center; margin:26px 0 0; font-family:var(--font-hud); letter-spacing:.3em; font-size:11px;
  color:var(--gold);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery{ padding:var(--section-pad) 0 0; background:var(--void); }
.gallery-strip{ display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:4px; margin-top:44px; }
.gallery-strip img{ width:100%; height:clamp(220px,32vw,380px); object-fit:cover; filter:saturate(1.05); transition:transform .6s ease, filter .6s ease; }
.gallery-strip img:hover{ transform:scale(1.03); filter:saturate(1.2) brightness(1.05); }
@media (max-width:760px){ .gallery-strip{ grid-template-columns:1fr; } .gallery-strip img{ height:220px; } }

/* =========================================================
   WHY UREYZ WINS
   ========================================================= */
.why{ padding:var(--section-pad) 0; background:var(--void); }
.why-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:20px; margin-top:20px; }
.why-card{ padding:26px 22px; border-radius:var(--radius-md); background:rgba(29,60,120,.16); border:1px solid rgba(176,183,195,.15); transition:border-color .3s ease, transform .3s ease; }
.why-card:hover{ border-color:rgba(212,175,55,.5); transform:translateY(-4px); }
.why-ico{ color:var(--gold); font-size:18px; }
.why-card h4{ margin:12px 0 8px; font-size:15.5px; }
.why-card p{ margin:0; font-size:13.5px; color:var(--silver); line-height:1.6; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{ position:relative; padding:calc(var(--section-pad) + 20px) 0; text-align:center; overflow:hidden; }
.final-cta-bg{ position:absolute; inset:0; background:radial-gradient(60% 80% at 50% 100%, rgba(138,79,255,.25), transparent 70%), radial-gradient(50% 60% at 50% 0%, rgba(212,175,55,.18), transparent 70%), var(--void); }
.final-cta-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }
.final-mark{ width:64px; margin-bottom:24px; filter:drop-shadow(0 0 24px rgba(212,175,55,.5)); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:#03050a; padding:56px 0 110px; border-top:1px solid rgba(212,175,55,.15); }
.footer-grid{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:32px; align-items:flex-start; }
.footer-brand{ display:flex; align-items:center; max-width:260px; }
.footer-logo-lockup{ width:200px; height:auto; filter:drop-shadow(0 4px 14px rgba(212,175,55,.2)); }
.footer-links{ display:flex; flex-direction:column; gap:10px; font-size:13.5px; color:var(--silver); }
.footer-links a:hover{ color:var(--gold-bright); }
.footer-social{ display:flex; gap:12px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(176,183,195,.3); display:flex; align-items:center; justify-content:center; font-size:14px; transition:border-color .2s ease, color .2s ease; }
.footer-social a:hover{ border-color:var(--gold); color:var(--gold-bright); }
.footer-fine{ text-align:center; font-size:11.5px; color:rgba(176,183,195,.5); margin:40px 0 0; }

/* =========================================================
   APP TAB BAR (mobile PWA shell)
   ========================================================= */
.tabbar{
  position:fixed; left:0; right:0; bottom:0; z-index:150;
  display:none;
  background:rgba(7,12,24,.92); backdrop-filter:blur(16px);
  border-top:1px solid rgba(212,175,55,.2);
  padding:8px 6px calc(8px + env(safe-area-inset-bottom));
  justify-content:space-around;
}
.tab{ display:flex; flex-direction:column; align-items:center; gap:3px; font-size:10.5px; color:var(--silver); font-weight:700; letter-spacing:.02em; padding:4px 6px; border-radius:10px; transition:color .2s ease; }
.tab-ico{ font-size:17px; }
.tab.active{ color:var(--gold-bright); }
@media (max-width:820px){
  .topnav-links{ display:none; }
  .install-btn{ display:none; }
  .hamburger{ display:block; }
  .tabbar{ display:flex; }
  body{ padding-bottom:64px; }
}

/* =========================================================
   TOAST
   ========================================================= */
.toast{
  position:fixed; left:50%; bottom:88px; transform:translate(-50%,20px);
  background:var(--navy); border:1px solid var(--gold); color:var(--ivory);
  padding:12px 22px; border-radius:999px; font-size:13.5px; font-weight:600;
  opacity:0; pointer-events:none; z-index:300;
  transition:opacity .35s ease, transform .35s ease;
  box-shadow:0 12px 30px -10px rgba(0,0,0,.6);
  white-space:nowrap;
}
.toast.show{ opacity:1; transform:translate(-50%,0); }
@media (max-width:820px){ .toast{ bottom:76px; } }
