:root {
  --bg: #05070c;
  --bg-2: #080b12;
  --surface: rgba(255,255,255,0.055);
  --surface-strong: rgba(255,255,255,0.09);
  --card: #0d1018;
  --border: rgba(255,255,255,0.11);
  --border-strong: rgba(255,255,255,0.18);
  --text: #ffffff;
  --sub: rgba(255,255,255,0.62);
  --muted: rgba(255,255,255,0.38);
  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --red: #ff3f4a;
  --green: #35d07f;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(59,130,246,0.15), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(255,63,74,0.10), transparent 30rem),
    var(--bg);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(96,165,250,0.34); }
a { color: inherit; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(5,7,12,0.86), rgba(5,7,12,0.58));
  backdrop-filter: blur(18px) saturate(140%);
}
.header-inner,
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.logo { width: auto; object-fit: contain; }
.logo.tiny { height: 20px; }
.logo.small { height: 26px; }
.logo.medium { height: 34px; }
.logo.large { height: 46px; }
.logo.huge { height: 60px; }
.logo.massive { height: 74px; }
.site-header .logo.massive { height: 74px; }

.nav,
.footnav,
.social-icons,
.cta-row,
.metric-row,
.press-inner,
.brandline {
  display: flex;
  align-items: center;
}
.nav { gap: 16px; font-size: 14px; }
.nav a,
.footnav a { text-decoration: none; }
.nav-link {
  color: rgba(255,255,255,0.76);
  transition: color 160ms ease, opacity 160ms ease;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.social-icons { gap: 16px; }
.social-icons a {
  color: rgba(255,255,255,0.74);
  font-size: 20px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}
.social-icons a:hover { color: #fff; transform: translateY(-1px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.075);
}
.btn.primary {
  color: #05070c;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 18px 48px rgba(255,255,255,0.15);
}
.btn.primary:hover { box-shadow: 0 22px 64px rgba(255,255,255,0.22); }
.btn.ghost { color: rgba(255,255,255,0.82); }
.btn.small { min-height: 40px; padding: 9px 15px; border-radius: 13px; font-size: 14px; }
.nav-cta { margin-left: 2px; }
.nav-cta.track-beta {
  color: #05070c;
  background: #fff;
  border-color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 76px 0 64px;
  background: linear-gradient(180deg, rgba(5,7,12,0.1), rgba(8,11,18,0.94));
}
.noise-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.orb,
.ring { position: absolute; pointer-events: none; }
.orb-blue {
  width: 680px;
  height: 520px;
  right: -120px;
  top: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59,130,246,0.23), transparent 68%);
  filter: blur(18px);
}
.orb-red {
  width: 420px;
  height: 420px;
  left: 45%;
  top: 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,63,74,0.11), transparent 65%);
  filter: blur(24px);
}
.ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,0.045);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.ring-one { width: min(74vw, 820px); height: min(74vw, 820px); }
.ring-two { width: min(48vw, 540px); height: min(48vw, 540px); }
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 64px;
}
.hero-label {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 11px;
  border: 1px solid rgba(96,165,250,0.24);
  border-radius: 999px;
  color: rgba(205,224,255,0.82);
  background: rgba(59,130,246,0.09);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 13px;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(53,208,127,0.9);
}
.hero h1,
.section h2,
.press-card h2,
.community-card h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.hero h1 {
  font-size: clamp(54px, 8vw, 98px);
  max-width: 760px;
  text-shadow: 0 0 70px rgba(255,255,255,0.18);
}
.hero h1 span,
.section-copy h2 span,
.community-card h2 {
  color: var(--blue-2);
  background: linear-gradient(135deg, #8fc0ff 0%, #3b82f6 58%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--sub);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.56;
}
.hero-actions { gap: 14px; margin: 34px 0 0; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 10px 20px 10px 11px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  background: linear-gradient(180deg, #111827, #05070c);
  text-decoration: none;
  box-shadow: 0 22px 55px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5), 0 0 34px rgba(59,130,246,0.16), inset 0 1px 0 rgba(255,255,255,0.16);
}
.store-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.store-icon img { width: 100%; height: 100%; object-fit: cover; }
.store-badge small,
.store-badge strong { display: block; line-height: 1; }
.store-badge small {
  margin-bottom: 6px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.store-badge strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}
.quiet-link {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  color: rgba(255,255,255,0.62);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 5px;
}
.quiet-link:hover { color: #fff; text-decoration: underline; }
.metric-row { gap: 0; margin: 36px 0 20px; }
.metric-row div {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.metric-row div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.metric-row strong { display: block; font-size: 28px; line-height: 1; }
.metric-row span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.tiny { color: var(--muted); font-size: 14px; }
.link,
a.mailto,
a.eml,
.legal a { color: #cfe0ff; text-decoration: underline; text-underline-offset: 3px; }
.nav a.eml { text-decoration: none; color: rgba(255,255,255,0.76); }

.phone-stage {
  position: relative;
  width: 100%;
  height: 620px;
  min-height: 620px;
  display: grid;
  place-items: center;
  align-self: center;
  isolation: isolate;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 28px 10px 22px;
  z-index: -2;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 44px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 68% 28%, rgba(59,130,246,0.26), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(255,63,74,0.10), transparent 30%),
    rgba(255,255,255,0.025);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 45px 120px rgba(0,0,0,0.34);
}
.phone-stage::after {
  content: "VLOGIT";
  position: absolute;
  left: 34px;
  bottom: 45px;
  z-index: -1;
  color: rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.phone {
  position: absolute;
  width: 214px;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.025));
  box-shadow: 0 42px 94px rgba(0,0,0,0.72), 0 0 0 1px rgba(255,255,255,0.09);
}
.phone::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 20px;
  border-radius: 0 0 15px 15px;
  transform: translateX(-50%);
  background: #05070c;
}
.phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 33px;
  background: #000;
}
.phone-main {
  z-index: 4;
  width: 262px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}
