@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --ink: #070908;
  --surface: #151817;
  --surface-raised: #1c201e;
  --border: #383c39;
  --paper: #f5f2eb;
  --paper-deep: #e9e6de;
  --text: #faf9f6;
  --muted: #c1c0bd;
  --coral: #ff573d;
  --coral-pressed: #e94731;
  --focus: #ffd1ca;
  --header-height: 88px;
  --shell: 1320px;
  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 110px;
  min-height: 44px;
}

.brand-link img {
  width: 110px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.primary-nav a,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.88rem;
}

.button-light {
  background: var(--text);
  color: var(--ink);
}

.button-light:hover {
  background: var(--coral);
}

.button-primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.button-primary:hover {
  background: var(--coral-pressed);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.button-dark {
  background: var(--ink);
  color: var(--text);
}

.button-dark:hover {
  background: #292d2b;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header-height) + 62px) 0 64px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 48vw;
  height: 48vw;
  max-width: 780px;
  max-height: 780px;
  background: radial-gradient(circle, rgba(255, 87, 61, 0.08), transparent 66%);
  content: "";
  pointer-events: none;
  transform: translate(-36%, -36%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 0.86fr);
  align-items: center;
  gap: clamp(44px, 6vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 6.4vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 span {
  color: var(--coral);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.hero-status {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  align-items: start;
  max-width: 550px;
  gap: 12px;
}

.hero-status p {
  margin: 0;
  color: #aaa9a6;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-status strong {
  color: var(--text);
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 87, 61, 0.12);
}

.signal-stage {
  position: relative;
  min-height: 660px;
  border-radius: 16px;
  isolation: isolate;
  overflow: hidden;
  background: #0b1216;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.48);
}

.signal-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 8, 0.06), rgba(7, 9, 8, 0.66));
  content: "";
  pointer-events: none;
}

.stage-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  opacity: 0.82;
  transform: scale(1.08);
}

.signal-disc {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 52%;
  width: min(42vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
  transform: translate(-50%, -50%);
}

.signal-disc::before,
.signal-disc::after {
  position: absolute;
  border: 1px solid rgba(255, 87, 61, 0.38);
  border-radius: 50%;
  content: "";
  animation: signal-pulse 5.5s ease-in-out infinite;
}

.signal-disc::before {
  inset: -28px;
}

.signal-disc::after {
  inset: -58px;
  opacity: 0.55;
  animation-delay: -1.8s;
}

.prototype-label {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 22px;
  margin: 0;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(7, 9, 8, 0.88);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-frame {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 7px solid #020303;
  border-radius: 36px;
  background: #020303;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.46);
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.phone-frame-hero {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 270px;
  transform: translateX(-50%);
  will-change: transform;
}

.map-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  min-width: 154px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(7, 9, 8, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.map-chip strong,
.map-chip small {
  display: block;
}

.map-chip strong {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.2;
}

.map-chip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.chip-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  color: var(--ink);
}

.chip-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.map-chip-music {
  top: 32%;
  left: 20px;
}

.map-chip-family {
  right: 18px;
  bottom: 18%;
}

.prototype-section {
  position: relative;
  padding: 122px 0;
  background: var(--paper);
  color: var(--ink);
}

.prototype-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.78fr);
  align-items: center;
  gap: clamp(56px, 9vw, 138px);
}

.prototype-copy h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.2vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.prototype-copy > p:not(.truth-note) {
  max-width: 680px;
  margin-bottom: 44px;
  color: #494b47;
  font-size: 1.16rem;
  line-height: 1.7;
}

.capability-list {
  max-width: 760px;
  margin: 0;
  padding: 0;
  border-top: 1px solid #c8c4bb;
  list-style: none;
}

.capability-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid #c8c4bb;
}

.capability-list strong {
  font-family: var(--display);
  font-size: 1.05rem;
}

.capability-list span {
  color: #555852;
}

.truth-note {
  display: flex;
  align-items: flex-start;
  max-width: 680px;
  gap: 12px;
  margin: 28px 0 0;
  color: #434640;
  font-size: 0.9rem;
  line-height: 1.55;
}

.truth-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--coral-pressed);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.prototype-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
}

.coral-block {
  position: absolute;
  inset: 8% 0 5% 11%;
  border-radius: 16px;
  background: var(--coral);
}

.phone-frame-proof {
  width: min(294px, 74%);
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 2px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.moments-section {
  padding: 128px 0 112px;
  background: var(--ink);
}

.moments-heading,
.screen-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 8vw, 128px);
  margin-bottom: 58px;
}

