:root {
  --bg: #050607;
  --black: #08090b;
  --panel: #0d0f12;
  --panel-2: #14181c;
  --line: #24282d;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --soft: #b7bcc2;
  --muted: #777d85;
  --red: #f51b2b;
  --red-dark: #b70f1c;
  --teal: #06afa0;
  --green: #35d76f;
  --yellow: #ffd050;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  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", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.skip-link:focus {
  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;
}

.container {
  width: min(1228px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 6, 7, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(5, 6, 7, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 16px;
  background: var(--red);
  box-shadow: 0 8px 26px rgba(245, 27, 43, 0.28);
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 24px;
  background: #fff;
  clip-path: polygon(56% 0, 17% 47%, 47% 47%, 34% 100%, 84% 35%, 53% 35%);
}

.brand-name {
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 1000;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--red);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(245, 27, 43, 0.25);
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover,
.button:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.phone-dot {
  width: 10px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 908px;
  padding: 120px 0 58px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-soft);
}

.hero-media {
  position: absolute;
  inset: 88px 0 0;
  z-index: -3;
  background: #071014;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.9) contrast(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.36) 32%, rgba(5, 6, 7, 0.52) 73%, rgba(5, 6, 7, 0.94) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.46), rgba(5, 6, 7, 0.18) 48%, rgba(5, 6, 7, 0.96) 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 4px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  max-width: 630px;
  padding-top: 1px;
}

.launch-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 37px;
  margin: 0 0 34px;
  padding: 0 17px;
  border: 1px solid rgba(245, 27, 43, 0.5);
  border-radius: 999px;
  background: rgba(245, 27, 43, 0.12);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.launch-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(245, 27, 43, 0.85);
}

.eyebrow {
  min-height: auto;
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.eyebrow.teal {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  max-width: 610px;
  color: #fff;
  font-size: 5.95rem;
  line-height: 0.86;
  font-weight: 1000;
  text-transform: uppercase;
}

h1 .line {
  display: block;
  font-style: normal;
}

h1 strong {
  color: var(--red);
}

h1 em {
  color: var(--teal);
}

h1 .outline {
  display: inline;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.32);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.14rem;
  font-weight: 650;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 8px;
  font-weight: 1000;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  gap: 12px;
  padding: 18px 30px;
}

.button-primary {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(245, 27, 43, 0.24);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 6, 7, 0.42);
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong,
.stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 1000;
}

.hero-stats span,
.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.hero-phone img {
  position: relative;
  width: min(100%, 320px);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.phone-glow {
  position: absolute;
  width: 340px;
  height: 500px;
  background: linear-gradient(135deg, rgba(245, 27, 43, 0.3), rgba(6, 175, 160, 0.24));
  filter: blur(74px);
  opacity: 0.8;
}

.ticker {
  overflow: hidden;
  background: var(--red);
  color: #fff;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 26px;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.ticker span::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.download-content h2 {
  margin-bottom: 16px;
  font-size: 3.25rem;
  line-height: 0.98;
  font-weight: 1000;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.lab-section p,
.download-content p,
.feature-card p,
.step-copy p,
.quote-card p {
  color: var(--soft);
}

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

.feature-card,
.step-card,
.lab-card,
.stat-card,
.quote-card,
.launch-form {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.feature-card {
  min-height: 246px;
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 27, 43, 0.5);
  background: linear-gradient(180deg, rgba(245, 27, 43, 0.08), rgba(255, 255, 255, 0.02));
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(245, 27, 43, 0.13);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.bolt-icon::before {
  width: 18px;
  height: 25px;
  background: var(--red);
  clip-path: polygon(56% 0, 16% 48%, 45% 48%, 34% 100%, 86% 34%, 55% 34%);
}

.money-icon::before {
  width: 20px;
  height: 20px;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.money-icon::after {
  width: 3px;
  height: 26px;
  background: var(--green);
}

.group-icon::before,
.group-icon::after {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--teal);
}

.group-icon::before {
  transform: translateX(-8px);
}

.group-icon::after {
  transform: translateX(8px);
  opacity: 0.6;
}

.trophy-icon::before {
  width: 24px;
  height: 22px;
  border: 3px solid var(--yellow);
  border-radius: 4px 4px 12px 12px;
}

.pin-icon::before {
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
}

.shield-icon::before {
  width: 22px;
  height: 26px;
  background: var(--teal);
  clip-path: polygon(50% 0, 92% 18%, 82% 78%, 50% 100%, 18% 78%, 8% 18%);
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 1.16rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.steps-section,
.lab-section {
  border-block: 1px solid var(--line-soft);
  background: #080a0d;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  overflow: hidden;
}

.step-card:nth-child(even) {
  grid-template-columns: 1fr minmax(260px, 0.42fr);
}

.step-card:nth-child(even) .step-image {
  order: 2;
}

.step-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(245, 27, 43, 0.28), transparent 26%),
    linear-gradient(135deg, #161b20, #060708);
}

.step-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.4) 18px 20px);
  transform: skewY(-11deg);
}

