:root {
  --navy: #071f4f;
  --navy-soft: #1b3563;
  --gold: #b97819;
  --gold-light: #d9a345;
  --cream: #fbf7f1;
  --ivory: #fffdfa;
  --rose: #f5c7bd;
  --blue: #b8dde4;
  --ink: #1e2738;
  --muted: #677286;
  --line: rgba(7, 31, 79, 0.12);
  --shadow: 0 30px 80px rgba(7, 31, 79, 0.12);
  --shadow-soft: 0 18px 44px rgba(7, 31, 79, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 3% 12%, rgba(245, 199, 189, 0.36), transparent 27rem),
    radial-gradient(circle at 97% 10%, rgba(184, 221, 228, 0.42), transparent 28rem),
    linear-gradient(180deg, var(--ivory), var(--cream));
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -48px;
  z-index: 999;
  padding: 0.8rem 1rem;
  background: var(--navy);
  color: white;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 96px 0; }

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.35rem, 7.8vw, 6.85rem); }
h2 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); }
h3 { font-size: 1.48rem; }
p { margin: 0; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--gold), #d39321 48%, #a76711);
  box-shadow: 0 16px 32px rgba(185, 120, 25, 0.25), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-secondary, .btn-outline, .btn-card {
  color: var(--gold);
  background: rgba(255, 253, 248, 0.75);
  border-color: rgba(185, 120, 25, 0.42);
}
.btn-secondary:hover, .btn-outline:hover, .btn-card:hover {
  background: rgba(255, 249, 239, 0.98);
  box-shadow: 0 14px 30px rgba(185, 120, 25, 0.12);
}
.btn-small { min-height: 42px; padding-inline: 1rem; font-size: 0.72rem; }
.text-link { color: var(--gold); font-weight: 800; }

.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 300;
}
.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--blue));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 220;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 31, 79, 0.08);
  transition: box-shadow 220ms ease, background 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 30px rgba(7, 31, 79, 0.06);
}
.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}
.brand-mark { color: var(--gold); font-size: 1.1rem; }
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.1vw, 1.9rem);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-soft);
}
.nav a {
  position: relative;
  padding: .35rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 220ms ease;
}
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 84px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(185, 120, 25, 0.16);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
  gap: 3.4rem;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 span { color: var(--gold); }
.hero-text {
  max-width: 650px;
  margin-top: 1.35rem;
  color: var(--navy-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
}
.trust-line i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.watercolor {
  position: absolute;
  z-index: 0;
  opacity: .82;
  pointer-events: none;
}
.watercolor-pink {
  width: 33rem;
  height: 140%;
  left: -12rem;
  top: -12%;
  background:
    radial-gradient(circle at 45% 20%, rgba(249, 198, 188, 0.82), transparent 26%),
    radial-gradient(circle at 46% 62%, rgba(240, 147, 132, 0.32), transparent 31%),
    radial-gradient(circle at 62% 88%, rgba(246, 217, 206, 0.88), transparent 38%);
}
.watercolor-blue {
  width: 35rem;
  height: 130%;
  right: -14rem;
  top: -8%;
  background:
    radial-gradient(circle at 34% 28%, rgba(181, 222, 230, 0.78), transparent 29%),
    radial-gradient(circle at 52% 68%, rgba(107, 181, 196, 0.28), transparent 36%),
    radial-gradient(circle at 67% 89%, rgba(225, 247, 250, 0.78), transparent 42%);
}
.gold-vein {
  position: absolute;
  width: 1px;
  height: 78%;
  opacity: .5;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  filter: drop-shadow(0 0 5px rgba(185, 120, 25, 0.55));
  z-index: 1;
}
.vein-left { left: 8%; top: 8%; transform: rotate(5deg); }
.vein-right { right: 9%; top: 5%; transform: rotate(-7deg); }

.hero-visual { display: flex; justify-content: center; position: relative; z-index: 2; }
.book-stage {
  position: relative;
  width: min(430px, 92vw);
  min-height: 620px;
  display: grid;
  place-items: center;
}
.book-stage::before {
  content: "";
  position: absolute;
  width: 68%;
  height: 35px;
  bottom: 42px;
  border-radius: 999px;
  background: rgba(7, 31, 79, 0.14);
  filter: blur(22px);
}
.halo {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 233, 179, 0.62), transparent 64%);
  animation: pulse 5s ease-in-out infinite;
}
.book-cover {
  position: relative;
  z-index: 2;
  width: min(360px, 80vw);
  border-radius: 8px;
  box-shadow: 24px 30px 70px rgba(7, 31, 79, 0.25), 0 0 0 1px rgba(255,255,255,.55) inset;
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  animation: floatBook 6s ease-in-out infinite;
}
.author-badge {
  position: absolute;
  z-index: 4;
  left: -12px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem .95rem .8rem .8rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(185, 120, 25, .25);
  box-shadow: 0 16px 40px rgba(7, 31, 79, 0.12);
}
.author-badge img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.author-badge strong {
  display: block;
  color: var(--navy);
  font-weight: 800;
}
.author-badge span {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.crystal {
  position: absolute;
  z-index: 3;
  border-radius: 38% 62% 44% 56% / 58% 31% 69% 42%;
  background: linear-gradient(135deg, rgba(246, 198, 210, .9), rgba(255, 255, 255, .45));
  border: 1px solid rgba(185, 120, 25, .18);
  box-shadow: 0 14px 35px rgba(7, 31, 79, 0.11);
}
.crystal-one { width: 56px; height: 50px; right: 5%; bottom: 80px; }
.crystal-two { width: 34px; height: 31px; left: 7%; bottom: 140px; background: linear-gradient(135deg, rgba(184, 221, 228, .95), rgba(255,255,255,.55)); }
@keyframes floatBook { 0%,100% { transform: perspective(900px) rotateY(-7deg) rotateX(2deg) translateY(0); } 50% { transform: perspective(900px) rotateY(-7deg) rotateX(2deg) translateY(-12px); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .62; } 50% { transform: scale(1.08); opacity: .9; } }

.authority-banner {
  padding: 18px 0 8px;
}
.authority-banner-inner {
  border-radius: 20px;
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg, rgba(255, 244, 239, 0.85), rgba(237, 248, 250, 0.82));
  border: 1px solid rgba(185, 120, 25, 0.2);
  box-shadow: var(--shadow-soft);
}
.authority-banner p {
  text-align: center;
  color: var(--navy-soft);
  font-size: 1rem;
}
.authority-banner strong { color: var(--navy); }

