:root {
  color-scheme: dark;
  --bg: #070807;
  --bg-2: #0a0a0a;
  --surface: #171917;
  --surface-2: #1d201d;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --tertiary: rgba(255, 255, 255, 0.45);
  --disabled: rgba(255, 255, 255, 0.3);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.08);
  --accent: #e50914;
  --accent-light: #ff2d3a;
  --accent-dark: #b30710;
  --success: #46d369;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(229, 9, 20, 0.24), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(255, 45, 58, 0.16), transparent 22%),
    linear-gradient(180deg, #111111 0%, var(--bg) 34%, #000 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 54px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 4px 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #e50914;
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lockup {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.brand-wordmark {
  display: block;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.brand-lockup span:not(.brand-wordmark) {
  max-width: 220px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.topbar-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  padding: 9px 13px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a.active {
  background: var(--glass-2);
  border-color: var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav a:not(.active) {
  opacity: 0.74;
}

.nav a:not(.active):hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--text);
  opacity: 1;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 3px;
}

.language-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--tertiary);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(229, 9, 20, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  padding: 10px 0 34px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(229, 9, 20, 0.14);
  content: "";
}

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

h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 5.45vw, 4.95rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.content-card h1 {
  font-size: clamp(2.45rem, 6vw, 4.55rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

h2 {
  color: var(--text);
  font-size: clamp(1.28rem, 2.4vw, 1.72rem);
  font-weight: 850;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  font-weight: 560;
  line-height: 1.58;
  margin-top: 24px;
}

.brand-line {
  max-width: 660px;
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(1.14rem, 2vw, 1.46rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

.brand-line + .lede {
  margin-top: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 11px;
}

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

.secondary-actions {
  margin-top: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 16px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 850;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(229, 9, 20, 0.28);
  color: #fff;
}

.button.primary:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.secondary {
  background: var(--glass);
  border-color: var(--line-strong);
  color: var(--text);
}

.waitlist-form {
  max-width: 560px;
  margin-top: 28px;
}

.waitlist-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.waitlist-control input {
  min-width: 0;
  border: 0;
  border-radius: 15px;
  outline: 0;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 16px;
}

.waitlist-control input::placeholder {
  color: var(--disabled);
}

.waitlist-control input:focus {
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.4);
}

.waitlist-message {
  min-height: 22px;
  margin-top: 10px;
  color: var(--tertiary);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.waitlist-message[data-state="success"] {
  color: var(--success);
}

.waitlist-message[data-state="error"] {
  color: #ff8a90;
}

.hero-note {
  max-width: 500px;
  margin-top: 18px;
  color: var(--tertiary);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.app-stage {
  min-height: 492px;
  position: relative;
  display: grid;
  place-items: center;
}

.app-stage::before {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(229, 9, 20, 0.28), transparent 58%),
    radial-gradient(circle at 70% 35%, rgba(70, 211, 105, 0.12), transparent 32%);
  filter: blur(10px);
  content: "";
}

.phone {
  width: min(304px, 86vw);
  min-height: 548px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 42px;
  background: #040404;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.58),
    0 0 0 9px rgba(255, 255, 255, 0.035);
  transform: rotate(2deg);
}

.phone-sensor {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.16), transparent 28%),
    #090909;
  padding: 48px 16px 16px;
}

.app-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.app-topline span {
  color: var(--tertiary);
  font-size: 0.78rem;
  font-weight: 800;
}

.app-topline strong {
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 900;
}

.feed-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.poster-art {
  min-height: 304px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.96) 100%),
    radial-gradient(circle at 58% 20%, rgba(255, 255, 255, 0.28), transparent 14%),
    linear-gradient(140deg, #26344a 0%, #111113 38%, #671018 66%, #040404 100%);
}

.poster-art::before,
.poster-art::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.poster-art::before {
  width: 180px;
  height: 180px;
  left: -44px;
  top: 46px;
  background: rgba(229, 9, 20, 0.34);
  filter: blur(18px);
}

.poster-art::after {
  width: 128px;
  height: 220px;
  right: 26px;
  top: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  transform: rotate(8deg);
}

.poster-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.poster-title {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.poster-title strong {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.poster-title span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
}

.feed-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.action-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 9px 8px;
  text-align: center;
}

.action-pill.save {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.action-pill.like {
  background: rgba(229, 9, 20, 0.95);
  color: #fff;
}

.availability {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.availability span {
  display: block;
  margin-bottom: 10px;
  color: var(--tertiary);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.provider-row {
  display: flex;
  gap: 9px;
}

.provider-row picture,
.provider-row img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #111;
}

.provider-row picture {
  display: block;
  overflow: hidden;
}

.provider-row img {
  display: block;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 176px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(12, 12, 12, 0.82);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.16;
}

.taste-card {
  top: 62px;
  left: 8px;
  transform: rotate(-6deg);
}

.saved-card {
  right: 2px;
  bottom: 58px;
  border-color: rgba(70, 211, 105, 0.28);
  transform: rotate(5deg);
}

.saved-card span {
  color: var(--success);
}

.mini-screen {
  position: absolute;
  z-index: 2;
  width: 188px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.9);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.mini-screen span {
  display: block;
  margin-bottom: 12px;
  color: var(--tertiary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.providers-screen {
  right: 4px;
  top: 26px;
  transform: rotate(5deg);
}

.provider-stack {
  display: grid;
  gap: 8px;
}

.provider-stack img {
  width: 100%;
  height: 34px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
  padding: 4px;
}

.provider-choice {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  padding: 6px 7px;
}

.provider-choice img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
}

.provider-choice strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
}

.provider-choice.checked {
  border-color: rgba(70, 211, 105, 0.25);
  background: rgba(70, 211, 105, 0.08);
}

.match-screen {
  bottom: 72px;
  left: 10px;
  border-color: rgba(70, 211, 105, 0.22);
  transform: rotate(-4deg);
}

.avatar-row {
  display: flex;
  margin-bottom: 12px;
}

.avatar-row i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: -7px;
  border: 2px solid #0a0a0a;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
}

.avatar-row i + i {
  background: #2b2d34;
}

.match-screen strong {
  display: block;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.05;
}

.match-screen p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.list-screen {
  right: 24px;
  bottom: 10px;
  width: 172px;
  transform: rotate(3deg);
}

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 12px;
}

.mini-poster-row b {
  display: block;
  aspect-ratio: 0.68;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65)),
    linear-gradient(135deg, #3f4658, #141414 48%, #8f101a);
}

.list-screen strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 950;
}

.brand-statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 18px 0 0;
  padding: clamp(32px, 6vw, 62px) 0;
}

