:root {
  --bg: #fffaf0;
  --surface: #ffffff;
  --ink: #1d1a16;
  --muted: #665f55;
  --line: #e6d9c5;
  --accent: #f3a51c;
  --accent-dark: #9f6000;
  --dark: #20150a;
  --soft: #fff2cf;
  --shadow: 0 20px 60px rgba(70, 49, 17, 0.12);
}

* { box-sizing: border-box; }

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.08rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.76rem;
  margin: 0 0 14px;
  margin-top: 0;
}

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  max-width: 900px;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin: 0 0 18px;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.lead {
  max-width: 750px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--dark);
  color: #fff;
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.microcopy, .fineprint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

.hero-card, .price-box, .product-card, .value-grid > div, .steps > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 32px;
  transform: rotate(1.5deg);
}

.card-topline {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 12px 0 12px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

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

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) 38px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.featured {
  margin: 28px clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, var(--dark), #4a2c00);
  color: #fff;
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: center;
}

.featured .eyebrow { color: #ffd36e; }
.featured p { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.featured h2 { max-width: 850px; }

.included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.included-grid span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  font-weight: 750;
}

.price-box {
  padding: 26px;
  color: var(--ink);
}

.price-label {
  color: var(--muted) !important;
  margin: 0;
}

.price {
  color: var(--ink) !important;
  font-size: 4rem !important;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 8px 0;
}

.save {
  color: var(--muted) !important;
  margin-bottom: 22px;
}

.section {
  padding: clamp(52px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.product-card p {
  color: var(--muted);
}

.tag {
  align-self: flex-start;
  background: var(--soft);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  padding: 5px 10px;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

dl {
  margin: 10px 0 0;
  border-top: 1px solid var(--line);
}

dl div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
}

.card-footer a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.mini-price {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.how-section {
  background: #fff5dc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps > div {
  padding: 24px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.value-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-grid > div {
  padding: 24px;
}

.value-grid p {
  color: var(--muted);
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.05rem;
}

.faq p {
  color: var(--muted);
  max-width: 900px;
}

.cta-section {
  text-align: center;
  background: var(--dark);
  color: #fff;
  margin: 0 clamp(18px, 5vw, 72px) clamp(32px, 5vw, 72px);
  padding: clamp(38px, 7vw, 74px);
  border-radius: 36px;
}

.cta-section .eyebrow { color: #ffd36e; }
.cta-section p { color: rgba(255,255,255,.76); }

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

.footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .hero, .featured, .value-section {
    grid-template-columns: 1fr;
  }
  .hero-card { transform: none; }
  .product-grid, .steps, .value-grid {
    grid-template-columns: 1fr;
  }
  .featured { margin-top: 10px; }
  .footer {
    flex-direction: column;
  }
  h1 { font-size: 3.25rem; }
}
