/* Socialyte — premium marketing site (GSAP + Lenis) */
:root {
  --navy: #071833;
  --teal: #009d9f;
  --accent: #00d1d3;
  --bg: #050f22;
  --bg-2: #0a1f42;
  --bg-3: #0c2848;
  --fg: #eef4fb;
  --muted: #8fa3be;
  --border: rgba(0, 209, 211, 0.2);
  --glow: rgba(0, 209, 211, 0.4);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", var(--font);
  --max: 1180px;
  --nav-h: 68px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
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; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

/* Logo — crisp at nav size, no scale hacks */
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__brand .logo-mark {
  width: 28px;
  height: 28px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s, backdrop-filter 0.4s;
}
.nav--scrolled {
  background: rgba(5, 15, 34, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fg);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav__brand:hover { text-decoration: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav__links a {
  color: rgba(238, 244, 251, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.nav__links a.is-active { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--solid {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 4px 24px var(--glow);
}
.btn--solid:hover { background: #33dce0; box-shadow: 0 8px 32px var(--glow); }
.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  border-color: var(--accent);
  background: rgba(0, 209, 211, 0.1);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid transparent;
}
.btn--lg { padding: 0.9rem 1.75rem; font-size: 0.95rem; }
.nav__cta { margin-left: 0.35rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3 { font-family: var(--font-display); }

/* ── HERO: full-bleed photo + parallax ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -8% 0 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 15, 34, 0.88) 0%, rgba(5, 15, 34, 0.75) 45%, rgba(5, 15, 34, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 15, 34, 0.55) 0%, transparent 50%, rgba(5, 15, 34, 0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 2rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-items: stretch;
}
.hero__copy {
  max-width: 36rem;
}
.hero__copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
}
.hero__copy h1 .line { display: block; overflow: hidden; }
.hero__copy h1 .line span { display: block; transform: none; }
html.js-hero-anim .hero__copy h1 .line span { transform: translateY(110%); }
.hero__lead-accent {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
  max-width: 34ch;
}
.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  color: rgba(238, 244, 251, 0.82);
  max-width: 42ch;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.cta-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 209, 211, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Phone */
.phone {
  position: relative;
  width: min(100%, 290px);
  margin-inline: auto;
  z-index: 2;
}
.phone__bezel {
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(155deg, #243652 0%, #0a1628 50%, #050f22 100%);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 209, 211, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone__screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Carousel */
.carousel {
  position: relative;
  width: min(100%, 310px);
  margin-inline: auto;
}
.carousel__track {
  position: relative;
  min-height: 560px;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px) scale(0.92) rotateY(-8deg);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
  perspective: 800px;
}
.carousel__slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.carousel__label {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  min-height: 1.25rem;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.carousel__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(5, 15, 34, 0.7);
  backdrop-filter: blur(8px);
  color: var(--fg);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.carousel__btn:hover {
  border-color: var(--accent);
  background: rgba(0, 209, 211, 0.15);
  transform: scale(1.05);
}
.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(148, 168, 196, 0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
  width: 22px;
  border-radius: 999px;
}

/* ── MARQUEE ── */
.marquee {
  border-block: 1px solid var(--border);
  background: rgba(0, 209, 211, 0.04);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 244, 251, 0.55);
  white-space: nowrap;
}
.marquee__item em {
  font-style: normal;
  color: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STEPS (natural scroll, no pin hijack) ── */
.steps {
  padding: 5rem clamp(1.25rem, 4vw, 2rem) 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.steps__head {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.steps__head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 0.6rem;
}
.steps__head p { color: var(--muted); margin: 0; }

.step-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.step-row:first-of-type { border-top: none; padding-top: 0; }
.step-row--reverse .step-row__media { order: 2; }
.step-row--reverse .step-row__copy { order: 1; }

.step-row__num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(0, 209, 211, 0.15);
  margin-bottom: -0.25rem;
}
.step-row h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 0.75rem;
  line-height: 1.08;
}
.step-row p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 40ch;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.step-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.step-row__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: rgba(238, 244, 251, 0.75);
  background: rgba(0, 209, 211, 0.06);
}
.step-row__media {
  display: flex;
  justify-content: center;
}

/* ── PHOTO BREAK ── */
.photo-break {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.photo-break__bg {
  position: absolute;
  inset: -15% 0;
}
.photo-break__bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}
.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 34, 0.92) 0%, rgba(5, 15, 34, 0.55) 55%, rgba(5, 15, 34, 0.75) 100%);
}
.photo-break__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.photo-break__quote blockquote {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.photo-break__quote cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}
.photo-break__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(5, 15, 34, 0.65);
  backdrop-filter: blur(12px);
}
.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

/* ── HORIZONTAL SCROLL GALLERY ── */
.h-scroll {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.h-scroll__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 4vw, 2rem) 2rem;
  text-align: center;
}
.h-scroll__head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 0.6rem;
}
.h-scroll__head p { color: var(--muted); margin: 0; }
.h-scroll__track-wrap {
  padding: 1rem 0 5rem;
  overflow: hidden;
}
.h-scroll__track {
  display: flex;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  width: max-content;
  will-change: transform;
}
.h-scroll__card {
  flex-shrink: 0;
  width: min(340px, 78vw);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.h-scroll__card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.h-scroll__card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.h-scroll__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.h-scroll__card:hover .h-scroll__card-img img { transform: scale(1.06); }
.h-scroll__card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}
.h-scroll__card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.h-scroll__card-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.h-scroll__card-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.h-scroll__card-body a:hover { text-decoration: underline; }

/* ── PORTALS (distinct cards) ── */
.section {
  padding: 5.5rem clamp(1.25rem, 4vw, 2rem);
  position: relative;
}
.section--dark { background: var(--bg); }
.section--mesh {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0, 157, 159, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0, 209, 211, 0.08), transparent),
    var(--bg-2);
}
.section__head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section__head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 0.65rem;
}
.section__head p { color: var(--muted); margin: 0; font-size: 1.02rem; }