.phone-left {
  z-index: 2;
  left: 5px;
  top: 118px;
  transform: rotate(-8deg) scale(0.9);
  opacity: 0.76;
}
.phone-right {
  z-index: 3;
  right: 5px;
  top: 96px;
  transform: rotate(8deg) scale(0.9);
  opacity: 0.76;
}
.float-main { animation: float-main 5.5s ease-in-out infinite; }
.float-slow { animation: float-left 6.5s ease-in-out infinite; }
.float-delayed { animation: float-right 7s ease-in-out infinite; }
@keyframes float-main { 0%,100%{ translate:0 0; } 50%{ translate:0 -14px; } }
@keyframes float-left { 0%,100%{ translate:0 0; } 50%{ translate:0 13px; } }
@keyframes float-right { 0%,100%{ translate:0 0; } 50%{ translate:0 -12px; } }
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.22em;
  font-size: 11px;
}
.scroll-hint span { width: 1px; height: 34px; background: rgba(255,255,255,0.28); }

.press-strip {
  border-block: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}
.press-inner {
  min-height: 96px;
  justify-content: center;
  gap: 22px;
  text-align: center;
  flex-wrap: wrap;
}
.press-inner p { margin: 0; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 800; }
.press-inner a { display: inline-flex; align-items: baseline; gap: 12px; color: rgba(255,255,255,0.84); text-decoration: none; }
.press-inner span { color: var(--muted); }

.section { position: relative; padding: 112px 0; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-copy h2,
.section-heading h2,
.community-card h2 { font-size: clamp(38px, 5vw, 64px); }
.section-copy p:not(.section-kicker),
.community-card p,
.press-card p:not(.section-kicker) {
  color: var(--sub);
  font-size: 18px;
  line-height: 1.65;
}
.section-copy p:last-child { color: var(--muted); }
.mechanic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mechanic-card,
.feature-card,
.stat-card,
.press-card,
.community-card,
.card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 24px 70px rgba(0,0,0,0.28);
}
.mechanic-card {
  min-height: 188px;
  padding: 24px;
  border-radius: 26px;
}
.mechanic-card span,
.feature-body span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 900;
}
.mechanic-card h3,
.feature-body h3,
.card h3 { margin: 18px 0 8px; font-size: 22px; letter-spacing: -0.025em; }
.mechanic-card p,
.feature-body p,
.card p { margin: 0; color: var(--sub); line-height: 1.55; }

.feature-section { padding-top: 92px; }
.section-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  overflow: hidden;
  border-radius: 30px;
}
.feature-preview {
  height: 285px;
  display: grid;
  justify-content: center;
  align-items: start;
  overflow: hidden;
  padding-top: 24px;
}
.feature-preview img {
  width: 170px;
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(0,0,0,0.58), 0 0 0 8px rgba(255,255,255,0.045);
}
.blue-card { background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.36), transparent 72%), rgba(59,130,246,0.05); }
.red-card { background: radial-gradient(circle at 50% 0%, rgba(255,63,74,0.28), transparent 72%), rgba(255,63,74,0.05); }
.glass-card { background: radial-gradient(circle at 50% 0%, rgba(155,114,255,0.24), transparent 72%), rgba(255,255,255,0.035); }
.feature-body { padding: 28px; }
.feature-body h3 { font-size: 24px; }

.stats-section {
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.06) 46%, transparent);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
}
.stat-card strong { display: block; font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.06em; }
.stat-card span { display: block; margin-top: 8px; color: var(--muted); }
.press-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
}
.press-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--blue-2);
  background: rgba(59,130,246,0.16);
  border: 1px solid rgba(96,165,250,0.25);
  font-size: 27px;
}
.press-card h2 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.045em; line-height: 1.05; }
.press-card p { margin: 12px 0 0; }

