:root {
  --ink: #171411;
  --text: #231d18;
  --muted: #716860;
  --paper: #fbf7f1;
  --cream: #f4ede4;
  --warm: #ede0d0;
  --line: #ded4c8;
  --red: #cf2027;
  --red-dark: #a9161d;
  --red-soft: #fff1ef;
  --shadow: 0 24px 70px rgba(32, 22, 14, 0.12);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Aptos Display", "Aptos", "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 64px);
  color: white;
  transition: background 220ms var(--ease), padding 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(25, 21, 18, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.88rem;
  font-weight: 620;
}

.nav a {
  opacity: 0.9;
  transition: opacity 180ms var(--ease), color 180ms var(--ease);
}

.nav a:hover {
  opacity: 1;
  color: white;
}

.header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 18px;
}

.shop-link,
.primary-button,
.outline-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 7px;
  padding: 0 34px;
  font-size: 0.95rem;
  font-weight: 660;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.shop-link,
.primary-button {
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  box-shadow: 0 16px 36px rgba(207, 32, 39, 0.24);
}

.outline-button {
  border: 1px solid rgba(207, 32, 39, 0.7);
  background: transparent;
  color: var(--red);
}

.price-card.featured .primary-button {
  border-color: white;
  background: white;
  color: var(--red);
  box-shadow: none;
}

.shop-link:hover,
.primary-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.cart-link {
  width: 36px;
  height: 36px;
  position: relative;
}

.cart-link::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 17px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-8deg);
}

.cart-link::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: rotate(14deg);
}

.cart-link span::before,
.cart-link span::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.cart-link span::before {
  left: 10px;
}

.cart-link span::after {
  left: 25px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 124px clamp(20px, 5vw, 80px) 80px;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02) brightness(1.06);
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 17, 14, 0.42), rgba(20, 17, 14, 0.2) 36%, rgba(20, 17, 14, 0) 68%),
    linear-gradient(0deg, rgba(20, 17, 14, 0.06), rgba(20, 17, 14, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2,
blockquote {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.35rem, 6.7vw, 6rem);
  line-height: 1.02;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 520;
  line-height: 1.45;
}

.hero-badges {
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 22px 0 34px;
}

.badge {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.badge:last-child {
  border-right: 0;
}

.badge strong {
  max-width: 132px;
  font-size: 0.69rem;
  font-weight: 560;
  line-height: 1.42;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shipping-note {
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

.amazon-stars {
  color: #ff9900;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.rating-copy,
.customer-count {
  line-height: 1.35;
}

.icon-svg,
.line-svg,
.feature-svg {
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-svg {
  width: 54px;
  height: 54px;
}

.line-svg {
  width: 70px;
  height: 70px;
  color: var(--red);
}

.feature-svg {
  width: 54px;
  height: 54px;
  color: var(--red);
}

.mini-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  color: var(--ink);
}

.mini-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.benefit-card {
  min-height: 235px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.benefit-card h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 780;
  font-size: 1.28rem;
}

.benefit-card p {
  max-width: 250px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.72fr) minmax(300px, 0.86fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 100px);
  background:
    radial-gradient(circle at 20% 50%, rgba(207, 32, 39, 0.07), transparent 34%),
    linear-gradient(90deg, #f8f2eb, #fffaf6);
}

.product-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.product-photo {
  width: min(520px, 82vw);
  max-height: 580px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 34px 42px rgba(20, 17, 14, 0.16));
}

.product-copy h2,
.pricing-copy h2,
.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.4vw, 4.9rem);
  line-height: 1.04;
}

.product-copy p:not(.section-kicker),
.pricing-copy > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
}

.feature-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 6vw, 96px);
  border-block: 1px solid var(--line);
  background: #fffaf6;
}

.testimonial-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf6;
  box-shadow: 0 18px 46px rgba(32, 22, 14, 0.12);
}

.testimonial-image img,
.testimonial-image video {
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fffaf6;
}

.testimonial-copy {
  max-width: 740px;
  padding: 0;
}

.stars {
  margin-bottom: 18px;
  color: var(--red);
  letter-spacing: 0.18em;
}

blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.85rem, 3.6vw, 3.5rem);
  line-height: 1.12;
}

.testimonial-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

cite {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

cite span {
  color: var(--red);
  font-size: 0.9rem;
}

.review-reel {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 100px);
  background: var(--paper);
}

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

.section-heading p:not(.section-kicker) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  background: #111;
  box-shadow: var(--shadow);
}

.video-card video {
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 60%);
}

.video-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: white;
}

.video-card span {
  display: block;
  margin-bottom: 7px;
  color: #ffb4aa;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card strong {
  font-size: 1.3rem;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 100px);
  background: #fffaf6;
}

.assurance-list {
  display: grid;
  gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
}

.assurance-list strong,
.assurance-list small {
  grid-column: 2;
}

.assurance-list small {
  color: var(--muted);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.price-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 45px rgba(32, 22, 14, 0.07);
}

.price-card.featured {
  min-height: 550px;
  border-color: rgba(207, 32, 39, 0.42);
  background: linear-gradient(180deg, #cf2027, #b21822 44%, #94151c);
  color: white;
  box-shadow: 0 26px 70px rgba(207, 32, 39, 0.26);
}

.popular {
  position: absolute;
  inset: 0 0 auto;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--cream);
}

.price-card.featured .price-image {
  margin-top: 38px;
}

.price-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 690;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured h3 {
  color: white;
}

.price-card h3 {
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-weight: 760;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.08;
  text-align: center;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.price-card li::before {
  content: "✓";
  margin-right: 12px;
}

.price-card a {
  width: 100%;
  margin-top: auto;
}

.faq-section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 100px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.14rem;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 100px) 34px;
  background: #fffaf6;
}

.trust-footer span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 760;
  text-align: center;
}

.trust-footer .mini-icon {
  width: 32px;
  height: 32px;
}

.brand-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 34px clamp(20px, 6vw, 100px);
  background: var(--ink);
  color: white;
}

.brand-footer strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 850;
}

.brand-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 760;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .benefits,
  .video-grid,
  .pricing-cards,
  .trust-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-section,
  .pricing {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 420px;
  }

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

  .testimonial-copy {
    padding: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    font-size: 1.65rem;
  }

  .shop-link {
    min-height: 44px;
    padding-inline: 18px;
  }

  .cart-link {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0;
    color: white;
    background: var(--ink);
  }

  .hero-image {
    position: relative;
    height: min(58vh, 470px);
    min-height: 360px;
    object-position: 58% 48%;
    filter: saturate(1.04) contrast(1.01) brightness(1.08);
    transform: none;
  }

  .hero-overlay {
    inset: 0 0 auto;
    height: min(58vh, 470px);
    background:
      linear-gradient(0deg, rgba(20, 17, 14, 0.1), rgba(20, 17, 14, 0) 54%),
      linear-gradient(90deg, rgba(20, 17, 14, 0.08), rgba(20, 17, 14, 0));
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 28px 20px 40px;
    background:
      linear-gradient(180deg, rgba(23, 20, 17, 0.96), var(--ink));
  }

  h1 {
    max-width: 480px;
    font-size: clamp(2.65rem, 12vw, 3.65rem);
    line-height: 1.03;
  }

  .hero-lede {
    max-width: 420px;
    font-size: 1.05rem;
  }

  .benefits,
  .video-grid,
  .pricing-cards,
  .trust-footer,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 24px;
  }

  .badge {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
    padding: 0 8px 0 0;
    gap: 8px;
  }

  .badge:last-child {
    border-right: 0;
  }

  .icon-svg {
    width: 42px;
    height: 42px;
  }

  .badge strong {
    max-width: none;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .primary-button,
  .outline-button {
    width: 100%;
  }

  .benefit-card {
    min-height: 190px;
  }

  .product-section,
  .review-reel,
  .pricing,
  .faq-section {
    padding-inline: 20px;
  }

  .product-photo {
    width: min(340px, 86vw);
    max-height: 420px;
  }

  .testimonial-image {
    max-height: none;
  }

  .brand-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
