/* ===== Tokens (matched to the OnboardCircle logo palette) ===== */
:root {
  --bg: #160b22;
  --bg-2: #0e0716;
  --surface: #1c1129;
  --surface-2: #2a1240;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #fbf7ff;
  --muted: #b9aecb;
  --muted-2: #8b7fa0;
  --pink: #ec4899;
  --magenta: #c026a3;
  --purple: #8b5cf6;
  --blue: #38bdf8;
  --orange: #fb923c;
  --green: #34d399;
  --teal: #2dd4bf;
  --red: #ff5c5c;
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --grad: linear-gradient(120deg, #ec4899 0%, #a855f7 55%, #fb923c 100%);
  --grad-purple: linear-gradient(180deg, #4a0e6b 0%, #7c1d6f 50%, #4a0e6b 100%);
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-hand: 'Patrick Hand', cursive;
  --shadow-card: 0 1px 1px .5px rgba(0,0,0,.2), 0 3px 3px 1.5px rgba(0,0,0,.14),
                 0 6px 6px -3px rgba(0,0,0,.14), 0 12px 12px -6px rgba(0,0,0,.14),
                 0 24px 24px -12px rgba(0,0,0,.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; background: #0c0614; }
/* Native smooth scroll only as fallback when Lenis is unavailable */
html:not(.lenis) { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ===== Ambient morphing color background ===== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #0c0614;
}
.ambient__wash {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(236,72,153,.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(168,85,247,.2), transparent 50%),
    radial-gradient(ellipse 60% 55% at 60% 80%, rgba(251,146,60,.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(56,189,248,.08), transparent 45%);
  background-size: 200% 200%;
  animation: ambient-wash 22s ease-in-out infinite alternate;
}
.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .55;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.ambient__blob--a {
  width: min(52vw, 520px); height: min(52vw, 520px);
  top: -8%; left: -6%;
  background: radial-gradient(circle, rgba(236,72,153,.55) 0%, transparent 68%);
  animation: ambient-a 16s ease-in-out infinite alternate;
}
.ambient__blob--b {
  width: min(48vw, 480px); height: min(48vw, 480px);
  top: 12%; right: -10%;
  background: radial-gradient(circle, rgba(139,92,246,.5) 0%, transparent 68%);
  animation: ambient-b 20s ease-in-out infinite alternate;
}
.ambient__blob--c {
  width: min(42vw, 420px); height: min(42vw, 420px);
  bottom: 8%; left: 28%;
  background: radial-gradient(circle, rgba(251,146,60,.35) 0%, transparent 68%);
  animation: ambient-c 18s ease-in-out infinite alternate;
}
.ambient__blob--d {
  width: min(36vw, 360px); height: min(36vw, 360px);
  bottom: -6%; right: 18%;
  background: radial-gradient(circle, rgba(192,38,163,.4) 0%, transparent 68%);
  animation: ambient-d 24s ease-in-out infinite alternate;
}
@keyframes ambient-wash {
  0%   { transform: translate3d(0, 0, 0) scale(1); filter: hue-rotate(0deg); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); filter: hue-rotate(18deg); }
  100% { transform: translate3d(4%, -3%, 0) scale(1.1); filter: hue-rotate(-12deg); }
}
@keyframes ambient-a {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .45; }
  100% { transform: translate3d(18%, 22%, 0) scale(1.25); opacity: .7; }
}
@keyframes ambient-b {
  0%   { transform: translate3d(0, 0, 0) scale(1.1); opacity: .4; }
  100% { transform: translate3d(-22%, 16%, 0) scale(1.3); opacity: .65; }
}
@keyframes ambient-c {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .35; }
  100% { transform: translate3d(-14%, -20%, 0) scale(1.35); opacity: .6; }
}
@keyframes ambient-d {
  0%   { transform: translate3d(0, 0, 0) scale(1.05); opacity: .35; }
  100% { transform: translate3d(-16%, -18%, 0) scale(1.4); opacity: .55; }
}

/* Lenis — required for butter-smooth scrolling */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
section { position: relative; }
/* Keep page content above the fixed ambient layer */
main, footer { position: relative; z-index: 1; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px -8px rgba(236,72,153,.55); }
.btn--primary:hover { box-shadow: 0 12px 40px -8px rgba(168,85,247,.7); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.05); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pink);
  background: rgba(236,72,153,.12); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.grad {
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(22,11,34,.82); backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav.scrolled .nav__inner { padding: 10px 24px; }
.nav.scrolled .nav__logo { width: 28px; height: 28px; }
.nav.scrolled .nav__name { font-size: 17px; }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 28px;
  transition: padding .3s ease;
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.nav__logo { display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; transition: width .3s ease, height .3s ease; }
.nav__logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.nav__name { transition: font-size .3s ease; }
.nav__links { display: flex; gap: 26px; margin-left: 12px; }
.nav__links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: auto; display: flex; gap: 12px; }
.nav__burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .25s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
  background: rgba(20,10,32,.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px; padding: 12px 24px 24px;
  transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { padding: 14px 4px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { margin-top: 12px; border-bottom: 0; color: #fff; justify-content: center; }

/* ===== Hero ===== */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 150px 24px 80px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero__glow {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(236,72,153,.26), rgba(139,92,246,.22) 45%, transparent 72%);
  filter: blur(30px); z-index: -1;
}
.hero__stars { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__stars i {
  position: absolute; width: 2px; height: 2px; background: #fff; border-radius: 50%;
  opacity: .5; animation: twinkle 3s infinite ease-in-out;
}
@keyframes twinkle { 0%,100%{opacity:.15} 50%{opacity:.7} }
.hero__spotlight {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0; mix-blend-mode: screen;
  transition: opacity .25s ease, background .12s linear;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--muted); background: rgba(255,255,255,.05); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero__title { font-size: clamp(40px, 6vw, 68px); line-height: 1.04; font-weight: 900; letter-spacing: -.03em; }
.hero__sub { margin: 22px 0 32px; font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__proof { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.stars { color: #ffc861; letter-spacing: 2px; }

/* Phone */
.hero__phone { position: relative; display: grid; place-items: center; transition: transform .15s ease-out; transform-style: preserve-3d; }
.hero__phone-glow {
  position: absolute; inset: 10% 15%; background: var(--grad); filter: blur(70px); opacity: .35; z-index: -1; border-radius: 50%;
}
.phone {
  width: 300px; aspect-ratio: 300/620; background: #12081c;
  border-radius: 44px; border: 1px solid var(--line-2); padding: 12px;
  box-shadow: 0 40px 40px rgba(0,0,0,.17), 0 89px 54px 5px rgba(0,0,0,.1),
              0 159px 3px 10px rgba(0,0,0,.03), inset 0 0 0 2px rgba(255,255,255,.03);
  position: relative; animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #12081c; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { background: linear-gradient(180deg, #241333, #140a1f); border-radius: 34px; height: 100%; overflow: hidden; padding: 40px 16px 18px; }

.app { color: var(--text); font-size: 13px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.app__top { display: flex; justify-content: space-between; align-items: center; }
.app__flight { font-family: var(--font-mono); font-weight: 700; font-size: 16px; letter-spacing: .01em; }
.app__badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.app__badge--ontime { background: rgba(52,211,153,.15); color: var(--green); }

/* Feed post (hero phone + demo) */
.feed-post { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
.feed-post__head { display: flex; align-items: center; gap: 10px; }
.feed-post__head b { display: block; font-size: 13px; font-weight: 700; }
.feed-post__head small { display: block; color: var(--muted); font-size: 11px; }
.feed-post__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: grid; place-items: center; font-weight: 800; font-size: 13px; color: #fff;
}
.feed-post__follow {
  margin-left: auto; border: 1px solid var(--line-2); background: rgba(255,255,255,.06);
  color: var(--text); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 999px; cursor: pointer;
}
.feed-post__follow.is-following { background: transparent; color: var(--muted); }
.feed-post__media {
  border-radius: 16px; min-height: 168px; flex: 1;
  display: grid; place-items: end center; color: #fff; font-weight: 700; font-size: 15px; text-align: center; padding: 16px;
  position: relative; overflow: hidden;
}
.feed-post__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(0,0,0,.55));
}
.feed-post__media span { position: relative; z-index: 1; }
.feed-post__actions { display: flex; gap: 14px; font-size: 12px; font-weight: 600; color: var(--muted); }
.feed-post__caption { font-size: 12px; color: var(--muted); line-height: 1.45; }
.feed-post__caption b { color: var(--text); margin-right: 4px; }

.livedot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.5)} 70%{box-shadow:0 0 0 8px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }

/* ===== Trust ===== */
/* ===== Live pulse stats ===== */
.pulse { padding: 8px 24px 0; }
.pulse__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 20px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.pulse__item { position: relative; text-align: center; padding: 0 22px; }
.pulse__item + .pulse__item::before {
  content: ""; position: absolute; left: -10px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 34px; background: var(--line-2);
}
.pulse__item b { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 26px; font-weight: 900; font-family: var(--font-mono); }
.pulse__item small { display: block; margin-top: 4px; color: var(--muted); font-size: 12.5px; }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 90px 24px; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.section__head p { margin-top: 18px; color: var(--muted); font-size: 17px; }

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.feature {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-card);
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-2); }
.feature__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.ic--blue { background: rgba(56,189,248,.15); color: var(--blue); }
.ic--purple { background: rgba(139,92,246,.15); color: var(--purple); }
.ic--green { background: rgba(52,211,153,.15); color: var(--green); }
.ic--orange { background: rgba(251,146,60,.15); color: var(--orange); }
.ic--pink { background: rgba(244,114,182,.15); color: var(--pink); }
.ic--teal { background: rgba(45,212,191,.15); color: var(--teal); }
.ic--magenta { background: rgba(192,38,163,.15); color: var(--magenta); }
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ===== Premium horizontal feed ===== */
.hfeed.section { padding-bottom: 56px; overflow: visible; }
.hfeed .section__head { margin-bottom: 36px; }
.hfeed__wrap {
  position: relative; max-width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.hfeed__wrap::before,
.hfeed__wrap::after {
  content: ""; position: absolute; top: 0; bottom: 28px; width: min(80px, 8vw); z-index: 4;
  pointer-events: none;
}
.hfeed__wrap::before {
  left: 0; background: linear-gradient(90deg, var(--bg), transparent);
}
.hfeed__wrap::after {
  right: 0; background: linear-gradient(270deg, var(--bg), transparent);
}
.hfeed__rail {
  --card-w: min(300px, 70vw);
  display: flex; gap: 18px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  /* Side padding lets every card (incl. first/last) snap dead-center */
  padding: 12px calc(50vw - var(--card-w) / 2) 32px;
  scroll-padding-inline: calc(50vw - var(--card-w) / 2);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  /* Keep horizontal overscroll from chaining into the page jumpily */
  overscroll-behavior-x: contain;
}
.hfeed__rail::-webkit-scrollbar { display: none; }
.hfeed__nav {
  position: absolute; top: 44%; z-index: 6; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  background: rgba(16,8,24,.72); backdrop-filter: blur(12px); color: #fff;
  font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hfeed__nav:hover {
  background: rgba(40,20,60,.95); transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 36px rgba(236,72,153,.25);
}
.hfeed__nav--prev { left: max(16px, 4vw); }
.hfeed__nav--next { right: max(16px, 4vw); }
@media (max-width: 720px) {
  .hfeed__nav { display: none; }
}

/* Clean feed cards */
.pcard-halo {
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  border-radius: 26px;
}

.pcard {
  width: 100%;
  background: linear-gradient(165deg, #2a1638 0%, #161022 55%, #100818 100%);
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .2s ease;
}
.pcard-halo:hover .pcard {
  transform: translateY(-2px);
}
.pcard__head {
  display: flex; align-items: center; gap: 10px; padding: 14px 14px 10px;
}
.pcard__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.2); }
.pcard__head b { display: block; font-size: 13px; font-weight: 700; }
.pcard__head small { display: block; color: var(--muted); font-size: 11px; }
.pcard__follow {
  margin-left: auto; border: 0; background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700; padding: 7px 12px; border-radius: 999px; cursor: pointer;
}
.pcard__follow.is-on { background: transparent; border: 1px solid var(--line-2); color: var(--muted); }
.pcard__media {
  position: relative; aspect-ratio: 4/5; background: #0a0610; overflow: hidden;
}
.pcard__media > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.pcard:hover .pcard__media > img { transform: scale(1.04); }
.pcard__media::after {
  content: ""; position: absolute; inset: auto 0 0; height: 28%;
  background: linear-gradient(transparent, rgba(8,4,14,.38));
  pointer-events: none; z-index: 1;
}
.pcard__actions {
  display: flex; gap: 6px; padding: 10px 12px 4px;
}
.pcard__actions button {
  border: 0; background: transparent; color: var(--muted); font-size: 13px; font-weight: 600;
  padding: 6px 8px; border-radius: 999px; cursor: pointer;
}
.pcard__actions button.is-liked { color: var(--pink); }
.pcard__caption {
  padding: 4px 14px 16px; font-size: 12.5px; color: var(--muted); line-height: 1.45;
}
.pcard__caption b { color: var(--text); margin-right: 4px; }

/* Text post */
.pcard--text .pcard__textbody {
  aspect-ratio: 4/5; display: flex; flex-direction: column; justify-content: center;
  padding: 32px 26px; background:
    radial-gradient(ellipse at 18% 12%, rgba(236,72,153,.42), transparent 52%),
    radial-gradient(ellipse at 92% 88%, rgba(168,85,247,.32), transparent 48%),
    linear-gradient(155deg, #3a1848 0%, #1a0e28 45%, #0e0816 100%);
}
.pcard__quote {
  font-family: var(--font-hand); font-size: 27px; line-height: 1.32; color: #fff;
  margin-bottom: 20px; text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.pcard__tag {
  align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--pink);
  background: rgba(236,72,153,.14); padding: 6px 12px; border-radius: 999px;
}

/* Instagram-like video */
.ig-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.ig-video__play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  border: 0; background: rgba(0,0,0,.45); color: #fff; font-size: 22px; cursor: pointer;
  backdrop-filter: blur(6px); transition: transform .15s, opacity .2s; z-index: 3;
}
.ig-video.is-playing .ig-video__play { opacity: 0; pointer-events: none; }
.ig-video__chrome {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  opacity: 0; transition: opacity .2s;
}
.ig-video:hover .ig-video__chrome,
.ig-video.is-playing .ig-video__chrome { opacity: 1; }
.ig-video__bar {
  height: 3px; background: rgba(255,255,255,.25); border-radius: 999px; overflow: hidden; cursor: pointer; margin-bottom: 8px;
}
.ig-video__bar span { display: block; height: 100%; width: 0%; background: #fff; border-radius: inherit; }
.ig-video__row { display: flex; justify-content: space-between; align-items: center; }
.ig-video__time { font-size: 11px; font-weight: 600; color: #fff; font-family: var(--font-mono); }
.ig-video__mute {
  border: 0; background: rgba(0,0,0,.35); color: #fff; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
}

/* Instagram-like carousel */
.ig-carousel__count {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,.55); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px);
  font-family: var(--font-mono);
}
.ig-carousel__track {
  display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.ig-carousel__track::-webkit-scrollbar { display: none; }
.ig-carousel__track img {
  flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start;
}
.ig-carousel__dots {
  position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 5px; z-index: 2;
}
.ig-carousel__dots i {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35);
}
.ig-carousel__dots i.is-on { background: #fff; width: 16px; border-radius: 999px; }

/* ===== Post dialog ===== */
.post-dialog {
  border: 0; padding: 0; background: transparent; color: var(--text);
  width: min(920px, calc(100vw - 32px)); max-height: calc(100vh - 40px);
  margin: auto;
}
.post-dialog::backdrop {
  background: rgba(8, 4, 14, .78);
  backdrop-filter: blur(10px);
}
.post-dialog__panel {
  position: relative;
  background: linear-gradient(180deg, #22132f, #12081c);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}
.post-dialog__close {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2);
  background: rgba(0,0,0,.55); color: #fff; font-size: 16px; cursor: pointer;
  backdrop-filter: blur(8px);
}
.post-dialog__close:hover { background: rgba(0,0,0,.8); }
.post-dialog__body {
  overflow: auto; max-height: calc(100vh - 40px);
}
.post-dialog__body .pcard {
  flex: none; width: 100%; max-width: none; cursor: default;
  transform: none !important; border: 0; border-radius: 0; box-shadow: none;
}
.post-dialog__body .pcard:hover { transform: none; }
.post-dialog__body .pcard__head { padding: 18px 20px 12px; padding-right: 56px; }
.post-dialog__body .pcard__media,
.post-dialog__body .pcard--text .pcard__textbody {
  aspect-ratio: auto; max-height: min(70vh, 720px); min-height: 280px;
}
.post-dialog__body .pcard__media > img,
.post-dialog__body .ig-video video,
.post-dialog__body .ig-carousel__track img {
  max-height: min(70vh, 720px); object-fit: contain; background: #050308;
}
.post-dialog__body .ig-carousel__track { max-height: min(70vh, 720px); }
.post-dialog__body .pcard--text .pcard__textbody {
  min-height: 320px; display: flex;
}
.post-dialog__body .pcard__quote { font-size: clamp(28px, 4vw, 40px); }
.post-dialog__body .pcard__caption { font-size: 14px; padding: 8px 20px 22px; }
.post-dialog__body .pcard__actions { padding: 12px 16px 6px; }
@media (max-width: 640px) {
  .post-dialog { width: calc(100vw - 16px); }
  .post-dialog__body .pcard__media,
  .post-dialog__body .pcard--text .pcard__textbody { min-height: 220px; max-height: 55vh; }
}

/* ===== Showcase ===== */
.showcase {
  max-width: var(--maxw); margin: 0 auto; padding: 70px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
#how.showcase { padding-top: 70px; }
.showcase--rev .showcase__text { order: 2; }
.showcase h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 18px; }
.showcase p { color: var(--muted); font-size: 17px; margin-bottom: 26px; }
.ticks { list-style: none; display: grid; gap: 13px; margin-bottom: 28px; }
.ticks li { position: relative; padding-left: 30px; color: var(--text); font-size: 15px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px;
  background: rgba(52,211,153,.15); color: var(--green); border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}

/* Map */
.map {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  background: radial-gradient(circle at 30% 20%, #14203b, #0a1122 70%);
  border: 1px solid var(--line-2); overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7);
}
.map__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map__route { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__chip { position: absolute; font-size: 12px; font-weight: 700; background: rgba(0,0,0,.55); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: 999px; }
.map__chip--a { bottom: 16%; left: 6%; }
.map__chip--b { top: 32%; right: 6%; }
.map__hud {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; gap: 8px;
  background: rgba(5,7,15,.7); backdrop-filter: blur(8px); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px;
}
.map__hud small { display: block; color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.map__hud b { font-size: 15px; }

/* Alerts */
.alerts { display: grid; gap: 14px; }
.alert {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  animation: slidein .6s ease both;
}
.alert:nth-child(2){animation-delay:.1s} .alert:nth-child(3){animation-delay:.2s} .alert:nth-child(4){animation-delay:.3s}
@keyframes slidein { from{opacity:0; transform:translateX(20px)} to{opacity:1;transform:none} }
.alert__ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.alert b { display: block; font-size: 15px; }
.alert small { color: var(--muted); font-size: 13px; }
.alert--warn { border-color: rgba(251,146,60,.35); } .alert--warn .alert__ic { background: rgba(251,146,60,.15); }
.alert--info .alert__ic { background: rgba(56,189,248,.15); }
.alert--good .alert__ic { background: rgba(52,211,153,.15); }

.stat-row { display: flex; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.stat b { display: block; font-size: 30px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat small { color: var(--muted); font-size: 13px; max-width: 140px; display: block; }

/* ===== Live band ===== */
.live-band { padding: 40px 24px; }
.live-band__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 50px;
  background: linear-gradient(120deg, rgba(56,189,248,.12), rgba(139,92,246,.12));
  border: 1px solid var(--line-2); border-radius: 28px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.live-band h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.live-band p { color: var(--muted); font-size: 16px; }
.li { background: rgba(5,7,15,.65); border: 1px solid var(--line-2); border-radius: 20px; padding: 20px; backdrop-filter: blur(8px); }
.li__row { display: flex; justify-content: space-between; align-items: center; }
.li__code { font-weight: 800; font-size: 18px; }
.li__eta { color: var(--blue); font-weight: 700; font-size: 14px; }
.li__bar { height: 8px; background: rgba(255,255,255,.1); border-radius: 999px; margin: 16px 0; overflow: hidden; }
.li__bar span { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.li__row--sm { font-size: 12px; color: var(--muted); }

/* ===== Reviews ===== */
.review { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.review__stars { color: #ffc861; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-family: var(--font-hand); font-size: 22px; line-height: 1.45; margin-bottom: 16px; color: #f2eefc; }
.review figcaption { color: var(--muted); font-size: 14px; font-weight: 600; }

/* ===== Pricing ===== */
/* ===== Creative subscription band ===== */
.pricing {
  max-width: var(--maxw);
  margin: 24px auto 48px;
  padding: 0 24px;
}
.pricing__band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(236,72,153,.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(168,85,247,.16), transparent 55%),
    linear-gradient(135deg, #241333 0%, #140a1f 48%, #1a0f28 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}
.pricing__glow {
  position: absolute; inset: -20% 40% auto -10%; height: 70%; z-index: 0;
  background: radial-gradient(circle, rgba(251,146,60,.14), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.pricing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px 40px;
  align-items: center;
  padding: 40px 44px;
}
.pricing__offer .eyebrow { margin-bottom: 14px; }
.pricing__offer h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: 12px;
}
.pricing__lede {
  color: var(--muted); font-size: 16px; max-width: 36ch; margin-bottom: 22px;
}
.pricing__rate {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  width: fit-content;
  max-width: 100%;
}
.pricing__amount {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1;
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
.pricing__meta { display: flex; flex-direction: column; gap: 4px; }
.pricing__meta small { color: var(--muted); font-size: 14px; font-weight: 600; }
.pricing__locale {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600; color: #f9a8d4;
  background: rgba(236,72,153,.14); border: 1px solid rgba(236,72,153,.28);
  padding: 4px 10px; border-radius: 999px; width: fit-content;
}
.pricing__fine {
  margin-top: 12px; color: var(--muted-2); font-size: 12.5px;
}
.pricing__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pricing__perk {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color .2s, background .2s, transform .2s;
}
.pricing__perk:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(236,72,153,.28);
  transform: translateY(-2px);
}
.pricing__perk > span {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center;
  font-size: 13px; color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 18px -8px rgba(236,72,153,.7);
}
.pricing__perk b { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.pricing__perk small { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .pricing__rate { width: 100%; }
  .pricing__lede { max-width: none; }
}
@media (max-width: 520px) {
  .pricing__perks { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { font-size: 24px; color: var(--blue); font-weight: 400; transition: transform .25s; flex-shrink: 0; }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ===== CTA card ===== */
.cta {
  max-width: var(--maxw);
  margin: 40px auto 90px;
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(236,72,153,.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(251,146,60,.1), transparent 50%),
    linear-gradient(180deg, #2a1240 0%, #160b22 100%);
}
.cta__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(168,85,247,.28), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.cta__mark {
  position: relative;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 22px;
  display: block;
  border-radius: 50%;
}
.cta h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  position: relative;
}
.cta p {
  color: var(--muted);
  font-size: 18px;
  margin: 20px auto 32px;
  max-width: 46ch;
  position: relative;
}
.cta .hero__actions {
  justify-content: center;
  position: relative;
}
@media (max-width: 640px) {
  .cta { margin: 24px 16px 70px; padding: 56px 22px; }
}

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 60px 24px 30px; }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer__col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color .15s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--muted-2); font-size: 13px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: border-color .2s, color .2s; }
.footer__social a:hover { border-color: var(--blue); color: var(--blue); }

/* ===== Scroll progress bar ===== */
#scrollProgress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: var(--grad); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .1s linear; pointer-events: none;
}

/* ===== Reveal animation — keep content visible (no blank voids) ===== */
.reveal {
  opacity: .35;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.16,1,.3,1),
              transform .55s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--stagger, 0ms);
  will-change: transform, opacity;
}
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__proof { justify-content: center; }
  .hero__phone { margin-top: 20px; }
  .grid--3 { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase--rev .showcase__text { order: 0; }
  .live-band__inner { grid-template-columns: 1fr; padding: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stat-row { gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, .phone { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