.promise-strip {
  padding: 26px 0;
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(7, 31, 79, 0.08);
}
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.promise-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--line);
}
.promise-card:last-child { border-right: 0; }
.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(185, 120, 25, 0.35);
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255, 248, 238, .72));
  font-size: 1.45rem;
}
.promise-card h3 { margin-bottom: .25rem; }
.promise-card p { color: var(--muted); font-size: .92rem; line-height: 1.45; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 4.5rem;
  align-items: center;
}
.section-copy p:not(.eyebrow) { color: var(--navy-soft); font-size: 1.06rem; max-width: 640px; margin-top: 1.08rem; }
.micro-cta { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feature-list article {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 1.35rem;
  border: 1px solid rgba(185, 120, 25, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-soft);
}
.feature-list article::before {
  content: "";
  position: absolute;
  inset: auto -45px -60px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(184, 221, 228, 0.35);
}
.feature-list span { color: var(--gold); font-weight: 900; letter-spacing: .1em; font-size: .8rem; }
.feature-list h3 { margin-top: .55rem; max-width: 270px; }

.products-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 199, 189, 0.23), transparent 26rem),
    radial-gradient(circle at 100% 20%, rgba(184, 221, 228, 0.25), transparent 24rem),
    rgba(255, 253, 248, 0.35);
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-heading p:not(.eyebrow) { color: var(--muted); margin-top: 1.08rem; font-size: 1.05rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(7, 31, 79, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image {
  height: 210px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 199, 189, 0.62), transparent 42%),
    radial-gradient(circle at 88% 40%, rgba(184, 221, 228, 0.56), transparent 45%),
    linear-gradient(135deg, #fffaf4, #edf8fa);
  position: relative;
  overflow: hidden;
}
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}
.product-card:hover .product-image::after { transform: translateX(100%); }
.product-image img { height: 184px; width: auto; border-radius: 5px; box-shadow: 12px 18px 36px rgba(7, 31, 79, .16); }
.product-body { padding: 1.4rem; display: grid; gap: .85rem; }
.product-body .label { color: var(--gold); text-transform: uppercase; font-weight: 900; letter-spacing: .14em; font-size: .72rem; }
.product-body h3 { font-size: 1.8rem; }
.product-body p { color: var(--muted); font-size: .94rem; }
.btn-card { min-height: 44px; justify-self: start; }

