:root {
  --navy: #17364f;
  --navy-deep: #0e273a;
  --blue: #1684b8;
  --teal: #12a796;
  --teal-dark: #087e72;
  --orange: #f2a13a;
  --paper: #f7f4ee;
  --white: #ffffff;
  --ink: #1d201d;
  --muted: #5e645d;
  --line: #d9ded9;
  --sage: #6f8f54;
  --brown: #563929;
  --shadow: 0 22px 60px rgba(18, 40, 55, 0.13);
  --radius: 22px;
  --radius-sm: 12px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.1; letter-spacing: -0.035em; }
h1 { margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.9rem); max-width: 900px; }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1.2em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-paper { background: var(--white); }
.section-ink { color: rgba(255,255,255,.82); background: var(--navy-deep); }
.section-ink h2, .section-ink h3, .section-ink strong { color: var(--white); }
.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; z-index: 1000; left: 16px; top: -100px; padding: 10px 16px; color: var(--white); background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.eyebrow { margin-bottom: 18px; color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #72d6ca; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; background: rgba(247,244,238,.88); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-color: rgba(23,54,79,.1); box-shadow: 0 8px 24px rgba(23,54,79,.06); }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.site-header .brand { align-items: flex-start; flex-direction: column; gap: 0; width: max-content; line-height: 1; }
.brand-main { color: var(--ink); font-size: 1.38rem; font-weight: 760; letter-spacing: -.0375rem; }
.brand-main span { color: #4f6d3c; }
.brand-sub { margin-top: 5px; color: #8a8e87; font-size: .56rem; letter-spacing: .1875rem; line-height: 1; text-transform: lowercase; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.main-nav a { color: #35414a; font-size: .87rem; font-weight: 650; text-decoration: none; transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--teal-dark); }
.main-nav .nav-cta { padding: 10px 17px; color: var(--white); background: var(--navy); border-radius: 999px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { color: var(--white); background: var(--teal-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); border-radius: 99px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 100vh; overflow: hidden; padding-top: 154px; padding-bottom: 60px; background: radial-gradient(circle at 75% 36%, rgba(18,167,150,.13), transparent 27%), linear-gradient(145deg, #f7f4ee 20%, #edf4f1 100%); }
.hero-glow { position: absolute; width: 520px; height: 520px; right: -140px; top: 130px; opacity: .65; background: repeating-radial-gradient(circle at 50%, transparent 0 26px, rgba(23,54,79,.08) 27px 28px); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(350px, .72fr); align-items: center; gap: 80px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 em { color: var(--teal-dark); font-style: normal; }
.hero-lead { max-width: 700px; margin-bottom: 25px; color: #42505a; font-size: clamp(1.15rem, 1.8vw, 1.42rem); line-height: 1.55; }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 9px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05em; display: grid; width: 20px; height: 20px; place-items: center; color: var(--white); background: var(--teal); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 780; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(18,167,150,.35); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--teal-dark); box-shadow: 0 10px 28px rgba(8,126,114,.2); }
.button-primary:hover { background: #076d63; box-shadow: 0 14px 34px rgba(8,126,114,.28); }
.button-ghost { color: var(--navy); background: rgba(255,255,255,.6); border-color: rgba(23,54,79,.18); }
.button-ghost:hover { background: var(--white); border-color: rgba(23,54,79,.32); }
.button-dark { color: var(--white); background: var(--navy); }
.button-dark:hover { background: var(--navy-deep); }
.button-light { color: var(--navy-deep); background: var(--white); }
.button-light:hover { background: #e8f5f2; }
.button-large { min-height: 55px; padding: 16px 28px; }
.microcopy { margin: 13px 0 0; color: var(--muted); font-size: .8rem; }
.book-stage { position: relative; width: min(100%, 380px); margin-inline: auto; }
.book-cover { position: relative; z-index: 2; display: block; width: 100%; height: auto; aspect-ratio: 900 / 1273; object-fit: contain; border-radius: 3px 12px 12px 3px; box-shadow: -12px 16px 0 #d6d0c4, -14px 18px 0 #a9a399, 0 42px 70px rgba(14,39,58,.26); transform: rotateZ(1deg); transform-origin: center; }
.book-cover::after { content: ""; }
.book-shadow { position: absolute; z-index: 0; left: 8%; right: -5%; bottom: -10%; height: 18%; background: rgba(14,39,58,.22); filter: blur(26px); border-radius: 50%; transform: rotate(-5deg); }
.price-seal { position: absolute; z-index: 3; right: -50px; top: 48px; display: grid; width: 112px; aspect-ratio: 1; place-content: center; color: var(--navy-deep); background: var(--orange); border: 7px solid rgba(255,255,255,.7); border-radius: 50%; text-align: center; transform: rotate(8deg); box-shadow: 0 16px 32px rgba(14,39,58,.18); }
.price-seal strong, .price-seal span { display: block; line-height: 1.05; }
.price-seal strong { font-size: 1.65rem; }
.price-seal span { margin-top: 5px; font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.audience-bar { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 72px; padding: 21px 30px; background: rgba(255,255,255,.72); border: 1px solid rgba(23,54,79,.08); border-radius: 15px; box-shadow: 0 12px 30px rgba(23,54,79,.06); }
.audience-bar > span { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.audience-bar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; padding: 0; margin: 0; list-style: none; }
.audience-bar li { color: var(--navy); font-size: .9rem; font-weight: 750; }
.audience-bar li + li::before { content: "•"; margin-right: 26px; color: var(--teal); }

.section-heading { max-width: 790px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.problem-card { display: flex; min-height: 325px; flex-direction: column; padding: 30px; background: var(--paper); border: 1px solid #e5e1d8; border-radius: var(--radius); transition: transform .2s, box-shadow .2s; }
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: grid; width: 42px; height: 42px; margin-bottom: 28px; place-items: center; color: var(--teal-dark); background: #dff2ee; border-radius: 10px; font-size: .78rem; font-weight: 900; }
.problem-card h3 { margin-bottom: 14px; }
.problem-card .problem { color: var(--muted); font-size: .94rem; }
.problem-card .result { margin: auto 0 0; padding-top: 17px; color: var(--navy); border-top: 1px solid #dcd8cf; font-size: .9rem; }

.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.content-intro { position: sticky; top: 126px; }
.content-intro > p:not(.eyebrow) { color: rgba(255,255,255,.69); }
.quote-card { margin-top: 38px; padding: 26px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-left: 4px solid var(--teal); border-radius: 0 14px 14px 0; }
.quote-card p { margin: 0; color: var(--white); font-size: 1.05rem; font-weight: 650; }
.chapter-list { padding: 0; margin: 0; list-style: none; }
.chapter-list li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.chapter-list li > span { color: #72d6ca; font-size: .75rem; font-weight: 850; letter-spacing: .08em; }
.chapter-list strong, .chapter-list small { display: block; }
.chapter-list strong { margin-bottom: 4px; font-size: 1rem; }
.chapter-list small { color: rgba(255,255,255,.58); font-size: .82rem; }

.tools-section { overflow: hidden; }
.tools-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.tool-card { padding: 26px 22px; background: var(--white); border-top: 4px solid var(--teal); border-radius: 0 0 16px 16px; box-shadow: 0 12px 30px rgba(23,54,79,.07); }
.tool-card > span { display: block; margin-bottom: 22px; color: var(--teal-dark); font-size: 1.8rem; font-weight: 300; }
.tool-card h3 { min-height: 2.5em; margin-bottom: 12px; font-size: 1.08rem; }
.tool-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.split-heading { display: grid; max-width: none; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.split-heading > p { margin-bottom: 7px; }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.preview-card { position: relative; overflow: hidden; padding: 0; background: var(--white); border: 1px solid var(--line); border-radius: 14px; cursor: zoom-in; box-shadow: 0 14px 35px rgba(23,54,79,.09); transition: transform .25s, box-shadow .25s; }
.preview-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.preview-card img { width: 100%; aspect-ratio: 760 / 1075; object-fit: cover; }
.preview-card span { position: absolute; inset: auto 10px 10px; padding: 10px 13px; color: var(--white); background: rgba(14,39,58,.92); border-radius: 8px; font-size: .78rem; font-weight: 750; text-align: center; }
.preview-dialog { width: min(94vw, 860px); max-height: 94vh; padding: 14px; background: var(--white); border: 0; border-radius: 14px; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.preview-dialog::backdrop { background: rgba(6,18,26,.82); backdrop-filter: blur(5px); }
.preview-dialog img { max-height: calc(94vh - 28px); margin: auto; }
.dialog-close { position: fixed; z-index: 2; right: max(3vw, 18px); top: max(3vh, 18px); display: grid; width: 46px; height: 46px; place-items: center; color: var(--white); background: var(--navy-deep); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 1.8rem; cursor: pointer; }

.author-section { background: #e8efea; }
.author-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.author-photo { position: relative; padding: 18px 18px 0 0; }
.author-photo::before { content: ""; position: absolute; inset: 0 0 18px 18px; background: var(--teal-dark); border-radius: var(--radius); }
.author-photo img { position: relative; width: 100%; min-height: 420px; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: var(--shadow); }
.author-copy h2 { margin-bottom: 10px; }
.author-tagline { color: var(--teal-dark); font-size: 1.18rem; font-weight: 780; }
.author-copy p:not(.eyebrow):not(.author-tagline) { color: #45504b; }
.text-link { display: inline-block; color: var(--navy); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--teal); }

.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; display: flex; min-height: 490px; flex-direction: column; padding: 35px; background: var(--paper); border: 1px solid #e2ded5; border-radius: var(--radius); }
.price-card.featured { background: var(--navy-deep); border-color: var(--navy-deep); box-shadow: 0 26px 60px rgba(14,39,58,.2); transform: translateY(-14px); }
.price-card.featured h3, .price-card.featured .license, .price-card.featured > p, .price-card.featured li { color: var(--white); }
.price-card.featured .tax { color: rgba(255,255,255,.6); }
.popular { position: absolute; right: 22px; top: -14px; padding: 6px 12px; color: var(--navy-deep); background: var(--orange); border-radius: 999px; font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.license { margin-bottom: 8px; color: var(--teal-dark); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.price-card h3 { margin: 0; font-size: 2.7rem; }
.price-card h3 small { font-size: .9rem; letter-spacing: 0; }
.tax { margin: 5px 0 25px; color: var(--muted); font-size: .74rem; }
.price-card > p:not(.license):not(.tax) { color: var(--muted); }
.compact { margin: 12px 0 28px; }
.compact li { color: #3f4a43; font-size: .88rem; }
.price-card .button { width: 100%; margin-top: auto; }
.store-buy { width: 100%; min-height: 48px; margin-top: auto; }
.store-buy .ecsp { width: 100%; }
.license-note { max-width: 860px; margin: 32px auto 0; color: var(--muted); font-size: .78rem; text-align: center; }

.consulting-section { padding: 72px 0; background: var(--white); }
.consulting-card { display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: center; padding: 55px 65px; color: rgba(255,255,255,.78); background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: 26px; box-shadow: var(--shadow); }
.consulting-card h2 { color: var(--white); }
.consulting-card p:last-child { margin-bottom: 0; }
.consulting-actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
.consulting-link { color: var(--white); font-size: .9rem; font-weight: 750; text-align: center; text-decoration: none; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .55fr 1fr; gap: 90px; }
.faq-list details { border-bottom: 1px solid #d7d3ca; }
.faq-list summary { position: relative; padding: 22px 48px 22px 0; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 15px; display: grid; width: 34px; height: 34px; place-items: center; color: var(--teal-dark); background: #dff2ee; border-radius: 50%; font-size: 1.3rem; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 45px 20px 0; margin: 0; color: var(--muted); font-size: .93rem; }

.order-section { color: rgba(255,255,255,.76); background: var(--navy-deep); }
.order-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; align-items: start; }
.order-copy { position: sticky; top: 120px; }
.order-copy h2 { color: var(--white); }
.contact-facts { padding: 0; margin: 40px 0 0; list-style: none; }
.contact-facts li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-facts span, .contact-facts a { display: block; }
.contact-facts span { color: rgba(255,255,255,.45); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-facts a { color: var(--white); text-decoration: none; }
.order-form { position: relative; padding: 40px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 25px 60px rgba(0,0,0,.22); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfaf7; border: 1px solid #d5d6d1; border-radius: 9px; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(18,167,150,.1); outline: none; }
.field textarea { resize: vertical; }
.privacy-check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 5px 0 22px; color: var(--muted); font-size: .78rem; cursor: pointer; }
.privacy-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal-dark); }
.privacy-check a { color: var(--navy); font-weight: 750; }
.form-submit { width: 100%; border: 0; }
.form-submit:disabled { opacity: .6; cursor: wait; transform: none; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.form-status { margin-bottom: 20px; padding: 13px 15px; border-radius: 8px; font-size: .86rem; font-weight: 700; }
.form-status.is-pending { color: #54420e; background: #fff1c2; }
.form-status.is-success { color: #145a45; background: #dff4ea; }
.form-status.is-error { color: #842c2c; background: #fee2e2; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 70px 0 22px; color: rgba(255,255,255,.65); background: #081c2b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 70px; }
.footer-brand .brand-main { color: var(--white); }
.footer-brand .brand-main span { color: #b5cc9f; }
.footer-grid p { max-width: 420px; margin: 22px 0 0; font-size: .88rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid > div > strong { margin-bottom: 8px; color: var(--white); }
.footer-grid a:not(.brand) { font-size: .87rem; text-decoration: none; }
.footer-grid a:not(.brand):hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .8rem; }
  .hero-grid { grid-template-columns: 1fr .68fr; gap: 48px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid { gap: 55px; }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 78px 0 auto; display: none; max-height: calc(100vh - 78px); align-items: stretch; flex-direction: column; gap: 0; padding: 18px 24px 28px; overflow-y: auto; background: var(--paper); border-bottom: 1px solid rgba(23,54,79,.12); box-shadow: 0 22px 40px rgba(23,54,79,.12); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 4px; font-size: 1rem; border-bottom: 1px solid rgba(23,54,79,.08); }
  .main-nav .nav-cta { margin-top: 12px; padding: 14px 18px; text-align: center; border: 0; border-radius: 999px; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { grid-row: 2; }
  .book-stage { max-width: 310px; }
  .price-seal { right: -35px; }
  .audience-bar { align-items: flex-start; flex-direction: column; }
  .audience-bar ul { justify-content: flex-start; }
  .content-grid, .author-grid, .faq-layout, .order-grid { grid-template-columns: 1fr; gap: 50px; }
  .content-intro, .order-copy { position: static; }
  .split-heading { grid-template-columns: 1fr; gap: 5px; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .author-photo { max-width: 620px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .price-card { min-height: auto; }
  .price-card.featured { transform: none; }
  .consulting-card { grid-template-columns: 1fr; padding: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 70px; }
  .main-nav { top: 70px; max-height: calc(100vh - 70px); }
  .brand-sub { display: none; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.25rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { padding-inline: 20px; }
  .book-stage { max-width: 265px; }
  .price-seal { right: -25px; width: 92px; border-width: 5px; }
  .price-seal strong { font-size: 1.35rem; }
  .audience-bar { margin-top: 55px; padding: 20px; }
  .audience-bar ul { flex-direction: column; gap: 7px; }
  .audience-bar li + li::before { content: none; }
  .problem-grid, .tools-grid, .preview-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .tool-card h3 { min-height: 0; }
  .preview-card { max-width: 380px; margin-inline: auto; }
  .author-photo img { min-height: 330px; }
  .price-card { padding: 28px 24px; }
  .consulting-card { width: min(calc(100% - 28px), var(--container)); padding: 35px 26px; }
  .order-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

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

@media print {
  .site-header, .hero-actions, .nav-toggle, .preview-dialog, .order-form, .consulting-actions { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .hero { min-height: 0; padding: 28px 0; background: #fff !important; }
  .section-ink, .order-section { color: #222; }
  .section-ink h2, .section-ink h3, .section-ink strong, .order-copy h2 { color: #000; }
  .hero-grid, .content-grid, .author-grid, .order-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .reveal { opacity: 1; transform: none; }
}
