:root {
  --bg: #f4f8fc;
  --bg-deep: #dfeeff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #12213d;
  --muted: #5d6d89;
  --line: rgba(18, 33, 61, 0.08);
  --accent: #0b73d8;
  --accent-deep: #0e4ec8;
  --teal: #16d3cf;
  --sun: #ffcc66;
  --shadow-xl: 0 34px 90px rgba(18, 33, 61, 0.16);
  --shadow-lg: 0 18px 45px rgba(18, 33, 61, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(22, 211, 207, 0.18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(11, 115, 216, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 204, 102, 0.18), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 46%, #f7fbff 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
  opacity: 0.45;
}

.site-header,
.hero,
.proof-strip,
.launch-band,
.section,
.cta-section,
.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(18, 33, 61, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(11, 115, 216, 0.18);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 36px rgba(11, 115, 216, 0.28);
}

.button-secondary {
  border: 1px solid rgba(18, 33, 61, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 42px;
  align-items: center;
  padding: 82px 0 42px;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 6rem);
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-text,
.section-heading p,
.showcase-copy p,
.cta-copy p,
.feature-card p,
.scene-card p,
.detail-list span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

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

.hero-trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.store-pill,
.hero-inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 33, 61, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(18, 33, 61, 0.08);
  font-weight: 700;
}

.store-pill {
  background: rgba(11, 115, 216, 0.08);
  color: var(--accent);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.signal-list li {
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow-lg);
}

.signal-list strong,
.feature-card h3,
.scene-card h3,
.detail-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.signal-list span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 820px;
  padding: 24px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.85;
}

.hero-glow-a {
  top: 100px;
  left: 70px;
  width: 240px;
  height: 240px;
  background: rgba(22, 211, 207, 0.42);
}

.hero-glow-b {
  right: 30px;
  bottom: 80px;
  width: 260px;
  height: 260px;
  background: rgba(11, 115, 216, 0.32);
}

.hero-badge {
  position: absolute;
  top: 8px;
  right: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.hero-badge img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-badge strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-xl);
  animation: float-card 7.4s ease-in-out infinite;
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(18, 33, 61, 0.1);
}

.phone-left {
  top: 148px;
  left: 10px;
  width: 250px;
  aspect-ratio: 706 / 1600;
  transform: rotate(-10deg);
  animation-delay: -1.2s;
}

.phone-center {
  top: 92px;
  left: 180px;
  z-index: 2;
  width: 315px;
  aspect-ratio: 940 / 2064;
}

.phone-right {
  top: 240px;
  right: 6px;
  width: 245px;
  aspect-ratio: 690 / 1600;
  transform: rotate(11deg);
  animation-delay: -2.4s;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.proof-strip div {
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(18, 33, 61, 0.08);
}

.launch-band {
  padding-top: 22px;
}

.launch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(22, 211, 207, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(11, 115, 216, 0.12), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow-lg);
}

.launch-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.launch-copy p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.launch-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.launch-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.launch-links a {
  color: var(--muted);
  font-weight: 700;
}

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

.legal-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-lg);
}

.legal-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.section,
.cta-section {
  padding: 108px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.showcase-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.feature-grid,
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-card,
.scene-card,
.showcase-panel,
.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-lg);
}

.feature-card,
.scene-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.showcase-copy {
  max-width: 620px;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.detail-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  display: block;
}

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

.showcase-metrics div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(18, 33, 61, 0.08);
}

.showcase-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.showcase-metrics span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.showcase-carousel {
  min-width: 0;
}

.carousel-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(22, 211, 207, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-lg);
}

.carousel-stage {
  position: relative;
  min-height: 760px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px) scale(0.98);
  transition:
    opacity 360ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.showcase-panel {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.82));
}