.paper-stack { position: relative; width: 116px; height: 142px; }
.paper-stack span {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255,253,248,.9);
  border: 1px solid rgba(185,120,25,.22);
  box-shadow: 0 18px 36px rgba(7,31,79,.12);
}
.paper-stack span:nth-child(1) { transform: rotate(-9deg) translate(-14px, 5px); background: #fff1ed; }
.paper-stack span:nth-child(2) { transform: rotate(7deg) translate(12px, 5px); background: #edf8fa; }
.paper-stack span:nth-child(3)::before {
  content: "Workbook";
  position: absolute;
  top: 48px;
  left: 0; right: 0;
  text-align: center;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.pen {
  position: absolute;
  width: 7px; height: 118px;
  border-radius: 99px;
  background: var(--gold);
  transform: rotate(42deg) translate(68px, -36px);
  box-shadow: 0 10px 18px rgba(185,120,25,.24);
}
.screen {
  position: relative;
  width: 180px; height: 118px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fdfaf4, #eaf7f9);
  border: 8px solid rgba(7,31,79,.82);
  box-shadow: 0 22px 40px rgba(7,31,79,.17);
  display: grid; place-items: center;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
}
.screen span { position: absolute; left: 22px; right: 22px; height: 4px; border-radius: 99px; background: rgba(185,120,25,.25); }
.screen span:first-child { top: 25px; }
.screen span:nth-child(2) { top: 38px; width: 70%; }
.guide-cover {
  width: 110px; height: 150px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: linear-gradient(145deg, #fff2ed, #e7f7fa);
  border: 1px solid rgba(185,120,25,.24);
  font-family: var(--serif);
  font-weight: 700; font-size: 1.65rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(7,31,79,.13);
  transform: rotate(-7deg);
}
.tea-cup {
  position: absolute;
  right: 52px; bottom: 45px;
  width: 58px; height: 42px;
  border-radius: 0 0 999px 999px;
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(185,120,25,.23);
}
.tea-cup::after {
  content: "";
  position: absolute;
  right: -17px; top: 8px;
  width: 24px; height: 20px;
  border: 5px solid rgba(255,253,248,.92);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.lead-panel { padding-top: 20px; }
.lead-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(320px, .72fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(185, 120, 25, 0.25);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 20% 40%, rgba(245, 199, 189, 0.45), transparent 38%),
    radial-gradient(circle at 84% 24%, rgba(184, 221, 228, 0.64), transparent 45%),
    rgba(255, 253, 248, 0.86);
}
.lead-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}
.lead-copy h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.lead-copy p:not(.eyebrow) { color: var(--navy-soft); margin-top: 1rem; }
.lead-art { min-height: 180px; display: grid; place-items: center; position: relative; }
.mini-guide {
  width: 120px; height: 155px;
  border-radius: 13px;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.7rem; font-weight: 800;
  color: var(--navy);
  background: linear-gradient(135deg, #fff2ed, #e8f7fa);
  border: 1px solid rgba(185,120,25,.22);
  transform: rotate(-9deg);
  box-shadow: 0 18px 36px rgba(7,31,79,.14);
}
.butterfly {
  position: absolute;
  right: 15px; bottom: 24px;
  display: flex;
  transform: rotate(18deg);
}
.butterfly span {
  width: 35px; height: 48px;
  border-radius: 70% 30% 60% 40%;
  background: linear-gradient(135deg, rgba(245,199,189,.88), rgba(255,255,255,.6));
  border: 1px solid rgba(185,120,25,.45);
}
.butterfly span:nth-child(2) { transform: scaleX(-1); background: linear-gradient(135deg, rgba(184,221,228,.9), rgba(255,255,255,.6)); }
.lead-form { display: grid; gap: .85rem; }
.lead-form input {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(7,31,79,.14);
  background: rgba(255,255,255,.82);
  padding: 0 1.25rem;
  color: var(--navy);
  outline: 0;
}
.lead-form input:focus { border-color: rgba(185,120,25,.6); box-shadow: 0 0 0 4px rgba(185,120,25,.12); }
.lead-form small { color: var(--muted); font-size: .8rem; text-align: center; }
.hidden, .sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; border: 0 !important;
}

.about-section {
  background:
    radial-gradient(circle at 16% 38%, rgba(184,221,228,.3), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(245,199,189,.32), transparent 28rem);
}
.about-grid { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 2rem; align-items: center; }
.portrait-wrap, .about-copy, .testimonial-grid blockquote, .accordion, .final-card, .thank-you-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(7,31,79,.08);
  background: rgba(255,253,248,.76);
  box-shadow: var(--shadow-soft);
}
.portrait-wrap { padding: 1.3rem; }
.portrait-photo {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
}
.about-copy { padding: 2.2rem; }
.about-copy p:not(.eyebrow) { margin-top: 1.05rem; color: var(--navy-soft); }
.credibility-points {
  display: grid;
  gap: .9rem;
  margin-top: 1.35rem;
}
.credibility-points div {
  padding: .95rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,241,237,.7), rgba(237,248,250,.58));
  border: 1px solid rgba(185,120,25,.14);
}
.credibility-points strong {
  display: block;
  color: var(--navy);
  margin-bottom: .2rem;
}
.credibility-points span { color: var(--muted); font-size: .95rem; }
.about-copy .note {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255,241,237,.74);
  color: var(--muted) !important;
  font-size: .93rem;
}

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
blockquote { margin: 0; padding: 1.8rem; position: relative; overflow: hidden; }
blockquote::after {
  content: "";
  position: absolute;
  right: -55px; bottom: -55px;
  width: 145px; height: 145px;
  border-radius: 50%;
  background: rgba(184,221,228,.25);
}
blockquote span { display: block; color: var(--gold); font-family: var(--serif); font-size: 4rem; line-height: .75; }
blockquote p { color: var(--navy-soft); font-family: var(--serif); font-size: 1.55rem; font-weight: 700; line-height: 1.12; }
blockquote cite { display: block; margin-top: 1.35rem; color: var(--gold); font-style: normal; font-weight: 800; }

