:root {
  --bg: #080b12;
  --bg-2: #0d111b;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: #aab2c4;
  --soft: #d7dce8;
  --red: #f20535;
  --red-2: #ff214d;
  --red-dark: #9c001d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 32px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--red); color: #fff; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 5, 53, .18), transparent 36rem),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .06), transparent 20rem),
    linear-gradient(180deg, #080b12 0%, #0a0e17 44%, #070910 100%);
}
.orb { position: absolute; border-radius: 999px; filter: blur(30px); opacity: .55; }
.orb-one { width: 460px; height: 460px; left: -160px; top: 240px; background: rgba(242, 5, 53, .2); animation: drift 14s var(--ease) infinite alternate; }
.orb-two { width: 520px; height: 520px; right: -180px; top: 30px; background: rgba(242, 5, 53, .24); animation: drift 18s var(--ease) infinite alternate-reverse; }
.grid-glow { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 70%); }

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  height: 70px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(7, 10, 17, .62);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 70px rgba(0,0,0,.24);
  transition: background .3s ease, border-color .3s ease, top .3s ease;
}
.navbar.scrolled { top: 10px; background: rgba(7, 10, 17, .88); border-color: rgba(255,255,255,.15); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; }
.brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 9px; }
.brand span span { color: var(--red-2); }
.navbar nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 14px; font-weight: 800; }
.navbar nav a { transition: color .2s ease; }
.navbar nav a:hover { color: #fff; }
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(242,5,53,.28);
}
.nav-cta small {
  position: absolute;
  top: -17px;
  right: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #f2b705;
  color: #1b1200;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-pad { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.hero {
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .24em;
}
.eyebrow span { width: 9px; height: 9px; border-radius: 99px; background: var(--red); box-shadow: 0 0 18px rgba(242,5,53,.9); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(58px, 8.2vw, 97px);
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 950;
}
h1 em { color: var(--red); font-style: normal; text-shadow: 0 0 34px rgba(242,5,53,.35); }
.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}
.hero-actions, .store-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-actions { margin-bottom: 20px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s var(--ease), box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); box-shadow: 0 18px 50px rgba(242,5,53,.3); }
.btn-ghost { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.store-row { margin-bottom: 20px; }
.store-pill {
  width: 190px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #0a0c12;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}
.store-pill.dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.store-pill span { color: #808898; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.store-pill strong { font-size: 19px; line-height: 1; letter-spacing: -.02em; }
.mini-note { color: var(--muted); font-weight: 700; }

.hero-stage {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.phone {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: #0b0f18;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.08);
}
.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 24%, transparent 70%, rgba(255,255,255,.08));
  mix-blend-mode: screen;
  opacity: .25;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-main { width: min(340px, 70vw); aspect-ratio: 944 / 2048; animation: floatPhone 7s var(--ease) infinite; z-index: 4; }
.phone-back { position: absolute; width: 230px; aspect-ratio: 944 / 2048; opacity: .72; filter: saturate(.85) brightness(.84); }
.phone-left { left: 0; transform: rotate(-9deg) translateY(48px); }
.phone-right { right: 0; transform: rotate(10deg) translateY(-44px); }
.live-chip {
  position: absolute;
  z-index: 6;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,13,22,.72);
  backdrop-filter: blur(18px);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
}
.chip-one { left: 4%; top: 25%; }
.chip-two { right: 5%; bottom: 20%; }

.ticker { border-block: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); overflow: hidden; margin-bottom: 50px }
.ticker-track { display: flex; width: max-content; gap: 34px; padding: 16px 0; animation: ticker 34s linear infinite; }
.ticker span { position: relative; color: #fff; font-size: 13px; font-weight: 900; white-space: nowrap; }
.ticker span::after { content: ""; width: 5px; height: 5px; background: var(--red); border-radius: 99px; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); }

.section { padding-top: 110px; padding-bottom: 110px; }
.section-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading h2, .split-copy h2, .story-card h2, .waitlist-card h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}
.section-heading p, .split-copy p, .story-card p, .waitlist-card p { color: var(--muted); font-size: 18px; line-height: 1.72; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.feature-card, .why-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}
.feature-card:hover, .why-card:hover { transform: translateY(-6px); border-color: rgba(242,5,53,.55); background: linear-gradient(180deg, rgba(242,5,53,.12), rgba(255,255,255,.045)); }
.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 15px;
  background: rgba(242,5,53,.13);
  color: var(--red-2);
  font-size: 13px;
  font-weight: 950;
}
.feature-card h3, .why-card h3 { margin-bottom: 12px; font-size: 24px; letter-spacing: -.04em; }
.feature-card p, .why-card p { color: var(--muted); margin-bottom: 0; }

