/* ===================================================
   DIARY OF A BUSINESSMAN — Premium Landing Page CSS
   Palette: Midnight Navy · Warm African Gold · White
   =================================================== */

:root {
  /* ── Navy Foundation ── */
  --black: #080d18;
  /* deepest navy — near-black */
  --deep: #0d1525;
  /* rich midnight navy */
  --card: #111e35;
  /* elevated card surface */
  --card-hover: #162540;
  /* card hover lift */

  /* ── African Gold ── */
  --gold: #d4a84b;
  /* warm amber gold — primary accent */
  --gold-light: #f0c96a;
  /* bright highlight gold */
  --gold-dark: #a07828;
  /* deep burnished gold */
  --gold-glow: rgba(212, 168, 75, 0.18);

  /* ── White & Cream ── */
  --cream: #f8f4ec;
  /* warm off-white — primary text on dark */
  --cream-soft: #ede7d9;
  /* softer warm white */
  --white: #ffffff;

  /* ── Text ── */
  --text-muted: #7a8aaa;
  /* muted navy-tinted grey */
  --text-body: #b8c4d8;
  /* body text — cool light on navy */

  /* ── Borders ── */
  --border: rgba(212, 168, 75, 0.2);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-navy: rgba(255, 255, 255, 0.08);

  /* ── Misc ── */
  --radius: 2px;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", sans-serif;
  --font-serif: "EB Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.pre-inner {
  text-align: center;
}

.pre-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.pre-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 168, 76, 0.2);
  margin: 0 auto 1rem;
  border-radius: 2px;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

.pre-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-outer,
.cursor-inner {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-outer {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  transition: all 0.15s ease;
  opacity: 0.5;
}

.cursor-inner {
  width: 5px;
  height: 5px;
  background: var(--gold);
}

body.cursor-hover .cursor-outer {
  width: 56px;
  height: 56px;
  opacity: 0.25;
  background: rgba(201, 168, 76, 0.05);
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease var(--d, 0s),
    transform 0.8s ease var(--d, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-decoration: none;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition:
    background var(--transition),
    transform var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.mobile-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.9rem 5%;
  border-bottom: 1px solid var(--border-soft);
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 7%;
}

.mobile-menu .mobile-cta {
  color: var(--gold);
  font-weight: 600;
  border: none;
  margin-top: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: none;
  cursor: none;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: none;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: none;
  width: auto;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 7rem 0;
  position: relative;
}

.section-eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%,
      rgba(212, 168, 75, 0.07) 0%,
      transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%,
      rgba(8, 13, 24, 0) 0%,
      var(--black) 100%);
}

