:root {
  --ink: #141414;
  --muted: #5d5b57;
  --paper: #fffaf5;
  --white: #ffffff;
  --pink: #f25a9b;
  --pink-dark: #cf2f78;
  --gold: #f8c95c;
  --mint: #c9f2df;
  --line: #e8ded6;
  --shadow: 0 22px 60px rgba(42, 31, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a,
.site-footer a {
  text-decoration: none;
}

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

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: center;
  padding: 52px 0 70px;
}

.eyebrow,
.section-kicker,
.mini-label,
.order-label {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7.5vw, 6.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-primary {
  color: var(--white);
  background: var(--pink);
}

.button-secondary {
  background: var(--white);
}

.button-full {
  width: 100%;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.stat-row span {
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.stat-row strong {
  color: var(--ink);
}

.hero-product {
  display: flex;
  justify-content: center;
}

.mockup-stage {
  position: relative;
  width: min(520px, 100%);
  min-height: 560px;
  display: grid;
  place-items: center;
}

.ebook-cover {
  position: relative;
  z-index: 2;
  width: min(470px, 84vw);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mockup-paper {
  position: absolute;
  width: 245px;
  height: 335px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(20, 20, 20, 0.16);
}

.paper-one {
  top: 72px;
  right: 20px;
  transform: rotate(7deg);
}

.paper-two {
  bottom: 88px;
  left: 8px;
  background: var(--mint);
  transform: rotate(-8deg);
}

.mockup-note {
  position: absolute;
  z-index: 3;
  right: 2px;
  bottom: 72px;
  width: 160px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(3deg);
}

.ugc-badge {
  position: absolute;
  z-index: 4;
  top: 88px;
  left: 12px;
  max-width: 160px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--ink);
  color: #1d3b2e;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.mockup-note span,
.mockup-note strong {
  display: block;
}

.mockup-note span {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-note strong {
  margin-top: 4px;
  line-height: 1.15;
}

.intro-band {
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 58px 0;
}

.intro-grid h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.intro-grid p:last-child {
  color: #f0e3d8;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 70px);
  padding: 82px 0;
}

.split > div:first-child p:not(.section-kicker),
.template-stack p,
.proof-copy p,
.audience > p:not(.section-kicker),
.order-product p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 900;
}

.template-stack {
  padding: 20px 0 86px;
}

.stack-header {
  max-width: 760px;
}

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

.category-grid article {
  padding: 22px;
  min-height: 172px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 62px clamp(20px, 5vw, 58px);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
}

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

.proof-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #f6f1eb;
}

.proof-stat strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.proof-stat span {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.audience {
  padding: 92px 0;
}

.audience h2 {
  max-width: 920px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.check-grid p {
  min-height: 148px;
  margin: 0;
  padding: 20px;
  background: var(--mint);
  border: 1px solid #9fd6bd;
  border-radius: 8px;
  color: #1d3b2e;
  font-weight: 800;
  line-height: 1.35;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  margin-bottom: 90px;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
}

.order-product {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.order-product img {
  width: 250px;
  border-radius: 7px;
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.14);
}

.order-product h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
}

.order-product p {
  color: #f0e3d8;
}

.order-box {
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}

.order-box h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.checkout-intro {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.order-summary {
  margin-bottom: 18px;
}

.order-line,
.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.muted {
  color: var(--muted);
}

.order-total {
  margin-bottom: 18px;
  border-bottom: 0;
  font-size: 1.25rem;
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.whop-checkout {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 360px;
}

.whop-checkout span {
  display: block;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.whop-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f8f8;
}

.whop-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.whop-fallback strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.whop-fallback p {
  margin: 0;
  line-height: 1.55;
}

.whop-frame:has(iframe) .whop-fallback {
  display: none;
}

.faq {
  max-width: 860px;
  padding-bottom: 90px;
}

details {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

details p {
  max-width: 680px;
  padding-bottom: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .proof,
  .order-section,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .mockup-stage {
    min-height: 500px;
  }

  .category-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .button {
    min-height: 50px;
    padding-inline: 16px;
  }

  .mockup-stage {
    min-height: 440px;
  }

  .ebook-cover {
    width: min(330px, 86vw);
  }

  .mockup-paper {
    width: 205px;
    height: 280px;
  }

  .mockup-note {
    right: 12px;
    bottom: 48px;
  }

  .ugc-badge {
    top: 52px;
    left: 8px;
    max-width: 132px;
    font-size: 0.72rem;
  }

  .category-grid,
  .check-grid,
  .order-product {
    grid-template-columns: 1fr;
  }

  .order-section {
    padding: 22px;
  }

  .order-product img {
    width: 220px;
  }
}
