:root {
  --ink: #191512;
  --paper: #fbf4ea;
  --card: #fffaf2;
  --muted: #6f6258;
  --line: #e1d1bf;
  --red: #9b2f2f;
  --red-dark: #681d1d;
  --gold: #d8a94e;
  --green: #17443a;
  --shadow: 0 24px 70px rgba(42, 27, 18, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(251, 244, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fffaf4;
  background: var(--red);
  border: 1px solid var(--red-dark);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(104, 29, 29, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 64px);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #473c35;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  padding: 8px 12px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid #2b201c;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-note {
  position: absolute;
  right: -12px;
  bottom: 28px;
  width: min(280px, 70%);
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.case-note strong {
  display: block;
  margin-bottom: 6px;
}

.case-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.section.dark {
  color: #fff9ef;
  background: #16110f;
}

.section.green {
  color: #fff9ef;
  background: var(--green);
}

.center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.center p,
.split p,
.card p,
.step p,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.dark .center p,
.dark .split p,
.green .center p {
  color: rgba(255, 249, 239, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.pain-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li,
.included li {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.5;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.price {
  margin: 18px 0 0;
  font-size: 1.5rem;
  font-weight: 900;
}

.steps-grid,
.cards-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.card,
.step,
.faq {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
}

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

.bridge {
  max-width: 1060px;
  margin: 0 auto;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: #fff8ed;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
}

.waitlist p {
  color: #5e5148;
}

.waitlist-form {
  display: grid;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #5e5148;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .hero,
  .split,
  .product-card,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .steps-grid,
  .cards-grid,
  .faq-grid,
  .included {
    grid-template-columns: 1fr;
  }

  .case-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 92%;
    margin: -46px auto 0;
  }

  .footer {
    flex-direction: column;
  }
}
