:root {
  --bg: #0b0d10;
  --panel: #151922;
  --text: #f5f7fb;
  --muted: #a9b0bd;
  --accent: #84f2b1;
  --line: rgba(255, 255, 255, 0.10);
  --accent-strong: #6be39e;
  --panel-strong: #10141c;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(132, 242, 177, 0.18), transparent 22%),
    radial-gradient(circle at left 12% top 28%, rgba(116, 152, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #07090c 0%, #0b0d10 100%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Georgia", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(14px);
}

.page-shell::before {
  top: 120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(132, 242, 177, 0.11);
}

.page-shell::after {
  bottom: 120px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(115, 140, 255, 0.10);
}

.topbar,
.page {
  position: relative;
  z-index: 1;
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.topbar__brand {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__meta {
  max-width: 40ch;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.45;
  text-align: right;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 72px;
}

.section {
  margin-bottom: 24px;
}

.section-card,
.hero,
.checkout-stub,
.proof-panel {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.section-card,
.hero {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 22px;
}

.section-label,
.eyebrow,
.proof-panel__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head p,
.lead,
.proof-copy,
.offer-note,
.identity-note,
.faq-grid p,
.checkout-stub p,
.pain-card p,
.step-card p,
.offer-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  position: relative;
  padding-top: 42px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(132, 242, 177, 0.15), transparent 24%),
    linear-gradient(140deg, transparent 52%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-sidebar {
  display: grid;
  align-content: start;
}

.hero-copy {
  gap: 20px;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.97;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #031108;
}

.cta:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}

.identity-note {
  max-width: 58ch;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.proof-panel {
  gap: 18px;
  border-radius: 28px;
  padding: 22px;
}

.proof-panel,
.offer-card {
  display: grid;
}

.author-frame {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 12px;
}

.author-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  object-position: center top;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(132, 242, 177, 0.08), transparent 38%);
}

.author-placeholder {
  min-height: 220px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(132, 242, 177, 0.08), transparent 38%);
}

.author-meta {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.signal-chip {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.pain-grid,
.steps-grid {
  list-style: none;
}

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

.pain-card,
.step-card,
.proof-shot,
.offer-card,
.faq-grid details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

.pain-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

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

.proof-shot {
  display: grid;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
}

.proof-shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0d1117;
}

.proof-shot figcaption {
  color: var(--muted);
  line-height: 1.6;
}

.method-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.method-diagram,
.method-photo-card,
.flow-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

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

.flow-step {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.flow-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(132, 242, 177, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.method-photo-card {
  overflow: hidden;
}

.method-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.method-photo-card figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.method-notes {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.method-notes li {
  position: relative;
  padding: 16px 18px 16px 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  line-height: 1.6;
}

.method-notes li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

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

.step-card {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(132, 242, 177, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.offer-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: start;
}

.offer-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.offer-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.6;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.offer-card {
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(132, 242, 177, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.offer-price {
  font-size: 0.94rem;
  font-weight: 700;
  color: #031108;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 86px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.cta-repeat {
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #10141c, #171d28);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.cta-repeat p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-stub {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(132, 242, 177, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-xl);
  padding: 34px;
  display: grid;
  gap: 16px;
}

.checkout-steps {
  display: grid;
  gap: 12px;
}

.checkout-step {
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

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

.faq-grid details {
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-family: "Iowan Old Style", "Georgia", serif;
  font-size: 1.2rem;
  color: var(--text);
}

.faq-grid details p {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .pain-grid,
  .steps-grid,
  .method-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-shell,
  .method-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .topbar,
  .page {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .topbar__meta {
    text-align: left;
    font-size: 13px;
  }

  .section-card,
  .hero,
  .checkout-stub,
  .cta-repeat {
    padding: 24px;
  }

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

  .pain-grid,
  .steps-grid,
  .signal-row,
  .method-diagram {
    grid-template-columns: 1fr;
  }

  .cta,
  .secondary-link {
    width: 100%;
  }

  h1 {
    max-width: none;
  }
}