.showcase-panel img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.carousel-controls {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(18, 33, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(18, 33, 61, 0.1);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.carousel-arrow:hover {
  transform: translateY(-1px);
  background: rgba(11, 115, 216, 0.1);
  color: var(--accent);
}

.carousel-copy {
  display: grid;
  gap: 8px;
  padding: 20px 8px 6px;
}

.carousel-eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.carousel-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.carousel-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.carousel-thumb {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(18, 33, 61, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.carousel-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1.36;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.84));
}

.carousel-thumb span {
  font-weight: 700;
  color: var(--muted);
}

.carousel-thumb:hover,
.carousel-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(11, 115, 216, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(18, 33, 61, 0.08);
}

.carousel-thumb.is-active span {
  color: var(--ink);
}

.scene-card {
  min-height: 220px;
}

.scene-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.scene-card:first-child {
  background:
    radial-gradient(circle at top right, rgba(22, 211, 207, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(22, 211, 207, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(11, 115, 216, 0.12), rgba(255, 255, 255, 0.86));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-meta p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-weight: 700;
}

.legal-main {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding: 68px 0 42px;
}

.legal-page-shell .site-header {
  position: sticky;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
  margin-bottom: 34px;
}

.legal-hero {
  max-width: 760px;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.legal-note {
  display: inline-flex;
  margin: 24px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(18, 33, 61, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.legal-hero-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(22, 211, 207, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow-lg);
}

.legal-hero-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.legal-hero-card p:last-of-type {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-lg);
}

.legal-sidebar a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.legal-sidebar a:hover {
  background: rgba(11, 115, 216, 0.08);
  color: var(--accent);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-lg);
}

.policy-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.policy-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.78;
}

.policy-card p {
  margin: 0 0 14px;
}

.policy-card ul {
  margin: 0;
  padding-left: 22px;
}

.policy-card ul ul {
  margin-top: 8px;
}

.policy-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

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

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

@keyframes float-card {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 760px;
    max-width: 760px;
    margin-inline: auto;
    width: 100%;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .launch-card,
  .legal-hero-grid {
    grid-template-columns: 1fr;
  }

  .launch-actions {
    justify-items: start;
  }

  .launch-links {
    justify-content: flex-start;
  }

  .signal-list,
  .feature-grid,
  .scene-grid,
  .legal-grid,
  .proof-strip,
  .showcase-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    border-radius: 28px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .hero-visual {
    min-height: 620px;
    padding: 0;
  }

  .hero-badge {
    top: 0;
    right: 18px;
    left: 18px;
  }

  .phone-left {
    top: 156px;
    left: 0;
    width: 160px;
    border-radius: 26px;
  }

  .phone-center {
    top: 110px;
    left: 50%;
    width: min(280px, 62vw);
    transform: translateX(-50%);
    border-radius: 30px;
  }

  .phone-right {
    top: 230px;
    right: 0;
    width: 160px;
    border-radius: 26px;
  }

  .signal-list,
  .feature-grid,
  .scene-grid,
  .legal-grid,
  .proof-strip,
  .showcase-metrics {
    grid-template-columns: 1fr;
  }

  .carousel-stage {
    min-height: 620px;
  }

  .carousel-thumbs {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .section,
  .cta-section {
    padding-top: 82px;
  }

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

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

@media (max-width: 560px) {
  .site-header,
  .hero,
  .proof-strip,
  .launch-band,
  .section,
  .cta-section,
  .site-footer,
  .legal-main {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand span,
  .footer-brand span {
    font-size: 0.98rem;
  }

  .hero-text,
  .section-heading p,
  .showcase-copy p,
  .cta-copy p {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-badge {
    left: 12px;
    right: 12px;
    gap: 10px;
    padding: 12px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone-center {
    top: 132px;
    width: min(250px, 66vw);
  }

  .hero-badge strong {
    font-size: 0.94rem;
  }

  .hero-trustbar {
    gap: 10px;
  }

  .store-pill,
  .hero-inline-link {
    width: 100%;
    justify-content: center;
  }

  .phone-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding-inline: 12px;
    text-align: center;
    font-size: 0.84rem;
  }

  .carousel-shell {
    padding: 14px;
    border-radius: 28px;
  }

  .carousel-stage {
    min-height: 520px;
  }

  .carousel-controls {
    top: 16px;
    right: 16px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .feature-card,
  .scene-card,
  .legal-card,
  .cta-card,
  .showcase-panel,
  .policy-card,
  .launch-card,
  .legal-hero-card {
    padding: 22px;
  }
}
