:root {
  --ink: #1a1a1a;
  --ink-soft: #252525;
  --gold: #c9a84c;
  --gold-dark: #ab8a32;
  --warm: #f8f5ee;
  --cream: #fef9ec;
  --muted: #666;
  --white: #fff;
  --line: #e4dfd2;
  --shadow: 0 14px 38px rgba(26, 26, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.section {
  padding: 88px 0;
}

.warm-section {
  background: var(--warm);
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

h1 {
  max-width: 1000px;
  margin: 0 auto 24px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
}

h3 {
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60px;
  padding: 18px 30px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.button:hover {
  background: var(--gold-dark);
  box-shadow: 0 16px 38px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 168, 76, 0.45);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 760px;
  padding: 100px 0 82px;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 720px;
  height: 540px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 68%);
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.hero-button {
  margin-bottom: 54px;
}

.hero-stats {
  display: grid;
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 0.75fr 0.75fr 1.2fr 2fr;
}

.hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 76px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 1.4rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.hero-stat .stat-icon {
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 15px;
  background: var(--gold);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  from { transform: translateY(-15px); }
  to { transform: translateY(30px); }
}

.problem-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.85fr 1.15fr;
}

.problem-copy {
  position: sticky;
  top: 50px;
}

.problem-copy p:last-child {
  max-width: 480px;
  color: #4c4c4c;
  font-size: 1.02rem;
}

.problem-copy strong {
  color: var(--ink);
}

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

.pain-card {
  display: grid;
  align-items: center;
  min-height: 82px;
  padding: 19px 24px 19px 0;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 65px 1fr;
  transition: transform 180ms ease;
}

.pain-card:hover {
  transform: translateX(5px);
}

.pain-card span {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-align: center;
}

.pain-card p {
  margin-bottom: 0;
  color: #3f3f3f;
  line-height: 1.45;
}

.gold-rule {
  width: 52px;
  height: 2px;
  margin: 0 auto 28px;
  background: var(--gold);
}

.lead {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 600;
}

.solution-copy {
  display: grid;
  gap: 18px;
  color: #4a4a4a;
  font-size: 1.04rem;
}

.solution-copy p {
  margin: 0;
}

.solution-copy strong {
  color: var(--ink);
}

.section-header {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p:last-child {
  max-width: 670px;
  margin-inline: auto;
  color: var(--muted);
}

.section-header.light p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 22px;
  text-align: left;
}

th {
  color: var(--ink);
  background: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

tbody tr:nth-child(odd) {
  background: #232323;
}

tbody tr:nth-child(even) {
  background: #292929;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:nth-child(2),
td:nth-child(3) {
  white-space: nowrap;
}

.diagnostic-stats {
  display: grid;
  max-width: 650px;
  margin: 44px auto 0;
  grid-template-columns: repeat(3, 1fr);
}

.diagnostic-stats div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.diagnostic-stats div:last-child {
  border-right: 0;
}

.diagnostic-stats strong {
  display: block;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 2.1rem;
  line-height: 1;
}

.diagnostic-stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.module-card {
  position: relative;
  display: flex;
  min-height: 295px;
  padding: 36px 30px 28px 34px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
  box-shadow: 0 20px 45px rgba(26, 26, 26, 0.12);
  transform: translateY(-5px);
}

.module-number {
  display: grid;
  width: 44px;
  height: 32px;
  margin-bottom: 25px;
  color: var(--ink);
  background: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  place-items: center;
}

.module-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.module-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.module-tag {
  margin-top: auto;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-card-last {
  grid-column: 2;
}

.golden-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 790px;
  margin: 34px auto 0;
  padding: 22px 28px;
  border: 1px solid var(--gold);
  background: var(--cream);
  text-align: center;
}

.golden-note span {
  color: var(--gold);
  font-size: 1.25rem;
}

.golden-note p {
  margin: 0;
}

.audience-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.audience-card {
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: var(--white);
  box-shadow: var(--shadow);
}

.audience-card h3 {
  margin: 0;
  padding: 20px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-yes h3 {
  color: var(--gold);
  background: var(--ink);
}

.audience-no h3 {
  background: #f0f0f0;
}

.audience-card ul,
.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 16px 28px 24px;
  list-style: none;
}

.audience-card li,
.feature-list li {
  display: grid;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid #ededed;
  color: #454545;
  grid-template-columns: 20px 1fr;
  line-height: 1.45;
}

.audience-card li:last-child,
.feature-list li:last-child {
  border-bottom: 0;
}

.audience-yes li span,
.feature-list li span {
  color: var(--gold-dark);
  font-weight: 900;
}

.audience-no li span {
  color: #aaa;
  font-weight: 900;
}

.price-section {
  position: relative;
  overflow: hidden;
}

.price-section::before {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.pricing-card {
  position: relative;
  max-width: 510px;
  margin: 0 auto;
  padding: 44px;
  border: 2px solid var(--gold);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.mini-label {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-top h3 {
  margin: 10px 0 4px;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.price-top p {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.feature-list li {
  padding: 10px 0;
  border: 0;
  font-size: 0.9rem;
}

.price-value > span {
  display: block;
  color: #888;
  font-size: 0.84rem;
}

.price-value strong {
  display: block;
  margin: 2px 0;
  font-size: 4rem;
  letter-spacing: -0.07em;
  line-height: 1.05;
}

.price-value strong small {
  margin-right: 8px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.price-value p {
  color: #888;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-button {
  width: 100%;
  margin-top: 18px;
}

.delivery-note {
  margin: 16px 0 0;
  color: #8a8a8a;
  font-size: 0.72rem;
  line-height: 1.5;
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

summary span::before,
summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

summary span::after {
  transform: rotate(90deg);
}

details[open] summary span::after {
  transform: rotate(0);
}

details > p {
  max-width: 690px;
  margin: -5px 0 24px;
  color: var(--muted);
}

.final-section h2 {
  margin-bottom: 10px;
}

.final-question {
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
}

.final-copy {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
}

.final-copy p {
  margin: 0;
}

.final-copy strong {
  color: var(--white);
}

.microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

footer {
  padding: 26px 20px;
  color: rgba(255, 255, 255, 0.34);
  background: #111;
  font-size: 0.72rem;
  text-align: center;
}

footer p {
  margin: 0;
}

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

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

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 110px 0 88px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) {
    border-right: 0;
  }

  .hero-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .problem-grid {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .problem-copy {
    position: static;
  }

  .problem-copy p:last-child {
    max-width: 680px;
  }

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

  .module-card-last {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 70px 0;
  }

  .hero::before {
    inset: 10px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

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

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-button {
    margin-bottom: 40px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    min-height: 84px;
    padding: 12px 8px;
    flex-direction: column;
    gap: 2px;
  }

  .hero-stat span {
    text-align: center;
  }

  .hero-stat-wide span {
    font-size: 0.62rem;
  }

  .pain-card {
    padding-right: 17px;
    grid-template-columns: 50px 1fr;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .table-wrap {
    margin-right: -14px;
    margin-left: -14px;
    border-right: 0;
    border-left: 0;
  }

  table {
    min-width: 680px;
  }

  th,
  td {
    padding: 15px 17px;
  }

  .diagnostic-stats strong {
    font-size: 1.6rem;
  }

  .diagnostic-stats span {
    font-size: 0.58rem;
  }

  .module-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 0;
  }

  .golden-note {
    align-items: flex-start;
    text-align: left;
  }

  .pricing-card {
    padding: 36px 22px;
  }

  .price-value strong {
    font-size: 3.55rem;
  }

  summary {
    padding: 21px 2px;
  }
}

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

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

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