:root {
  --ink: #1d1d1f;
  --ink-soft: #2d2d31;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --white: #ffffff;
  --mist: #f0f2f5;
  --sage: #e8ece8;
  --blue: #e8f3fb;
  --clay: #eee7df;
  --linen: #fbfbfd;
  --orange: #f5a623;
  --orange-dark: #c45f10;
  --line: #d2d2d7;
  --shadow: 0 36px 90px rgba(0, 0, 0, 0.16);
  --soft-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.98), transparent 38rem),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 48%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p,
dd {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 42px;
  background: rgba(251, 251, 253, 0.78);
  border-bottom: 1px solid rgba(210, 210, 215, 0.66);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header.is-solid {
  background: var(--linen);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(210, 210, 215, 0.84);
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 0.86rem;
  color: #424245;
}

.nav a,
.footer-links a {
  position: relative;
}

.nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  background: #0071e3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.22);
}

.floating-reserve {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 7px 8px 7px 17px;
  color: #3f4543;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.86);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: saturate(180%) blur(18px);
}

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

.floating-reserve span {
  font-size: 0.88rem;
  font-weight: 780;
  white-space: nowrap;
}

.floating-reserve a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 820;
  white-space: nowrap;
  background: #0071e3;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.22);
}

.hero {
  position: relative;
  display: block;
  padding: 58px 42px 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 1), transparent 34rem),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(210, 210, 215, 0.72), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: 5.35rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin: 0 auto 24px;
  color: #515154;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-limited-note {
  display: inline-flex;
  max-width: 440px;
  margin: 0 0 24px;
  padding: 10px 12px;
  color: #704107;
  font-size: 0.92rem;
  font-weight: 760;
  background: #fff7e8;
  border: 1px solid rgba(245, 166, 35, 0.42);
  border-radius: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 780;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: #0071e3;
  border-color: #0071e3;
  box-shadow: 0 18px 38px rgba(0, 113, 227, 0.22);
}

.button-primary:hover {
  background: #0077ed;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(0, 113, 227, 0.32);
  color: #0066cc;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.hero-stats div {
  min-height: 58px;
  padding: 0 20px;
  background: transparent;
  border-right: 1px solid rgba(210, 210, 215, 0.86);
  box-shadow: none;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
}

.hero-media {
  position: relative;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
  max-width: 1120px;
  margin: 34px auto 0;
  padding: 0;
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--white);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  border-radius: 8px;
}

.image-proof {
  padding-top: 84px;
}

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

.product-gallery-featured {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.product-gallery figure {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.product-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fbfbfd;
}

.product-gallery-featured .gallery-dimensions img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
}

.product-gallery figcaption {
  padding: 14px 16px 16px;
  color: #4f5b50;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
}

.hardware-notes {
  margin: 0 16px 16px;
  padding: 16px;
  background: #f5f5f7;
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 8px;
}

.hardware-notes h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.hardware-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hardware-notes li {
  position: relative;
  padding-left: 14px;
  color: #4f5b50;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hardware-notes li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 999px;
}

.colorway-showcase {
  margin-top: 28px;
  padding: 28px 0 8px;
  overflow: hidden;
  max-width: 100%;
  border-top: 1px solid rgba(210, 210, 215, 0.72);
}

.colorway-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.colorway-heading .eyebrow {
  margin-bottom: 7px;
}

.colorway-heading h3 {
  max-width: 520px;
  margin: 0;
  font-size: 1.42rem;
}

.colorway-marquee {
  overflow: hidden;
  width: 100%;
  padding: 4px 0 18px;
  contain: layout paint;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.colorway-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: colorway-scroll 42s linear infinite;
}

.colorway-marquee:hover .colorway-track {
  animation-play-state: paused;
}