.brand-statement p {
  max-width: 1000px;
  color: var(--text);
  font-size: clamp(1.55rem, 4.2vw, 3.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.origin-note {
  display: inline-grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 18px;
}

.origin-note span {
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.origin-note p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.steps {
  padding: clamp(34px, 6vw, 64px) 0 0;
}

.steps h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.step-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 22px 0 0;
}

.step,
.benefit {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #111;
  padding: 22px;
}

.step span {
  color: var(--accent-light);
  display: block;
  font-size: 0.84rem;
  font-weight: 950;
  margin-bottom: 14px;
}

.step strong {
  color: var(--text);
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 10px;
}

.step p,
.benefit p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.benefits {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px 0 0;
}

.benefit {
  min-height: 176px;
}

.floating-card span,
.benefit span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beta-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  border: 1px solid rgba(229, 9, 20, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 10%, rgba(229, 9, 20, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #111;
  padding: clamp(22px, 4vw, 34px);
}

.beta-cta span {
  color: var(--accent-light);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.beta-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1;
  margin-bottom: 10px;
}

.beta-cta p {
  max-width: 580px;
}

.beta-cta .waitlist-form {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  margin-top: 0;
}

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

.trust-strip div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.trust-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--tertiary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.2;
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 10px 0 0;
  padding: clamp(28px, 5vw, 54px) 0;
}

.product-strip span,
.screen-copy span {
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-strip strong {
  display: block;
  max-width: 620px;
  margin-top: 9px;
  color: var(--text);
  font-size: clamp(1.85rem, 4.2vw, 3.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.product-strip p {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 720;
  line-height: 1.45;
}

.showcase {
  padding: clamp(34px, 6vw, 64px) 0 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
}

.showcase h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.screen-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px 0 0;
}

.screen-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 12%, rgba(229, 9, 20, 0.16), transparent 33%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0f0f0f;
  padding: 22px;
}

.screen-copy h3 {
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
}

.screen-visual {
  align-self: end;
  min-height: 250px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  padding: 16px;
}

.real-screen-visual {
  position: relative;
  min-height: 304px;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.real-screen-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 304px;
  object-fit: cover;
  object-position: top center;
}

.screen-focus-feed img {
  object-position: center top;
}

.screen-focus-match img {
  object-position: top center;
}

.real-screen-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.32)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.18));
  content: "";
}