.community-section { padding-top: 60px; }
.community-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px;
  border-radius: 34px;
}
.community-card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 72% 40%, rgba(59,130,246,0.24), transparent 46%);
  pointer-events: none;
}
.community-card > * { position: relative; z-index: 2; }
.community-card p { max-width: 620px; }
.community-card .cta-row { justify-content: flex-end; flex-wrap: wrap; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.28);
}
.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
}
.brandline { gap: 14px; color: var(--muted); }
.footnav { gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footnav a { color: rgba(255,255,255,0.62); }
.footnav a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }

/* Legacy and legal page support */
.hero .social-icons { margin-top: 12px; margin-bottom: 12px; }
.app-icon { width: 180px; height: 180px; border-radius: 36px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { border-radius: 18px; padding: 22px; }
.section.alt { background: rgba(255,255,255,0.035); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.section.alt .cta-row { justify-content: center; }
.legal { color: var(--text); }
.legal h1 { font-size: clamp(38px, 5vw, 58px); letter-spacing: -0.045em; }
.legal h2 { letter-spacing: -0.02em; }
.legal p,
.legal li { color: rgba(255,255,255,0.68) !important; }
.center .sub { color: var(--sub); }

@media (max-width: 1080px) {
  .header-socials { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-label { margin-inline: auto; }
  .metric-row { justify-content: center; }
  .phone-stage { min-height: 560px; width: min(100%, 620px); margin: 0 auto; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { display: grid; grid-template-columns: 0.9fr 1fr; }
  .feature-preview { height: 330px; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .community-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .community-card .cta-row { justify-content: center; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .site-header { height: auto; min-height: 76px; }
  .header-inner,
  .site-header .container { gap: 10px; }
  .site-header .logo.massive { height: 58px; }
  .nav { gap: 10px; font-size: 13px; }
  .nav-link:nth-of-type(2),
  .nav-link:nth-of-type(3) { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 58px 0 84px; }
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero-sub { font-size: 17px; }
  .hero-actions { width: 100%; justify-content: center; }
  .hero-actions .btn,
  .hero-actions .store-badge { width: 100%; max-width: 330px; }
  .store-badge { justify-content: flex-start; }
  .quiet-link { min-height: 36px; }
  .metric-row { width: 100%; justify-content: space-between; gap: 10px; }
  .metric-row div { margin: 0; padding: 0 10px; border: 0; }
  .metric-row strong { font-size: 24px; }
  .phone-stage { min-height: 470px; overflow: hidden; }
  .phone-stage::before { inset: 14px 0; border-radius: 34px; }
  .phone-stage::after,
  .ritual-card { display: none; }
  .phone-main { width: 230px; }
  .phone-left,
  .phone-right { width: 180px; opacity: 0.55; }
  .phone-left { left: -42px; top: 112px; }
  .phone-right { right: -42px; top: 96px; }
  .section { padding: 78px 0; }
  .mechanic-grid { grid-template-columns: 1fr; }
  .feature-card { display: block; }
  .feature-preview { height: 260px; }
  .stat-grid { grid-template-columns: 1fr; }
  .press-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .community-card { padding: 34px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .brandline { flex-direction: column; }
  .footnav { justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .container { padding: 0 14px; }
  .nav { gap: 8px; }
  .nav-link { font-size: 12px; }
  .site-header .logo.massive { height: 52px; }
  .hero h1 { font-size: 44px; }
  .phone-stage { min-height: 420px; }
  .phone-main { width: 210px; }
  .phone-left,
  .phone-right { width: 160px; }
  .press-inner a { flex-direction: column; gap: 4px; }
  .section-copy p:not(.section-kicker),
  .community-card p,
  .press-card p:not(.section-kicker) { font-size: 16px; }
  .footnav .social-icons { width: 100%; justify-content: center; }
}

/* Light landing redesign */
.landing-light {
  --paper: #f8f4ec;
  --ink: #111111;
  --soft-ink: #595959;
  --line: rgba(17,17,17,0.11);
  --blue: #2888ff;
  --cream: #fff2df;
  --mint: #e8f6df;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.landing-light .container { max-width: 1120px; }
.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  border-bottom: 0;
  background: rgba(248,244,236,0.88);
  backdrop-filter: blur(18px);
}
.landing-header .header-inner { height: 100%; }
.landing-header .logo.massive { height: 64px; }
.landing-light .nav { gap: 22px; }
.landing-light .header-socials {
  gap: 12px;
  margin-right: 4px;
}
.landing-light .header-socials a {
  color: rgba(17,17,17,0.62);
  font-size: 18px;
}
.landing-light .header-socials a:hover { color: var(--ink); }
.landing-light .nav-link {
  color: rgba(17,17,17,0.72);
  font-size: 15px;
  font-weight: 700;
}
.landing-light .nav-link:hover { color: var(--ink); }
.landing-light .nav-cta.track-beta,
.landing-light .btn.primary.track-beta {
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #111;
  box-shadow: none;
}
.landing-light .nav-cta.track-beta:hover,
.landing-light .btn.primary.track-beta:hover {
  transform: translateY(-1px);
  background: #2b2b2b;
}
.luna-hero {
  padding: 78px 0 76px;
  background:
    radial-gradient(circle at 8% 18%, rgba(40,136,255,0.12), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(255,118,78,0.10), transparent 26rem),
    var(--paper);
}
.luna-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.9fr);
  gap: 64px;
  align-items: center;
}
.luna-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 6.8vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.luna-sub {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 500;
}
.luna-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.download-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 9px 24px 9px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(40,136,255,0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.download-pill:hover {
  transform: translateY(-2px);
  background: #1479f7;
  box-shadow: 0 18px 42px rgba(40,136,255,0.33);
}
.download-pill img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #fff;
}
.download-pill strong,
.download-pill small { display: block; line-height: 1; }
.download-pill strong { font-size: 22px; font-weight: 900; letter-spacing: -0.035em; }
.download-pill small { margin-top: 7px; color: rgba(255,255,255,0.74); font-size: 12px; font-weight: 800; }
.text-action {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.cta-note {
  margin: 12px 0 0 58px;
  color: rgba(17,17,17,0.48);
  font-size: 13px;
  font-weight: 700;
}
.product-board {
  position: relative;
  height: 620px;
  border-radius: 34px;
  background: transparent;
  border: 0;
  overflow: visible;
}
.product-board::before {
  content: none;
  position: absolute;
  inset: 20px;
  border-radius: 26px;
  border: 1px solid rgba(17,17,17,0.07);
}
.shot {
  position: absolute;
  overflow: hidden;
  border: 9px solid #111;
  border-radius: 42px;
  background: #000;
  box-shadow: 0 28px 60px rgba(17,17,17,0.22);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot-camera {
  z-index: 3;
  width: 255px;
  height: 552px;
  left: 50%;
  top: 36px;
  transform: translate(calc(-50% + var(--hero-main-x, 0px)), var(--hero-main-y, 0px)) scale(calc(1 + var(--hero-main-scale, 0)));
}
.shot-groups {
  z-index: 2;
  width: 205px;
  height: 445px;
  left: 30px;
  top: 112px;
  transform: translate(var(--hero-left-x, 0px), var(--hero-left-y, 0px)) rotate(calc(-7deg + (var(--hero-left-tilt, 0) * 1deg)));
  opacity: 0.9;
}
.shot-profile {
  z-index: 2;
  width: 205px;
  height: 445px;
  right: 30px;
  top: 112px;
  transform: translate(var(--hero-right-x, 0px), var(--hero-right-y, 0px)) rotate(calc(7deg + (var(--hero-right-tilt, 0) * 1deg)));
  opacity: 0.9;
}
.board-note {
  position: absolute;
  z-index: 5;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 16px 34px rgba(17,17,17,0.1);
  backdrop-filter: blur(16px);
}
.board-note span,
.board-note strong { display: block; }
.board-note span { color: rgba(17,17,17,0.48); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.board-note strong { margin-top: 5px; font-size: 15px; letter-spacing: -0.02em; }
.note-top { left: 42px; top: 38px; }
.note-bottom { right: 42px; bottom: 38px; }
.proof-row { padding: 0 0 42px; background: var(--paper); }
.proof-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(40,136,255,0.13), transparent 20rem),
    radial-gradient(circle at 86% 78%, rgba(255,118,78,0.10), transparent 20rem),
    rgba(255,255,255,0.48);
  box-shadow: 0 24px 70px rgba(17,17,17,0.08);
  overflow: hidden;
}
.proof-ribbon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255,255,255,0.30);
  pointer-events: none;
}
.proof-ribbon-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}
.proof-grid div {
  padding: 16px 18px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.54);
  text-align: center;
}
.proof-grid strong { display: block; font-size: 34px; letter-spacing: -0.055em; }
.proof-grid span { display: block; margin-top: 4px; color: rgba(17,17,17,0.46); font-size: 14px; font-weight: 700; }
.proof-laurel {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 150px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}
.proof-laurel.left { transform: rotate(-2deg); }
.proof-laurel.right { transform: scaleX(-1) rotate(-2deg); }
.simple-section,
.app-cards,
.press-clean,
.final-download { background: var(--paper); padding: 76px 0; }
.section-title-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}
.section-title-row.compact { align-items: start; }
.section-title-row h2,
.press-clean-card h2,
.final-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}
.section-title-row p,
.press-clean-card p,
.final-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 19px;
  line-height: 1.38;
  font-weight: 600;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
}
.steps-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-weight: 900;
}
.steps-grid h3,
.show-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.steps-grid p,
.show-card p { margin: 0; color: var(--soft-ink); line-height: 1.45; font-weight: 600; }
.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.show-card {
  overflow: hidden;
  min-height: 560px;
  padding: 24px 24px 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
}
.show-card.cream { background: #fff2df; }
.show-card.blue { background: #e8f1ff; }
.show-card.green { background: #e8f6df; }
.show-card img {
  width: min(78%, 250px);
  height: 360px;
  margin: 0 auto 26px;
  object-fit: cover;
  border: 8px solid #111;
  border-radius: 38px;
  box-shadow: 0 22px 44px rgba(17,17,17,0.16);
}
.press-clean-card,
.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
}
.press-clean-card p { margin-bottom: 12px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.final-card {
  display: block;
  text-align: center;
  background: #111;
  color: #fff;
}
.final-card h2 { color: #fff; }
.final-card p { max-width: 560px; margin: 16px auto 0; color: rgba(255,255,255,0.68); }
.luna-actions.center { justify-content: center; }
.final-card .text-action { color: #fff; }
.landing-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.landing-footer .brandline,
.landing-footer .footnav a,
.landing-footer .social-icons a { color: rgba(17,17,17,0.62); }
.landing-footer .logo.huge { height: 54px; }

@media (max-width: 980px) {
  .landing-light .header-socials { display: flex; }
  .landing-light .nav .nav-link:nth-of-type(1),
  .landing-light .nav .nav-link:nth-of-type(2),
  .landing-light .nav .nav-link:nth-of-type(4),
  .landing-light .nav .nav-link:nth-of-type(5) { display: none; }
  .luna-hero-grid,
  .section-title-row,
  .press-clean-card { grid-template-columns: 1fr; }
  .luna-copy { text-align: center; }
  .luna-copy h1,
  .luna-sub { margin-left: auto; margin-right: auto; }
  .luna-actions { justify-content: center; }
  .cta-note { margin-left: 0; text-align: center; }
  .product-board { max-width: 560px; margin: 0 auto; }
  .feature-showcase,
  .steps-grid { grid-template-columns: 1fr; }
  .show-card { min-height: auto; }
}
@media (max-width: 620px) {
  .landing-header { height: 74px; }
  .landing-header .logo.massive { height: 52px; }
  .landing-light .header-socials {
    gap: 13px;
    margin-left: auto;
    margin-right: 0;
  }
  .landing-light .header-socials a { font-size: 17px; }
  .landing-light .nav-cta.track-beta { display: none; }
  .luna-hero { padding: 50px 0 54px; }
  .luna-copy h1 { font-size: 44px; }
  .luna-sub { font-size: 17px; }
  .download-pill { width: 100%; max-width: 320px; justify-content: flex-start; }
  .product-board { height: 440px; border-radius: 28px; }
  .shot-camera { width: 190px; height: 410px; top: 20px; }
  .shot-groups,
  .shot-profile { width: 145px; height: 315px; top: 88px; }
  .shot-groups { left: -8px; }
  .shot-profile { right: -8px; }
  .board-note { display: none; }
  .proof-ribbon {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 12px;
    padding: 22px 18px;
  }
  .proof-grid { grid-template-columns: 1fr; gap: 12px; }
  .proof-laurel {
    width: 54px;
    height: 104px;
  }
  .simple-section,
  .app-cards,
  .press-clean,
  .final-download { padding: 58px 0; }
  .section-title-row h2,
  .press-clean-card h2,
  .final-card h2 { font-size: 36px; }
  .section-title-row p,
  .final-card p { font-size: 16px; }
  .press-clean-card,
  .final-card { padding: 28px 22px; border-radius: 28px; }
}

/* Light redesign visual QA fixes */
.landing-header .logo.massive,
.landing-footer .logo.huge {
  width: 92px;
  height: auto;
  display: block;
}
.landing-header .brand,
.landing-footer .brandline {
  overflow: hidden;
}
@media (max-width: 620px) {
  .landing-light .container { padding: 0 20px; }
  .landing-header .logo.massive { width: 78px; height: auto; }
  .luna-hero { padding: 42px 0 48px; }
  .luna-hero-grid { gap: 30px; }
  .luna-copy h1 { font-size: 40px; line-height: 0.96; }
  .luna-sub { margin-top: 20px; font-size: 16px; line-height: 1.34; }
  .luna-actions { margin-top: 26px; gap: 18px; }
  .download-pill { min-height: 60px; }
  .download-pill img { width: 44px; height: 44px; }
  .download-pill strong { font-size: 20px; }
  .cta-note { margin-top: 10px; font-size: 12px; }
  .product-board { height: 400px; margin-top: 2px; }
  .shot-camera { width: 176px; height: 380px; top: 12px; }
  .shot-groups,
  .shot-profile { width: 134px; height: 292px; top: 82px; }
}
.landing-light .product-board { width: 100%; }

/* Dark restrained landing variant */
.landing-light {
  --paper: #080b12;
  --ink: #f8fafc;
  --soft-ink: rgba(248,250,252,0.68);
  --line: rgba(248,250,252,0.12);
  --blue: #3b82f6;
  --cream: #141923;
  --mint: #101c18;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(59,130,246,0.14), transparent 30rem),
    radial-gradient(circle at 92% 6%, rgba(239,68,68,0.10), transparent 28rem),
    var(--paper);
}
.landing-header {
  background: rgba(8,11,18,0.84);
  border-bottom: 1px solid rgba(248,250,252,0.08);
}
.landing-header .logo.massive,
.landing-footer .logo.huge {
  filter: invert(1);
}
.landing-light .nav-link { color: rgba(248,250,252,0.7); }
.landing-light .nav-link:hover { color: #fff; }
.landing-light .header-socials a { color: rgba(248,250,252,0.66); }
.landing-light .header-socials a:hover { color: #fff; }
.landing-light .nav-cta.track-beta,
.landing-light .btn.primary.track-beta {
  color: #080b12;
  background: #fff;
}
.landing-light .nav-cta.track-beta:hover,
.landing-light .btn.primary.track-beta:hover { background: #e8eef8; }
.luna-hero {
  background:
    radial-gradient(circle at 9% 22%, rgba(59,130,246,0.18), transparent 30rem),
    radial-gradient(circle at 92% 16%, rgba(239,68,68,0.12), transparent 28rem),
    linear-gradient(180deg, #080b12 0%, #0c111b 100%);
}
.luna-copy h1,
.section-title-row h2,
.press-clean-card h2,
.final-card h2,
.steps-grid h3,
.show-card h3,
.text-action { color: var(--ink); }
.luna-sub,
.section-title-row p,
.press-clean-card p,
.final-card p,
.steps-grid p,
.show-card p { color: var(--soft-ink); }
.download-pill {
  background: #fff;
  color: #080b12;
  box-shadow: 0 16px 40px rgba(255,255,255,0.12);
}
.download-pill:hover { background: #e8eef8; box-shadow: 0 18px 48px rgba(255,255,255,0.16); }
.download-pill small { color: rgba(8,11,18,0.58); }
.cta-note { color: rgba(248,250,252,0.46); }
.product-board {
  background: transparent;
  border-color: transparent;
}
.product-board::before { display: none; }
.board-note {
  color: #fff;
  background: rgba(8,11,18,0.78);
  border: 1px solid rgba(248,250,252,0.12);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}
.board-note span { color: rgba(248,250,252,0.48); }
.proof-row,
.simple-section,
.app-cards,
.press-clean,
.final-download { background: var(--paper); }
.proof-row {
  margin-top: -26px;
  padding: 0 0 54px;
  background:
    linear-gradient(180deg, #0c111b 0%, #080b12 100%);
}
.proof-ribbon {
  border-color: rgba(248,250,252,0.13);
  background:
    radial-gradient(circle at 16% 18%, rgba(59,130,246,0.22), transparent 22rem),
    radial-gradient(circle at 88% 72%, rgba(249,115,22,0.13), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035));
  box-shadow: 0 30px 90px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
}
.proof-grid { border-color: transparent; }
.proof-grid div {
  border-color: rgba(248,250,252,0.11);
  background: rgba(8,11,18,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.proof-grid span { color: rgba(248,250,252,0.46); }
.proof-laurel {
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255,255,255,0.12));
}
.steps-grid article,
.press-clean-card {
  background: rgba(255,255,255,0.055);
  border-color: rgba(248,250,252,0.11);
}
.show-card { border-color: rgba(248,250,252,0.11); }
.show-card.cream { background: #15171d; }
.show-card.blue { background: #101827; }
.show-card.green { background: #111c18; }
.final-card { background: #f8fafc; color: #080b12; }
.final-card h2 { color: #080b12; }
.final-card p { color: rgba(8,11,18,0.68); }
.final-card .text-action { color: #080b12; }
.landing-footer {
  background: #080b12;
  border-top-color: rgba(248,250,252,0.10);
}
.landing-footer .brandline,
.landing-footer .footnav a,
.landing-footer .social-icons a { color: rgba(248,250,252,0.62); }
.shot-camera { animation: phone-drift-main 5.6s ease-in-out infinite; }
.shot-groups { animation: phone-drift-side 6.4s ease-in-out infinite; }
.shot-profile { animation: phone-drift-other 6.9s ease-in-out infinite; }
@keyframes phone-drift-main {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes phone-drift-side {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 10px; }
}
@keyframes phone-drift-other {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
@media (prefers-reduced-motion: reduce) {
  .shot-camera,
  .shot-groups,
  .shot-profile { animation: none; }
}

/* Editorial dark pass */
.hero-kicker,
.section-eyebrow {
  margin: 0 0 18px;
  color: rgba(147,197,253,0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.luna-copy h1 {
  max-width: 780px;
  font-size: clamp(58px, 7.2vw, 98px);
  letter-spacing: -0.082em;
}
.luna-sub {
  max-width: 690px;
}
.product-board {
  background: transparent;
  transform: translateY(var(--board-parallax, 0px)) rotate(calc(var(--board-tilt, 0) * 1deg));
  transition: transform 40ms linear;
}
.product-board::before {
  display: none;
}
.story-section,
.feature-section {
  position: relative;
  padding: 116px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(37,99,235,0.14), transparent 28rem),
    #080b12;
}
.story-title,
.feature-intro {
  display: block;
  max-width: 880px;
  margin: 0 auto 72px;
  text-align: center;
}
.story-title {
  margin-bottom: clamp(120px, 9vw, 170px);
}
.story-title h2,
.feature-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}
.story-visual {
  position: sticky;
  top: calc(50vh - 325px);
  margin-top: 186px;
  height: 650px;
  border: 1px solid rgba(248,250,252,0.11);
  border-radius: 44px;
  background:
    radial-gradient(circle at 40% 26%, rgba(59,130,246,0.28), transparent 32%),
    linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 32px 90px rgba(0,0,0,0.25);
  transform: none;
}
.story-visual::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% -20%;
  height: 62%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.22), transparent 68%);
}
.story-phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #05070b;
  border-radius: 38px;
  background: #000;
  box-shadow: 0 24px 70px rgba(0,0,0,0.44);
}
.story-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-front {
  z-index: 2;
  width: 236px;
  height: 510px;
  left: 50%;
  top: 70px;
  transform: translate(calc(-42% + var(--story-front-x, 0px)), var(--story-front-y, 0px)) scale(calc(1 + var(--story-front-scale, 0))) rotate(2deg);
}
.phone-back {
  z-index: 1;
  width: 190px;
  height: 412px;
  left: 42px;
  top: 142px;
  transform: translate(var(--story-back-x, 0px), var(--story-back-y, 0px)) rotate(calc(-10deg + (var(--story-back-tilt, 0) * 1deg)));
  opacity: 0.68;
}
.story-orbit {
  position: absolute;
  z-index: 4;
  right: 38px;
  top: 54px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(248,250,252,0.16);
  border-radius: 50%;
  color: #080b12;
  background: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.story-list {
  display: grid;
  gap: 24px;
  margin-top: 0;
  padding-bottom: 84px;
}
.story-card {
  position: relative;
  min-height: 292px;
  padding: 30px 34px;
  border: 1px solid rgba(248,250,252,0.11);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.095), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, opacity 700ms ease;
}
.story-card span,
.feature-panel span {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(147,197,253,0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.story-card h3,
.feature-panel h3 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.story-card p,
.feature-panel p {
  max-width: 560px;
  margin: 0;
  color: rgba(248,250,252,0.66);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}
.feature-section {
  padding-top: 92px;
  background:
    radial-gradient(circle at 84% 14%, rgba(249,115,22,0.13), transparent 27rem),
    #080b12;
}
.feature-river {
  display: grid;
  gap: 18px;
}
.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: center;
  width: min(100%, 980px);
  min-height: 360px;
  padding: 30px 34px;
  border: 1px solid rgba(248,250,252,0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at 84% calc(24% + var(--panel-glow-y, 0px)), rgba(59,130,246,0.18), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 24px 70px rgba(0,0,0,0.18);
  transform: translateY(var(--panel-y, 0px)) rotate(calc(var(--panel-tilt, 0) * 1deg));
  transition: transform 40ms linear, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.feature-panel.offset {
  justify-self: end;
  grid-template-columns: 230px minmax(0, 1fr);
  background:
    radial-gradient(circle at 18% calc(24% + var(--panel-glow-y, 0px)), rgba(249,115,22,0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.03));
}
.feature-panel.offset div {
  order: 2;
}
.feature-panel.offset img {
  order: 1;
}
.feature-panel img {
  width: 188px;
  aspect-ratio: 9 / 19.5;
  height: auto;
  justify-self: center;
  object-fit: cover;
  border: 8px solid #05070b;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  transform: translate(var(--feature-img-x, 0px), var(--feature-img-y, 0px)) rotate(calc(3deg + (var(--feature-img-tilt, 0) * 1deg)));
  transition: transform 40ms linear;
}
.feature-panel.offset img {
  transform: translate(var(--feature-img-x, 0px), var(--feature-img-y, 0px)) rotate(calc(-4deg + (var(--feature-img-tilt, 0) * 1deg)));
}
.press-clean,
.final-download {
  background: #080b12;
}
.press-clean-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 42px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 88% 20%, rgba(59,130,246,0.18), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border-color: rgba(248,250,252,0.12);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.press-clean-card p {
  color: rgba(147,197,253,0.92);
}
.final-card {
  position: relative;
  overflow: hidden;
  padding: 76px 42px;
  border: 1px solid rgba(248,250,252,0.13);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.24), transparent 36rem),
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  color: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.final-card h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}
.final-card p {
  color: rgba(248,250,252,0.66);
}
.final-card .section-eyebrow {
  color: rgba(147,197,253,0.92);
}
.final-card .text-action {
  color: #fff;
}
.final-card .luna-actions .text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(248,250,252,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  text-decoration: none;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.final-card .luna-actions .text-action:hover {
  background: rgba(255,255,255,0.10);
}
.reveal-on-scroll {
  opacity: 0.55;
  transform: translateY(calc(28px + var(--panel-y, 0px)));
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(var(--panel-y, 0px));
}
@media (prefers-reduced-motion: reduce) {
  .story-orbit {
    animation: none;
  }
  .product-board,
  .story-visual,
  .feature-panel,
  .feature-panel img {
    transform: none;
    transition: none;
  }
  .shot-camera { transform: translateX(-50%); }
  .shot-groups { transform: rotate(-7deg); }
  .shot-profile { transform: rotate(7deg); }
  .phone-front { transform: translateX(-42%) rotate(2deg); }
  .phone-back { transform: rotate(-10deg); }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .story-grid {
    min-height: auto;
  }
  .story-list {
    position: static;
    top: auto;
    height: auto;
    display: grid;
    gap: 24px;
  }
  .story-card {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .story-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(147,197,253,0.34);
    background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 26px 72px rgba(0,0,0,0.24);
  }
  .feature-panel:hover {
    transform: translateY(calc(var(--panel-y, 0px) - 10px)) rotate(calc(var(--panel-tilt, 0) * 1deg)) scale(1.012);
    border-color: rgba(147,197,253,0.32);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 34px 90px rgba(0,0,0,0.28);
  }
  .feature-panel:hover img {
    transform: translate(var(--feature-img-x, 0px), calc(var(--feature-img-y, 0px) - 8px)) rotate(calc(3deg + (var(--feature-img-tilt, 0) * 1deg))) scale(1.035);
  }
  .feature-panel.offset:hover img {
    transform: translate(var(--feature-img-x, 0px), calc(var(--feature-img-y, 0px) - 8px)) rotate(calc(-4deg + (var(--feature-img-tilt, 0) * 1deg))) scale(1.035);
  }
  .press-clean-card:hover,
  .final-card:hover {
    transform: translateY(-8px) scale(1.008);
    border-color: rgba(147,197,253,0.28);
    box-shadow: 0 30px 88px rgba(0,0,0,0.26);
  }
  .proof-grid div {
    border-radius: 22px;
    transition: transform 200ms ease, background 200ms ease;
  }
  .proof-grid div:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.035);
  }
}
@media (max-width: 980px) {
  .story-section,
  .feature-section {
    padding: 82px 0;
  }
  .story-section::before,
  .feature-section::before {
    display: none;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }
  .story-visual {
    position: relative;
    top: auto;
    min-height: 560px;
    max-width: 560px;
    margin: 0 auto;
  }
  .story-list {
    gap: 24px;
    margin-top: 0;
    padding-bottom: 0;
  }
  .story-card {
    min-height: auto;
  }
  .feature-panel,
  .feature-panel.offset {
    grid-template-columns: 1fr;
    justify-self: stretch;
    text-align: left;
  }
  .feature-panel.offset div,
  .feature-panel.offset img {
    order: initial;
  }
}
@media (max-width: 620px) {
  .hero-kicker,
  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .luna-copy h1 {
    font-size: 44px;
  }
  .story-title,
  .feature-intro {
    margin-bottom: 36px;
    text-align: left;
  }
  .story-title h2,
  .feature-intro h2 {
    font-size: 39px;
  }
  .story-visual {
    display: none;
  }
  .phone-front {
    width: 176px;
    height: 380px;
    top: 28px;
  }
  .phone-back {
    width: 136px;
    height: 294px;
    left: 22px;
    top: 98px;
  }
  .story-orbit {
    right: 24px;
    top: 32px;
    width: 64px;
    height: 64px;
    font-size: 17px;
  }
  .story-card,
  .feature-panel {
    min-height: auto;
    padding: 26px;
    border-radius: 28px;
  }
  .proof-row {
    margin-top: -18px;
    padding-bottom: 44px;
  }
  .proof-ribbon {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding: 24px 18px;
  }
  .proof-laurel {
    display: none;
  }
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(var(--panel-y, 0px));
  }
  .story-card span,
  .feature-panel span {
    margin-bottom: 22px;
  }
  .story-card h3,
  .feature-panel h3 {
    font-size: 31px;
  }
  .story-card p,
  .feature-panel p {
    font-size: 16px;
  }
  .feature-panel img {
    width: 168px;
    height: auto;
  }
  .press-clean-card {
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 30px;
  }
  .final-card {
    padding: 52px 24px 54px;
    border-radius: 30px;
  }
  .final-card .luna-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .final-card .download-pill {
    width: 100%;
    max-width: 320px;
  }
  .final-card .text-action {
    min-height: 50px;
    align-items: center;
    justify-content: center;
  }
}
