:root {
  color-scheme: dark;
  --bg: #050711;
  --surface: rgba(18, 27, 46, 0.76);
  --surface-strong: rgba(29, 39, 62, 0.9);
  --line: rgba(178, 204, 255, 0.16);
  --text: #f5f7ff;
  --muted: #aeb6ca;
  --blue: #67b7ff;
  --violet: #b78cff;
  --rose: #f18bd4;
  --gold: #d9c68a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 24% 12%, rgba(103, 183, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 78% 18%, rgba(183, 140, 255, 0.18), transparent 30rem),
    linear-gradient(145deg, #050711 0%, #0a1327 48%, #12091d 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
}

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

button,
input {
  font: inherit;
}

.release-toast {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(760px, calc(100vw - 32px));
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(103, 183, 255, 0.36);
  border-radius: 22px;
  padding: 18px 18px 18px 22px;
  background:
    linear-gradient(135deg, rgba(18, 28, 48, 0.96), rgba(38, 28, 58, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(103, 183, 255, 0.26), transparent 20rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 48px rgba(103, 183, 255, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -28px) scale(0.98);
  transition: opacity 220ms ease, transform 260ms ease;
}

.release-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.release-toast .toast-kicker {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-toast strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.2;
}

.release-toast button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.07);
  color: #e8f1ff;
  cursor: pointer;
}

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.hero {
  min-height: min(760px, calc(100vh - 32px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 720;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 0 34px rgba(103, 183, 255, 0.32);
}

.nav-actions a,
.secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: #dce9ff;
  background: rgba(255, 255, 255, 0.04);
}

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

.eyebrow,
.card-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-top: 18px;
}

.lead {
  max-width: 650px;
  margin-top: 24px;
  color: #cbd4e8;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-top: 30px;
}

.waitlist-form {
  width: min(100%, 620px);
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  color: #dce9ff;
  font-size: 13px;
  font-weight: 760;
}

.waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid rgba(103, 183, 255, 0.24);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.waitlist-row input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(5, 7, 17, 0.6);
  color: var(--text);
}

.waitlist-row input::placeholder {
  color: var(--muted);
}

.waitlist-row input:focus {
  box-shadow: 0 0 0 2px rgba(103, 183, 255, 0.46);
}

.waitlist-row input.is-invalid {
  box-shadow: 0 0 0 2px rgba(241, 139, 212, 0.62);
}

.waitlist-row button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 20px;
  background: linear-gradient(135deg, #61b8ff, #a477f4);
  color: white;
  font-weight: 780;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(103, 183, 255, 0.2);
}

.waitlist-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.waitlist-form p,
.release-note,
.noscript-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.release-note {
  display: flex;
  max-width: 650px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.release-note span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.04);
}

.screenshot-fan {
  position: relative;
  min-height: 700px;
  isolation: isolate;
}

.screenshot-fan-light {
  position: absolute;
  inset: 3% -2% 12%;
  z-index: -2;
  background:
    linear-gradient(135deg, transparent 8%, rgba(103, 183, 255, 0.18) 20%, transparent 38%),
    linear-gradient(28deg, transparent 48%, rgba(183, 140, 255, 0.2) 58%, transparent 74%);
  filter: blur(24px);
  opacity: 0.72;
  transform: skewY(-5deg);
}

.screenshot-fan-stage {
  position: relative;
  width: min(680px, 100%);
  min-height: 640px;
  margin: 0 auto;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.screenshot-fan-stage::before {
  content: "";
  position: absolute;
  inset: 2% 4% 19%;
  z-index: -1;
  border: 1px solid rgba(103, 183, 255, 0.12);
  border-radius: 42% 58% 48% 52%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(220deg, rgba(183, 140, 255, 0.1), transparent 42%);
  opacity: 0.84;
  transform: rotate(-7deg);
}

.screenshot-fan-shadow {
  position: absolute;
  right: 10%;
  bottom: 24px;
  left: 10%;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08) 62%, transparent 72%);
  filter: blur(10px);
  transform: rotate(-2deg);
}

