:root {
  --ink: #141413;
  --muted: #6f6b61;
  --paper: #f5f0e7;
  --paper-2: #ebe2d3;
  --line: rgba(20, 20, 19, 0.13);
  --gold: #c7a45a;
  --gold-2: #e6c777;
  --coal: #090908;
  --coal-2: #171514;
  --white: #fffaf0;
  --red: #9d3028;
  --green: #1f5c50;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 14px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.nav .nav-cta {
  color: #18130c;
  background: var(--gold-2);
  border-color: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 96px clamp(18px, 5vw, 72px) 88px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.86) 0%, rgba(3, 3, 3, 0.56) 31%, rgba(3, 3, 3, 0.08) 55%, rgba(3, 3, 3, 0.38) 100%),
    url("ChatGPT Image May 16, 2026, 06_52_25 PM.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(9, 9, 8, 0), rgba(9, 9, 8, 0.92));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(35vw, 560px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 74px);
  max-width: 100%;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 62px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(17px, 1.25vw, 20px);
}

.hero-note {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(15px, 1vw, 17px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--gold-2);
  color: #191209;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.36);
  color: var(--white);
  background: rgba(255, 250, 240, 0.07);
}

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

.hero-strip {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  color: rgba(255, 250, 240, 0.86);
  background: rgba(0, 0, 0, 0.22);
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.story p,
.section-heading p,
.money-section p,
.mistakes p,
.proof-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

.intro {
  background: var(--paper);
}

.numbers {
  padding-top: 18px;
  background: var(--paper);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

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

.number-grid,
.type-grid,
.example-grid,
.proof-grid,
.lever-grid {
  display: grid;
  gap: 16px;
}

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

.number-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.5);
}

.number-card.strong {
  background: var(--ink);
  color: var(--white);
}

.number-card p {
  color: var(--muted);
}

.number-card.strong p {
  color: rgba(255, 250, 240, 0.74);
}

.number {
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
  color: var(--red);
}

.number-card.strong .number {
  color: var(--gold-2);
}

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

.dark-section .section-heading p,
.dark-section .lever p,
.dark-section .proof-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.pain-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pain-question,
.pain-list,
.lever,
.type-card,
.example-card,
.mistake-stack article,
.proof-grid article,
.revenue-table,
.cta-box {
  border-radius: 8px;
}

.pain-question {
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(135deg, rgba(199, 164, 90, 0.22), rgba(255, 250, 240, 0.05));
  border: 1px solid rgba(230, 199, 119, 0.22);
}

.pain-question span,
.type-card span,
.timeline-item span,
.proof-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-weight: 800;
}

.pain-question p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
}

.pain-list {
  display: grid;
  border: 1px solid rgba(255, 250, 240, 0.12);
  overflow: hidden;
}

.pain-list div {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  background: rgba(255, 250, 240, 0.05);
}

.pain-list div:last-child {
  border-bottom: 0;
}

.pain-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.pain-list span {
  color: rgba(255, 250, 240, 0.66);
}

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

.lever {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.03));
}

.lever.wide {
  grid-column: span 3;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 26px;
  align-items: start;
}

.lever.wide p {
  grid-column: 2;
}

.lever-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold-2);
  color: #17110a;
  font-weight: 900;
}

.archetypes,
.money-section,
.examples-section {
  background: var(--paper-2);
}

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

.type-card,
.example-card,
.mistake-stack article {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.56);
}

.type-card span {
  color: var(--red);
}

.type-card p,
.example-card p,
.mistake-stack p {
  color: var(--muted);
}

.type-card b {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--green);
}

.revenue-table {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.7);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row.head {
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.table-row strong {
  color: var(--red);
  font-size: 24px;
}

.stages-section {
  background: var(--paper);
}

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

.timeline-item {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.54);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 4px;
  background: var(--red);
}

.timeline-item span {
  color: var(--red);
}

.timeline-item p {
  color: var(--muted);
}

.proof-section {
  padding-bottom: clamp(70px, 8vw, 112px);
}

.proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.proof-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.05);
}

.proof-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.mistake-stack {
  display: grid;
  gap: 14px;
}

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

.formula h2 {
  max-width: 1120px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
}

.sources {
  padding-top: 62px;
  padding-bottom: 62px;
  background: var(--paper);
}

.sources h2 {
  max-width: 880px;
  font-size: clamp(25px, 3vw, 42px);
}

.source-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.source-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 250, 240, 0.54);
  font-weight: 800;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(157, 48, 40, 0.12), rgba(31, 92, 80, 0.14)),
    var(--paper-2);
}

.cta-box {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(20, 20, 19, 0.12);
  background: rgba(255, 250, 240, 0.72);
}

.cta-box h2 {
  max-width: 960px;
}

.cta-box p {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
}

@media (max-width: 1080px) {
  .type-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lever.wide {
    grid-column: span 2;
  }

  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 14px 16px;
  }

  .nav {
    max-width: none;
    gap: 6px;
    justify-content: flex-start;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 920px;
    padding: 140px 18px 260px;
    background-position: 57% center;
  }

  .hero-content {
    width: min(100%, 354px);
    max-width: 354px;
  }

  h1 {
    font-size: 27px;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-actions .secondary {
    display: none;
  }

  .hero-strip {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 43px;
  }

  .two-col,
  .pain-panel,
  .type-grid,
  .timeline,
  .proof-grid,
  .lever-grid,
  .number-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .lever,
  .timeline-item,
  .number-card {
    min-height: 0;
  }

  .lever.wide {
    grid-column: auto;
    display: block;
  }

  .lever.wide p {
    grid-column: auto;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 27px;
    line-height: 1.12;
  }

  h2 {
    font-size: 31px;
  }

  .mark {
    font-size: 18px;
  }
}
