:root {
  --bg: #17110c;
  --bg-2: #241811;
  --paper: #f5ecdf;
  --paper-2: #ead8bf;
  --ink: #17110c;
  --muted: #68584a;
  --gold: #c9954c;
  --gold-soft: #f1d59d;
  --cinnabar: #b53d31;
  --jade: #2d5b49;
  --white: #fff8ec;
  --line: rgba(68, 43, 27, 0.18);
  --shadow: 0 28px 80px rgba(41, 22, 10, 0.22);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 248, 236, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

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

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(20px, 4vw, 62px);
  border-bottom: 1px solid rgba(255, 248, 236, 0.11);
  background: rgba(18, 13, 9, 0.86);
  backdrop-filter: blur(20px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(241, 213, 157, 0.55);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold-soft);
}

.header-cta {
  justify-self: end;
  color: var(--gold-soft);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 5vw, 76px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: calc(100vh - 64px);
  background:
    linear-gradient(90deg, rgba(18, 13, 9, 0.97), rgba(18, 13, 9, 0.72) 48%, rgba(18, 13, 9, 0.24)),
    url("assets/hero-premium-bg.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 28%, rgba(201, 149, 76, 0.24), transparent 32%),
    linear-gradient(180deg, transparent 64%, rgba(18, 13, 9, 0.92));
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.tier {
  margin: 0 0 22px;
  color: var(--cinnabar);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 900;
  font-variant-numeric: lining-nums;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.hero .eyebrow,
.manifesto .eyebrow,
.final-cta .eyebrow {
  color: var(--gold-soft);
  font-size: clamp(26px, 2vw, 38px);
}

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

.event-date {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 14px 7px;
  border: 1px solid rgba(241, 213, 157, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241, 213, 157, 0.2), rgba(181, 61, 49, 0.34));
  color: var(--white);
  box-shadow: 0 14px 38px rgba(181, 61, 49, 0.18);
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(241, 213, 157, 0.5);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  color: #211409;
  box-shadow: 0 18px 42px rgba(201, 149, 76, 0.24);
}

.button-ghost {
  background: rgba(255, 248, 236, 0.05);
  color: var(--white);
}

.button.full {
  width: 100%;
  margin-top: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid rgba(241, 213, 157, 0.23);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 16px;
  font-weight: 800;
  padding: 9px 13px;
}

.hero-card,
.visual-panel,
.review-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 213, 157, 0.25);
  border-radius: 28px;
  background: #21170f;
  box-shadow: var(--shadow);
}

.hero-card {
  animation: softFloat 8s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  height: clamp(480px, 52vw, 680px);
  object-fit: cover;
  transform: scale(1.01);
}

.hero-card::after,
.review-visual::after,
.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(18, 13, 9, 0.82));
}

.hero-card-copy,
.review-visual figcaption,
.visual-panel figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: var(--white);
}

.hero-card-copy span,
.review-visual span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 900;
  font-variant-numeric: lining-nums;
  line-height: 1.12;
  text-transform: none;
}

.hero-card-copy strong,
.review-visual strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.method,
.program,
.pricing,
.faq {
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 149, 76, 0.12), transparent 28%),
    var(--paper);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.section-heading p,
.conversion-card li,
.program-body p,
.price-card li,
.faq-list p {
  color: #514236;
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1.62;
}

.section-heading .eyebrow {
  color: var(--cinnabar);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 900;
  font-variant-numeric: lining-nums;
  line-height: 1.12;
  text-transform: none;
}

.section-heading.compact {
  max-width: 860px;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.visual-panel {
  min-height: 520px;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel figcaption {
  max-width: 420px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

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

.elements-grid article,
.price-card,
.review-card,
.conversion-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 18px 48px rgba(70, 42, 20, 0.08);
}

.elements-grid article,
.program-item,
.price-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.elements-grid article:hover,
.program-item:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 61, 49, 0.32);
  box-shadow: 0 24px 62px rgba(70, 42, 20, 0.13);
}

.elements-grid article {
  min-height: 190px;
  padding: 22px;
}

.elements-grid article:last-child {
  grid-column: 1 / -1;
}

.elements-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--cinnabar);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  line-height: 0.9;
}

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

.manifesto {
  background:
    linear-gradient(90deg, rgba(22, 14, 9, 0.92), rgba(84, 28, 22, 0.76)),
    url("assets/program-limits-release.png") center / cover no-repeat;
}

.manifesto-panel {
  max-width: 930px;
}

.manifesto h2,
.manifesto p {
  color: var(--white);
}

