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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.75rem);
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
  padding-top: var(--header-height);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.28s var(--ease), opacity 0.28s var(--ease);
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
  transition:
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    transform 0.28s var(--ease),
    opacity 0.28s var(--ease);
}

:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 3px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0.5rem;
  z-index: 80;
  transform: translateY(-150%);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  transition: transform 0.28s var(--ease);
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  height: var(--header-height);
  background: var(--color-bg);
  isolation: isolate;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  z-index: 70;
}

.logo-mark {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  display: block;
  transition: transform 0.24s var(--ease);
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: translateY(-1px) rotate(-4deg);
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-light .logo-word {
  color: var(--color-white);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--color-ink);
  position: relative;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.menu-toggle-bars::before { transform: translateY(-6px); }
.menu-toggle-bars::after { transform: translateY(6px); }

body.is-nav-open .menu-toggle-bars {
  background: transparent;
}

body.is-nav-open .menu-toggle-bars::before {
  transform: rotate(45deg);
}

body.is-nav-open .menu-toggle-bars::after {
  transform: rotate(-45deg);
}

html.is-nav-open,
html.is-nav-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 1.75rem var(--gutter) 2.5rem;
  background: var(--color-navy);
  color: var(--color-white);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: none;
  transition: visibility 0.28s var(--ease);
}

.site-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.site-nav a {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: baseline;
  min-height: 0;
  padding: 1.05rem 0 1.15rem;
  border-bottom: 1px solid var(--color-white-12);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  transition:
    color 0.28s var(--ease),
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease);
  opacity: 0;
  transform: translateY(0.7rem);
}

.site-nav.is-open a {
  opacity: 1;
  transform: none;
}

.site-nav.is-open a:nth-child(1) { transition-delay: 0.04s; }
.site-nav.is-open a:nth-child(2) { transition-delay: 0.08s; }
.site-nav.is-open a:nth-child(3) { transition-delay: 0.12s; }
.site-nav.is-open a:nth-child(4) { transition-delay: 0.16s; }
.site-nav.is-open a:nth-child(5) { transition-delay: 0.2s; }

.site-nav a:hover {
  color: var(--color-rose);
}

.site-nav a:last-child {
  color: var(--color-rose);
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: var(--touch-min);
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-md);
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  padding-right: 0.65rem;
}

.btn-ghost {
  background: rgba(245, 240, 235, 0.72);
  border-color: var(--color-line-strong);
}

.btn-rose {
  background: var(--color-rose);
  color: var(--color-ink);
}

.btn-orb {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rose);
  color: var(--color-ink);
}

.btn-orb-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.hero {
  padding-block: var(--space-md) var(--space-section);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-hero-surface);
}

.hero-img {
  width: 100%;
  height: 22.5rem;
  object-fit: cover;
  object-position: 55% 32%;
}

.hero-scrim,
.hero-mark,
.hero-chip,
.hero-meta {
  display: none;
}

.hero-copy {
  padding: 1.75rem 1.35rem 1.25rem;
  background: #f2ede8;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-lg);
  font-size: var(--text-md);
  font-weight: 500;
}

.stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--color-rose);
}

.stars svg {
  width: 0.9rem;
  height: 0.9rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  margin-top: var(--space-xl);
}

.about {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-section);
}

.about-aside {
  font-size: var(--text-sm);
  color: var(--color-mauve);
  max-width: 12rem;
}

.about-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lead);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  margin-bottom: var(--space-xl);
}

.about-lead span {
  color: var(--color-mauve);
}

.statement {
  padding-bottom: var(--space-section);
}

.pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}

.pill-a {
  background: var(--color-pill-a);
  border: 1px solid rgba(154, 140, 152, 0.25);
}

.pill-b {
  background: var(--color-rose);
}

.pill-c {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 1.75rem;
}

.pill-d {
  background: var(--color-pill-d);
  color: var(--color-mauve);
  border: 1px solid rgba(154, 140, 152, 0.25);
}

.device {
  padding-bottom: var(--space-section);
}

.device h2,
.waitlist h2,
.vision h2,
.planned h2,
.faq h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-h2);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: var(--space-xl);
}

.device h2 {
  text-align: center;
}

.device-panel {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-navy);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.device-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
}

.device-panel-copy {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(34, 34, 59, 0.92), transparent);
  color: var(--color-white);
}

.device-panel-copy h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
}

