/* ─────────────────────────────────────────
   AnyCounter LP — Main Stylesheet
   ───────────────────────────────────────── */

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

:root {
  --ink:    #0A0A0F;
  --ink-2:  #3D3D4E;
  --ink-3:  #8B8B9E;
  --line:   #E4E4EF;
  --surf:   #F6F6FA;
  --white:  #FFFFFF;
  --brand:  #6366F1;
  --brand-d:#4F46E5;
  --brand-l:#EEF2FF;
  --r:      20px;
  --r-sm:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }


/* ─────────────────────────────────────────
   Layout helpers
   ───────────────────────────────────────── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sec  { padding: 120px 0; }


/* ─────────────────────────────────────────
   Tag pill
   ───────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-l);
  border: 1px solid #C7D2FE;
  padding: 4px 14px; border-radius: 100px;
}


/* ─────────────────────────────────────────
   Store buttons
   ───────────────────────────────────────── */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 14px;
  font-size: 13px; font-weight: 500;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.store-btn svg   { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.store-btn small { display: block; font-size: 10px; font-weight: 400; opacity: .65; line-height: 1; margin-bottom: 2px; }
.store-btn strong { font-size: 16px; font-weight: 700; line-height: 1; }


/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s;
}
.nav__inner  { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__logo   { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.nav__icon   {
  width: 34px; height: 34px; border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__dl {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 100px;
  transition: background .15s, transform .15s;
}
.nav__dl:hover { background: var(--brand-d); transform: translateY(-1px); }


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 160px 0 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 50% 50%, #EEF2FF 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: flex-end;
  gap: 0;
  position: relative;
}
.hero__copy   { padding-bottom: 80px; }
.hero__pill   { margin-bottom: 28px; }
.hero__h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}
.hero__h1 .accent { color: var(--brand); }
.hero__sub {
  font-size: 18px; font-weight: 400; line-height: 1.7;
  color: var(--ink-2);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note  { font-size: 12px; color: var(--ink-3); margin-top: 16px; }

/* Hero image */
.hero__img-wrap {
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__img {
  width: 100%;
  max-width: 400px;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.18));
}

/* Phone stack (kept for how-to section) */
.hero__phones {
  position: relative;
  height: 580px;
  display: flex; align-items: flex-end; justify-content: center;
}
.phone {
  position: absolute;
  bottom: 0;
  width: 220px;
  background: #16161A;
  border-radius: 48px;
  padding: 14px 10px;
  box-shadow:
    0 60px 80px -10px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.06) inset;
}
.phone::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 26px;
  background: #16161A;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone--main { left: 50%; transform: translateX(-50%); z-index: 3; }
.phone--back { left: 50%; transform: translateX(-15%); opacity: .55; filter: blur(1px); z-index: 1; }