.fan-card {
  --fan-x: 0;
  --fan-rotate: 0deg;
  --fan-scale: 1;
  --fan-drift: -12px;
  --fan-tilt: 0.8deg;
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 7, 17, 0.72);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transform: translateX(var(--fan-x)) translateY(0) rotate(var(--fan-rotate)) scale(var(--fan-scale));
  animation: fanFloat 7.5s ease-in-out infinite;
  will-change: transform;
}

.fan-card-mobile {
  width: clamp(184px, 16.8vw, 232px);
  border-radius: 32px;
}

.fan-card-watch {
  width: clamp(98px, 8.6vw, 126px);
  border-radius: 27px;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.fan-card img {
  width: 100%;
  height: auto;
}

.fan-card figcaption,
.screenshot-fan-caption span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 7, 17, 0.68);
  backdrop-filter: blur(12px);
}

.fan-card figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  color: #dce9ff;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
}

.fan-card-today {
  top: 36px;
  left: 45%;
  z-index: 7;
  --fan-x: -50%;
  --fan-rotate: -1deg;
  --fan-scale: 1.03;
  --fan-drift: -16px;
}

.fan-card-moon {
  top: 136px;
  left: 0;
  z-index: 2;
  --fan-rotate: -17deg;
  --fan-scale: 0.86;
  --fan-drift: -10px;
  animation-delay: -1.8s;
}

.fan-card-tarot {
  top: 116px;
  left: 17%;
  z-index: 4;
  --fan-rotate: -7deg;
  --fan-scale: 0.94;
  --fan-drift: -13px;
  animation-delay: -0.9s;
}

.fan-card-profile {
  top: 116px;
  right: 22%;
  z-index: 4;
  --fan-rotate: 7deg;
  --fan-scale: 0.94;
  --fan-drift: -12px;
  animation-delay: -2.4s;
}

.fan-card-space {
  top: 138px;
  right: 5%;
  z-index: 2;
  --fan-rotate: 17deg;
  --fan-scale: 0.86;
  --fan-drift: -9px;
  animation-delay: -3.1s;
}

.watch-companion-cluster {
  position: absolute;
  top: 384px;
  right: 12px;
  z-index: 9;
  width: clamp(176px, 17vw, 226px);
  height: clamp(146px, 14vw, 178px);
  pointer-events: none;
  transform: rotate(3deg);
}

.watch-companion-cluster::before {
  content: "";
  position: absolute;
  inset: 12px 6px 8px 2px;
  z-index: 0;
  border: 1px solid rgba(103, 183, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(103, 183, 255, 0.08), transparent 42%),
    linear-gradient(220deg, rgba(183, 140, 255, 0.12), transparent 54%);
  opacity: 0.92;
  filter: blur(0.1px);
}

.watch-companion-shadow {
  position: absolute;
  right: 2%;
  bottom: 2px;
  left: 6%;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), transparent 70%);
  filter: blur(9px);
  transform: rotate(-4deg);
}

.watch-companion-label {
  position: absolute;
  top: 4px;
  right: 10px;
  z-index: 4;
  padding: 6px 9px;
  border: 1px solid rgba(103, 183, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 7, 17, 0.66);
  color: #b8d8fb;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.fan-card-watch-influence {
  top: 26px;
  left: 8px;
  z-index: 2;
  --fan-rotate: -5deg;
  --fan-scale: 0.98;
  --fan-drift: -14px;
  animation-delay: -1.2s;
}

.fan-card-watch-tarot {
  top: 48px;
  right: 8px;
  z-index: 3;
  --fan-rotate: 8deg;
  --fan-scale: 1;
  --fan-drift: -15px;
  animation-delay: -2.9s;
}

.screenshot-fan-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: -22px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.screenshot-fan-caption span {
  min-height: 30px;
  padding: 7px 12px;
}

.screenshot-fan-caption span:first-child {
  color: #cce8ff;
  font-weight: 780;
}

@keyframes fanFloat {
  0%,
  100% {
    transform: translateX(var(--fan-x)) translateY(0) rotate(var(--fan-rotate)) scale(var(--fan-scale));
  }

  50% {
    transform: translateX(var(--fan-x)) translateY(var(--fan-drift)) rotate(calc(var(--fan-rotate) + var(--fan-tilt))) scale(var(--fan-scale));
  }
}