.faq-section { padding-top: 40px; }
.faq-grid { display: grid; grid-template-columns: minmax(0, .66fr) minmax(360px, 1fr); gap: 3rem; align-items: start; }
.accordion { padding: .8rem; display: grid; gap: .7rem; }
.accordion-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  color: var(--navy);
}
.accordion-item span { font-weight: 800; }
.accordion-item i { font-style: normal; color: var(--gold); font-size: 1.4rem; line-height: 1; }
.accordion-item p { grid-column: 1 / -1; display: none; color: var(--muted); margin-top: .7rem; }
.accordion-item[aria-expanded="true"] p { display: block; }
.accordion-item[aria-expanded="true"] i { transform: rotate(45deg); }

.final-cta { padding-top: 38px; }
.final-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.35rem;
  background:
    radial-gradient(circle at 0% 50%, rgba(245,199,189,.44), transparent 32%),
    radial-gradient(circle at 100% 30%, rgba(184,221,228,.48), transparent 36%),
    rgba(255,253,248,.8);
}
.final-card h2 { font-size: clamp(2.5rem, 4.8vw, 4.2rem); }
.final-card p:not(.eyebrow) { color: var(--navy-soft); margin-top: .9rem; }
.final-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.site-footer {
  padding: 36px 0 28px;
  border-top: 1px solid rgba(7,31,79,.08);
  background: rgba(255,253,248,.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.footer-grid nav { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--navy-soft); font-weight: 700; }
.footer-grid p { justify-self: end; color: var(--muted); font-size: .88rem; }
.disclaimer { margin-top: 1.2rem; color: var(--muted); font-size: .78rem; text-align: center; max-width: 920px; }

.sticky-guide {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.15rem;
  color: white;
  background: linear-gradient(135deg, var(--gold), #d39321);
  box-shadow: 0 18px 40px rgba(185,120,25,.28);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  place-items: center;
  padding: 1.25rem;
}
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,31,79,.55); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(245,199,189,.45), transparent 44%),
    radial-gradient(circle at 100% 8%, rgba(184,221,228,.45), transparent 40%),
    var(--ivory);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.modal-card h2 { font-size: clamp(2.4rem, 6vw, 4rem); }