.hero-bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.hero-lines span {
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(201, 168, 76, 0.07),
      transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  /* width: 50%; */
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(201, 168, 76, 0.05);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.hero-headline .line {
  display: block;
  animation: slideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-headline .line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-headline .line:nth-child(2) {
  animation-delay: 0.35s;
  color: var(--gold);
}

.hero-headline .line:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-headline .italic {
  font-style: italic;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 950px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-book-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* 3D Book */
.book-3d {
  width: 200px;
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-25deg) rotateX(5deg);
  animation: bookFloat 6s ease-in-out infinite;
}

@keyframes bookFloat {

  0%,
  100% {
    transform: rotateY(-25deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: rotateY(-25deg) rotateX(5deg) translateY(-12px);
  }
}

.book-face {
  position: absolute;
  transform-style: preserve-3d;
  border-radius: 2px;
}

.book-face.front {
  width: 200px;
  height: 280px;
  transform: translateZ(20px);
  background: linear-gradient(160deg, #0e1f3d 0%, #06101e 100%);
  border: 1px solid rgba(212, 168, 75, 0.35);
  overflow: hidden;
}

.book-front-inner {
  padding: 1.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.book-label {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: auto;
}

.book-title-main {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: auto 0;
}

.book-author {
  font-size: 0.42rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: auto;
}

.book-deco {
  position: absolute;
  bottom: 2.5rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
}

.book-face.spine {
  width: 40px;
  height: 280px;
  left: -20px;
  transform: rotateY(-90deg) translateZ(20px);
  background: linear-gradient(180deg, #0a1628, #060d18);
  border: 1px solid rgba(212, 168, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-spine-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.book-face.back {
  width: 200px;
  height: 280px;
  transform: translateZ(-20px) rotateY(180deg);
  background: #060d18;
}

.book-shadow {
  width: 200px;
  height: 30px;
  background: radial-gradient(ellipse,
      rgba(201, 168, 76, 0.18) 0%,
      transparent 70%);
  margin-top: 1rem;
  filter: blur(8px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.marquee-track .dot {
  color: rgba(0, 0, 0, 0.4);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== HOOK ===== */
#hook {
  background: var(--deep);
}

.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hook-left h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.hook-bold {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  margin: 1.5rem 0;
}

/* ===== PARTS GRID ===== */
#book {
  background: var(--black);
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.part-card {
  background: var(--card);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: none;
}

.part-card:hover {
  background: var(--card-hover);
}

.part-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.part-card:hover::before {
  opacity: 1;
}

.part-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.part-card:hover .part-num {
  color: rgba(201, 168, 76, 0.2);
}

.part-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.part-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.part-icon {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.35;
  transition: opacity var(--transition);
}

.part-card:hover .part-icon {
  opacity: 0.7;
}

/* ===== AUTHOR ===== */
#author {
  background: var(--deep);
  overflow: hidden;
}

.author-bg-text {
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.author-img-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
}

.author-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.author-img-placeholder i {
  font-size: 3rem;
  color: var(--border);
}

.author-frame-deco {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
}

.author-frame-deco.top-left {
  top: -10px;
  left: -10px;
  border-width: 2px 0 0 2px;
}

.author-frame-deco.bottom-right {
  bottom: -10px;
  right: -10px;
  border-width: 0 2px 2px 0;
}

.author-quote-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.4rem;
  max-width: 220px;
  border-radius: 2px;
}

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.3);
}

.author-quote-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0;
  color: var(--black);
}

.author-text {
  position: relative;
  z-index: 1;
}

.author-signature {
  margin-top: 2rem;
}

.sig-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.sig-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.sig-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== DIFFERENTIATORS ===== */
#different {
  background: var(--black);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition:
    border-color var(--transition),
    transform var(--transition);
  cursor: none;
}

.diff-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.diff-card.featured {
  border-color: var(--gold-dark);
  background: linear-gradient(160deg, #181206, #111111);
}

.diff-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.diff-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.diff-ribbon {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 4px 4px;
}

/* ===== WORKBOOK ===== */
#workbook {
  background: var(--deep);
}

.workbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.workbook-uses {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.workbook-uses li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.workbook-uses li i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* Workbook 3D */
.workbook-book {
  /* width: 480px; */
  /* height: 250px; */
  /* position: relative; */
  /* transform-style: preserve-3d; */
  transform: rotateY(-20deg) rotateX(3deg);
  animation: bookFloat 7s ease-in-out infinite;
  animation-delay: 0.5s;
  margin: 0 auto 2rem;
}

.wb-face {
  position: absolute;
  transform-style: preserve-3d;
  border-radius: 2px;
}

.wb-face.front {
  /* width: 250px;
  height: 250px; */
  transform: translateZ(18px);
  /* background: linear-gradient(160deg, #0a1a12, #060d0a); */
  /* border: 1px solid rgba(100, 200, 120, 0.25); */
  overflow: hidden;
}

.wb-inner {
  padding: 1.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wb-label {
  font-size: 0.42rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(100, 200, 120, 0.5);
  border-bottom: 1px solid rgba(100, 200, 120, 0.15);
  padding-bottom: 0.4rem;
}

.wb-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(100, 200, 120, 0.7);
  line-height: 1.05;
}

.wb-subtitle {
  font-size: 0.42rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100, 200, 120, 0.4);
}

.wb-face.spine {
  width: 36px;
  height: 250px;
  left: -18px;
  transform: rotateY(-90deg) translateZ(18px);
  background: #f5f5f5;
  border: 1px solid rgba(100, 200, 120, 0.15);
}

.workbook-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.workbook-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--black);
  overflow: hidden;
}

.testi-bg-text {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  transition:
    border-color var(--transition),
    transform var(--transition);
  cursor: none;
}

.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.testi-card.featured-testi {
  border-color: var(--gold-dark);
  background: linear-gradient(160deg, #181206, #111);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testi-card blockquote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.testi-role {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== SKELETON LOADER ===== */
.skeleton-loader {
  background: linear-gradient(90deg,
      var(--card) 25%,
      var(--card-hover) 50%,
      var(--card) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

/* ===== FREE TOOLS ===== */

.munroe-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(201, 168, 76, 0.04);
  border-radius: 0 4px 4px 0;
}

.munroe-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.ft-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.free-tool-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.free-tool-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.form-group {
  position: relative;
  margin-bottom: 0.75rem;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem 0.9rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group label {
  position: absolute;
  top: -0.6rem;
  left: 0.8rem;
  background: var(--card);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0.3rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
  opacity: 1;
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0.75rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.form-note i {
  color: var(--gold);
}

.btn-loader {
  display: none;
}

/* ===== PRICING ===== */
#pricing {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.pricing-card.featured-pricing {
  border-color: var(--gold-dark);
  background: linear-gradient(160deg, #181206, #111);
  transform: scale(1.02);
}

.pricing-card.featured-pricing:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-badge.popular {
  color: var(--gold);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.25rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-body);
}

.pricing-features li i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-price {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.price-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.price-note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== COUNTDOWN ===== */
#countdown {
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}

.countdown-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 22rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.countdown-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.countdown-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.countdown-inner p {
  margin: 1.25rem 0 2.5rem;
  font-size: 0.9rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.ct-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  min-width: 90px;
  text-align: center;
}

.ct-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.ct-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.ct-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0;
  }
}

.countdown-form {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  display: flex;
  gap: 1rem;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-form .form-group {
  flex: 1;
  min-width: 240px;
  margin: 0;
}

.countdown-form .form-group input {
  background: var(--card);
}

.countdown-form .form-group label {
  background: var(--deep);
}

.countdown-form .btn-primary {
  flex-shrink: 0;
}

/* ===== FAQ ===== */
#faq {
  background: var(--black);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--cream);
  cursor: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q[aria-expanded="true"] {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.7rem;
  transition: transform 0.35s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-a p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== FINAL CTA ===== */
#final-cta {
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}

.final-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 22rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.final-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-inner h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 2rem;
}

.final-negatives {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.final-negatives span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.final-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.final-big {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.final-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-brand em {
  color: var(--text-body);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-stores {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.store-badge {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.store-badge i {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .hero-content {
    width: 60%;
  } */
  .hero-book-wrap {
    right: 2%;
  }

  .book-3d {
    width: 160px;
    height: 224px;
  }

  .book-face.front {
    width: 160px;
    height: 224px;
  }

  .book-face.spine {
    height: 224px;
  }

  .book-face.back {
    width: 160px;
    height: 224px;
  }
}

@media (max-width: 860px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

  /* .hero-content {
    width: 100%;
    padding-right: 0;
  } */
  .hero-book-wrap {
    display: none;
  }

  .hero-bg-text {
    font-size: 8rem;
    opacity: 0.03;
    right: -5%;
  }

  .hook-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .author-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .author-img-frame {
    max-width: 300px;
    margin: 0 auto;
  }

  .author-quote-card {
    right: -1rem;
  }

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

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

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

  .free-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .pricing-card.featured-pricing {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .countdown-form {
    flex-direction: column;
  }

  .countdown-form .form-group {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  section {
    padding: 5rem 0;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .final-btns {
    flex-direction: column;
    align-items: center;
  }

  .ct-num {
    font-size: 2rem;
  }

  .ct-block {
    min-width: 65px;
    padding: 0.9rem 0.75rem;
  }

  .countdown-timer {
    gap: 0.3rem;
  }
}

/* ===================================================
   CSS FIXES & ADDITIONS — Append to style.css
   =================================================== */

/* ── 1. Preloader ── */
.pre-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ── 2. Hero ── */
.badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.hero-secondary-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── 3. Book Section ── */
.section-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.section-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-meta i {
  color: var(--gold);
}

/* ── 4. Hook ── */
.hook-accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin-top: 2rem;
}

.hook-cta-row {
  margin-top: 2rem;
}

/* ── 5. Author ── */
.author-pull {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-soft);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.author-credential-strip {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.author-credential-strip span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.author-credential-strip i {
  color: var(--gold);
  font-size: 0.8rem;
}

.author-sites {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.author-sites a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

.author-sites a:hover {
  color: var(--gold-light);
}

.author-sites span {
  color: var(--text-muted);
}

.author-frame-deco.top-right-sm {
  top: -10px;
  right: -10px;
  border-width: 2px 2px 0 0;
}

/* ── 6. Testimonials ── */
.testi-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(212, 168, 75, 0.08);
}

/* ===================================================
   FREE GIFTS SECTION — Complete Rewrite
   (Replaces the old #free-tools / .free-grid block)
   =================================================== */
#free-gifts {
  background: var(--deep);
}

.gifts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.gift-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition:
    border-color var(--transition),
    transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gift-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.gift-number {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(212, 168, 75, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.gift-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 75, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition:
    background var(--transition),
    transform var(--transition);
}

.gift-card:hover .gift-icon-wrap {
  background: rgba(212, 168, 75, 0.15);
  transform: scale(1.05);
}

.gift-icon-wrap.tools {
  color: var(--gold-light);
}

.gift-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(212, 168, 75, 0.05);
  width: fit-content;
}

.gift-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.gift-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
}

/* Chapters list (Gift 1) */
.gift-chapters {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chapter-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  transition: background var(--transition);
}

.chapter-item:hover {
  background: rgba(212, 168, 75, 0.05);
}

.chapter-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chapter-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
}

/* Tools list (Gift 2) */
.gift-tools-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gift-tool-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.gift-tool-item:last-child {
  border-bottom: none;
}

.gift-tool-item .ft-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.gift-tool-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.gift-tool-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Descriptions & form */
.gift-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.gift-for {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
  border: 1px solid var(--border-soft);
}

.gift-for strong {
  color: var(--gold);
}

.gift-form {
  margin-top: auto;
}

/* Footnote */
.gifts-footnote {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gifts-footnote i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 860px) {
  .gifts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===================================================
   VIDEO SECTION STYLES
   =================================================== */

#video {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.video-bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-frame {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-frame video {
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  /* object-fit: cover;
  display: block; */
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 13, 24, 0.35);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: none;
}

.video-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  color: var(--black);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 168, 75, 0.4);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 168, 75, 0.55);
}

.video-play-btn i {
  margin-left: 4px;
}

.video-fallback {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.video-fallback a {
  color: var(--gold);
  text-decoration: none;
}

.video-caption {
  margin-top: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-soft);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.video-caption i {
  color: var(--gold);
  font-size: 0.7rem;
  margin: 0 0.4rem;
  opacity: 0.5;
}

.video-caption-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Video poster fallback */
.video-frame video[poster] {
  background: var(--card);
}

/* Responsive Video */
@media (max-width: 860px) {
  .video-frame {
    aspect-ratio: 16 / 10;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
    font-size: 1.1rem;
  }

  .video-caption p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .video-frame {
    aspect-ratio: 4 / 3;
    border-radius: 2px;
  }

  .video-play-btn {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }

  .video-caption {
    margin-top: 1.5rem;
  }

  .video-caption p {
    font-size: 0.9rem;
  }
}

/* ===================================================
   PRICING BUTTON FIX — data-preregister attribute
   =================================================== */

.pricing-card .btn-primary[data-preregister],
.pricing-card .btn-outline[data-preregister] {
  cursor: none;
}

/* ===================================================
   FORM SUCCESS / ERROR MESSAGES
   =================================================== */

.form-message {
  font-size: 0.78rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  margin-top: 0.75rem;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(100, 200, 120, 0.08);
  border: 1px solid rgba(100, 200, 120, 0.2);
  color: rgba(100, 200, 120, 0.9);
}

.form-message.error {
  display: block;
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.2);
  color: rgba(220, 120, 120, 0.9);
}

/* ===================================================
   DOWNLOAD SPINNER OVERLAY
   =================================================== */

.download-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 13, 24, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.download-overlay.active {
  opacity: 1;
  visibility: visible;
}

.download-overlay .spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(212, 168, 75, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.download-overlay p {
  font-size: 0.85rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* ===== STORE SELECTION MODAL ===== */
.store-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.store-modal.active {
  opacity: 1;
  visibility: visible;
}

.store-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 24, 0.85);
  backdrop-filter: blur(6px);
}

.store-modal-content {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}

.store-modal.active .store-modal-content {
  transform: translateY(0);
}

.store-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}

.store-modal-close:hover {
  color: var(--gold);
  background: rgba(201, 168, 75, 0.08);
}

.store-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.store-modal-content>p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.store-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.store-option:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-2px);
}

.store-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 75, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.store-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  flex: 1;
  text-align: left;
}

