:root {
  color-scheme: light;
  --ink: #17221f;
  --muted: #5d6b66;
  --paper: #f8faf6;
  --surface: #ffffff;
  --line: #d5dfd8;
  --deep: #14342b;
  --blue: #2d6cdf;
  --coral: #e7664c;
  --gold: #d9a441;
  --mint: #cdeade;
  --shadow: 0 20px 50px rgba(18, 35, 30, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body,
button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

button,
input,
select {
  outline-color: var(--blue);
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(213, 223, 216, 0.82);
  background: rgba(248, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #f9fffb;
  background: var(--deep);
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.nav-demo {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  background: #ffffff;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 58px) clamp(26px, 4vw, 54px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 650px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(48px, 7.3vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 17px;
  color: #ffffff;
  background: var(--deep);
  box-shadow: 0 12px 24px rgba(20, 52, 43, 0.16);
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.button.secondary {
  color: var(--deep);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

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

.hero-stats div {
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.hero-stats dt {
  color: var(--deep);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.hero-visual {
  margin: 0;
  align-self: stretch;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 58px) 44px;
}

.trust-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--deep);
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 850;
  text-align: center;
}

.section,
.pricing-section,
.reserve-section,
.privacy-band {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 58px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.steps article,
.price-card,
.waitlist-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 35, 30, 0.06);
}

.steps article {
  min-height: 256px;
  padding: 22px;
}

.steps span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--deep);
  font-weight: 900;
}

.steps p,
.price-card p,
.reserve-copy p,
.privacy-band p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-section {
  background: #eef5ef;
}

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

.price-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 3vw, 32px);
}

.price-card.featured {
  border-color: rgba(231, 102, 76, 0.45);
  background: #fff8f4;
}

.plan-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--deep);
  background: var(--mint);
  font-size: 13px;
  font-weight: 850;
}

.price {
  margin: 20px 0 12px;
  color: var(--deep);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  font-weight: 950;
}

.price span {
  font-size: 18px;
  color: var(--muted);
  font-weight: 750;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 0.47em;
  border-radius: 999px;
  background: var(--coral);
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
  color: #ffffff;
  background: var(--deep);
}

.privacy-band h2,
.privacy-band p {
  color: #ffffff;
}

.privacy-band p:last-child {
  margin: 0;
  color: #d9eee5;
  font-size: 20px;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.reserve-copy {
  position: sticky;
  top: 104px;
}

.fine-print {
  padding: 14px;
  border-left: 4px solid var(--gold);
  background: #fff8e7;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.field {
  display: grid;
  gap: 7px;
}

label,
legend {
  color: var(--deep);
  font-size: 14px;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
}

fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice,
.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.35;
}

.choice input,
.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.check-row span {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--deep);
  font-weight: 750;
}

.form-status[data-tone="error"] {
  color: #ad3528;
}

.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--deep);
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .reserve-section,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .steps,
  .pricing-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .reserve-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    padding-bottom: 24px;
  }
}
