/* ============================================================
   THE NEW RULES OF MONEY — Premium Sales Funnel Styles
   ============================================================ */

:root {
  --deep-black: #1a1714;
  --charcoal: #efe8d8;
  --premium-gold: #b8922a;
  --light-gold: #d4af37;
  --warm-ivory: #faf6ee;
  --white: #ffffff;

  --text-muted: rgba(26, 23, 20, 0.72);
  --text-soft: rgba(26, 23, 20, 0.55);
  --border-subtle: rgba(184, 146, 42, 0.4);
  --border-soft: rgba(26, 23, 20, 0.1);
  --gold-glow: rgba(184, 146, 42, 0.28);
  --surface: #fffdf8;
  --surface-elevated: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --container: min(1120px, calc(100% - 2.5rem));
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --radius: 4px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--deep-black);
  background: var(--warm-ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--premium-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--premium-gold);
  color: var(--deep-black);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section--ivory {
  background: var(--white);
  color: var(--deep-black);
}

.section--charcoal {
  background: var(--charcoal);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--premium-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  max-width: 18ch;
}

.section-title--wide {
  max-width: 22ch;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro {
  margin-top: 1.25rem;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section--ivory .section-intro {
  color: rgba(8, 8, 8, 0.7);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-intro {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
    box-shadow var(--transition), transform var(--transition),
    border-color var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--premium-gold), var(--light-gold));
  color: var(--deep-black);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.32);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Always-highlighted purchase CTA */
.buy-button {
  position: relative;
  z-index: 1;
  animation: cta-pulse 2.4s ease-in-out infinite;
  box-shadow:
    0 0 0 0 rgba(212, 175, 55, 0.45),
    0 8px 28px rgba(212, 175, 55, 0.35);
}

.buy-button:hover {
  animation: none;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.cta-hand {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transform-origin: center top;
  animation: hand-tap 1.1s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.header-cta .cta-hand {
  font-size: 1.15em;
  margin-right: 0.1rem;
}

/* Floating hand pointer beside sticky header CTA */
.header-cta-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-cta-wrap .cta-hand-float,
.cta-block__wrap .cta-hand-float {
  position: absolute;
  right: 18%;
  bottom: -1.55rem;
  font-size: 1.65rem;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  animation: hand-point 1.15s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2.5rem;
}

.cta-block__wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.cta-block .btn-note {
  margin-top: 0;
}

.cta-block--above-book {
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.cta-block--above-book .cta-block__wrap {
  margin-bottom: 1.85rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--ivory .cta-block .btn-note {
  color: rgba(8, 8, 8, 0.55);
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(212, 175, 55, 0.5),
      0 8px 28px rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(212, 175, 55, 0),
      0 10px 34px rgba(212, 175, 55, 0.5);
  }
}

@keyframes hand-tap {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(3px) scale(0.92);
  }
  60% {
    transform: translateY(0) scale(1.05);
  }
}

@keyframes hand-point {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(6px) rotate(-8deg);
  }
}

.btn--secondary {
  border: 1px solid var(--border-subtle);
  color: var(--deep-black);
  background: transparent;
}

.btn--secondary:hover {
  border-color: var(--premium-gold);
  color: var(--premium-gold);
}

.btn--large {
  min-height: 3.75rem;
  padding: 1.05rem 2.25rem;
  font-size: 0.9375rem;
}

.btn-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.section--ivory .btn-note {
  color: rgba(8, 8, 8, 0.55);
}

/* Book mockup */
.book-mockup {
  position: relative;
  width: min(100%, 320px);
  margin-inline: auto;
  perspective: 1200px;
}

.book-mockup__spine {
  position: absolute;
  left: 0;
  top: 3%;
  bottom: 3%;
  width: 18px;
  background: linear-gradient(90deg, #1a1508, #2a2410 40%, #3a3018);
  transform: skewY(-2deg);
  border-radius: 2px 0 0 2px;
  z-index: 1;
}

.book-mockup__cover {
  position: relative;
  z-index: 2;
  margin-left: 14px;
  border-radius: 2px 6px 6px 2px;
  overflow: hidden;
  box-shadow:
    18px 24px 50px rgba(26, 23, 20, 0.18),
    0 0 0 1px rgba(184, 146, 42, 0.28),
    inset -8px 0 20px rgba(0, 0, 0, 0.12);
  transform: rotateY(-12deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.book-mockup:hover .book-mockup__cover {
  transform: rotateY(-6deg) rotateX(1deg);
}

.book-mockup__cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.book-mockup__glow {
  position: absolute;
  inset: 10% -10% -10% 20%;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Site header — always sticky at top */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0 1.65rem;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 146, 42, 0.35);
  box-shadow: 0 8px 30px rgba(26, 23, 20, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--deep-black);
  min-width: 0;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand span {
  color: var(--premium-gold);
}

.header-cta {
  display: inline-flex;
  flex-shrink: 0;
  min-height: 2.65rem;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (min-width: 640px) {
  .header-cta {
    min-height: 2.85rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  min-height: calc(100dvh - 4.5rem);
  display: flex;
  align-items: center;
  padding: 3.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(184, 146, 42, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(184, 146, 42, 0.08), transparent 50%),
    linear-gradient(180deg, var(--warm-ivory) 0%, var(--charcoal) 100%);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}

.hero__growth {
  position: absolute;
  right: 5%;
  bottom: 12%;
  width: min(280px, 35vw);
  height: 160px;
  opacity: 0.18;
  pointer-events: none;
}

.hero__growth svg {
  width: 100%;
  height: 100%;
}

.hero__inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--premium-gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--deep-black);
}

.hero__subtitle {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--premium-gold);
  letter-spacing: 0.04em;
}

.hero__tagline {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__quote {
  margin: 1.75rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--premium-gold);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--premium-gold);
  max-width: 36ch;
}

.hero__copy {
  max-width: 48ch;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__actions .cta-block__wrap {
  margin-bottom: 1.75rem;
}

.hero__actions .btn-note {
  margin-top: 0;
}

/* ========== PROBLEM ========== */
.problem-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 720px) {
  .problem-list {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.problem-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  color: var(--premium-gold);
}

.problem-item p {
  color: var(--text-muted);
  font-size: 0.9875rem;
}

.problem-close {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(184, 146, 42, 0.1), transparent);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--deep-black);
  max-width: 48ch;
}

/* ========== SOLUTION ========== */
.solution-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.solution-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.solution-points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.solution-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--premium-gold);
  flex-shrink: 0;
}