/* Phone screen internals */
.phone-screen {
  background: #0E0E12;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  display: flex; flex-direction: column;
  position: relative;
}
.ps-bar {
  height: 38px; padding: 0 18px;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 6px;
  font-size: 11px; font-weight: 600; color: #fff;
}
.ps-tabs {
  display: flex; gap: 2px;
  padding: 8px 8px 0;
  background: #1A1A20;
}
.ps-tab {
  flex: 1; text-align: center;
  font-size: 9.5px; color: #666;
  padding: 6px 0;
  border-radius: 7px 7px 0 0;
}
.ps-tab.on { background: #252530; color: #fff; font-weight: 700; }
.ps-body {
  flex: 1;
  background: #252530;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 16px;
}
.ps-lbl  { font-size: 10px; color: #888; letter-spacing: .08em; font-weight: 600; }
.ps-num  { font-size: 84px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.05em; }
.ps-goal { font-size: 11px; color: var(--brand); font-weight: 600; }
.ps-prog { width: 100%; height: 3px; background: #333; border-radius: 3px; overflow: hidden; }
.ps-prog-fill { height: 100%; width: 50%; background: linear-gradient(90deg, #6366F1, #818CF8); }
.ps-row  { display: flex; gap: 12px; margin-top: 8px; }
.ps-btn  { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; font-weight: 300; color: #fff; }
.ps-btn-p { background: var(--brand); box-shadow: 0 8px 20px rgba(99,102,241,.45); }
.ps-btn-m { background: #333; }


/* ═══════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.strip__inner { display: flex; align-items: center; }
.strip__track {
  display: flex; gap: 40px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.strip__item {
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  flex-shrink: 0;
}
.strip__sep {
  font-size: 13px; color: var(--line);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════
   HOW TO USE
═══════════════════════════════════════════ */
.how { background: var(--surf); position: relative; padding-bottom: 48px; }
.how__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.how__steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: .15s;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; padding-bottom: 0; }
.how-step__num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800; color: var(--ink-3);
  flex-shrink: 0;
  transition: .2s;
}
.how-step.active .how-step__num { background: var(--brand); border-color: var(--brand); color: #fff; }
.how-step__title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.how-step__desc  { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

.how__visual { display: flex; justify-content: center; align-items: center; }
.how__screenshot {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 40px 60px rgba(0,0,0,.12);
}

.mini-phone {
  width: 200px;
  background: #16161A;
  border-radius: 44px;
  padding: 12px 8px;
  box-shadow: 0 40px 60px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.06) inset;
  position: relative;
}
.mini-phone::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 22px;
  background: #16161A;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}


/* ═══════════════════════════════════════════
   FEATURES — BENTO GRID
═══════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(80px, auto);
  gap: 16px;
}
.bento {
  border-radius: var(--r);
  padding: 32px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .25s, box-shadow .25s;
}
.bento:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }

.bento--brand { background: var(--brand); border-color: transparent; color: #fff; }
.bento--dark  { background: var(--ink);   border-color: transparent; color: #fff; }
.bento--soft  { background: var(--surf); }

/* Column spans */
.bento-span-3 { grid-column: span 3; }
.bento-span-4 { grid-column: span 4; }
.bento-span-5 { grid-column: span 5; }
.bento-span-6 { grid-column: span 6; }
.bento-span-7 { grid-column: span 7; }
.bento-span-8 { grid-column: span 8; }

.bento__tag  { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; opacity: .6; }
.bento__h    { font-size: 22px; font-weight: 800; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 10px; }
.bento__p    { font-size: 14px; line-height: 1.65; color: var(--ink-2); }
.bento--brand .bento__p,
.bento--dark  .bento__p { color: rgba(255,255,255,.65); }
.bento__icon { font-size: 40px; margin-bottom: 16px; display: block; }

/* Dark mode preview */
.dm-preview { display: flex; gap: 8px; margin-top: 20px; }
.dm-pill { padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.dm-pill--dark  { background: #1A1A24; color: #fff; }
.dm-pill--light { background: #F0F0F6; color: #333; }

/* Vibration bars */
.vib-visual { display: flex; align-items: center; gap: 4px; margin-top: 20px; }
.vib-bar {
  width: 4px; border-radius: 4px;
  background: rgba(255,255,255,.3);
  animation: vib 1s ease-in-out infinite;
}
.vib-bar:nth-child(1) { height: 16px; animation-delay: 0s; }
.vib-bar:nth-child(2) { height: 28px; animation-delay: .1s; }
.vib-bar:nth-child(3) { height: 40px; animation-delay: .2s; }
.vib-bar:nth-child(4) { height: 28px; animation-delay: .3s; }
.vib-bar:nth-child(5) { height: 16px; animation-delay: .4s; }

@keyframes vib {
  0%,100% { transform: scaleY(1);   opacity: .4; }
  50%      { transform: scaleY(1.3); opacity: 1;  }
}

/* Color swatches */
.swatches { display: flex; gap: 8px; margin-top: 20px; }
.swatch   { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); }

/* Bento icon wrapper */
.bento__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,.05);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--ink-2);
}
.bento--brand .bento__icon-wrap,
.bento--dark  .bento__icon-wrap { background: rgba(255,255,255,.12); color: #fff; }

/* Bento tab preview */
.bento-tabs-preview { display: flex; gap: 6px; margin-top: 24px; }
.btp-item {
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.5);
}
.btp-item--on { background: rgba(255,255,255,.2); color: #fff; }

/* Toggle preview */
.toggle-preview { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.toggle-track {
  width: 40px; height: 22px; border-radius: 100px;
  background: var(--line);
  display: flex; align-items: center; padding: 2px;
}
.toggle-track--on { background: var(--brand); }
.toggle-thumb {
  width: 18px; height: 18px; background: #fff; border-radius: 50%;
  margin-left: auto; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-label { font-size: 12px; color: var(--ink-2); font-weight: 500; }


/* ═══════════════════════════════════════════
   USE CASES
═══════════════════════════════════════════ */
.scenes { background: var(--surf); }
.scenes__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.scenes__h { font-size: clamp(30px, 3.5vw, 46px); font-weight: 900; letter-spacing: -.03em; line-height: 1.15; }
.scenes__p { font-size: 16px; color: var(--ink-2); line-height: 1.7; max-width: 360px; }
/* Featured photo cards */
.scenes-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.scene-photo {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.scene-photo:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.scene-photo__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.scene-photo__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.scene-photo:hover .scene-photo__img img { transform: scale(1.03); }
.scene-photo__body {
  padding: 20px 24px 24px;
}
.scene-photo__body .scene__title { font-size: 17px; }

.scenes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.scene {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.scene:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.scene__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-l);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.scene__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.scene__desc  { font-size: 13px; color: var(--ink-3); line-height: 1.65; }
.scene__chip  {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  background: var(--brand-l);
  color: var(--brand);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}


/* ═══════════════════════════════════════════
   PREMIUM
═══════════════════════════════════════════ */
.premium { position: relative; overflow: hidden; }
.premium::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #EEF2FF, transparent 65%);
  pointer-events: none;
}
.premium__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.premium__copy .pill { margin-bottom: 20px; }
.premium__h { font-size: clamp(28px, 3vw, 44px); font-weight: 900; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 16px; }
.premium__p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 32px; }

.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; }
.feat-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-l); color: var(--brand);
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 1px;
}

/* Pricing card */
.price-card {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(99,102,241,.35), transparent 65%);
  pointer-events: none;
}
.price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.price-name   { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.price-amount { font-size: 60px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.price-amount sup   { font-size: 24px; font-weight: 700; vertical-align: top; margin-top: 12px; margin-right: 2px; }
.price-amount small { font-size: 18px; font-weight: 400; color: rgba(255,255,255,.5); }
.price-alt    { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 32px; }
.price-divider { height: 1px; background: rgba(255,255,255,.1); margin: 24px 0; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feat   { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.price-feat-icon { font-size: 16px; }
.btn-price {
  display: block; width: 100%; text-align: center;
  padding: 16px; border-radius: 14px;
  font-size: 15px; font-weight: 700;
  background: var(--brand);
  color: #fff;
  transition: background .15s, transform .15s;
  box-shadow: 0 8px 24px rgba(99,102,241,.4);
}
.btn-price:hover { background: var(--brand-d); transform: translateY(-2px); }
.price-free-note { text-align: center; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 14px; }


/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-sec {
  background: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-sec::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,.18), transparent 65%);
  pointer-events: none;
}
.cta-bg-num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 400px; font-weight: 900; letter-spacing: -.06em; line-height: 1;
  color: rgba(255,255,255,.03);
  pointer-events: none; user-select: none;
}
.cta-sec .pill    { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.12); margin-bottom: 24px; }
.cta-sec h2       { font-size: clamp(32px, 4.5vw, 60px); font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 20px; }
.cta-sec p        { font-size: 18px; color: rgba(255,255,255,.55); margin-bottom: 48px; }
.cta-btns         { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.store-btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}
.store-btn--ghost:hover { background: rgba(255,255,255,.15); }
.cta-legal { font-size: 12px; color: rgba(255,255,255,.25); margin-top: 24px; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: #05050A; padding: 40px 24px; }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  width: 100%; max-width: 1140px; margin: 0 auto;
}
.footer__logo   { font-size: 14px; font-weight: 800; color: rgba(255,255,255,.4); letter-spacing: -.02em; }
.footer__links  { display: flex; gap: 24px; }
.footer__links a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .15s; }
.footer__links a:hover { color: rgba(255,255,255,.6); }


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .sec { padding: 80px 0; }
  .hero { padding-top: 100px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img-wrap { order: -1; }
  .hero__img { max-width: 280px; }
  .hero__copy { padding-bottom: 48px; }
  .how__grid { grid-template-columns: 1fr; gap: 48px; }
  .how__visual { order: -1; }
  .bento-span-7, .bento-span-5, .bento-span-8, .bento-span-4 { grid-column: span 12; }
  .bento-span-6 { grid-column: span 12; }
  .bento-span-3 { grid-column: span 6; }
  .scenes__intro { grid-template-columns: 1fr; gap: 16px; }
  .scenes-featured { grid-template-columns: 1fr; }
  .scenes-row { grid-template-columns: 1fr 1fr; }
  .premium__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .bento-span-3 { grid-column: span 12; }
  .scenes-row { grid-template-columns: 1fr; }
  .hero__h1 { font-size: 36px; }
  .hero__btns { flex-direction: column; align-items: flex-start; }
  .cta-sec h2 { font-size: 30px; }
  .cta-btns { flex-direction: column; align-items: center; }
}


/* ─────────────────────────────────────────
   Coming Soon placeholder
   ───────────────────────────────────────── */
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(99,102,241,.08);
  color: #818CF8;
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.coming-soon::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #818CF8;
  opacity: .6;
}


/* ─────────────────────────────────────────
   GSAP animation initial states
   ───────────────────────────────────────── */
.gs-fade  { opacity: 0; }
.gs-up    { opacity: 0; transform: translateY(40px); }
.gs-left  { opacity: 0; transform: translateX(-40px); }
.gs-right { opacity: 0; transform: translateX(40px); }
.gs-scale { opacity: 0; transform: scale(.92); }