.colorway-track img {
  display: block;
  width: clamp(150px, 16vw, 230px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(29, 29, 31, 0.08);
}

.colorway-video {
  display: none;
}

.colorway-video video {
  display: block;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(29, 29, 31, 0.08);
}

@keyframes colorway-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.states-band {
  background:
    linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.state-grid figure {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(29, 29, 31, 0.08);
}

.state-grid img,
.state-grid video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fbfbfd;
}

.state-grid figcaption {
  padding: 13px 14px 15px;
  color: #1d1d1f;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
}

.story-band {
  background:
    radial-gradient(circle at 16% 12%, rgba(245, 166, 35, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

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

.scenario-card {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.scenario-card-large {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.scenario-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scenario-card-large img {
  aspect-ratio: 16 / 9;
}

.scenario-card div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.scenario-card-large div {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(255, 255, 255, 0.96));
  border-top: 1px solid rgba(210, 210, 215, 0.72);
}

.scenario-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.scenario-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.scenario-card-large h3 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.scenario-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.band {
  padding: 88px 42px;
}

.band-white {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

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

.section-heading.narrow {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.proof-copy p,
.waitlist-panel p,
.legal-content p {
  font-size: 1.04rem;
}

.timeline > div,
.quote-grid figure,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-band {
  background:
    radial-gradient(circle at 80% 18%, rgba(232, 243, 251, 0.72), transparent 28rem),
    linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.split,
.companion-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

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

.companion-copy h2 {
  margin-bottom: 16px;
}

.companion-copy p {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.companion-positioning {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.companion-positioning span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #40514d;
  font-size: 0.9rem;
  font-weight: 820;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #0066cc;
  font-weight: 850;
  background: #eef6ff;
  border: 1px solid #c9e4ff;
  border-radius: 8px;
}

.memory-band {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 28rem),
    linear-gradient(135deg, #111113 0%, #242426 62%, #0f1411 100%);
  color: var(--white);
}

.memory-band p {
  color: #d6ded6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
  margin: 42px auto 0;
}

.timeline > div {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.timeline span {
  display: block;
  margin-bottom: 20px;
  color: #ef9d52;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 38px;
  align-items: start;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-grid figure {
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.quote-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.quote-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gift-band {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 166, 35, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 0%, rgba(232, 243, 251, 0.9), transparent 28rem),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
  gap: 42px;
  align-items: center;
}

.gift-copy {
  max-width: 650px;
}

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

.gift-visuals {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.gift-image {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.gift-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.gift-card-grid article {
  min-height: 188px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.gift-card-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: #8b4b0d;
  font-weight: 850;
  background: #fff2df;
  border: 1px solid rgba(245, 166, 35, 0.38);
  border-radius: 8px;
}

.gift-card-grid h3 {
  font-size: 1.12rem;
}

.gift-card-grid p {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 760;
  line-height: 1.35;
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.waitlist-band {
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 113, 227, 0.09), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(245, 166, 35, 0.12), transparent 22rem),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%),
    var(--paper);
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.reservation-copy {
  min-width: 0;
}

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

.urgency-note,
.spot-meter {
  margin-top: 20px;
  padding: 15px 17px;
  color: #704107;
  background: #fff7e8;
  border: 1px solid rgba(245, 166, 35, 0.44);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.urgency-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.spot-meter {
  display: grid;
  gap: 12px;
}

.spot-meter-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.spot-meter-head strong {
  color: var(--ink);
  font-size: 1rem;
}

.spot-meter-head span {
  color: #8b4b0d;
  font-size: 0.84rem;
  font-weight: 780;
  white-space: nowrap;
}

.spot-meter-track {
  height: 9px;
  overflow: hidden;
  background: rgba(245, 166, 35, 0.16);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 999px;
}

.spot-meter-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f5a623, #c45f10);
  border-radius: inherit;
}

.reservation-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.reservation-list li {
  position: relative;
  padding-left: 24px;
  color: #4f5b50;
}

.reservation-list strong {
  color: var(--ink);
  font-weight: 850;
}

.reservation-list li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.reservation-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.reservation-proof div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(210, 210, 215, 0.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.reservation-proof span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reservation-proof strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.stripe-checkout {
  min-width: 0;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 251, 253, 0.98));
  border: 1px solid rgba(210, 210, 215, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-head {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
}

.checkout-head .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.checkout-head h3 {
  margin-bottom: 6px;
  font-size: 1.36rem;
}

.checkout-head p:last-child {
  margin: 0;
  color: #4f5b50;
  font-size: 0.96rem;
}

.reservation-summary {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 28px 18px 30px;
  text-align: center;
  background: rgba(251, 251, 253, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.62);
  border-radius: 8px;
}

.reservation-summary img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(210, 210, 215, 0.82);
  border-radius: 8px;
}

.reservation-summary h4 {
  margin: 0;
  color: #586b66;
  font-size: 1.26rem;
  line-height: 1.18;
}

.reservation-summary strong {
  display: block;
  color: #102724;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.checkout-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.checkout-button-stripe {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(105deg, #635bff 0%, #3f63f2 48%, #07979c 100%);
  border: 0;
  box-shadow: 0 18px 36px rgba(76, 92, 240, 0.24);
}

.checkout-button-stripe:hover {
  box-shadow: 0 22px 42px rgba(76, 92, 240, 0.3);
}

.payment-support {
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(210, 210, 215, 0.72);
}

.payment-support p {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 30px;
  height: 19px;
  padding: 2px 5px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 4px;
  box-shadow: none;
}

.payment-logo img {
  width: auto;
  max-width: 100%;
  max-height: 12px;
  object-fit: contain;
}

.payment-logo-square img {
  max-height: 13px;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.checkout-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 7px;
  color: #40514d;
  font-size: 0.64rem;
  font-weight: 760;
  background: rgba(232, 236, 232, 0.58);
  border: 1px solid rgba(64, 81, 77, 0.13);
  border-radius: 5px;
}

.form-note {
  min-height: 42px;
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: #4f5b50;
}

.launch-updates {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.launch-updates h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.launch-updates p {
  margin-bottom: 10px;
  font-size: 0.94rem;
}

.text-link {
  color: #0066cc;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.faq details {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  color: #d5d5d8;
  background: #1d1d1f;
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #b7b7bd;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-brand .brand-logo {
  border-color: rgba(255, 255, 255, 0.28);
}

.legal-page {
  padding: 70px 24px;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h1 {
  font-size: 3rem;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 1.35rem;
}

.thanks-page {
  min-height: calc(100vh - 58px);
  padding: 82px 24px;
  background:
    linear-gradient(135deg, rgba(232, 236, 232, 0.74), rgba(251, 251, 253, 0.94) 46%, rgba(238, 231, 223, 0.84));
}

.thanks-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: 3.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.thanks-panel > p {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
}

.thanks-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.thanks-next article {
  min-height: 166px;
  padding: 20px;
  background: rgba(251, 251, 253, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.82);
  border-radius: 8px;
}

.thanks-next span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  background: var(--orange-dark);
  border-radius: 50%;
}

.thanks-next h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.thanks-next p {
  margin: 0;
  font-size: 0.94rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .floating-reserve {
    display: none;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .companion-bridge,
  .proof,
  .gift-layout,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .waitlist-panel .stripe-checkout {
    order: -1;
  }

  .hero {
    min-height: auto;
    padding: 38px 22px 56px;
    background:
      linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
  }

  .hero-media {
    min-height: 0;
    margin-top: 28px;
  }

  .hero-stats,
  .companion-positioning,
  .scenario-grid,
  .scenario-card-large,
  .gift-card-grid,
  .timeline,
  .reservation-proof,
  .thanks-next,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 64px 22px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .colorway-heading {
    display: block;
  }

  .hardware-notes ul {
    grid-template-columns: 1fr;
  }

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

  .product-band {
    background: linear-gradient(180deg, #f5f5f7, #ffffff);
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding: 30px 14px 44px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-limited-note {
    display: flex;
    max-width: none;
    margin-bottom: 0;
    font-size: 0.86rem;
  }

  .button {
    min-height: 44px;
    width: 100%;
    white-space: normal;
  }

  .hero-media {
    width: 100%;
    margin-top: 26px;
  }

  .band {
    padding: 58px 14px;
  }

  .comparison-card,
  .spec-row,
  .gift-card-grid article,
  .quote-grid figure,
  .state-grid figure,
  .faq details {
    padding: 18px;
  }

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

  .scenario-card div {
    padding: 18px;
  }

  .scenario-card img {
    min-height: 0;
  }

  .colorway-marquee {
    display: none;
  }

  .colorway-video {
    display: block;
    padding: 2px 0 14px;
  }

  .state-grid figure {
    padding: 0;
  }

  .waitlist-panel,
  .legal-content,
  .thanks-panel {
    padding: 20px;
  }

  .thanks-page {
    padding: 46px 14px;
  }

  .thanks-panel h1 {
    font-size: 2.15rem;
  }

  .thanks-panel > p {
    font-size: 0.98rem;
  }

  .stripe-checkout {
    padding: 12px;
  }

  .site-footer {
    flex-direction: column;
    padding: 34px 22px;
  }
}