.device-panel-copy p {
  margin-top: 0.5rem;
  color: var(--color-white-70);
  max-width: 26rem;
  font-size: var(--text-md);
  line-height: 1.5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.tags li {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.95rem;
  font-size: var(--text-sm);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.waitlist {
  padding-bottom: var(--space-section);
}

.wait-grid {
  display: grid;
  gap: var(--gap);
}

.card {
  background: var(--color-white);
  border: 1px solid rgba(154, 140, 152, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.36s var(--ease), box-shadow 0.36s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 42%;
}

.card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.card h3,
.feat h3,
.onboard h3,
.compare-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.card p,
.feat p,
.onboard p {
  font-size: var(--text-md);
  line-height: 1.5;
  color: var(--color-mauve);
}

.card-navy {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.card-navy h3 {
  color: var(--color-white);
}

.card-navy p {
  color: var(--color-white-75);
}

.card-tint {
  background: var(--color-card-tint);
  border-color: rgba(201, 173, 167, 0.45);
}

.badge {
  align-self: flex-start;
  background: var(--color-rose);
  color: var(--color-ink);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  font-size: var(--text-xs);
  font-weight: 500;
}

.onboard {
  margin-top: var(--gap);
  display: grid;
  background: var(--color-white);
  border: 1px solid rgba(154, 140, 152, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.onboard-copy {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
}

.onboard img {
  width: 100%;
  height: 13.75rem;
  object-fit: cover;
}

.text-link {
  font-weight: 500;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.vision {
  display: grid;
  gap: var(--space-xl);
  padding-bottom: var(--space-section);
}

.vision p {
  margin-top: var(--space-md);
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-ink-80);
  text-wrap: pretty;
}

.vision figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.vision img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.planned {
  padding-bottom: var(--space-section);
}

.planned-banner {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--gap);
  background: var(--color-hero-surface);
}

.planned-banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 62%;
}

.feat-grid {
  display: grid;
  gap: var(--gap);
}

.feat {
  background: var(--color-white);
  border: 1px solid rgba(154, 140, 152, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feat p {
  margin-top: 0.5rem;
}

.feat-navy {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.feat-navy p {
  color: var(--color-white-75);
}

.feat-navy .badge {
  margin-top: 1rem;
}

.compare {
  display: grid;
  gap: var(--gap);
  padding-bottom: var(--space-section);
}

.compare-card {
  background: var(--color-card-tint);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}

.compare-card li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-mauve);
}

.compare-card-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.compare-card-navy li {
  color: var(--color-white-75);
}

.compare-card-navy li::before {
  background: var(--color-rose);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.1rem;
  font-size: var(--text-sm);
  font-weight: 500;
}

.status-warn {
  border: 1.5px solid var(--color-mauve);
}

.status-ok {
  background: var(--color-rose);
  color: var(--color-ink);
}

.stat {
  max-width: 36rem;
  text-align: center;
  padding-bottom: var(--space-section);
}

.stat p {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.7;
}

.stat span {
  text-decoration: underline;
  text-decoration-color: var(--color-rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq {
  padding-bottom: var(--space-section);
}

.faq h2 {
  max-width: 28rem;
}

.faq-item {
  border-top: 1px solid var(--color-line);
  transition: background-color 0.36s var(--ease), border-radius 0.36s var(--ease);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.faq-item.is-open {
  background: var(--color-card-tint);
  border-radius: 1rem;
}

.faq-item__button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.5rem 1rem;
  cursor: pointer;
  min-height: var(--touch-min);
  color: var(--color-ink);
}

.faq-item__button span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

.faq-preview {
  display: none;
}

.faq-plus {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-mauve);
  transition: transform 0.36s var(--ease), color 0.28s var(--ease);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0 1rem;
  transition:
    grid-template-rows 0.42s var(--ease),
    opacity 0.3s var(--ease),
    padding 0.36s var(--ease);
}

.faq-item__panel[hidden] {
  display: grid;
}

.faq-item__panel > * {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 1rem 1.4rem;
}

.faq-item__panel p {
  max-width: 47.5rem;
  padding-left: 1.15rem;
  border-left: 2px solid var(--color-rose);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-ink-80);
}

.faq-foot {
  margin-top: var(--space-2xl);
  text-align: center;
  color: var(--color-mauve);
}

.faq-foot a {
  font-weight: 500;
  color: var(--color-ink);
}

.reserve {
  background: var(--color-navy);
  color: var(--color-white);
}

.reserve-inner {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-3xl);
}

.reserve h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  letter-spacing: -0.01em;
}

#reserve-form {
  display: grid;
  gap: 0.7rem;
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease), max-height 0.4s var(--ease);
}

#reserve-form.is-sent {
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
}