.modal-card p:not(.eyebrow) { color: var(--navy-soft); margin: 1rem 0 1.3rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid rgba(185,120,25,.32);
  color: var(--navy); background: rgba(255,255,255,.7);
  font-size: 1.6rem; cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.thank-you-shell { width: min(760px, 100%); }
.thank-you-card { padding: clamp(2rem, 5vw, 4rem); text-align: center; }
.thank-you-card h1 { font-size: clamp(3rem, 7vw, 5.4rem); }
.thank-you-card p { margin: 1.2rem auto 2rem; max-width: 560px; color: var(--navy-soft); }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-cta { display: none; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px; height: 46px;
    place-items: center;
    border: 1px solid rgba(185,120,25,.25);
    border-radius: 50%;
    background: rgba(255,253,248,.72);
    cursor: pointer;
  }
  .nav-toggle span {
    width: 20px; height: 2px;
    background: var(--navy);
    border-radius: 99px;
    transition: transform 220ms ease, opacity 220ms ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    position: fixed;
    inset: 78px 18px auto 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255,253,248,.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(7,31,79,.08);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 1rem; border-bottom: 1px solid rgba(7,31,79,.07); }
  .nav a:last-child { border-bottom: 0; }
  .hero-grid, .two-col, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-visual { order: -1; }
  .book-stage { min-height: 490px; }
  .book-cover { width: min(300px, 74vw); }
  .author-badge { left: 0; bottom: 64px; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-card:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .lead-card { grid-template-columns: 1fr; text-align: center; }
  .lead-art { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-grid p { justify-self: center; }
  .final-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 72px 0; }
  .brand { font-size: 1.42rem; }
  h1 { font-size: clamp(3rem, 16vw, 4.25rem); }
  .hero-actions, .final-actions { width: 100%; }
  .hero-actions .btn, .final-actions .btn, .micro-cta .btn { width: 100%; }
  .trust-line { font-size: 1.05rem; }
  .promise-grid, .feature-list, .product-grid { grid-template-columns: 1fr; }
  .promise-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-card:last-child { border-bottom: 0; }
  .product-image { height: 185px; }
  .lead-card, .final-card, .about-copy, .portrait-wrap { padding: 1.4rem; border-radius: 24px; }
  .sticky-guide { left: 16px; right: 16px; bottom: 16px; width: calc(100% - 32px); }
  .site-footer { padding-bottom: 88px; }
  .footer-grid nav { justify-content: center; }
  .author-badge { position: relative; margin-top: 1rem; left: auto; bottom: auto; justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Refinement: remove the tiny portrait badge and replace it with a subtle authority note. */
.hero-insight {
  position: absolute;
  z-index: 4;
  left: -18px;
  bottom: 76px;
  width: min(312px, 84vw);
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(185, 120, 25, 0.22);
  box-shadow: 0 18px 44px rgba(7, 31, 79, 0.13);
  backdrop-filter: blur(14px);
}
.hero-insight strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1;
  margin-bottom: .38rem;
}
.hero-insight span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.38;
}

/* Refinement: elevate the author bio photo and make the authority feel polished. */
.about-grid {
  grid-template-columns: minmax(360px, 455px) minmax(0, 1fr);
  gap: 3.2rem;
}
.portrait-wrap {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(245,199,189,.28), transparent 44%),
    radial-gradient(circle at 100% 10%, rgba(184,221,228,.34), transparent 42%),
    rgba(255,253,248,.82);
}
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(185,120,25,.22);
  border-radius: 26px;
  pointer-events: none;
  z-index: 2;
}
.portrait-photo {
  min-height: 560px;
  object-position: center 18%;
  box-shadow: 0 24px 58px rgba(7,31,79,.16);
}
.portrait-caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 3;
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(255,253,248,.84);
  border: 1px solid rgba(185,120,25,.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(7,31,79,.12);
}
.portrait-caption strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}
.portrait-caption span {
  display: block;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .25rem;
}
.about-copy h2 {
  max-width: 760px;
}
.about-copy p:not(.eyebrow) {
  font-size: 1.04rem;
}

@media (max-width: 1040px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .portrait-wrap { max-width: 540px; margin: 0 auto; }
  .hero-insight { left: 0; bottom: 58px; }
}

@media (max-width: 720px) {
  .hero-insight {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 1rem auto 0;
  }
  .portrait-photo { min-height: 440px; }
  .portrait-caption { left: 1.25rem; right: 1.25rem; bottom: 1.25rem; }
}

/* Compliance-minded positioning: prominent boundary without weakening authority. */
.legal-safe-line {
  margin-top: 1rem;
  max-width: 620px;
  padding: .75rem .95rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(7,31,79,.10);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}
@media (max-width: 720px) {
  .legal-safe-line {
    border-radius: 18px;
    text-align: center;
  }
}

/* Verifiable support cards replacing placeholder testimonials. */
.support-grid blockquote { display: none; }
.support-card {
  margin: 0;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(7,31,79,.08);
  background: rgba(255,253,248,.76);
  box-shadow: var(--shadow-soft);
}
.support-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(184,221,228,.25);
}
.support-card span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .8rem;
  margin-bottom: .85rem;
}
.support-card h3 {
  font-size: 2rem;
  margin-bottom: .7rem;
}
.support-card p {
  position: relative;
  z-index: 1;
  color: var(--navy-soft);
}