.product-section { padding-top: 120px; padding-bottom: 120px; }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: minmax(520px, 1fr) minmax(0, .9fr); }
.split-section.reverse .split-copy { order: 2; }
.split-section.reverse .dual-screens { order: 1; }
.dark-panel {
  width: min(calc(100% - 40px), 1280px);
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(242,5,53,.13), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.12);
  padding-left: clamp(24px, 5vw, 70px);
  padding-right: clamp(24px, 5vw, 70px);
}
.clean-list { display: grid; gap: 13px; margin: 30px 0 34px; padding: 0; list-style: none; color: var(--soft); font-weight: 760; }
.clean-list li { position: relative; padding-left: 26px; }
.clean-list li::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--red); position: absolute; left: 0; top: .72em; box-shadow: 0 0 18px rgba(242,5,53,.75); }
.text-link { color: #fff; font-weight: 950; display: inline-flex; align-items: center; gap: 10px; }
.text-link::after { content: "→"; color: var(--red-2); transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.screen-composition { position: relative; display: grid; place-items: center; min-height: 620px; }
.product-phone { width: min(340px, 82vw); aspect-ratio: 944 / 2048; }
.tall-phone { transform: rotate(2deg); }
.floating-card {
  position: absolute;
  right: 8%;
  top: 14%;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.26);
}
.floating-card strong { color: var(--red-2); font-size: 12px; letter-spacing: .2em; }
.floating-card span { color: #fff; font-size: 13px; font-weight: 800; }
.dual-screens { position: relative; min-height: 660px; display: flex; align-items: center; justify-content: center; gap: 26px; }
.small-phone { width: min(265px, 42vw); }
.raised { transform: translateY(-38px) rotate(-3deg); }
.lowered { transform: translateY(42px) rotate(3deg); }

.city-pulse-section { padding-top: 120px; padding-bottom: 120px; }
.city-pulse-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 330px) 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 58px;
}
.topic-list { display: grid; gap: 18px; }
.topic-list div {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.055);
}
.topic-list strong { display: block; margin-bottom: 6px; font-size: 18px; }
.topic-list span { color: var(--muted); }

.why-section { padding-top: 110px; padding-bottom: 110px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.why-card { min-height: 230px; }

.story-section { padding-top: 110px; padding-bottom: 110px; }
.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: center;
  padding: clamp(28px, 6vw, 70px);
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(242,5,53,.09));
  box-shadow: var(--shadow);
}
.story-card strong { display: block; margin-top: 26px; font-size: 20px; }
.story-visual { height: 430px; border-radius: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) brightness(.78); }