.quote-block {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  position: relative;
  box-shadow: 0 12px 40px rgba(26, 23, 20, 0.06);
}

.quote-block::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--premium-gold);
  opacity: 0.35;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--deep-black);
  position: relative;
  z-index: 1;
}

/* ========== LEARN CARDS ========== */
.learn-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .learn-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .learn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.learn-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--premium-gold);
  transition: border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  height: 100%;
}

.learn-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 23, 20, 0.1);
}

.learn-card__number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--premium-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.learn-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--deep-black);
}

.learn-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== WHO FOR ========== */
.checklist {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin-inline: auto;
}

.checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.08);
  font-size: 1.02rem;
  color: rgba(8, 8, 8, 0.85);
}

.checklist__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--premium-gold);
  color: var(--deep-black);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ========== PROMISE COLUMNS ========== */
.promise-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.promise-col {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
}

.promise-col--no {
  background: var(--surface);
  border: 1px solid var(--border-soft);
}

.promise-col--yes {
  background: linear-gradient(160deg, rgba(184, 146, 42, 0.16), rgba(255, 253, 248, 0.95));
  border: 1px solid var(--border-subtle);
}

.promise-col h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1.35rem;
  letter-spacing: 0.04em;
}

.promise-col--no h3 {
  color: var(--text-soft);
}

.promise-col--yes h3 {
  color: var(--premium-gold);
}

.promise-col li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9875rem;
}

.promise-col li:last-child {
  border-bottom: none;
}

.promise-col--no li::before {
  content: "×";
  color: rgba(26, 23, 20, 0.35);
  font-size: 1.1rem;
  line-height: 1.2;
}

.promise-col--yes li::before {
  content: "✓";
  color: var(--premium-gold);
  font-weight: 700;
}

/* ========== INSIDE / PARTS ========== */
.parts-list {
  display: grid;
  gap: 1rem;
}

.part-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-left: 3px solid var(--premium-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.part-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.08);
}

@media (min-width: 700px) {
  .part-item {
    grid-template-columns: 7rem 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.65rem 1.75rem;
  }
}

.part-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--premium-gold);
}

.part-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-black);
  margin-bottom: 0.35rem;
}

.part-item p {
  color: rgba(8, 8, 8, 0.65);
  font-size: 0.95rem;
}

.part-item--bonus {
  background: linear-gradient(135deg, rgba(184, 146, 42, 0.14), var(--charcoal));
  border-left-color: var(--premium-gold);
}