.moments-heading h2,
.screen-story-heading h2,
.truth-intro h2,
.venue-copy h2,
.early-access-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.moments-heading p,
.screen-story-heading p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.moments-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.8fr;
  grid-template-rows: 248px 248px;
  gap: 18px;
}

.moment {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-raised);
}

.moment::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 9, 8, 0.88));
  content: "";
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.moment:hover img {
  transform: scale(1.035);
}

.moment-music {
  grid-row: 1 / 3;
}

.moment-family {
  grid-column: 2 / 4;
}

.moment-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.moment-caption strong,
.moment-caption span {
  display: block;
}

.moment-caption strong {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 1.4rem;
}

.moment-caption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.prototype-disclaimer {
  margin-top: 20px;
  margin-bottom: 0;
  color: #989a96;
  font-size: 0.82rem;
}

.screen-story {
  padding: 128px 0 136px;
  background: var(--coral);
  color: var(--ink);
}

.screen-story-heading p {
  color: #35130f;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(32px, 7vw, 104px);
}

.screen-shot {
  margin: 0;
}

.screen-shot-explore {
  padding-top: 62px;
}

.screen-shot .phone-frame {
  width: min(100%, 286px);
  margin-inline: auto;
}

.screen-shot figcaption {
  width: min(100%, 286px);
  margin: 24px auto 0;
}

.screen-shot figcaption strong,
.screen-shot figcaption span {
  display: block;
}

.screen-shot figcaption strong {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.08rem;
}

.screen-shot figcaption span {
  color: #35130f;
  font-size: 0.9rem;
}

.truth-section {
  padding: 128px 0;
  background: var(--paper);
  color: var(--ink);
}

.truth-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 9vw, 140px);
}

.truth-intro p {
  max-width: 460px;
  margin: 26px 0 0;
  color: #565853;
  font-size: 1.08rem;
}

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

.truth-column {
  border-top: 4px solid var(--ink);
  padding-top: 22px;
}

.truth-column h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 1.22rem;
}

.truth-column ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.truth-column li {
  position: relative;
  padding-left: 22px;
  color: #494b47;
}

.truth-column li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.truth-next {
  border-color: #a9aaa5;
}

.truth-next li::before {
  background: #a9aaa5;
}

.platform-row {
  display: flex;
  grid-column: 2;
  gap: 12px;
  margin-top: -74px;
}

.platform-badge {
  display: flex;
  align-items: center;
  min-width: 190px;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #c8c4bb;
  border-radius: 12px;
  padding: 14px 16px;
}

.platform-badge strong {
  font-size: 0.85rem;
}

.platform-badge span {
  color: #60625d;
  font-size: 0.78rem;
}

.venue-section {
  padding: 128px 0;
  background: #b4c5ad;
  color: var(--ink);
}

.venue-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(60px, 10vw, 156px);
}

.venue-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
}

.venue-mark::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(7, 9, 8, 0.26);
  border-radius: 50%;
  content: "";
}

.venue-mark img {
  position: relative;
  z-index: 1;
  width: 48%;
}

.venue-copy p {
  max-width: 690px;
  margin: 28px 0 34px;
  color: #344033;
  font-size: 1.08rem;
}

.early-access-section {
  padding: 128px 0;
  background: var(--surface);
}

.early-access-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  align-items: start;
  gap: clamp(52px, 9vw, 136px);
}

.early-access-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.interest-form {
  border-radius: 16px;
  padding: clamp(26px, 4vw, 46px);
  background: var(--paper);
  color: var(--ink);
}

.form-review-note {
  margin: 0 0 28px;
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--paper-deep);
  color: #4b4e48;
  font-size: 0.88rem;
}