.showcase-section { padding-top: 110px; padding-bottom: 110px; overflow: hidden; }
.showcase-strip { display: flex; gap: 20px; margin-top: 54px; overflow-x: auto; padding: 8px 0 26px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.showcase-strip figure {
  flex: 0 0 238px;
  margin: 0;
  scroll-snap-align: center;
}
.showcase-strip img { width: 238px; aspect-ratio: 944 / 2048; object-fit: cover; border-radius: 32px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.showcase-strip figcaption { margin-top: 14px; color: #fff; font-weight: 950; text-align: center; }

.waitlist-section { width: 100%; max-width: none; padding-top: 110px; padding-bottom: 110px; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 18rem), linear-gradient(135deg, #d90025, #f20535 45%, #9b001e); position: relative; overflow: hidden; }
.waitlist-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px); background-size: 34px 34px; opacity: .18; }
.waitlist-card { position: relative; z-index: 1; width: min(calc(100% - 40px), 780px); margin: 0 auto; text-align: center; }
.waitlist-card img { width: 74px; height: 74px; object-fit: contain; margin: 0 auto 24px; border-radius: 18px; background: #fff; padding: 6px; }
.waitlist-card h2 { color: #fff; }
.waitlist-card p { color: rgba(255,255,255,.82); }
.waitlist-form { display: flex; gap: 10px; margin: 36px auto 12px; max-width: 620px; }
.waitlist-form input {
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: #090d16;
  outline: none;
}
.waitlist-form input:focus { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.waitlist-form button {
  height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 14px;
  background: #06080d;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}
.form-message { min-height: 24px; font-size: 14px; font-weight: 700; }

.footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 70px 0 42px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  color: var(--muted);
}
.footer img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 14px; background:white }
.footer h3, .footer h4 { color: #fff; margin: 0 0 15px; }
.footer p { margin: 0; max-width: 280px; }
.footer a { display: block; margin: 10px 0; transition: color .2s ease; }
.footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 99px; background: rgba(255,255,255,.08); color: #fff; font-size: 12px; font-weight: 950; }
.copyright { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; max-width: none !important; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes floatPhone { 0%, 100% { transform: translateY(0) rotate(.5deg); } 50% { transform: translateY(-18px) rotate(-.5deg); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes drift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(70px, -35px, 0); } }

@media (max-width: 1040px) {
  .navbar nav { display: none; }
  .hero, .split-section, .split-section.reverse, .story-card { grid-template-columns: 1fr; }
  .hero { gap: 40px; text-align: center; padding-top: 130px; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-stage { min-height: 560px; }
  .phone-left { left: 10%; }
  .phone-right { right: 10%; }
  .feature-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section.reverse .split-copy, .split-section.reverse .dual-screens { order: initial; }
  .split-copy { text-align: left; }
  .city-pulse-layout { grid-template-columns: 1fr; justify-items: center; }
  .topic-list { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .story-visual { height: 360px; }
  .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .navbar { height: 60px; top: 10px; width: min(calc(100% - 20px), var(--max)); }
  .brand img { width: 34px; height: 34px; }
  .brand > span { font-size: 14px; }
  .nav-cta { min-width: 122px; height: 42px; padding: 0 14px; font-size: 12px; }
  .nav-cta small { display: none; }
  .section-pad { width: min(calc(100% - 26px), var(--max)); }
  .hero { padding-top: 110px; padding-bottom: 58px; min-height: auto; }
  h1 { font-size: clamp(48px, 15vw, 68px); letter-spacing: -.07em; }
  .section-heading h2, .split-copy h2, .story-card h2, .waitlist-card h2 { font-size: clamp(36px, 11vw, 54px); letter-spacing: -.055em; }
  .hero-text, .section-heading p, .split-copy p, .story-card p, .waitlist-card p { font-size: 16px; }
  .hero-actions, .store-row { justify-content: center; }
  .btn { width: 100%; max-width: 320px; }
  .store-pill { width: min(100%, 320px); }
  .hero-stage { min-height: 520px; }
  .phone-main { width: min(285px, 78vw); }
  .phone-back { display: none; }
  .live-chip { display: none; }
  .feature-grid, .why-grid, .topic-list { grid-template-columns: 1fr; }
  .feature-card, .why-card { min-height: auto; }
  .product-section, .section, .why-section, .story-section, .showcase-section { padding-top: 76px; padding-bottom: 76px; }
  .screen-composition { min-height: 520px; }
  .dual-screens { min-height: 520px; gap: 12px; }
  .small-phone { width: min(205px, 47vw); border-radius: 28px; }
  .product-phone { border-radius: 34px; }
  .raised { transform: translateY(-24px) rotate(-2deg); }
  .lowered { transform: translateY(24px) rotate(2deg); }
  .dark-panel { width: min(calc(100% - 26px), 1280px); border-radius: 32px; }
  .story-card { gap: 30px; border-radius: 32px; }
  .story-visual { height: 260px; }
  .showcase-strip figure { flex-basis: 190px; }
  .showcase-strip img { width: 190px; border-radius: 26px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
  .footer { grid-template-columns: 1fr; gap: 28px; padding-top: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


.main-sub-section {
padding-top: 50px;
}