.provider-picker {
  display: block;
  padding-top: 24px;
}

.provider-picker div {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px 8px 8px;
}

.provider-picker img,
.decision-providers img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.provider-picker strong {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 850;
}

.provider-picker em {
  border-radius: 999px;
  background: rgba(70, 211, 105, 0.15);
  color: var(--success);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  padding: 6px 9px;
}

.poster-stack {
  position: relative;
  min-height: 286px;
  overflow: hidden;
}

.stack-card {
  position: absolute;
  inset: 24px 28px 18px;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.stack-card.back {
  background: linear-gradient(135deg, #1d2430, #080808);
  transform: rotate(-8deg) translateX(-24px);
}

.stack-card.mid {
  background: linear-gradient(135deg, #3a1519, #0b0b0b);
  transform: rotate(7deg) translateX(18px);
}

.stack-card.front {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.24), transparent 15%),
    linear-gradient(140deg, #35445b, #121212 46%, #8d1019);
  padding: 18px;
}

.stack-card.front span {
  width: max-content;
  border-radius: 999px;
  background: rgba(70, 211, 105, 0.16);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 950;
  padding: 7px 10px;
}

.stack-card.front strong {
  margin-top: 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

.decision-panel {
  display: grid;
  align-content: end;
  gap: 12px;
}

.decision-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 12px 14px;
}

.decision-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.decision-row strong {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
}

.decision-row.accent {
  border-color: rgba(229, 9, 20, 0.28);
  background: rgba(229, 9, 20, 0.12);
}

.decision-providers {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}

.decision-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 4vw, 34px);
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 14%, rgba(229, 9, 20, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #0f0f0f;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
}

.decision-story-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}

.decision-story-main span,
.decision-story-list span {
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-story-main h2 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.decision-story-main p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 690;
  line-height: 1.54;
}

.decision-story-list {
  display: grid;
  gap: 10px;
}

.decision-story-list div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.decision-story-list strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  font-weight: 950;
  line-height: 1.06;
}

.decision-story-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 670;
  line-height: 1.45;
}

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

.feature-panel {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 8%, rgba(229, 9, 20, 0.19), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #101010;
  padding: clamp(20px, 3vw, 26px);
}

.sync-panel {
  background:
    radial-gradient(circle at 78% 14%, rgba(70, 211, 105, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #101010;
}

.feature-copy span {
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 520px;
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.feature-copy p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.5;
}

.feature-shot {
  width: min(100%, 380px);
  align-self: end;
  justify-self: center;
  overflow: hidden;
  margin: 24px 0 -92px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #050505;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.025);
}

.feature-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 0.46;
  object-fit: cover;
  object-position: top center;
}

.watchlist-shot {
  width: min(100%, 430px);
  align-self: center;
  margin-bottom: 0;
}

.watchlist-shot img {
  aspect-ratio: 0.83;
}

.content-card {
  max-width: 940px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #111;
  box-shadow: var(--shadow);
  margin-top: 4px;
  padding: clamp(24px, 5vw, 48px);
}

.legal-page {
  max-width: 900px;
}

.content-card section + section {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 30px;
}

.notice {
  border: 1px solid rgba(229, 9, 20, 0.28);
  border-radius: 18px;
  background: rgba(229, 9, 20, 0.1);
  margin-top: 16px;
  padding: 16px 18px;
}

.fineprint {
  color: var(--tertiary);
  font-size: 0.92rem;
  margin-top: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--tertiary);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 18px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 22px;
}

.footer a {
  color: var(--muted);
}

ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