.form-review-note strong {
  color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field-group label {
  font-size: 0.83rem;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c3c0b7;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field-group textarea {
  min-height: 116px;
  resize: vertical;
}

.field-group input:disabled,
.field-group select:disabled,
.field-group textarea:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.form-button {
  width: 100%;
  margin-top: 2px;
}

.form-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.66;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-brand img {
  width: 94px;
}

.footer-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: #9fa09c;
  font-size: 0.84rem;
}

.footer-grid > a:last-child {
  font-size: 0.86rem;
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr;
  padding: clamp(28px, 5vw, 72px);
  background: radial-gradient(circle at 82% 28%, rgba(255, 87, 61, 0.16), transparent 34%), var(--ink);
}

.not-found-brand {
  width: 110px;
}

.not-found-brand img {
  width: 100%;
}

.not-found > div {
  display: flex;
  max-width: 820px;
  align-items: flex-start;
  align-self: center;
  flex-direction: column;
}

.not-found-code {
  margin-bottom: 18px;
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.not-found h1 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
}

.not-found > div > p:not(.not-found-code) {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

@keyframes signal-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 0.78; transform: scale(1.05); }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    gap: 42px;
  }

  h1 {
    font-size: clamp(3.6rem, 7vw, 5.2rem);
  }

  .signal-stage {
    min-height: 610px;
  }

  .phone-frame-hero {
    width: 246px;
  }

  .map-chip {
    min-width: 142px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-inner {
    gap: 16px;
  }

  .brand-link,
  .brand-link img {
    width: 94px;
    min-width: 94px;
  }

  .primary-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 44px);
  }

  .hero-grid,
  .prototype-grid,
  .moments-heading,
  .screen-story-heading,
  .truth-grid,
  .venue-grid,
  .early-access-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 760px;
    font-size: clamp(3.7rem, 12vw, 5.6rem);
  }

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

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

  .signal-disc {
    width: min(72vw, 460px);
  }

  .prototype-grid {
    gap: 56px;
  }

  .prototype-copy h2 {
    max-width: 720px;
  }

  .prototype-visual {
    min-height: 630px;
  }

  .coral-block {
    inset: 8% 6% 5%;
  }

  .moments-heading,
  .screen-story-heading {
    align-items: start;
    gap: 24px;
  }

  .moments-heading p,
  .screen-story-heading p {
    max-width: 680px;
  }

  .moments-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 286px 286px;
  }

  .moment-family {
    grid-column: 2;
  }

  .screen-gallery {
    gap: 34px;
  }

  .truth-grid,
  .venue-grid,
  .early-access-grid {
    gap: 54px;
  }

  .truth-columns,
  .platform-row {
    grid-column: 1;
  }

  .platform-row {
    margin-top: -18px;
  }

  .venue-mark {
    width: min(100%, 420px);
  }

  .early-access-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .button-small {
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 26px);
  }

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

  h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-intro {
    margin-bottom: 26px;
    font-size: 1.03rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .text-link::after {
    right: 30%;
    left: 30%;
  }

  .signal-stage {
    min-height: 520px;
    margin-top: 18px;
  }

  .stage-map {
    object-position: 52% center;
  }

  .signal-disc {
    top: 47%;
    width: 102vw;
  }

  .prototype-label {
    top: 14px;
    left: 14px;
  }

  .phone-frame-hero {
    top: 60px;
    width: 204px;
    border-width: 6px;
    border-radius: 29px;
  }

  .map-chip {
    min-width: 132px;
    padding: 8px 10px;
  }

  .map-chip-music {
    top: 31%;
    left: 10px;
  }

  .map-chip-family {
    right: 10px;
    bottom: 11%;
  }

  .prototype-section {
    padding: 86px 0 78px;
  }

  .prototype-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .prototype-copy > p:not(.truth-note) {
    margin-bottom: 32px;
    font-size: 1.05rem;
  }

  .capability-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 19px 0;
  }

  .prototype-visual {
    min-height: 570px;
  }

  .phone-frame-proof {
    width: 236px;
  }

  .visual-caption {
    right: 6%;
  }

  .moments-section,
  .screen-story,
  .truth-section,
  .venue-section,
  .early-access-section {
    padding: 86px 0;
  }

  .moments-heading,
  .screen-story-heading {
    margin-bottom: 38px;
  }

  .moments-heading h2,
  .screen-story-heading h2,
  .truth-intro h2,
  .venue-copy h2,
  .early-access-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .moments-grid {
    display: flex;
    flex-direction: column;
  }

  .moment {
    min-height: 280px;
  }

  .moment-music {
    min-height: 360px;
  }

  .screen-gallery {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .screen-shot-explore {
    padding-top: 0;
  }

  .screen-shot .phone-frame,
  .screen-shot figcaption {
    width: min(100%, 248px);
  }

  .truth-grid {
    gap: 42px;
  }

  .truth-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .platform-row {
    align-items: stretch;
    flex-direction: column;
    margin-top: 0;
  }

  .platform-badge {
    width: 100%;
  }

  .venue-grid,
  .early-access-grid {
    gap: 42px;
  }

  .venue-mark {
    width: min(100%, 340px);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .interest-form {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .footer-grid p {
    grid-column: 1 / 3;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
