:root {
  --bg: #09090b;
  --surface: #111115;
  --surface-high: #18181c;
  --border: #1e1e26;
  --primary: #e8602c;
  --primary-dim: rgba(232, 96, 44, 0.16);
  --text: #f2f2f2;
  --text-secondary: #8c8c99;
  --text-muted: #52525c;
  --success: #22c55e;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 96, 44, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #0b0b0e 0%, #09090b 38%, #070709 100%);
  font-family: "Inter", sans-serif;
}

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar,
.footer,
.hero-card,
.feature,
.wide-panel,
.legal-card,
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.topbar,
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
}

.brand,
.nav a,
.footer a,
.route-list a,
.button {
  text-decoration: none;
  color: inherit;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text);
}

.nav,
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a,
.footer a {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.hero,
.wide-panel,
.feature-grid,
.support-grid,
.showcase-grid,
.showcase-intro,
.store-strip,
.problem-solution,
.audience-strip,
.faq-section {
  margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  min-height: 66vh;
  padding: 28px 0 8px;
}

.hero-copy {
  padding: 24px 6px 24px 4px;
}

.eyebrow,
.feature-kicker,
.card-label,
.effective-date {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.2rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.lede,
.feature p,
.legal-card p,
.support-card li,
.route-list a {
  color: var(--text-secondary);
  line-height: 1.6;
}

.lede {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-stats div {
  padding: 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.hero-stats strong,
.teleprompter-meta span {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  font-weight: 600;
}

.button:hover,
.nav a:hover,
.footer a:hover,
.route-list a:hover {
  transform: translateY(-1px);
}

.button-solid {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.button-ghost {
  background: transparent;
  color: var(--text);
}

.hero-card,
.feature,
.wide-panel,
.legal-card,
.support-card {
  border-radius: 16px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: var(--surface-high);
}

.hero-stage {
  background:
    radial-gradient(circle at 12% 14%, rgba(232, 96, 44, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #141419;
}

.device-stack {
  position: relative;
  min-height: auto;
}

.device-shot {
  margin: 0;
}

.device-shot-primary {
  width: min(100%, 520px);
  margin-left: auto;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-note span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}

.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  padding: 24px;
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.store-strip-copy .lede {
  margin-bottom: 0;
}

.store-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.store-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  min-height: 112px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #050507;
  text-decoration: none;
  color: var(--text);
  align-items: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 96, 44, 0.34);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.store-badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-badge-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-badge-copy {
  display: grid;
  gap: 4px;
}

.store-badge strong {
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.store-badge-top,
.store-badge-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.store-badge-note {
  grid-column: 1 / -1;
  color: var(--primary);
  margin-top: 2px;
}

.store-badge.is-disabled {
  cursor: default;
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-card,
.audience-card,
.faq-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.problem-card p,
.faq-card p,
.audience-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature,
.support-card,
.legal-card {
  padding: 24px;
  background: var(--surface);
}

.feature p {
  margin-bottom: 0;
}

.showcase-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: end;
}

.showcase-intro .lede {
  margin: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.showcase-card img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}

.showcase-copy p {
  margin-bottom: 0;
}

.feature h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.08;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.wide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--surface-high);
}

.cta-stack {
  display: grid;
  gap: 12px;
  align-content: center;
}

.cta-stack .button {
  width: 100%;
}

.final-cta .lede {
  margin-bottom: 0;
}

.legal-card h2,
.support-card h2 {
  line-height: 1.05;
  margin-top: 24px;
  color: var(--text);
}

.legal-card h2:first-child,
.support-card h2:first-child {
  margin-top: 0;
}

.legal-card a,
.support-card a {
  color: var(--primary);
}

.legal-page,
.support-page {
  padding: 24px 0 8px;
}

.legal-hero {
  margin: 0 0 24px;
  padding: 16px 4px;
}

.legal-card h2,
.support-card h2 {
  margin-top: 26px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.legal-card h2:first-child,
.support-card h2:first-child {
  margin-top: 0;
}

.support-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.footer {
  margin-top: 24px;
}

@media (max-width: 840px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .feature-grid,
  .wide-panel,
  .support-grid,
  .showcase-grid,
  .showcase-intro,
  .store-strip,
  .problem-solution,
  .audience-strip,
  .faq-grid,
  .topbar,
  .footer {
    grid-template-columns: 1fr;
  }

  .store-badges {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .device-stack {
    min-height: auto;
  }

  .device-shot-primary {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    transform: none;
  }

  .topbar,
  .footer {
    align-items: flex-start;
  }

  h1 {
    max-width: none;
  }
}
