:root {
  --navy: #011C45;
  --navy-950: #00122f;
  --navy-900: #00183b;
  --navy-800: #082b57;
  --yellow: #FAC228;
  --yellow-soft: #ffe08a;
  --mist: #F0F4F8;
  --white: #ffffff;
  --ink: #10223c;
  --muted: #647286;
  --line: #d9e2ec;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 12px 35px rgba(1, 28, 69, 0.10);
  --shadow-md: 0 28px 75px rgba(1, 28, 69, 0.16);
  --shadow-lg: 0 45px 120px rgba(0, 18, 47, 0.27);
  --max: 1180px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body, button, input { font-family: var(--sans); }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--navy-950); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -70px; left: 14px; z-index: 1000;
  padding: 11px 17px; border-radius: 10px; background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-sm); font-weight: 800; text-decoration: none;
}
.skip-link:focus { top: 14px; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(1,28,69,0.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(1,28,69,.09); background: rgba(255,255,255,.985); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; min-width: 235px; }
.brand img { width: 64px; height: 48px; object-fit: contain; }
.brand-name { display: flex; align-items: baseline; letter-spacing: -.035em; color: var(--navy); }
.brand-name strong { font: 700 1.22rem/1 var(--serif); }
.brand-name strong span { color: #d89f00; }
.brand-name small { font: 600 .8rem/1 var(--sans); letter-spacing: -.02em; margin-left: 1px; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a:not(.button) {
  color: #29425f; text-decoration: none; font-weight: 700; font-size: .9rem; position: relative;
}
.primary-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--yellow); transition: right .2s ease;
}
.primary-nav > a:not(.button):hover::after { right: 0; }
.menu-button { display: none; width: 44px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); padding: 10px; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-button.is-open > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.is-open > span:nth-child(2) { opacity: 0; }
.menu-button.is-open > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px;
  padding: 0 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 850; font-size: .94rem; line-height: 1; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(250,194,40,.45); outline-offset: 3px; }