code {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 0.12em 0.34em;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 34px;
  }

  .app-stage {
    min-height: 500px;
  }

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

  .product-strip,
  .section-intro,
  .decision-story {
    grid-template-columns: 1fr;
  }

  .decision-story-main {
    min-height: 0;
    gap: 28px;
  }

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

  .screen-card {
    min-height: 0;
  }

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

  .trust-strip,
  .beta-cta {
    grid-template-columns: 1fr;
  }

  .beta-cta .waitlist-form {
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 28px;
  }

  .topbar-controls {
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
  }

  .nav {
    justify-content: flex-start;
  }

  .language-switch {
    align-self: flex-start;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1160px);
    padding: 16px 0 40px;
  }

  .brand {
    width: 100%;
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    background: var(--glass);
    border-color: var(--line);
    padding: 8px 10px;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.05rem);
    letter-spacing: 0;
  }

  .brand-line {
    font-size: clamp(1rem, 5.2vw, 1.24rem);
    line-height: 1.12;
  }

  .lede {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-proof {
    margin-top: 16px;
  }

  .waitlist-form {
    margin-top: 22px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .secondary-actions,
  .hero-note {
    display: none;
  }

  .button {
    width: 100%;
  }

  .waitlist-form {
    max-width: none;
  }

  .waitlist-control {
    grid-template-columns: 1fr;
  }

  .waitlist-control input {
    min-height: 52px;
    text-align: center;
  }

  .hero-note {
    font-size: 0.88rem;
  }

  .app-stage {
    min-height: 360px;
    overflow: hidden;
  }

  .phone {
    width: min(292px, 78vw);
    min-height: 478px;
    border-radius: 34px;
    transform: rotate(1deg) translateY(2px);
  }

  .phone-screen {
    inset: 8px;
    border-radius: 28px;
    padding: 42px 12px 12px;
  }

  .phone-sensor {
    width: 76px;
    height: 22px;
  }

  .poster-art {
    min-height: 252px;
  }

  .poster-title strong {
    font-size: 1.32rem;
  }

  .floating-card {
    width: 154px;
    border-radius: 16px;
    padding: 12px;
  }

  .mini-screen {
    width: 144px;
    border-radius: 16px;
    padding: 12px;
  }

  .providers-screen {
    right: 0;
    top: 74px;
  }

  .match-screen {
    bottom: 0;
    left: 0;
  }

  .taste-card {
    top: 16px;
    left: 0;
  }

  .saved-card {
    right: 0;
    bottom: 10px;
  }

  .list-screen {
    right: 0;
    bottom: 0;
  }

  .brand-statement {
    margin-top: 4px;
  }

  .brand-statement p {
    letter-spacing: 0;
  }

  .step-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .product-strip {
    padding: 30px 0;
  }

  .screen-card {
    border-radius: 20px;
    padding: 18px;
  }

  .screen-visual {
    min-height: 220px;
    border-radius: 20px;
  }

  .real-screen-visual,
  .real-screen-visual img {
    min-height: 300px;
  }

  .decision-story {
    border-radius: 20px;
    padding: 18px;
  }

  .decision-story-main h2 {
    font-size: clamp(1.9rem, 10vw, 2.72rem);
  }

  .decision-story-list div {
    border-radius: 16px;
    padding: 16px;
  }

  .feature-panel {
    min-height: 0;
    border-radius: 20px;
    padding: 18px;
  }

  .feature-shot {
    width: min(100%, 300px);
    margin-bottom: -80px;
    border-radius: 24px;
  }

  .step,
  .benefit,
  .content-card {
    border-radius: 18px;
    padding: 20px;
  }

  .beta-cta {
    border-radius: 18px;
  }

  .beta-cta .button,
  .cta-waitlist {
    width: 100%;
  }

  .content-card section + section {
    margin-top: 24px;
    padding-top: 24px;
  }
}

@media (max-width: 360px) {
  .app-stage {
    min-height: 330px;
  }

  .phone {
    width: 268px;
    min-height: 438px;
  }

  .poster-art {
    min-height: 222px;
  }

  .floating-card {
    display: none;
  }

  .mini-screen {
    display: none;
  }

  .hero-proof span {
    flex: 1 1 auto;
    text-align: center;
  }
}
