/* ============================================================
   Berry — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* colors — sampled from berry.jpeg */
  --cream:        #FEF9F3;
  --cream-deep:   #F7F0E4;
  --paper:        #FFFFFF;
  --ink:          #0B1638;
  --ink-soft:     #45507A;
  --ink-faint:    #8890AC;
  --navy:         #0F1E45;
  --navy-deep:    #081029;
  --navy-mid:     #16295C;
  --indigo:       #4750FB;
  --violet:       #8C57FD;
  --violet-soft:  #B98CFF;
  --line:         rgba(11,22,56,0.10);
  --line-soft:    rgba(11,22,56,0.06);
  --line-on-navy: rgba(255,255,255,0.12);

  --grad-brand: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(71,80,251,0.14) 0%, rgba(140,87,253,0.14) 100%);
  --grad-text: linear-gradient(120deg, #4750FB 0%, #8C57FD 55%, #B98CFF 100%);

  --shadow-sm: 0 2px 8px rgba(11,22,56,0.06);
  --shadow-md: 0 8px 30px rgba(11,22,56,0.08);
  --shadow-lg: 0 20px 60px rgba(11,22,56,0.14);
  --shadow-brand: 0 14px 40px rgba(71,80,251,0.28);

  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font: inherit; color: inherit; background:none; border:none; cursor:pointer; padding:0; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
input{ font: inherit; }

::selection{ background: var(--indigo); color: #fff; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- grain overlay ---------- */
.grain{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
}
.eyebrow::before{
  content:'';
  width: 6px; height:6px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}
.eyebrow.on-navy{ color: var(--violet-soft); }

/* ---------- headings ---------- */
h1, h2, h3{ font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.h-display{
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.h-section{
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.h-card{
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
}
em, .italic{ font-style: italic; }
.on-navy{ color: var(--cream); }
.on-navy .ink-soft, .on-navy p{ color: rgba(254,249,243,0.68); }

.lede{
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}
.section-head{
  display:flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head.row{
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section-head .lede{ margin-top: 4px; }

.text-grad{
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s ease, border-color .3s ease;
  will-change: transform;
}
.btn-primary{
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-brand{
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover{ transform: translateY(-2px) scale(1.01); box-shadow: 0 20px 50px rgba(71,80,251,0.36); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover{ border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-navy{ color: var(--cream); border-color: var(--line-on-navy); }
.btn-ghost.on-navy:hover{ border-color: rgba(254,249,243,0.5); }
.btn-sm{ padding: 11px 20px; font-size: 13.5px; }
.btn-arrow{ display:inline-flex; transition: transform .4s var(--ease-out); }
.btn:hover .btn-arrow{ transform: translateX(4px); }

/* magnetic wrapper */
.magnetic{ display:inline-block; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px var(--gutter) 0;
  transition: padding .4s var(--ease-out);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  background: rgba(254,249,243,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(11,22,56,0.07);
  box-shadow: 0 8px 30px rgba(11,22,56,0.04);
  transition: box-shadow .4s ease, background .4s ease;
}
.nav.is-scrolled .nav-inner{
  box-shadow: var(--shadow-md);
  background: rgba(254,249,243,0.9);
}
.nav-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-logo img{ width: 30px; height: 30px; border-radius: 8px; }
.nav-links{
  display:flex;
  align-items:center;
  gap: 4px;
}
.nav-links a{
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .3s ease, background .3s ease;
}
.nav-links a:hover{ color: var(--ink); background: rgba(11,22,56,0.05); }
.nav-cta{ display:flex; align-items:center; gap: 8px; }
.nav-cta .btn-ghost{ display:none; }
.nav-toggle{ display:none; }

@media (min-width: 860px){
  .nav-cta .btn-ghost{ display:inline-flex; }
}
@media (max-width: 859px){
  .nav-links{ display:none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding: clamp(150px, 20vw, 210px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(46% 54% at 84% 10%, rgba(140,87,253,0.10), transparent 72%),
    var(--cream);
}
#hero-canvas{
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 130%;
  width: 120%;
  z-index: 0;
  opacity: .9;
}
.hero-inner{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
.hero-copy{ max-width: 640px; }
.hero-eyebrow{ margin-bottom: 22px; }
.hero h1{ margin-bottom: 24px; }
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .line span{ display:block; will-change: transform; }
.hero .lede{ margin-bottom: 36px; max-width: 50ch; }
.hero-ctas{ display:flex; align-items:center; gap: 14px; flex-wrap: wrap; }
.hero-proof{
  margin-top: 44px;
  display:flex;
  align-items:center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 14px;
}
.hero-proof .avatars{ display:flex; }
.hero-proof .avatars span{
  width: 32px; height:32px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  margin-left: -10px;
  background: var(--grad-brand);
  display:flex; align-items:center; justify-content:center;
  font-size: 11px; font-weight:700; color:#fff;
}
.hero-proof .avatars span:first-child{ margin-left:0; }

.hero-visual{ position: relative; }

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone{
  position: relative;
  width: min(300px, 78vw);
  margin: 0 auto;
  aspect-ratio: 300 / 612;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #16295C, #081029);
  box-shadow:
    0 40px 80px -20px rgba(8,16,41,0.45),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone::before{
  content:'';
  position:absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #081029;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen{
  position: relative;
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #F4F1FF 0%, #FEF9F3 40%);
}
.phone-screen .ps{
  position:absolute; inset:0;
  padding: 40px 16px 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.phone-screen .ps.is-active{ opacity: 1; transform: translateY(0); pointer-events:auto; }

.ps-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 4px; }
.ps-label{ font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-faint); }
.ps-dot{ width:20px; height:20px; border-radius:50%; background: var(--grad-brand); }

.ps-balance-label{ font-size: 12px; color: var(--ink-faint); font-weight:600; margin-top:6px; }
.ps-balance{ font-family: var(--font-display); font-size: 30px; color: var(--ink); margin-bottom: 6px; }
.ps-chip{
  align-self:flex-start;
  font-size: 11px; font-weight:700; color:#16A34A;
  background: rgba(22,163,74,0.12);
  padding: 4px 10px; border-radius:999px;
  margin-bottom: 14px;
}

.ps-row{
  display:flex; align-items:center; gap:10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(11,22,56,0.06);
  border-radius: 14px;
  padding: 10px 12px;
}
.ps-row .ic{
  width: 30px; height:30px; border-radius:10px;
  background: var(--grad-brand-soft);
  flex:none;
  display:flex; align-items:center; justify-content:center;
  color: var(--indigo);
}
.ps-row .meta{ flex:1; min-width:0; }
.ps-row .meta b{ display:block; font-size: 12.5px; font-weight:600; color:var(--ink); }
.ps-row .meta small{ font-size: 10.5px; color: var(--ink-faint); }
.ps-row .val{ font-size: 12.5px; font-weight:700; color: var(--ink); }
.ps-row .val.pos{ color:#16A34A; }

.ps-toast{
  position:absolute;
  left: 12px; right:12px; top: 66px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  display:flex; align-items:center; gap:10px;
  box-shadow: 0 14px 30px rgba(8,16,41,0.35);
  opacity:0; transform: translateY(-14px);
}
.ps-toast .dot{ width:34px;height:34px;border-radius:50%; background: var(--grad-brand); color:#fff; flex:none; display:flex;align-items:center;justify-content:center; }
.ps-toast b{ display:block; font-size:12.5px; }
.ps-toast small{ font-size: 10.5px; opacity:.65; }

.ps-btnrow{ display:flex; gap:8px; margin-top: 4px; }
.ps-pill{
  flex:1; text-align:center;
  padding: 10px 6px;
  border-radius: 12px;
  font-size: 11px; font-weight:700;
  background: var(--ink);
  color: var(--cream);
}
.ps-pill.ghost{ background: rgba(11,22,56,0.06); color: var(--ink); }

.ps-prod{
  border-radius:14px; overflow:hidden; background: rgba(255,255,255,0.75); border:1px solid rgba(11,22,56,0.06);
}
.ps-prod .cover{ height: 60px; background: var(--grad-brand); position:relative; }
.ps-prod .cover span{ position:absolute; bottom:8px; left:10px; color:#fff; font-size:11px; font-weight:700; }
.ps-prod .info{ padding: 8px 10px; display:flex; align-items:center; justify-content:space-between; }
.ps-prod .info small{ font-size:10.5px; color: var(--ink-faint); }
.ps-prod .info b{ font-size:12px; }

.ps-linkbox{
  display:flex; align-items:center; gap:8px;
  background: rgba(255,255,255,0.75);
  border: 1px dashed rgba(71,80,251,0.4);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--indigo);
  font-weight:600;
}
.ps-linkbox svg{ flex:none; }

.phone-float{
  position:absolute;
  z-index: 6;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11,22,56,0.06);
  box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:10px;
  font-size:12px;
}
.phone-float b{ font-size:12.5px; }
.phone-float small{ display:block; color: var(--ink-faint); font-size:10px; }
.phone-float.f1{ top: -7%; left: -14%; }
.phone-float.f2{ bottom: 6%; right: -22%; }
.phone-float .ic-round{
  width:32px;height:32px;border-radius:50%;
  background: var(--grad-brand); display:flex;align-items:center;justify-content:center;color:#fff; flex:none;
}
.ic svg, .ic-round svg, .dot svg{ width: 15px; height: 15px; display:block; }
.afeat .ic svg{ width: 20px; height: 20px; }
.pm-play svg{ width: 18px; height: 18px; margin-left: 2px; }
.store-ic{ display:flex; }
.store-ic svg{ width: 18px; height: 18px; }

/* ============================================================
   MARQUEE / PARTNERS
   ============================================================ */
.partners{ padding: clamp(70px, 9vw, 120px) 0; position:relative; }
.marquee-wrap{
  position: relative;
  margin-top: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track{
  display:flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.marquee-track.row2{ margin-top: 18px; }

.pcard{
  width: 300px;
  flex: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s ease;
}
.pcard:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(71,80,251,0.25); }
.pcard .avatar{
  width: 46px; height:46px; border-radius:50%;
  background: var(--grad-brand);
  color:#fff; font-weight:700; font-size:15px;
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.pcard .body b{ display:block; font-size:15px; font-weight:600; margin-bottom:2px; }
.pcard .body p{ font-size: 12.8px; line-height:1.4; color: var(--ink-soft); margin-bottom:6px; }
.pcard .body span{ font-size:12px; color: var(--indigo); font-weight:600; }

.pcard.featured{
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.pcard.featured .avatar{ background: rgba(255,255,255,0.12); overflow:hidden; }
.pcard.featured .avatar img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }
.pcard.featured .body b{ color:#fff; }
.pcard.featured .body p{ color: rgba(254,249,243,0.7); }
.pcard.featured .body span{ color: var(--violet-soft); }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section{
  position:relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter);
  overflow:hidden;
}
.app-section::before{
  content:'';
  position:absolute;
  top: -20%; right: -10%;
  width: 60%; aspect-ratio:1;
  background: radial-gradient(circle, rgba(71,80,251,0.35), transparent 70%);
  filter: blur(20px);
  pointer-events:none;
}
.app-section .container{ position:relative; z-index:1; }
.app-grid{
  display:grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(30px,5vw,60px);
  align-items:center;
  margin-top: 56px;
}
.app-features{ display:flex; flex-direction:column; gap: 14px; order:2; }
.app-visual{ order:1; position:relative; }
.afeat{
  display:flex; gap:16px; align-items:flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line-on-navy);
  background: rgba(255,255,255,0.03);
  cursor:pointer;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.afeat:hover, .afeat.is-active{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.afeat .ic{
  width:42px;height:42px;border-radius:12px;
  background: var(--grad-brand);
  color: #fff;
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.afeat b{ display:block; font-size:16px; font-weight:600; margin-bottom:4px; color:#fff; }
.afeat p{ font-size:13.5px; line-height:1.5; color: rgba(254,249,243,0.62); }

.app-store-row{ display:flex; gap:12px; margin-top: 32px; flex-wrap:wrap; }
.store-badge{
  display:flex; align-items:center; gap:10px;
  border: 1px solid var(--line-on-navy);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: #fff;
  transition: border-color .3s ease, background .3s ease;
}
.store-badge:hover{ border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
.store-badge small{ display:block; color: rgba(255,255,255,0.5); font-size:9.5px; text-transform:uppercase; letter-spacing:.06em; }
.store-badge b{ font-size:13.5px; }

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages{ padding: clamp(90px,10vw,150px) 0; }
.adv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.adv-card{
  position:relative;
  padding: 34px 28px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow:hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.adv-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.adv-num{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-faint);
  margin-bottom: 26px;
}
.adv-card h3{ font-size: 21px; margin-bottom:12px; }
.adv-card p{ color: var(--ink-soft); font-size:14.5px; line-height:1.55; }
.adv-glow{
  position:absolute; width:180px;height:180px; border-radius:50%;
  background: var(--grad-brand);
  filter: blur(60px);
  opacity: .12;
  top:-60px; right:-60px;
  pointer-events:none;
}

/* ============================================================
   TIERS / GROWTH LADDER
   ============================================================ */
.tiers{ padding: clamp(90px,10vw,150px) 0; background: var(--cream-deep); }
.ladder{
  position:relative;
  display:flex;
  flex-direction: column;
  gap: 0;
}
.ladder-line{
  position:absolute;
  left: 27px; top: 14px; bottom: 14px;
  width: 2px;
  background: var(--line);
}
.ladder-line-fill{
  position:absolute;
  left:0; top:0;
  width:100%; height:0%;
  background: var(--grad-brand);
  transform-origin: top;
}
.tier{
  position:relative;
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.tier:first-child{ border-top:none; }
.tier-node{
  width: 56px; height: 56px;
  border-radius:50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-style:italic;
  font-size: 18px;
  color: var(--ink-faint);
  position:relative; z-index:2;
  transition: border-color .4s ease, color .4s ease, background .4s ease;
}
.tier.is-active .tier-node{
  background: var(--grad-brand);
  border-color: transparent;
  color:#fff;
}
.tier-body{ display:grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 24px; align-items:start; }
.tier-name{ display:flex; align-items:center; gap:10px; }
.tier-name h3{ font-size: clamp(1.4rem,2vw,1.9rem); }
.tier-badge{
  font-size: 11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding: 4px 10px; border-radius:999px;
  background: var(--grad-brand-soft); color: var(--indigo);
}
.tier-threshold{ font-size: 13px; color: var(--ink-faint); font-weight:600; margin-top:8px; }
.tier-threshold b{ display:block; font-family: var(--font-display); font-size: 22px; color: var(--ink); font-weight:500; margin-top:2px; }
.tier-benefits{ display:flex; flex-direction:column; gap:10px; }
.tier-benefits li{ display:flex; gap:10px; align-items:flex-start; font-size: 14px; color: var(--ink-soft); line-height:1.4; }
.tier-benefits svg{ flex:none; margin-top:2px; color: var(--indigo); }

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

/* ============================================================
   MEMBERS + PLAYER
   ============================================================ */
.members{ padding: clamp(90px,10vw,150px) 0; }
.members-top{ margin-bottom: 56px; max-width: 780px; }
.members-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.mcard{
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
  position:relative;
  overflow:hidden;
}
.mcard.dark{ background: var(--navy); border-color: var(--navy); color:#fff; }
.mcard-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding: 6px 12px; border-radius:999px;
  background: var(--grad-brand-soft); color: var(--indigo);
  margin-bottom: 20px;
}
.mcard.dark .mcard-tag{ background: rgba(255,255,255,0.1); color: var(--violet-soft); }
.mcard h3{ font-size: clamp(1.4rem,2.2vw,1.8rem); margin-bottom: 12px; }
.mcard.dark h3{ color:#fff; }
.mcard > p{ color: var(--ink-soft); font-size: 14.5px; line-height:1.6; margin-bottom: 24px; max-width: 44ch; }
.mcard.dark > p{ color: rgba(254,249,243,0.65); }
.mcard ul{ display:flex; flex-direction:column; gap: 12px; margin-bottom: 26px; }
.mcard li{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color: var(--ink-soft); }
.mcard.dark li{ color: rgba(254,249,243,0.75); }
.mcard li svg{ flex:none; margin-top:1px; color: var(--indigo); }
.mcard.dark li svg{ color: var(--violet-soft); }

.free-strip{
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
  flex-wrap:wrap;
  border-radius: var(--radius-lg);
  padding: 30px 38px;
  background: var(--grad-brand);
  color:#fff;
}
.free-strip .txt b{ display:block; font-family:var(--font-display); font-size: clamp(1.2rem,2vw,1.6rem); font-weight:500; margin-bottom:6px; }
.free-strip .txt span{ font-size: 13.5px; opacity:.85; }

/* mini player mock inside card */
.player-mock{
  border-radius: 14px;
  overflow:hidden;
  background: #081029;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.player-mock .pm-screen{
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(71,80,251,0.5), rgba(140,87,253,0.4)), #16295C;
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.pm-play{
  width: 46px; height:46px; border-radius:50%;
  background: rgba(255,255,255,0.95);
  display:flex; align-items:center; justify-content:center;
  color: var(--navy);
}
.pm-bar{ padding: 10px 14px; display:flex; align-items:center; gap:10px; }
.pm-progress{ flex:1; height:4px; border-radius:2px; background: rgba(255,255,255,0.15); overflow:hidden; }
.pm-progress i{ display:block; height:100%; width:62%; background: var(--grad-brand); }
.pm-time{ font-size:10.5px; color: rgba(255,255,255,0.55); }

/* members-area mock */
.members-mock{ margin-top: 22px; border-radius:14px; overflow:hidden; border:1px solid var(--line); }
.mm-head{ background: var(--cream-deep); padding:10px 14px; display:flex; gap:6px; }
.mm-head span{ width:8px;height:8px;border-radius:50%; background: var(--line); }
.mm-body{ padding: 16px; display:grid; grid-template-columns: repeat(3,1fr); gap:8px; background: var(--paper); }
.mm-item{ aspect-ratio: 1; border-radius:8px; background: var(--grad-brand-soft); position:relative; overflow:hidden; }
.mm-item::after{ content:''; position:absolute; inset:0; background: var(--grad-brand); opacity:.5; }
.mm-item:nth-child(2){ opacity:.7; }
.mm-item:nth-child(4){ opacity:.5; }
.mm-item:nth-child(6){ opacity:.35; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{
  padding: clamp(100px,12vw,170px) 0;
  text-align:center;
  position:relative;
}
.final-cta .eyebrow{ justify-content:center; margin: 0 auto 22px; }
.final-cta h2{ font-size: clamp(2.6rem, 6vw, 5.5rem); margin-bottom: 22px; }
.final-cta .lede{ margin: 0 auto 40px; text-align:center; }
.final-cta-ctas{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ padding: clamp(80px,10vw,140px) 0; }
.faq-grid{ display:grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.faq-list{ display:flex; flex-direction:column; }
.faq-item{ border-top: 1px solid var(--line); }
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
  padding: 24px 4px;
  text-align:left;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  font-family: var(--font-display);
}
.faq-q .plus{
  flex:none;
  width: 30px;height:30px; border-radius:50%;
  border: 1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition: transform .4s var(--ease-out), background .3s ease, border-color .3s ease;
  position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:''; position:absolute; background: var(--ink);
}
.faq-q .plus::before{ width:10px;height:1.6px; }
.faq-q .plus::after{ width:1.6px;height:10px; }
.faq-item.is-open .faq-q .plus{ transform: rotate(135deg); background: var(--ink); }
.faq-item.is-open .faq-q .plus::before, .faq-item.is-open .faq-q .plus::after{ background: var(--cream); }
.faq-a{ height:0; overflow:hidden; }
.faq-a-inner{ padding: 0 34px 26px 4px; font-size:14.5px; color: var(--ink-soft); line-height:1.6; max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ padding: clamp(70px,8vw,110px) 0 40px; background: var(--navy); color: var(--cream); margin-top: clamp(60px,8vw,100px); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.footer-top{ display:grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-on-navy); }
.footer-brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-size:20px; margin-bottom:16px; }
.footer-brand img{ width:28px;height:28px;border-radius:7px; }
.footer-top p{ color: rgba(254,249,243,0.6); font-size:13.5px; max-width: 32ch; line-height:1.6; }
.footer-col h4{ font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color: rgba(254,249,243,0.45); margin-bottom:18px; font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; color: rgba(254,249,243,0.8); transition: color .3s ease; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top: 28px; flex-wrap:wrap; gap:12px; }
.footer-bottom span{ font-size:12.5px; color: rgba(254,249,243,0.45); }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:36px;height:36px;border-radius:50%; border:1px solid var(--line-on-navy); display:flex;align-items:center;justify-content:center; transition: border-color .3s ease, background .3s ease; }
.footer-social a:hover{ border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* ============================================================
   REVEAL UTILITY
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(28px); }
.reveal-scale{ opacity:0; transform: scale(.94); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .app-grid{ grid-template-columns: 1fr; }
  .app-visual{ order:1; }
  .app-features{ order:2; }
  .tier-body{ grid-template-columns: 1fr 1fr; }
  .tier-benefits{ grid-column: span 2; }
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; margin-bottom: 20px; }
  .adv-grid{ grid-template-columns: 1fr; }
  .members-grid{ grid-template-columns: 1fr; }
  .faq-grid{ grid-template-columns: 1fr; gap: 24px; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .phone-float{ display:none; }
  .app-section{ margin: 0 12px; border-radius: 24px; }
}
@media (max-width: 640px){
  .footer-top{ grid-template-columns: 1fr; gap: 30px; }
  .tier{ grid-template-columns: 44px 1fr; gap:16px; }
  .tier-node{ width:44px;height:44px; font-size:14px; }
  .ladder-line{ left:21px; }
  .section-head.row{ flex-direction:column; align-items:flex-start; }
}