.phone-preview {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 44px;
  padding: 24px;
  background:
    linear-gradient(165deg, rgba(9, 17, 33, 0.96), rgba(23, 12, 33, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(103, 183, 255, 0.22), transparent 16rem);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-preview::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% 20%;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 140, 255, 0.22), transparent 68%);
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  color: #edf3ff;
  font-size: 15px;
  font-weight: 720;
}

.today-card,
.orbit-card,
.plan-matrix-card,
.comparison-guardrail {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.today-card {
  margin-top: 72px;
  padding: 22px;
}

.today-card strong {
  display: block;
  margin-top: 14px;
  font-size: 31px;
}

.today-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.orbit-card {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
}

.orbit-card > span {
  display: block;
  margin-bottom: 14px;
  color: #dce7ff;
  font-weight: 760;
}

.planet-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.planet-row:first-of-type {
  border-top: 0;
}

.planet-row i {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #dbeaff, #5f92d8 60%, #263852);
  box-shadow: 0 0 20px rgba(103, 183, 255, 0.26);
}

.planet-row.violet i {
  background: radial-gradient(circle at 35% 30%, #ffd8fb, #c267b4 60%, #432443);
}

.planet-row.gold i {
  background: radial-gradient(circle at 35% 30%, #fff0b4, #9d8950 60%, #3d3829);
}

.planet-row b {
  font-size: 15px;
}

.planet-row em {
  color: var(--blue);
  font-style: normal;
  font-weight: 760;
}

.planet-row.violet em {
  color: var(--rose);
}

.planet-row.gold em {
  color: var(--gold);
}

.plan-comparison {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.comparison-copy {
  max-width: 850px;
}

.comparison-copy h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.comparison-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: #cbd4e8;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
}

.plan-matrix-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(241, 139, 212, 0.16), transparent 22rem),
    radial-gradient(circle at 0% 12%, rgba(103, 183, 255, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(18, 27, 46, 0.9), rgba(11, 18, 32, 0.94));
}

.plan-matrix-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-heading-kicker,
.plan-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(103, 183, 255, 0.24);
  border-radius: 999px;
}

.plan-heading-kicker {
  min-height: 28px;
  padding: 0 10px;
  background: rgba(103, 183, 255, 0.08);
  color: #a9dbff;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-matrix-header h3 {
  max-width: 520px;
  margin: 0;
  margin-top: 10px;
  font-size: clamp(24px, 2.5vw, 33px);
  line-height: 1.08;
}

.plan-matrix-labels {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.plan-badge {
  min-height: 34px;
  padding: 0 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 780;
}

.plan-badge.free {
  background: rgba(103, 183, 255, 0.1);
  color: #c8e9ff;
}

.plan-badge.plus {
  border-color: rgba(241, 139, 212, 0.34);
  background: rgba(241, 139, 212, 0.12);
  color: #ffe5fa;
}

.plan-matrix-table-wrap {
  overflow-x: auto;
}

.plan-matrix {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 820px;
}

.plan-matrix thead {
  background: rgba(255, 255, 255, 0.035);
}

.plan-matrix tr {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-matrix th,
.plan-matrix td {
  padding: 18px 22px;
  vertical-align: top;
  text-align: left;
}

.plan-matrix thead th {
  color: #a9dbff;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-matrix tbody th {
  width: 21%;
  color: #eef5ff;
  font-size: 16px;
  line-height: 1.35;
}

.plan-matrix td {
  width: 39.5%;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.plan-cell {
  display: grid;
  gap: 8px;
}

.plan-cell-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.plan-cell-title strong {
  color: #eef5ff;
  font-size: 15px;
  line-height: 1.25;
}

.plan-cell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 10px;
  color: #eaf4ff;
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.status-pill.included {
  border-color: rgba(103, 183, 255, 0.36);
  background: rgba(103, 183, 255, 0.12);
  color: #c8e9ff;
}

.status-pill.limited {
  border-color: rgba(217, 198, 138, 0.38);
  background: rgba(217, 198, 138, 0.11);
  color: #f4e5ad;
}

.status-pill.neutral {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #dce5f5;
}

.status-pill.premium {
  border-color: rgba(241, 139, 212, 0.42);
  background: linear-gradient(135deg, rgba(103, 183, 255, 0.16), rgba(241, 139, 212, 0.16));
  color: #ffe5fa;
}

.comparison-guardrail {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.comparison-guardrail strong {
  font-size: 20px;
  line-height: 1.2;
}

.comparison-guardrail span {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 24px), 620px);
    max-width: 100%;
    padding-top: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    padding-top: 34px;
  }

  .hero-copy,
  .waitlist-form,
  .release-note {
    width: min(100%, calc(100vw - 24px));
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 58px);
    overflow-wrap: normal;
  }

  .phone-preview {
    min-height: 460px;
    border-radius: 34px;
  }

  .screenshot-fan {
    min-height: 540px;
  }

  .screenshot-fan-stage {
    min-height: 500px;
  }

  .fan-card-mobile {
    width: clamp(138px, 38vw, 164px);
    border-radius: 24px;
  }

  .fan-card-watch {
    width: clamp(76px, 21vw, 92px);
    border-radius: 20px;
  }

  .fan-card-profile,
  .fan-card-space {
    display: none;
  }

  .fan-card-today {
    top: 48px;
  }

  .fan-card-moon {
    top: 128px;
    left: 7%;
    --fan-rotate: -14deg;
    --fan-scale: 0.88;
  }

  .fan-card-tarot {
    top: 128px;
    right: 7%;
    left: auto;
    --fan-rotate: 14deg;
    --fan-scale: 0.88;
  }

  .watch-companion-cluster {
    top: 330px;
    right: 5%;
    width: clamp(150px, 44vw, 174px);
    height: 132px;
    transform: rotate(2deg);
  }

  .watch-companion-cluster::before {
    inset: 10px 4px 8px 0;
    border-radius: 26px;
  }

  .watch-companion-label {
    top: 0;
    right: 6px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .fan-card-watch-influence {
    top: 24px;
    left: 4px;
    --fan-rotate: -6deg;
    --fan-scale: 0.98;
  }

  .fan-card-watch-tarot {
    top: 42px;
    right: 4px;
    --fan-rotate: 8deg;
    --fan-scale: 1;
  }

  .screenshot-fan-caption {
    padding-inline: 10px;
  }

  .comparison-guardrail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: auto;
    max-width: none;
    margin-right: 12px;
    margin-left: 12px;
  }

  .nav-actions {
    display: none;
  }

  .release-toast {
    top: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 18px;
  }

  .release-toast button {
    justify-self: start;
  }

  .hero-actions {
    display: block;
  }

  .hero-copy,
  .waitlist-form,
  .release-note,
  .secondary-action {
    width: 100%;
    max-width: 360px;
  }

  h1 {
    width: 100%;
    max-width: 340px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.04;
  }

  .lead {
    width: 100%;
    max-width: 360px;
    font-size: 16px;
  }

  .secondary-action {
    margin-top: 12px;
    width: 100%;
  }

  .waitlist-row {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .waitlist-row button {
    width: 100%;
  }

  .release-note span {
    max-width: 100%;
    white-space: normal;
  }

  .plan-matrix-header,
  .comparison-guardrail {
    padding: 18px;
  }

  .plan-matrix-card,
  .comparison-guardrail {
    border-radius: 18px;
  }

  .plan-matrix-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .plan-matrix-labels {
    justify-content: flex-start;
  }

  .plan-matrix-table-wrap {
    overflow: visible;
  }

  .plan-matrix,
  .plan-matrix tbody,
  .plan-matrix tr,
  .plan-matrix th,
  .plan-matrix td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .plan-matrix thead {
    display: none;
  }

  .plan-matrix tr {
    padding: 16px 18px;
  }

  .plan-matrix tbody th {
    width: 100%;
    padding: 0;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .plan-matrix td {
    padding: 0;
  }

  .plan-matrix td + td {
    margin-top: 10px;
  }

  .plan-matrix td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: #a9dbff;
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .plan-cell {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fan-card,
  .release-toast {
    animation: none;
    transition: none;
  }
}
