:root {
  --black: #050303;
  --black-soft: #0b0707;
  --panel: #120b0b;
  --panel-strong: #1a0e0e;
  --red: #a20f18;
  --red-hot: #e12a2f;
  --wine: #5b0b11;
  --gold: #c79a54;
  --gold-soft: #e0bf7a;
  --text: #f4eee8;
  --muted: #b5a8a0;
  --line: rgba(224, 191, 122, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(162, 15, 24, 0.16), rgba(5, 3, 3, 0) 380px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 92px),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 28px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 154, 84, 0.14);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(5, 3, 3, 0.94) 0%, rgba(22, 7, 8, 0.88) 42%, rgba(5, 3, 3, 0.7) 100%),
    linear-gradient(180deg, transparent 0%, var(--black) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding-top: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 9vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 6vw, 3.85rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 26px;
  color: #ddd0c6;
  font-size: clamp(1.1rem, 4vw, 1.45rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.button-primary {
  color: #fff9f2;
  background: linear-gradient(180deg, var(--red-hot), #971018);
  box-shadow: 0 14px 32px rgba(225, 42, 47, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-wide {
  width: 100%;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.hero-product,
.product-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 84, 0.24);
  border-radius: 8px;
  background: #080505;
  box-shadow: var(--shadow), 0 0 72px rgba(162, 15, 24, 0.24);
}

.hero-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-product figcaption {
  padding: 12px 14px;
  border-top: 1px solid rgba(199, 154, 84, 0.16);
  color: var(--gold-soft);
  background: rgba(5, 3, 3, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 72px 0;
}

.lead {
  color: #e3d6cc;
  font-size: clamp(1.12rem, 3vw, 1.4rem);
}

.pain-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.pain-list div {
  padding: 16px 18px;
  border-left: 3px solid var(--red-hot);
  border-radius: 0 7px 7px 0;
  color: #e8ddd4;
  background: linear-gradient(90deg, rgba(162, 15, 24, 0.2), rgba(18, 11, 11, 0.52));
  font-weight: 750;
}

.closing-line {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 900;
  line-height: 1.18;
}

.mechanism-section,
.transformation-section {
  background: linear-gradient(180deg, rgba(18, 11, 11, 0.68), rgba(5, 3, 3, 0));
  border-top: 1px solid rgba(199, 154, 84, 0.12);
  border-bottom: 1px solid rgba(199, 154, 84, 0.12);
}

.two-column,
.product-grid,
.transformation-grid,
.offer-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.two-column p,
.product-copy p,
.offer-copy p {
  color: #d6c9bf;
  font-size: 1.08rem;
}

.mechanism-box,
.offer-panel,
.before,
.after,
.faq-list details,
.days-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(26, 14, 14, 0.92), rgba(10, 7, 7, 0.92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.mechanism-box {
  padding: 26px;
}

.mechanism-box p:last-child {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.check-list,
.before ul,
.after ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.before li,
.after li {
  position: relative;
  padding-left: 24px;
  color: #efe5db;
}

.check-list li::before,
.after li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-soft);
  content: "✓";
  font-weight: 900;
}

.before li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red-hot);
  content: "×";
  font-weight: 900;
}

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

.days-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.days-grid article {
  padding: 20px;
}

.days-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(224, 191, 122, 0.25);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(199, 154, 84, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.days-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.before,
.after {
  align-self: stretch;
  padding: 26px;
}

.after {
  border-color: rgba(224, 191, 122, 0.4);
  box-shadow: 0 24px 70px rgba(199, 154, 84, 0.09);
}

.offer-section {
  padding-top: 86px;
}

.offer-wrap {
  align-items: stretch;
}

.offer-panel {
  padding: 28px;
  border-color: rgba(224, 191, 122, 0.44);
  background:
    linear-gradient(180deg, rgba(70, 13, 16, 0.5), rgba(10, 7, 7, 0.95)),
    var(--panel);
}

.offer-label {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 8px;
  color: #fff5e8;
  font-size: clamp(4.25rem, 16vw, 6.25rem);
  font-weight: 950;
  line-height: 0.92;
}

.anchor {
  margin-bottom: 22px;
  color: #d9cbc0;
  font-weight: 750;
}

.faq-section {
  padding-bottom: 118px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #fff6ee;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  margin-top: 42px;
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
  margin-inline: auto;
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(224, 191, 122, 0.32);
  border-radius: 8px;
  background: rgba(8, 5, 5, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
}

.sticky-cta strong,
.sticky-cta span {
  display: block;
}

.sticky-cta strong {
  color: #fff7ef;
  font-size: 0.92rem;
  line-height: 1.1;
}

.sticky-cta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.sticky-cta a {
  min-width: 88px;
  padding: 12px 14px;
  border-radius: 7px;
  color: #fff;
  background: var(--red-hot);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 760px) {
  .hero {
    padding: 42px 0 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
    gap: 46px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .two-column,
  .product-grid,
  .transformation-grid,
  .offer-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .product-grid {
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  }

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

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  .days-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .days-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 440px) {
  .shell,
  .narrow {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 14px;
    font-size: 0.96rem;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-subtitle {
    font-size: 1.06rem;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .mechanism-box,
  .offer-panel,
  .before,
  .after,
  .days-grid article {
    padding: 20px;
  }
}