.manifesto-panel p:last-child {
  max-width: 720px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 21px;
  line-height: 1.58;
}

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

.program-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff9f0;
  box-shadow: 0 18px 54px rgba(56, 32, 17, 0.1);
}

.program-media {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: transform 360ms ease;
}

.program-item:hover .program-media {
  transform: scale(1.035);
}

.program-body {
  padding: 24px;
}

.program-body span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--cinnabar);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.program-body p {
  margin-bottom: 0;
}

.program-item.dark {
  background: #21150f;
}

.program-item.dark h3,
.program-item.dark p {
  color: var(--white);
}

.conversion {
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.88), rgba(20, 14, 10, 0.62)),
    url("assets/hero-premium-bg.png") center / cover no-repeat;
}

.conversion-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.44fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.conversion-card {
  padding: clamp(30px, 5vw, 62px);
  background: rgba(255, 248, 236, 0.94);
}

.conversion-card h2 {
  max-width: 900px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(20px, 1.25vw, 24px);
}

.check-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--cinnabar);
}

.conversion-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(241, 213, 157, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(33, 21, 15, 0.46), rgba(33, 21, 15, 0.94)),
    url("assets/program-time-map.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  color: var(--white);
}

.conversion-note span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  border: 1px solid rgba(241, 213, 157, 0.44);
  border-radius: 50%;
  background: rgba(181, 61, 49, 0.92);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.conversion-note strong {
  display: block;
  max-width: 360px;
  margin-top: 80px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.98;
}

.conversion-note p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.55;
}

.premium-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 2px 0 24px;
}

.premium-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  color: #4d3d31;
  padding: 18px 20px;
}

.premium-strip span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cinnabar);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.premium-strip strong {
  color: var(--ink);
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 1.1;
}

.premium-strip p {
  grid-column: 2;
  margin: 0;
  color: #5c4a3d;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.45;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(181, 61, 49, 0.48);
  background: linear-gradient(180deg, #fff8ec, #f0dcc0);
  transform: translateY(-14px);
  box-shadow: 0 28px 84px rgba(181, 61, 49, 0.18);
}

.price-card.featured:hover {
  transform: translateY(-18px);
}

.badge {
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--cinnabar);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.price-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.2vw, 52px);
}

.price {
  margin-bottom: 14px;
  color: var(--cinnabar);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 700;
  line-height: 0.9;
}

.subtitle {
  min-height: 50px;
  color: var(--muted);
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding-left: 18px;
}

.price-card .button-ghost {
  background: #20140d;
  border-color: #20140d;
  color: var(--white);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  background: var(--paper-2);
}

.review-visual {
  aspect-ratio: 1.08;
}

.review-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  padding: clamp(30px, 5vw, 60px);
}

blockquote {
  margin: 0;
  color: #3c3027;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.5;
}

.review-author {
  margin: 24px 0 0;
  color: var(--cinnabar);
  font-weight: 900;
}

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

.faq-list details {
  padding: 22px 24px;
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  max-width: 760px;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(18, 13, 9, 0.82), rgba(18, 13, 9, 0.92)),
    url("assets/method-elements-visual.png") center / cover no-repeat;
}

.final-cta h2 {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid rgba(255, 248, 236, 0.12);
  background: #120d09;
  color: rgba(255, 248, 236, 0.65);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav {
    display: none;
  }

  .hero,
  .method-layout,
  .conversion-inner,
  .reviews {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 720px;
  }

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

  .conversion-note {
    min-height: 420px;
  }

  .program-media {
    aspect-ratio: 1.9;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }
}

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

  .brand {
    font-size: 12px;
  }

  .brand span {
    width: 30px;
    height: 30px;
    font-size: 19px;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 58px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
    background:
      linear-gradient(180deg, rgba(18, 13, 9, 0.96), rgba(18, 13, 9, 0.76)),
      url("assets/hero-premium-bg.png") center / cover no-repeat;
  }

  h1 {
    font-size: 40px;
    line-height: 0.96;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .footer,
  .check-list,
  .premium-strip,
  .elements-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .trust-row {
    display: none;
  }

  .hero-card img {
    height: 360px;
  }

  .hero-card,
  .visual-panel,
  .review-visual,
  .program-item,
  .price-card,
  .review-card,
  .conversion-card,
  .faq-list details {
    border-radius: 22px;
  }

  .visual-panel {
    min-height: 360px;
  }

  .conversion-note {
    min-height: 340px;
  }

  .conversion-note strong {
    margin-top: 56px;
  }

  .program-media {
    aspect-ratio: 1.3;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
  }
}