.portals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
.portal {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  position: relative;
}
.portal:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.portal__img {
  height: 140px;
  overflow: hidden;
  position: relative;
}
.portal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.portal:hover .portal__img img { transform: scale(1.08); }
.portal__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 15, 34, 0.85) 0%, transparent 60%);
}
.portal__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(7, 24, 51, 0.95);
}
.portal__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.portal h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.portal p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}
.portal__link {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── CTA PANEL ── */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 6rem clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}
.cta-panel__bg {
  position: absolute;
  inset: 0;
}
.cta-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.cta-panel__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 209, 211, 0.18), transparent),
    linear-gradient(180deg, rgba(5, 15, 34, 0.7) 0%, rgba(5, 15, 34, 0.95) 100%);
}
.cta-panel__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-panel h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}
.cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
}

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  background: rgba(5, 15, 34, 0.95);
}
.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-bar__item {
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
  font-size: 0.78rem;
  text-align: center;
}
.trust-bar__item:last-child { border-right: 0; }
.trust-bar__item strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}
.trust-bar__item span { color: var(--muted); line-height: 1.35; }

/* ── Subpage hero ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) clamp(1.25rem, 4vw, 2rem) 4rem;
  overflow: hidden;
}
.page-hero--sub {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(0, 157, 159, 0.2), transparent),
    linear-gradient(165deg, #0a2548 0%, var(--bg) 100%);
}
.page-hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
}
.lead {
  font-size: 1.1rem;
  color: rgba(238, 244, 251, 0.85);
  max-width: 44ch;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

/* Split rows */
.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__copy { order: 1; }
.split__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.split__copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.12;
}
.split__copy p { color: var(--muted); margin: 0 0 1rem; font-size: 0.98rem; }
.split__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.split__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

