:root {
  --bg: #0b0b0a;
  --bg-soft: #141412;
  --panel: #171715;
  --panel-2: #20201d;
  --gold: #c99a3b;
  --gold-light: #f1c765;
  --gold-deep: #8a6525;
  --text: #f6f3ea;
  --muted: #c9c2b4;
  --line: rgba(211, 166, 70, 0.58);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.07), transparent 260px),
    linear-gradient(90deg, #050505 0%, #181815 50%, #050505 100%);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100vw, 430px);
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.08), transparent 210px),
    linear-gradient(180deg, #0a0a09 0%, #121210 48%, #080808 100%);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

.section {
  position: relative;
  padding: 30px 18px;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.content-frame {
  position: relative;
  z-index: 2;
}

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

h1,
h2,
h3 {
  font-weight: 900;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.26rem, 6.6vw, 1.72rem);
  line-height: 0.94;
  color: #fffaf0;
}

h1 span,
h2 span {
  color: var(--gold-light);
}

h2 {
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-light);
  font-size: clamp(1.02rem, 4.75vw, 1.34rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.gold-box {
  width: 100%;
  margin: 20px auto 0;
  padding: 14px 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, #b68a3c, #8b6528);
  color: #f5ead7;
  text-align: center;
  font-size: clamp(0.76rem, 3.25vw, 0.9rem);
  line-height: 1.38;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), var(--shadow);
}

.gold-box.small {
  margin-top: 22px;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero {
  padding-top: 26px;
  background: linear-gradient(180deg, #10100f 0%, #191916 100%);
}

.hero-frame {
  display: grid;
  gap: 0;
}

.hero-photo {
  margin: 18px 10px 0;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: #d9d9d2;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.19;
  object-fit: cover;
  object-position: 50% 34%;
}

.symptoms {
  padding-top: 34px;
  padding-bottom: 38px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.07), transparent 245px),
    #10100f;
}

.timeline {
  display: grid;
  gap: 21px;
  margin-top: 26px;
}

.timeline-item {
  display: grid;
  justify-items: center;
  gap: 7px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: rgba(201, 154, 59, 0.38);
}

.icon-circle,
.step-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}

.icon-circle svg,
.step-icon svg,
.info-card svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-item p {
  max-width: 230px;
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
  font-weight: 700;
}

.intro-band {
  padding-top: 22px;
  padding-bottom: 24px;
  background: #1d1d1a;
}

.intro-band .gold-box {
  margin-top: 0;
}

.learning {
  background: #080808;
}

.learning h2 {
  color: #fff8ec;
  font-size: clamp(0.9rem, 3.8vw, 1.05rem);
  line-height: 1.1;
}

.learning h2 span,
.learning h2 strong {
  color: var(--gold-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.info-card {
  min-height: 160px;
  padding: 15px 10px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.info-card span {
  display: grid;
  place-items: center;
  color: var(--gold-light);
  margin-bottom: 9px;
}

.info-card h3 {
  min-height: 34px;
  color: #fff8e9;
  font-size: 0.78rem;
  line-height: 1.05;
  font-weight: 900;
}

.info-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.32;
  font-weight: 600;
}

.method {
  padding-top: 42px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 260px),
    #11110f;
}

.wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  overflow: hidden;
}

.wave::before,
.wave::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 180px;
  left: 50%;
  border: 1px solid rgba(201, 154, 59, 0.34);
  border-color: rgba(201, 154, 59, 0.34) transparent transparent transparent;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-7deg);
}

.wave::before {
  top: -45px;
}

.wave::after {
  top: -16px;
  transform: translateX(-50%) rotate(8deg);
}

.method h2 {
  color: #fff8ec;
  font-size: clamp(1.54rem, 7.1vw, 1.92rem);
  line-height: 1.02;
}

.method h2 span {
  display: block;
}

.proof-image {
  margin: 26px 0 0;
}

.proof-image img {
  width: 100%;
  border-radius: 5px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.44));
}

.process {
  background: #0b0b0a;
  padding-bottom: 38px;
}

.process-list {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 1px;
  height: 17px;
  background: rgba(201, 154, 59, 0.44);
}

.process-step strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: -12px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 0.84rem;
  font-weight: 900;
}

.process-step h3 {
  margin-top: 8px;
  color: #fffaf0;
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 900;
}

.process-step p {
  max-width: 250px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.32;
  font-weight: 600;
}

.clarity {
  background: linear-gradient(180deg, #171714 0%, #080808 100%);
}

.clarity h2 {
  font-size: clamp(1.02rem, 4.8vw, 1.32rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #fff8ec;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: var(--gold-light);
  clip-path: polygon(50% 0, 95% 18%, 86% 78%, 50% 100%, 14% 78%, 5% 18%);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #17140e;
  border-bottom: 2px solid #17140e;
  transform: rotate(-45deg);
}

.final-cta {
  position: relative;
  padding: 24px 16px 30px;
  background: #080808;
}

.cta-image-link {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, filter 180ms ease;
}

.cta-image-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.final-cta img {
  width: 100%;
  height: auto;
}

@media (min-width: 760px) {
  .page-shell {
    width: min(100vw, 430px);
  }

  .section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .final-cta {
    padding-left: 28px;
    padding-right: 28px;
  }
}

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

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