.part-item--bonus h3,
.part-item--bonus .part-item__label {
  color: var(--premium-gold);
}

.part-item--bonus p {
  color: var(--text-muted);
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--premium-gold), rgba(212, 175, 55, 0.15));
}

@media (min-width: 640px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 2.5rem;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2.5rem;
    text-align: left;
  }
}

.timeline-item__dot {
  position: absolute;
  left: 0.85rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--premium-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

@media (min-width: 640px) {
  .timeline-item__dot {
    left: auto;
    right: -0.35rem;
  }

  .timeline-item:nth-child(even) .timeline-item__dot {
    right: auto;
    left: -0.35rem;
  }
}

.timeline-item__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-black);
  letter-spacing: 0.03em;
}

.timeline-item--start .timeline-item__text,
.timeline-item--end .timeline-item__text {
  color: var(--premium-gold);
  font-size: 1.45rem;
}

.timeline-note {
  margin-top: 2rem;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-style: italic;
}

/* ========== BONUSES ========== */
.bonus-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.bonus-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.bonus-card:hover {
  border-color: var(--border-subtle);
}

.bonus-card__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--premium-gold);
  color: var(--premium-gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-black);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.bonus-card p {
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* ========== AUTHOR ========== */
.author {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  max-width: 720px;
}

.author__name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--deep-black);
  margin-bottom: 0.35rem;
}

.author__role {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--premium-gold);
  margin-bottom: 1.25rem;
}

.author__bio {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.author__mission {
  padding: 1.25rem 1.35rem;
  border-left: 2px solid var(--premium-gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--premium-gold);
  max-width: 42ch;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border-soft);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep-black);
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--premium-gold);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 1.35rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.9875rem;
  line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184, 146, 42, 0.16), transparent 60%),
    var(--charcoal);
}

.final-cta .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.final-cta__copy {
  margin: 1.5rem auto 2.5rem;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.final-cta__book {
  margin: 0 auto 2.5rem;
  width: min(220px, 55vw);
}

.final-cta__tagline {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  letter-spacing: 0.12em;
  color: var(--premium-gold);
  text-transform: uppercase;
}

/* ========== DISCLAIMER ========== */
.disclaimer {
  padding: 3rem 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border-soft);
}

.disclaimer__box {
  max-width: 800px;
  margin-inline: auto;
  padding: 1.75rem;
  border: 1px solid var(--border-soft);
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.disclaimer__box h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclaimer__box ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.disclaimer__box li {
  padding-left: 1rem;
  position: relative;
}

.disclaimer__box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--premium-gold);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.site-footer p + p {
  margin-top: 0.35rem;
}

/* ========== THANK YOU PAGE ========== */
.thank-you {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 146, 42, 0.14), transparent 55%),
    var(--warm-ivory);
}

.thank-you__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.success-mark {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  border: 2px solid var(--premium-gold);
  display: grid;
  place-items: center;
  color: var(--premium-gold);
  box-shadow: 0 0 40px var(--gold-glow);
}

.success-mark svg {
  width: 2rem;
  height: 2rem;
}

.thank-you__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--deep-black);
  margin-bottom: 0.75rem;
}

.thank-you__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--premium-gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.thank-you__copy {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

.download-card {
  padding: 2rem 1.5rem;
  background: var(--charcoal);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.75rem;
}

.download-card__cover {
  width: min(160px, 45vw);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
}

.download-card__cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.download-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-black);
  margin-bottom: 0.25rem;
}

.download-card__sub {
  color: var(--premium-gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
}

.download-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.thank-you__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.thank-you__closing {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.thank-you__closing blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.thank-you__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--premium-gold);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn--primary:hover,
  .learn-card:hover,
  .part-item:hover,
  .book-mockup:hover .book-mockup__cover {
    transform: none;
  }

  .buy-button {
    animation: none;
  }

  .cta-hand,
  .cta-hand-float {
    animation: none;
  }

  .faq-answer {
    transition: none;
  }
}

/* ========== MOBILE TWEAKS ========== */
@media (max-width: 479px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
  }

  .btn:not(.header-cta) {
    width: 100%;
    white-space: normal;
  }

  .header-cta {
    width: auto;
    max-width: 52%;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
    padding: 0.55rem 0.75rem;
    font-size: 0.65rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero__title {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .problem-item,
  .checklist li,
  .bonus-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 359px) {
  .hero__subtitle {
    font-size: 1.45rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
