:root {
  --navy: #1d2d44;
  --navy-soft: #263a57;
  --cream: #f8f6f2;
  --cream-soft: #fbfaf7;
  --sage: #eef3ec;
  --sage-dark: #8fa083;
  --text: #2c3746;
  --muted: #6d7480;
  --white: #ffffff;
  --line: rgba(29, 45, 68, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 90%);
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.nav-cta {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

section {
  padding: 96px 0;
}

.section-cream {
  background: var(--cream);
}

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

.section-cream-soft {
  background: var(--cream-soft);
}

.section-sage {
  background: var(--sage);
}

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

.hero {
  min-height: calc(82vh - 76px);
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-inner {
  max-width: 940px;
}

.eyebrow {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow-light {
  color: #c9d7c4;
}

.hero h1,
.section-heading h2,
.founder-copy h2,
.waitlist-card h2 {
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  margin-bottom: 28px;
}

.hero-copy {
  max-width: 710px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 1.24rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 16px 30px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.button-light {
  background: var(--white);
  color: var(--navy);
  width: 100%;
  margin-top: 8px;
}

.trust-line {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 72px;
}

.founder-image-wrap {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.founder-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.founder-image[src="founder.jpg"] {
  background: linear-gradient(135deg, var(--cream), var(--sage));
}

.founder-copy h2,
.section-heading h2,
.waitlist-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  margin-bottom: 24px;
}

.founder-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.condition-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 26px;
  min-height: 190px;
}

.condition-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.condition-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.benefits-list {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 45, 68, 0.08);
  border-radius: 28px;
  padding: 34px 42px;
}

.benefits-list li {
  list-style: none;
  padding: 16px 0;
  font-size: 1.08rem;
  border-bottom: 1px solid rgba(29, 45, 68, 0.08);
}

.benefits-list li:last-child {
  border-bottom: 0;
}

.benefits-list li::before {
  content: "✓";
  color: var(--sage-dark);
  font-weight: 800;
  margin-right: 12px;
}

.waitlist-card {
  text-align: center;
  padding: 20px 0;
}

.waitlist-card h2 {
  color: var(--white);
}

.waitlist-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.waitlist-form {
  max-width: 540px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  margin-bottom: 22px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
}

.waitlist-form input[type="email"]:focus {
  outline: 3px solid rgba(201, 215, 196, 0.42);
  border-color: #c9d7c4;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.consent input {
  width: auto;
  margin-top: 4px;
  accent-color: #c9d7c4;
}

.form-note {
  max-width: 520px;
  margin: 18px auto 0 !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.62) !important;
}

.site-footer {
  background: var(--cream);
  color: var(--muted);
  padding: 52px 0;
  text-align: center;
}

.site-footer a {
  color: var(--navy);
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  font-size: 0.9rem;
}

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

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .founder-image-wrap,
  .founder-image {
    min-height: 360px;
  }

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

@media (max-width: 680px) {
  .nav-inner {
    min-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  section {
    padding: 68px 0;
  }

  .hero {
    min-height: calc(76vh - 68px);
  }

  .hero h1 {
    font-size: 3.15rem;
  }

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

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

  .condition-card {
    min-height: auto;
  }

  .benefits-list {
    padding: 24px 24px;
  }

  .waitlist-card {
    text-align: left;
  }

  .waitlist-card h2,
  .waitlist-card p,
  .waitlist-card .eyebrow {
    text-align: left;
  }

  .button-light {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
