:root {
  --navy-950: #07121f;
  --navy-900: #0b1d32;
  --navy-800: #0e2a47;
  --navy-700: #153a5e;
  --blue-soft: #d8e7f6;
  --gold-500: #d5b36a;
  --gold-400: #e6c887;
  --gold-300: #f3dfb0;
  --cream: #f8f3ea;
  --white: #ffffff;
  --text: #1b2430;
  --muted: #5c6775;
  --line: rgba(15, 38, 63, 0.12);
  --shadow: 0 20px 60px rgba(8, 24, 43, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 179, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #fdfcf9 0%, #f7f3ed 38%, #ffffff 100%);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
  color: rgba(255,255,255,0.84);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.94rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.76);
  border-bottom: 1px solid rgba(11, 29, 50, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-300);
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(11, 29, 50, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a:not(.btn) {
  font-weight: 600;
  color: #334155;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy-800);
  margin: 6px 0;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-sm {
  padding: 12px 18px;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: #13263b;
  box-shadow: 0 18px 40px rgba(213, 179, 106, 0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(15, 38, 63, 0.18);
  color: var(--navy-800);
}

.btn-light {
  background: var(--white);
  color: var(--navy-800);
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.light {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  color: var(--gold-500);
}

.light {
  color: rgba(255,255,255,0.72);
}

.hero h1,
.section-head h2,
.feature-copy h2,
.conversion-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.02;
  margin: 12px 0 18px;
  color: var(--navy-950);
}

.hero h1 {
  font-size: clamp(2.7rem, 4vw, 5rem);
}

.lead {
  font-size: 1.08rem;
  color: #405064;
  max-width: 700px;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-highlights article,
.info-card,
.pillar-card,
.reason-card,
.book-card,
.faq-item,
.conversion-panel,
.feature-copy,
.image-frame,
.trust-grid > div {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-highlights article {
  border-radius: var(--radius-md);
  padding: 18px;
}

.hero-highlights strong {
  display: block;
  font-size: 1.16rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-media {
  position: relative;
}

.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.image-frame-main {
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(216, 231, 246, 0.85));
}

.floating-card {
  position: absolute;
  max-width: 250px;
  padding: 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 38, 63, 0.1);
}

.floating-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--navy-900);
}

.floating-card p,
.trust-grid p,
.section-head p,
.info-card p,
.pillar-card p,
.feature-copy p,
.reason-card p,
.book-card p,
.conversion-panel p,
.footer p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.mini-tag,
.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-800);
  background: rgba(230, 200, 135, 0.26);
}

.floating-card-1 {
  left: -24px;
  bottom: 26px;
}

.floating-card-2 {
  right: -24px;
  top: 34px;
}

.trust-strip {
  padding: 16px 0 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid > div {
  padding: 22px;
  border-radius: var(--radius-md);
}

.trust-title {
  display: block;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(215, 227, 239, 0.36), rgba(255,255,255,0.78));
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.feature-copy h2,
.conversion-grid h2 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
}

.narrow-center {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
  display: block;
}

.cards-3,
.pillars-grid,
.reasons-grid,
.books-grid {
  display: grid;
  gap: 22px;
}

.cards-3,
.reasons-grid,
.books-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.info-card,
.pillar-card,
.reason-card,
.book-card,
.faq-item,
.conversion-panel,
.feature-copy {
  border-radius: var(--radius-lg);
}

.info-card,
.pillar-card,
.reason-card,
.book-card {
  padding: 24px;
}

.info-card img,
.book-card img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 18px;
}

.info-card h3,
.pillar-card h3,
.reason-card h3,
.book-card h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
}

.pillar-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: .14em;
  margin-bottom: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.feature-media {
  padding: 12px;
  background: linear-gradient(180deg, rgba(216, 231, 246, 0.5), rgba(255,255,255,0.9));
}

.feature-copy {
  padding: 34px;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.benefit-list div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 243, 234, 0.5);
}

.benefit-list strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 5px;
}

.benefit-list span,
.price-box span {
  color: var(--muted);
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(213, 179, 106, 0.17), rgba(255,255,255,0.92));
  border: 1px solid rgba(213, 179, 106, 0.4);
}

.price-box small {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--navy-800);
}

.price-box strong {
  font-size: 2rem;
  color: var(--navy-950);
}

.book-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-footer {
  margin-top: auto;
  display: grid;
  gap: 14px;
}

.book-footer strong {
  font-size: 1.2rem;
  color: var(--navy-900);
}

.conversion-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: center;
}

.conversion-grid h2 {
  color: var(--white);
}

.conversion-grid p {
  color: rgba(255,255,255,0.78);
  max-width: 720px;
}

.conversion-panel {
  padding: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.conversion-panel strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.faq-list {
  max-width: 920px;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
}

.faq-question span {
  font-size: 1.3rem;
  color: var(--gold-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 22px;
}

.footer {
  padding: 34px 0 18px;
  background: #06111e;
  color: rgba(255,255,255,0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 26px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-head,
  .feature-grid,
  .conversion-grid,
  .cards-3,
  .books-grid,
  .reasons-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .floating-card-1,
  .floating-card-2 {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15, 38, 63, 0.1);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
  }

  .pillars-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .btn,
  .btn-sm {
    width: 100%;
  }

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

  .feature-copy,
  .info-card,
  .pillar-card,
  .reason-card,
  .book-card,
  .trust-grid > div,
  .faq-question,
  .faq-answer,
  .conversion-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
}