.button-primary { background: var(--yellow); color: var(--navy-950); box-shadow: 0 14px 36px rgba(250,194,40,.22); }
.button-primary:hover { background: #ffd04b; box-shadow: 0 18px 44px rgba(250,194,40,.34); }
.button-dark { background: var(--navy); color: var(--white); box-shadow: 0 16px 38px rgba(1,28,69,.18); }
.button-dark:hover { background: var(--navy-800); }
.button-ghost { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); color: var(--white); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.button-small { min-height: 44px; padding-inline: 20px; font-size: .86rem; }
.button-full { width: 100%; }
.button:disabled { cursor: wait; opacity: .7; transform: none; }

/* Reusable typography */
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; }
h2 { color: var(--navy); font-size: clamp(2.45rem, 4.7vw, 4.3rem); line-height: 1.04; font-weight: 600; margin-bottom: 26px; }
h3 { color: var(--navy); font-size: 1.18rem; line-height: 1.35; margin-bottom: 12px; }
.lead { font-size: 1.16rem; color: #304864; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 21px; font-size: .77rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 2px; background: var(--yellow); }
.eyebrow-light { color: #dbe8f6; }
.eyebrow-dark { color: #46607d; }
.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { margin: -10px auto 0; max-width: 660px; color: var(--muted); font-size: 1.04rem; }
.section-label { color: #687b91; font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; padding-top: 13px; }
.microcopy { margin: 13px 0 0; color: #c9d5e3; font-size: .8rem; }

/* Hero */
.hero {
  position: relative; min-height: 860px; padding: 185px 0 60px; overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(250,194,40,.18), transparent 24%),
    radial-gradient(circle at 16% 88%, rgba(54,112,175,.24), transparent 27%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy) 56%, #052b60 100%);
  color: var(--white);
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 360px; height: 360px; right: -100px; top: 130px; border: 1px solid rgba(250,194,40,.19); box-shadow: 0 0 120px rgba(250,194,40,.09) inset; }
.hero-glow-two { width: 220px; height: 220px; left: 48%; bottom: -115px; border: 1px solid rgba(255,255,255,.1); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 75px; }
.hero-copy { max-width: 670px; }
.hero h1 { color: var(--white); font-size: clamp(4rem, 7vw, 7rem); line-height: .93; font-weight: 500; margin: 0 0 30px; }
.hero-lead { max-width: 610px; font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.55; color: #edf4fb; margin-bottom: 14px; }
.hero-support { max-width: 570px; color: #aebfd2; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #c7d4e2; font-size: .82rem; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row i { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: rgba(250,194,40,.14); color: var(--yellow); font-style: normal; }
.hero-offer { position: relative; min-height: 575px; display: grid; place-items: center; }
.offer-ring { position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.018), 0 0 0 85px rgba(255,255,255,.012); }
.book-wrap { position: relative; z-index: 2; transform: rotate(-5deg); filter: drop-shadow(0 42px 50px rgba(0,0,0,.36)); }
.book { position: relative; perspective: 1000px; }
.book-main { width: 260px; height: 390px; }
.book-large { width: 310px; height: 465px; }
.book-spine { position: absolute; z-index: 1; left: -16px; top: 12px; bottom: 9px; width: 25px; border-radius: 8px 0 0 8px; background: linear-gradient(90deg, #001028, #0c376a 75%, #00122d); transform: skewY(1deg); }
.book-face {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border-radius: 8px 18px 18px 8px; border: 1px solid rgba(250,194,40,.55);
  background:
    radial-gradient(circle at 50% 74%, rgba(250,194,40,.28), transparent 28%),
    linear-gradient(155deg, #061b3d, #0e3869 54%, #02132e);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.025), inset 0 0 70px rgba(0,0,0,.28);
  overflow: hidden;
}
.book-face::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(250,194,40,.34); border-radius: 3px 12px 12px 3px; }
.book-face::after { content: ""; position: absolute; inset: auto -30px -70px; height: 190px; border-radius: 50%; background: radial-gradient(circle, rgba(250,194,40,.22), transparent 64%); }
.book-kicker { position: relative; z-index: 1; color: #c9d7e8; text-transform: uppercase; letter-spacing: .13em; font-size: .55rem; }
.book-title { position: relative; z-index: 1; margin-top: 28px; color: var(--white); font: 500 2.55rem/.95 var(--serif); letter-spacing: .05em; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.book-large .book-title { font-size: 3rem; }
.book-line { position: relative; z-index: 1; width: 58px; height: 2px; margin: 24px 0; background: var(--yellow); }
.book-subtitle { position: relative; z-index: 1; max-width: 190px; color: #e8eff7; font-size: .7rem; line-height: 1.55; }
.offer-card {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; min-width: 220px; padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.1); color: var(--white);
  backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.offer-card strong, .offer-card small { display: block; }
.offer-card strong { font-size: .88rem; }
.offer-card small { color: #becddd; font-size: .7rem; margin-top: 2px; }
.offer-card-book { left: -10px; top: 95px; }
.offer-card-live { right: -5px; bottom: 82px; }
.offer-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--yellow); color: var(--navy); font-size: .72rem; font-weight: 900; }
.live-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 7px rgba(250,194,40,.13); }
.hero-note { position: relative; z-index: 2; margin-top: 62px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #aebed0; font: italic 1.03rem/1.5 var(--serif); text-align: center; }

/* Intro */
.intro-section { background: var(--white); }
.intro-layout { display: grid; grid-template-columns: .55fr 1.7fr 1fr; gap: 55px; align-items: start; }
.intro-heading h2 { font-size: clamp(2.7rem, 4.5vw, 4.4rem); }
.intro-copy { padding-top: 14px; color: #506177; }
.question-band { margin-top: 70px; padding: 35px 40px; border-left: 4px solid var(--yellow); background: var(--mist); display: flex; flex-wrap: wrap; gap: 8px 18px; font: italic 1.35rem/1.4 var(--serif); color: var(--navy); }
.question-band p { margin: 0; }

/* Questions */
.questions-section { background: var(--mist); }
.question-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.question-card { min-height: 250px; padding: 28px; border: 1px solid #dfe7ef; border-radius: 20px; background: rgba(255,255,255,.76); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.question-card:hover { transform: translateY(-7px); border-color: rgba(250,194,40,.75); box-shadow: var(--shadow-sm); }
.question-card > span { display: inline-flex; color: #bd8b00; font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.question-card h3 { margin-top: 75px; font: 500 1.38rem/1.35 var(--serif); }

/* Ebook */
.ebook-section { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.ebook-section::before { content: ""; position: absolute; width: 700px; height: 700px; left: -350px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(250,194,40,.13), transparent 67%); }
.ebook-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.ebook-copy h2 { color: var(--white); }
.ebook-copy .lead { color: #dfe9f4; }
.ebook-copy > p:not(.eyebrow):not(.lead):not(.microcopy) { color: #b9c8d9; }
.ebook-visual { min-height: 610px; display: grid; place-items: center; }
.book-stage { position: relative; width: 450px; height: 590px; display: grid; place-items: center; }
.book-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(250,194,40,.25), rgba(250,194,40,.05) 45%, transparent 70%); }
.book-stage .book-large { transform: rotate(-4deg); filter: drop-shadow(0 50px 55px rgba(0,0,0,.42)); }
.ebook-badge { position: absolute; right: 3px; bottom: 46px; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 17px 20px; background: var(--white); color: var(--navy); border-radius: 17px; box-shadow: var(--shadow-lg); }
.ebook-badge strong { font-size: 1.2rem; color: #c58f00; }
.ebook-badge span { font-size: .78rem; font-weight: 800; }
.feature-list { list-style: none; padding: 0; margin: 32px 0; display: grid; gap: 13px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: #e9f0f7; }
.feature-list li span { display: grid; place-items: center; flex: 0 0 23px; width: 23px; height: 23px; margin-top: 1px; border-radius: 50%; background: rgba(250,194,40,.16); color: var(--yellow); font-size: .72rem; font-weight: 900; }

/* Discussion */
.discussion-section { background: var(--white); }
.discussion-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.discussion-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.discussion-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 34px; }
.discussion-tags span { padding: 9px 13px; border: 1px solid #dce4ec; border-radius: 999px; color: #3a526d; background: #f9fbfd; font-size: .78rem; font-weight: 800; }
.zoom-card { border-radius: 25px; overflow: hidden; background: #071c39; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.05); }
.zoom-toolbar { min-height: 62px; padding: 0 20px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #dbe6f2; border-bottom: 1px solid rgba(255,255,255,.08); }
.zoom-toolbar > strong { font-size: .83rem; }
.zoom-lights { display: flex; gap: 6px; }
.zoom-lights i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.zoom-lights i:first-child { background: var(--yellow); }
.live-pill { justify-self: end; padding: 4px 8px; border-radius: 99px; background: var(--yellow); color: var(--navy); font-size: .62rem; font-weight: 950; letter-spacing: .08em; }
.zoom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 7px; background: #06172f; }
.participant { position: relative; min-height: 195px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #0d2d55, #0a2141); }
.participant::before { content: ""; position: absolute; width: 110px; height: 110px; top: 34px; border-radius: 50%; background: rgba(255,255,255,.07); }
.participant::after { content: ""; position: absolute; width: 190px; height: 105px; bottom: -44px; border-radius: 50% 50% 0 0; background: rgba(255,255,255,.055); }
.participant > span { position: relative; z-index: 1; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: rgba(250,194,40,.14); color: var(--yellow); font: 500 1.55rem var(--serif); }
.participant small { position: absolute; z-index: 2; left: 12px; bottom: 9px; color: #dce8f4; font-size: .67rem; }
.participant-two { background: linear-gradient(145deg, #183e6c, #09213f); }
.participant-three { background: linear-gradient(145deg, #09213f, #16416e); }
.zoom-footer { min-height: 62px; padding: 0 21px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #b7c7d8; font-size: .74rem; }
.zoom-footer strong { color: var(--yellow); font-size: .64rem; letter-spacing: .11em; }

/* Expectation */
.expectation-section { background: var(--mist); }
.expectation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.expectation-card { padding: 38px 34px; border-radius: 22px; background: var(--white); border: 1px solid #dde6ee; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; }
.expectation-card .line-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 30px; border: 1px solid rgba(250,194,40,.9); border-radius: 50%; color: #b37f00; font-size: 1.35rem; }
.expectation-card h3 { font: 600 1.45rem var(--serif); }
.expectation-card p { color: var(--muted); margin-bottom: 0; }

/* How */
.how-section { background: var(--navy); color: var(--white); }
.how-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; }
.how-heading h2 { color: var(--white); }
.how-heading > p:not(.eyebrow) { color: #b9c9d9; max-width: 480px; }
.steps-list { border-top: 1px solid rgba(255,255,255,.14); }
.step-item { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.step-item > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(250,194,40,.6); color: var(--yellow); font-weight: 900; }
.step-item h3 { color: var(--white); font: 600 1.42rem var(--serif); margin-bottom: 4px; }
.step-item p { color: #aebfd0; margin-bottom: 0; }

/* Purpose */
.purpose-section { padding: 0; background: var(--mist); }
.purpose-card { transform: translateY(78px); position: relative; z-index: 2; display: grid; grid-template-columns: 240px 1fr; align-items: center; gap: 62px; padding: 58px 70px; border-radius: 26px; background: linear-gradient(135deg, #082b57, var(--navy)); color: var(--white); box-shadow: var(--shadow-lg); overflow: hidden; }
.purpose-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -150px; top: -160px; border: 1px solid rgba(250,194,40,.18); border-radius: 50%; }
.purpose-card h2 { color: var(--white); font-size: clamp(2.4rem, 4vw, 3.7rem); }
.purpose-card p:last-child { color: #c5d3e1; max-width: 780px; margin-bottom: 0; }
.purpose-mark { position: relative; z-index: 1; display: grid; place-items: center; min-height: 190px; border-radius: 22px; background: rgba(255,255,255,.95); }
.purpose-mark img { width: 178px; }

/* Receive */
.receive-section { padding-top: 190px; background: var(--white); }
.receive-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 85px; align-items: start; }
.receive-copy .lead { max-width: 610px; }
.included-list { margin-top: 37px; border-top: 1px solid var(--line); }
.included-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 17px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.included-list > div > span { color: #b68100; font-size: .71rem; font-weight: 950; letter-spacing: .08em; padding-top: 4px; }
.included-list p { margin: 0; }
.included-list strong, .included-list small { display: block; }
.included-list strong { color: var(--navy); }
.included-list small { color: var(--muted); margin-top: 3px; }
.form-card { position: sticky; top: 115px; padding: 40px; border-radius: 24px; background: var(--mist); border: 1px solid #dce5ed; box-shadow: var(--shadow-md); }
.form-heading { text-align: center; }
.form-gift { display: inline-block; padding: 7px 11px; border-radius: 999px; background: rgba(250,194,40,.2); color: #8d6500; font-size: .7rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.form-heading h2 { margin: 13px 0 10px; font-size: 2.65rem; }
.form-heading p { color: var(--muted); }
.signup-form { display: grid; gap: 16px; margin-top: 28px; }
.signup-form label > span { display: block; margin-bottom: 7px; color: #2f4864; font-size: .8rem; font-weight: 850; }
.signup-form input { width: 100%; height: 58px; padding: 0 17px; border: 1px solid #cbd7e2; border-radius: 11px; background: var(--white); color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.signup-form input::placeholder { color: #98a7b8; }
.signup-form input:focus { border-color: #c99b19; box-shadow: 0 0 0 4px rgba(250,194,40,.16); }
.form-status { min-height: 0; margin: 0; font-size: .78rem; text-align: center; }
.form-status.is-error { min-height: 40px; padding: 10px 12px; border-radius: 9px; background: #fff2df; color: #7a3f00; }
.privacy-note { display: flex; align-items: flex-start; justify-content: center; gap: 9px; margin-top: 17px; color: #758397; font-size: .72rem; }
.privacy-note span { color: #bc8900; font-size: .55rem; margin-top: 6px; }
.privacy-note p { margin: 0; }

/* FAQ */
.faq-section { background: var(--mist); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 95px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid #ccd8e3; }
details { border-bottom: 1px solid #ccd8e3; }
summary { position: relative; list-style: none; padding: 24px 45px 24px 0; color: var(--navy); font-weight: 850; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::before, summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 18px; height: 2px; background: #a77800; transition: transform .2s ease; }
summary::after { transform: rotate(90deg); }
details[open] summary::after { transform: rotate(0deg); }
details p { padding: 0 45px 25px 0; margin: 0; color: var(--muted); }

/* Footer */
.site-footer { background: var(--navy-950); color: #bdcbda; }
.footer-main { min-height: 245px; display: grid; grid-template-columns: 235px 1fr auto; align-items: center; gap: 55px; }
.footer-logo { display: inline-block; width: 205px; padding: 18px; border-radius: 17px; background: var(--white); }
.footer-logo img { display: block; }
.footer-message strong { color: var(--white); font: 500 1.65rem var(--serif); }
.footer-message p { margin: 7px 0 0; max-width: 460px; font-size: .88rem; }
.footer-nav { display: grid; gap: 9px; justify-items: end; }
.footer-nav a { color: #ced9e5; text-decoration: none; font-size: .84rem; font-weight: 700; }
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #8294a8; font-size: .72rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Secondary pages */
.simple-page { min-height: 100vh; background: var(--mist); }
.simple-main { padding: 160px 0 95px; }
.simple-card { max-width: 880px; margin: auto; padding: 58px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.simple-card h1 { color: var(--navy); font-size: clamp(3rem, 6vw, 5.3rem); line-height: 1; font-weight: 500; }
.simple-card h2 { margin-top: 40px; font-size: 2rem; }
.simple-card p, .simple-card li { color: #52647a; }
.simple-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.thank-you-shell { min-height: 100vh; display: grid; place-items: center; padding: 110px 20px 60px; background: radial-gradient(circle at 75% 20%, rgba(250,194,40,.16), transparent 25%), linear-gradient(135deg, var(--navy-950), var(--navy)); color: var(--white); }
.thank-you-card { width: min(100%, 760px); padding: 58px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.07); backdrop-filter: blur(18px); text-align: center; box-shadow: var(--shadow-lg); }
.thank-you-card .mark-box { width: 130px; height: 100px; margin: 0 auto 28px; display: grid; place-items: center; border-radius: 19px; background: var(--white); }
.thank-you-card .mark-box img { width: 105px; }
.thank-you-card h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); line-height: .98; font-weight: 500; }
.thank-you-card p { color: #d3dfeb; font-size: 1.06rem; }
.thank-you-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hidden { display: none !important; }

/* Responsive */
@media (max-width: 1050px) {
  .primary-nav { gap: 19px; }
  .hero-layout { gap: 30px; }
  .hero-offer { transform: scale(.9); }
  .offer-card-book { left: -30px; }
  .offer-card-live { right: -25px; }
  .intro-layout { grid-template-columns: .35fr 1.65fr 1fr; gap: 35px; }
  .question-grid { grid-template-columns: repeat(2, 1fr); }
  .ebook-layout, .discussion-layout, .how-layout, .receive-layout, .faq-layout { gap: 55px; }
  .purpose-card { grid-template-columns: 190px 1fr; padding: 48px; gap: 40px; }
  .purpose-mark { min-height: 165px; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .menu-button { display: block; }
  .primary-nav {
    position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; display: none; padding: 18px;
    border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav > a:not(.button) { padding: 9px 5px; }
  .primary-nav .button { width: 100%; }
  .hero { min-height: auto; padding-top: 155px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 710px; }
  .hero h1 { max-width: 720px; }
  .hero-offer { width: 100%; max-width: 620px; margin: 0 auto; min-height: 580px; transform: none; }
  .intro-layout { grid-template-columns: 1fr; gap: 12px; }
  .intro-copy { padding: 0; max-width: 690px; }
  .ebook-layout, .discussion-layout, .how-layout, .receive-layout, .faq-layout { grid-template-columns: 1fr; }
  .ebook-visual { order: 2; }
  .ebook-copy { order: 1; }
  .discussion-layout { gap: 55px; }
  .expectation-grid { grid-template-columns: 1fr; }
  .purpose-card { transform: translateY(55px); grid-template-columns: 1fr; text-align: center; }
  .purpose-card .eyebrow { justify-content: center; }
  .purpose-mark { width: 220px; margin: auto; }
  .receive-section { padding-top: 155px; }
  .form-card, .faq-heading { position: static; }
  .footer-main { grid-template-columns: 170px 1fr; }
  .footer-logo { width: 160px; }
  .footer-nav { grid-column: 1 / -1; grid-template-columns: repeat(4, auto); justify-content: start; justify-items: start; padding-bottom: 35px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header .container { width: min(calc(100% - 22px), var(--max)); }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .brand img { width: 53px; height: 40px; }
  .brand-name strong { font-size: 1rem; }
  .brand-name small { display: none; }
  .hero { padding: 132px 0 45px; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
  .hero-lead { font-size: 1.12rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 11px 15px; }
  .hero-offer { min-height: 515px; transform: scale(.86); margin: -25px auto -40px; }
  .offer-card-book { left: -55px; }
  .offer-card-live { right: -55px; }
  .offer-ring { width: 430px; height: 430px; }
  .hero-note { margin-top: 28px; }
  h2 { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  .section { padding: 74px 0; }
  .question-band { margin-top: 45px; padding: 26px 24px; font-size: 1.14rem; }
  .question-grid { grid-template-columns: 1fr; }
  .question-card { min-height: 190px; }
  .question-card h3 { margin-top: 45px; }
  .book-stage { width: 100%; height: 540px; }
  .book-large { width: 265px; height: 400px; }
  .book-large .book-title { font-size: 2.45rem; }
  .ebook-badge { right: 2px; bottom: 40px; }
  .zoom-grid { grid-template-columns: 1fr; }
  .participant { min-height: 150px; }
  .zoom-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
  .purpose-card { padding: 40px 25px; }
  .receive-section { padding-top: 130px; }
  .form-card { padding: 30px 22px; }
  .faq-layout { gap: 35px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; padding: 45px 0 30px; gap: 22px; }
  .footer-logo { margin: auto; }
  .footer-message p { margin-inline: auto; }
  .footer-nav { grid-template-columns: repeat(2, auto); justify-content: center; justify-items: center; padding-bottom: 0; }
  .footer-bottom { min-height: 85px; flex-direction: column; justify-content: center; text-align: center; gap: 2px; }
  .simple-main { padding-top: 120px; }
  .simple-card, .thank-you-card { padding: 35px 23px; }
}
