:root {
  --ink: #202821;
  --muted: #667166;
  --paper: #f6f7f3;
  --white: #ffffff;
  --mist: #e8efe8;
  --sage: #cbd8cc;
  --blue: #dce8ed;
  --orange: #e37a24;
  --orange-dark: #b95d15;
  --line: #d7ded5;
  --shadow: 0 22px 60px rgba(32, 40, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  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: 72px;
  padding: 0 42px;
  background: rgba(246, 247, 243, 0.84);
  border-bottom: 1px solid rgba(215, 222, 213, 0.72);
  backdrop-filter: blur(18px);
}

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

.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(215, 222, 213, 0.82);
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.94rem;
  color: #3f4a40;
}

.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: 42px;
  padding: 0 18px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--ink);
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 56px 42px 76px;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: 4.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

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

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

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 30px;
  color: #445045;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  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: var(--ink);
  box-shadow: 0 12px 30px rgba(32, 40, 33, 0.2);
}

.button-primary:hover {
  background: #111612;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.55);
}

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

.hero-stats div {
  min-height: 94px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.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;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--mist);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 16px;
}

.product-gallery figure {
  overflow: hidden;
  margin: 0;
  background: #f7f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-gallery .gallery-main {
  grid-row: span 2;
}

.product-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-gallery figure:nth-child(3) img {
  aspect-ratio: 4 / 3;
  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.88);
}

.band {
  padding: 94px 42px;
}

.band-white {
  background: var(--white);
}

.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;
}

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

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

.comparison-card {
  min-height: 190px;
  padding: 24px;
  background: #f7f8f5;
}

.comparison-card.is-highlighted {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.comparison-card.is-highlighted p {
  color: #dbe3dc;
}

.product-band {
  background: linear-gradient(90deg, #eef3ee 0 50%, #f8f9f5 50% 100%);
}

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

.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.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--orange-dark);
  font-weight: 850;
  background: #fff2e8;
  border: 1px solid #f1c7a4;
  border-radius: 8px;
}

.memory-band {
  background: var(--ink);
  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: #29332b;
  border-color: #3a463c;
}

.timeline span,
.roadmap 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: #f7f8f5;
}

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;
}

.roadmap-band {
  background: var(--blue);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.roadmap li {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.waitlist-band {
  background:
    linear-gradient(135deg, rgba(227, 122, 36, 0.14), rgba(203, 216, 204, 0.32)),
    var(--paper);
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.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 li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.tally-embed {
  min-width: 0;
  padding: 18px;
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tally-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

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

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

.faq details {
  padding: 20px 22px;
  background: #f7f8f5;
}

.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: #d5ddd5;
  background: var(--ink);
}

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

.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;
}

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

  .nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding: 46px 22px 64px;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-stats,
  .comparison-grid,
  .timeline,
  .roadmap,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 72px 22px;
  }

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

  .product-gallery .gallery-main {
    grid-row: auto;
  }

  .product-band {
    background: var(--mist);
  }
}

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

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

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

  .button {
    width: 100%;
    white-space: normal;
  }

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

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