.car-shape {
  position: absolute;
  left: 50%;
  bottom: 72px;
  width: 250px;
  height: 72px;
  transform: translateX(-50%) skewX(-12deg);
  border-radius: 10px 34px 10px 10px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
}

.car-shape::before,
.car-shape::after {
  content: "";
  position: absolute;
  bottom: -25px;
  width: 52px;
  height: 52px;
  border: 10px solid #050607;
  border-radius: 50%;
  background: #fff;
}

.car-shape::before {
  left: 32px;
}

.car-shape::after {
  right: 34px;
}

.race-light {
  position: absolute;
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.race-light.red {
  top: 72px;
  background: var(--red);
  box-shadow: 0 0 36px rgba(245, 27, 43, 0.92);
}

.race-light.green {
  top: 132px;
  background: var(--green);
  box-shadow: 0 0 36px rgba(53, 215, 111, 0.8);
}

.finish-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.18) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.18) 75%);
  background-position: 0 0, 22px 22px;
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.step-copy {
  padding: 52px;
  display: grid;
  align-content: center;
}

.step-copy span {
  color: rgba(255, 255, 255, 0.08);
  font-size: 4rem;
  line-height: 1;
  font-weight: 1000;
}

.step-copy h3 {
  margin: 12px 0 12px;
  font-size: 1.75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(380px, 1fr);
  gap: 52px;
  align-items: start;
}

.lab-card {
  padding: 28px;
}

.lab-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.lab-top span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.lab-top strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 1000;
}

.lab-top b {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
}

.range-field {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  color: var(--soft);
  font-weight: 850;
}

.range-field strong {
  color: var(--red);
  font-size: 1.78rem;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.pot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.pot-grid div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.pot-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.pot-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.28rem;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.stat-card {
  min-height: 152px;
  padding: 26px;
  display: grid;
  align-content: end;
}

.stat-card strong {
  color: var(--red);
  font-size: 2.3rem;
}

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

.quote-card {
  padding: 26px;
}

.stars {
  color: var(--yellow);
  margin-bottom: 18px;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  margin-top: 22px;
}

.quote-card span {
  color: var(--muted);
}

.download-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.download-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1666947520667-371348873d21?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&w=1400");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.download-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg), rgba(5, 6, 7, 0.64), var(--bg));
}

.download-content {
  max-width: 760px;
}

.download-content .launch-pill {
  margin-inline: auto;
}

.download-content h2 {
  font-size: 5rem;
}

.download-actions {
  justify-content: center;
}

.store-button {
  flex-direction: column;
  align-items: flex-start;
  min-width: 196px;
  padding: 14px 20px;
  color: #111;
  background: #fff;
  text-align: left;
}

.store-button span {
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
}

.store-button strong {
  font-size: 1.08rem;
}

.store-button.outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.store-button.outline span {
  color: var(--muted);
}

.launch-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 30px;
  padding: 18px;
  text-align: left;
}

.launch-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.launch-form input {
  min-height: 52px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.launch-form .button {
  min-height: 52px;
  padding: 12px 18px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--green);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line-soft);
  background: #050607;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer-layout p {
  margin: 0;
}