.store-tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--border-soft);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .store-modal-content {
    padding: 2rem 1.5rem;
  }

  .store-option {
    padding: 0.85rem 1rem;
  }

  .store-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* ===================================================
   LAUNCH BANNER — Goes live 7:00am June 3rd 2026
   =================================================== */

.launch-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: linear-gradient(135deg, var(--deep) 0%, var(--card) 100%);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.launch-banner.active {
  transform: translateY(0);
}

.launch-banner-inner {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.launch-banner-content {
  flex: 1;
}

.launch-banner-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.launch-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.launch-banner-sub {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.launch-banner-sub strong {
  color: var(--gold);
  font-weight: 600;
}

.launch-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.launch-btn {
  font-size: 0.68rem;
  padding: 0.85rem 1.6rem;
}

.launch-banner-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.launch-banner-close:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Announcement strip */
.launch-banner-strip {
  background: var(--gold);
  padding: 1rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 30px;
}

.strip-icon {
  color: var(--black);
  font-size: 0.7rem;
}

.strip-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
}

.strip-text a {
  color: var(--black);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.strip-text a:hover {
  opacity: 0.7;
}

/* Body padding adjustment when banner is active */
body.banner-active #navbar {
  top: auto;
}

/* Responsive */
@media (max-width: 860px) {
  .launch-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .launch-banner-close {
    position: absolute;
    top: 1rem;
    right: 0;
  }

  .launch-banner-actions {
    width: 100%;
  }

  .launch-btn {
    flex: 1;
    justify-content: center;
  }

  .launch-banner-sub br {
    display: none;
  }
}

@media (max-width: 480px) {
  .launch-banner-headline {
    font-size: 1.4rem;
  }

  .launch-banner-actions {
    flex-direction: column;
  }

  .launch-btn {
    width: 100%;
  }

  .strip-text {
    font-size: 0.62rem;
    padding: 0 1rem;
  }
}