/* Filmstrip */
.filmstrip {
  overflow: hidden;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.filmstrip__track {
  display: flex;
  gap: 1.25rem;
  animation: filmscroll 28s linear infinite;
  width: max-content;
}
.filmstrip__track:hover { animation-play-state: paused; }
.filmstrip__item { flex-shrink: 0; width: 220px; }
.filmstrip__item .phone { width: 220px; }
.filmstrip__item figcaption {
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
@keyframes filmscroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Join panel */
.join-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 209, 211, 0.14), transparent 60%),
    var(--bg-3);
}
.join-panel h2 {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.join-panel p { color: var(--muted); margin: 0 0 1.5rem; font-size: 1.02rem; }
.perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.82rem;
  color: rgba(238, 244, 251, 0.8);
}
.perks span::before { content: "✓ "; color: var(--accent); font-weight: 700; }

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.flow__box {
  padding: 1rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(7, 24, 51, 0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  min-width: 80px;
}
.flow__arrow { color: var(--accent); }

/* Footer */
footer {
  padding: 3.5rem clamp(1.25rem, 4vw, 2rem) 2rem;
  border-top: 1px solid var(--border);
  background: #030a16;
}
.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer__legal { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.35rem; }
.footer__tagline { font-size: 0.88rem; color: var(--muted); margin: 0; max-width: 28ch; }
.footer__col h4 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 0.7rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.35rem; }
.footer__col a { color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.footer__col a:hover { color: var(--fg); }
.footer__bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Legal */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}
.legal h1 { font-size: 2rem; margin-bottom: 0.35rem; }
.legal .last-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.1rem; font-weight: 700; margin: 2rem 0 0.6rem; }
.legal p, .legal li { color: var(--muted); font-size: 0.95rem; }
.legal ul { padding-left: 1.25rem; }
.legal-notice {
  background: rgba(0, 209, 211, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* Scroll reveal base */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 3rem;
    gap: 2rem;
  }
  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 34rem;
    margin-inline: auto;
  }
  .hero__copy h1,
  .hero__lead-accent,
  .hero__lead,
  .cta-note {
    text-align: center;
    max-width: none;
  }
  .hero__copy .eyebrow {
    justify-content: center;
  }
  .hero__copy .eyebrow::before {
    display: none;
  }
  .cta-row {
    justify-content: center;
  }
  .hero__visual {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .page-hero__grid,
  .step-row,
  .photo-break__inner,
  .split,
  .portals { grid-template-columns: 1fr; }
  .page-hero__grid {
    text-align: center;
    justify-items: center;
  }
  .page-hero__grid .hero__copy,
  .page-hero__grid .lead {
    text-align: center;
    margin-inline: auto;
    max-width: none;
  }
  .page-hero__grid .eyebrow {
    justify-content: center;
  }
  .page-hero__grid .eyebrow::before {
    display: none;
  }
  .page-hero__grid .cta-row {
    justify-content: center;
  }
  .step-row {
    text-align: center;
    justify-items: center;
  }
  .step-row__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step-row__copy p,
  .step-row h2 {
    text-align: center;
    max-width: none;
  }
  .step-row__tags {
    justify-content: center;
  }
  .step-row--reverse .step-row__media,
  .step-row--reverse .step-row__copy { order: unset; }
  .split {
    text-align: center;
    justify-items: center;
  }
  .split__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .split__copy p,
  .split__copy h2 {
    text-align: center;
    max-width: none;
  }
  .split__list {
    text-align: left;
    display: inline-block;
  }
  .split--reverse .split__media,
  .split--reverse .split__copy { order: unset; }
  .photo-break__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .photo-break__quote blockquote,
  .photo-break__quote cite {
    text-align: center;
    margin-inline: auto;
  }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
  .trust-bar__item:nth-child(2) { border-right: 0; }
  .trust-bar__item:nth-child(1),
  .trust-bar__item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__links a:not(.btn) { display: none; }
  .photo-break__stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__copy h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
  }
  .cta-row .btn {
    width: 100%;
  }
  .carousel__track {
    min-height: 480px;
  }
  .phone {
    width: min(100%, 260px);
  }
  .section {
    padding-block: 4rem;
  }
  .h-scroll__card {
    width: min(300px, 88vw);
  }
}

@media (max-width: 560px) {
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: 0 !important; border-bottom: 1px solid var(--border); }
  .trust-bar__item:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee__track,
  .filmstrip__track { animation: none; }
  .carousel__slide { transition: none; }
  .hero__glow { animation: none; }
}