.footer-layout > a:last-child {
  color: #fff;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header-cta:focus-visible,
.primary-nav a:focus-visible,
.button:focus-visible,
.store-button:focus-visible,
.nav-toggle:focus-visible,
.launch-form input:focus {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav.is-open {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .primary-nav a {
    padding: 14px 12px;
  }

  .hero-layout,
  .lab-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  h1 {
    max-width: 720px;
    font-size: 4.9rem;
  }

  .hero-phone {
    display: none;
  }

  .feature-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1228px);
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .brand-mark::before {
    width: 15px;
    height: 21px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .primary-nav.is-open {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 28px;
  }

  .hero-media {
    inset: 68px 0 0;
  }

  .hero-media img {
    object-position: 47% center;
    opacity: 0.58;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.78)),
      linear-gradient(180deg, rgba(5, 6, 7, 0.52), rgba(5, 6, 7, 0.28) 40%, rgba(5, 6, 7, 0.95));
  }

  .scanlines {
    opacity: 0.1;
  }

  .hero-layout {
    gap: 22px;
  }

  .launch-pill,
  .eyebrow {
    min-height: 31px;
    margin-bottom: 18px;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  h1 {
    margin-bottom: 16px;
    max-width: 330px;
    font-size: 3.16rem;
    line-height: 0.88;
  }

  .hero-text {
    max-width: 330px;
    font-size: 0.98rem;
    line-height: 1.58;
    font-weight: 600;
  }

  .hero-actions,
  .download-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .button,
  .store-button {
    min-height: 50px;
    border-radius: 8px;
    font-size: 0.84rem;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .feature-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid,
  .pot-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-stats strong {
    font-size: 1.15rem;
  }

  .hero-stats span {
    margin-top: 5px;
    font-size: 0.62rem;
  }

  .hero-phone {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .download-content h2 {
    font-size: 2.08rem;
    line-height: 1.02;
  }

  .feature-card {
    min-height: 0;
    padding: 14px;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .bolt-icon::before {
    width: 14px;
    height: 20px;
  }

  .money-icon::before {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .money-icon::after {
    height: 22px;
  }

  .group-icon::before,
  .group-icon::after {
    width: 14px;
    height: 14px;
  }

  .group-icon::before {
    transform: translateX(-6px);
  }

  .group-icon::after {
    transform: translateX(6px);
  }

  .trophy-icon::before {
    width: 19px;
    height: 17px;
    border-width: 3px;
  }

  .pin-icon::before {
    width: 16px;
    height: 16px;
  }

  .shield-icon::before {
    width: 18px;
    height: 22px;
  }

  .feature-card h3 {
    margin: 14px 0 8px;
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .feature-card p {
    font-size: 0.79rem;
    line-height: 1.38;
  }

  .step-card,
  .step-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .step-card:nth-child(even) .step-image {
    order: initial;
  }

  .step-image {
    min-height: 150px;
  }

  .car-shape {
    width: 198px;
    height: 58px;
    bottom: 52px;
  }

  .car-shape::before,
  .car-shape::after {
    bottom: -20px;
    width: 42px;
    height: 42px;
    border-width: 8px;
  }

  .step-copy {
    padding: 22px;
  }

  .step-copy span {
    font-size: 2.6rem;
  }

  .step-copy h3 {
    font-size: 1.24rem;
  }

  .lab-card,
  .stat-card,
  .quote-card,
  .launch-form {
    padding: 18px;
  }

  .lab-top {
    align-items: flex-start;
  }

  .lab-top strong {
    font-size: 1.05rem;
  }

  .stat-card {
    min-height: 98px;
    padding: 16px;
  }

  .stat-card strong {
    font-size: 1.55rem;
  }

  .stat-card span {
    font-size: 0.63rem;
  }

  .download-section {
    padding: 64px 0;
  }

  .download-content h2 {
    max-width: 330px;
    margin-inline: auto;
  }

  .download-content p {
    font-size: 0.98rem;
  }

  .launch-form {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1228px);
  }

  h1 {
    font-size: 2.86rem;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .button {
    padding-inline: 18px;
  }

  .feature-card {
    padding: 12px;
  }

  .feature-card h3 {
    font-size: 0.78rem;
  }

  .feature-card p {
    font-size: 0.74rem;
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