#email {
  width: 100%;
  min-height: var(--touch-min);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  background: var(--color-input);
  color: var(--color-white);
}

#email:focus {
  border-color: var(--color-rose);
}

#email[aria-invalid="true"] {
  border-color: #f0c7c7;
}

#email::placeholder {
  color: var(--color-mauve);
}

.form-error {
  color: #f0c7c7;
  font-size: var(--text-sm);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.28s var(--ease);
}

.form-error[hidden] {
  display: block;
}

.form-error:not([hidden]) {
  max-height: 3rem;
  opacity: 1;
}

.form-success {
  color: var(--color-rose);
  font-size: var(--text-base);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.form-success[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.form-success:not([hidden]) {
  opacity: 1;
  transform: none;
}

.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
}

.footer-inner {
  display: grid;
  gap: var(--space-lg);
  justify-items: center;
  text-align: center;
  padding-block: var(--space-2xl);
}

.footer-inner p {
  font-size: var(--text-sm);
  color: var(--color-white-70);
  order: 1;
}

.footer-inner .logo {
  order: 0;
}

@media (min-width: 577px) {
  .wait-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: fixed;
    inset: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--header-height);
    width: auto;
    flex-direction: row;
    gap: 1.6rem;
    padding: 0;
    background: transparent;
    color: inherit;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: visible;
  }

  .site-nav a,
  .site-nav a:last-child {
    pointer-events: auto;
    display: flex;
    width: auto;
    min-height: var(--touch-min);
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.2;
    opacity: 1;
    transform: none;
    transition: color 0.28s var(--ease);
  }

  .site-nav.is-open a {
    transition-delay: 0s;
  }

  .pills {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .pill {
    min-width: 11rem;
    min-height: 7.5rem;
    font-size: 1.75rem;
  }

  .pill-b,
  .pill-c,
  .pill-d {
    margin-left: -2rem;
  }

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

  .onboard {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }

  .onboard img {
    height: 100%;
    min-height: 14rem;
  }

  .faq-item__button {
    grid-template-columns: 1fr 1.1fr auto;
  }

  .faq-preview {
    display: block;
    font-size: var(--text-md);
    font-weight: 400;
    color: var(--color-ink-62);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
    justify-items: stretch;
  }

  .footer-inner p {
    order: 0;
    justify-self: start;
  }

  .footer-inner .logo {
    justify-self: center;
  }
}

@media (min-width: 992px) {
  .hero-card {
    min-height: 41.25rem;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 58% 38%;
  }

  .hero-scrim {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(245, 240, 235, 0.78) 0%, rgba(245, 240, 235, 0.38) 38%, rgba(245, 240, 235, 0) 64%);
    pointer-events: none;
  }

  .hero-mark {
    display: block;
    position: absolute;
    left: 6%;
    bottom: 10%;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(5.5rem, 14vw, 11.25rem);
    line-height: 0.85;
    letter-spacing: 0.02em;
    color: var(--color-ink);
    opacity: 0.16;
    pointer-events: none;
    white-space: nowrap;
  }

  .hero-copy {
    position: absolute;
    top: 2.75rem;
    left: 2.75rem;
    z-index: 4;
    max-width: 37.5rem;
    padding: 0;
    background: transparent;
  }

  .btn-ghost-on-photo {
    background: rgba(245, 240, 235, 0.72);
  }

  .hero-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: absolute;
    top: 2.75rem;
    right: 2.75rem;
    z-index: 4;
    background: rgba(245, 240, 235, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 1.1rem;
    padding: 0.6rem;
    font-size: var(--text-sm);
    font-weight: 500;
  }

  .hero-chip-mark {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--color-navy);
    color: var(--color-rose);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 1.25rem 2.75rem;
    background: linear-gradient(to top, rgba(34, 34, 59, 0.55), transparent);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
  }

  .about {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 4rem;
  }

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

  .vision {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

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

  .reserve-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  #reserve-form {
    grid-template-columns: minmax(12rem, 18rem) auto;
    align-items: start;
  }

  #email-error {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1440px) {
  .hero-card {
    min-height: 44rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
