
:root {
  --paper: #f5f0e7;
  --paper-2: #fffaf1;
  --ink: #111111;
  --muted: #66615a;
  --line: #d9d2c7;
  --orange: #ff5c35;
  --purple: #6d4aff;
  --lime: #d7ff3f;
  --lilac: #e9e2ff;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(17,17,17,.09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.section-cream { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--paper-2); }
.section-lilac { background: var(--lilac); }
.center { display:flex; justify-content:center; margin-top: 40px; }
.eyebrow { margin:0 0 16px; font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.18em; }
.eyebrow.light { color: var(--lime); }
h1,h2,h3 { margin:0; line-height: .98; letter-spacing:-.045em; }
h1 { font-size: clamp(3rem, 8vw, 7.4rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); }
h3 { font-size:1.45rem; line-height:1.08; }
p { margin: 0 0 1rem; }
.lede { font-size: clamp(1.08rem, 2vw, 1.35rem); color:#3d3934; max-width: 680px; }
.lede.narrow { max-width: 760px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding: 0 22px; border:2px solid var(--ink); border-radius:999px; text-decoration:none; font-weight:800; transition:.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background:var(--orange); }
.btn.ghost { background:transparent; }
.btn.dark { color:var(--paper); background:var(--ink); }
.text-link { font-weight:800; text-underline-offset:4px; }
.button-row { display:flex; gap:12px; flex-wrap:wrap; margin:30px 0 26px; }

.site-header { position:sticky; top:0; z-index:50; background:rgba(245,240,231,.92); backdrop-filter: blur(12px); border-bottom:1px solid rgba(17,17,17,.12); }
.header-inner { min-height:76px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:24px; }
.brand { font-size:1.45rem; font-weight:900; letter-spacing:-.04em; text-decoration:none; }
.main-nav { display:flex; justify-content:center; gap:22px; }
.main-nav a { text-decoration:none; font-size:.94rem; font-weight:700; }
.menu-toggle { display:none; border:0; background:var(--ink); color:var(--paper); border-radius:999px; padding:10px 14px; }
.header-cta { font-size:.9rem; min-height:42px; padding:0 16px; }

.hero { overflow:hidden; min-height: calc(100vh - 76px); display:flex; align-items:center; }
.hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:64px; align-items:center; }
.hero-copy h1 { max-width:800px; }
.hero-art { position:relative; }
.art-frame { border:2px solid var(--ink); border-radius:28px; overflow:hidden; box-shadow:var(--shadow); background:#fff; }
.art-frame img { width:100%; }
.sticker { position:absolute; background:var(--lime); border:2px solid var(--ink); border-radius:999px; padding:13px 17px; font-weight:900; box-shadow:5px 5px 0 var(--ink); }
.sticker-a { top:-20px; right:-16px; transform:rotate(7deg); }
.sticker-b { bottom:-18px; left:18px; background:var(--orange); transform:rotate(-7deg); }
.hero-notes { display:flex; flex-wrap:wrap; gap:8px; }
.hero-notes span { border:1px solid var(--ink); border-radius:999px; padding:7px 11px; font-size:.82rem; font-weight:700; }
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0) rotate(-.7deg)} 50%{transform:translateY(-12px) rotate(.7deg)} }
.reveal { animation: rise .7s ease both; }
.delay-1 { animation-delay:.12s; }
@keyframes rise { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

.split-block { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.copy-stack { font-size:1.08rem; max-width:620px; }
.copy-stack p + p { margin-top:18px; }
.light-copy { color:#d7d0c5; }
.image-banner { margin-top:56px; margin-bottom:56px; border:2px solid var(--ink); border-radius:30px; overflow:hidden; box-shadow:var(--shadow); }
.image-banner img { width:100%; }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:42px; }
.section-note { max-width:320px; color:var(--muted); }
.product-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.product-card { background:var(--paper-2); border:1.5px solid var(--ink); border-radius:var(--radius); overflow:hidden; transition:.22s ease; box-shadow:0 7px 0 rgba(17,17,17,.06); }
.product-card:hover { transform:translateY(-6px); box-shadow:0 14px 0 rgba(17,17,17,.08); }
.product-card img { aspect-ratio:1 / .84; width:100%; object-fit:cover; border-bottom:1.5px solid var(--ink); }
.product-card-body { padding:22px; }
.product-card-top { display:flex; justify-content:space-between; gap:18px; align-items:flex-start; }
.product-card h3 { max-width:75%; }
.price { font-size:1.08rem; font-weight:900; white-space:nowrap; }
.product-card p { color:var(--muted); min-height:52px; }
.card-meta { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; }
.card-meta span { font-size:.75rem; border:1px solid var(--line); border-radius:999px; padding:6px 9px; }
.card-link { display:inline-block; margin-top:18px; font-weight:900; }
.mission { align-items:center; }
.benefit-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.benefit { background:rgba(255,255,255,.55); border:1.5px solid var(--ink); border-radius:20px; padding:26px; }
.benefit-icon { width:56px; height:56px; border-radius:16px; background:var(--ink); color:var(--lime); display:grid; place-items:center; font-size:1.45rem; font-weight:900; margin-bottom:36px; }
.benefit h3 { margin-bottom:12px; }
.free-guide { background:var(--orange); }
.free-grid { display:grid; grid-template-columns:1fr .65fr; gap:70px; align-items:center; }
.free-grid p { max-width:640px; font-size:1.05rem; }
.free-cover { display:block; transform:rotate(4deg); border:2px solid var(--ink); border-radius:24px; overflow:hidden; box-shadow:14px 14px 0 var(--ink); }
.faq-preview { display:grid; grid-template-columns:.7fr 1.3fr; gap:70px; }
.faq-list details, .faq-page details { border-top:1px solid var(--ink); padding:18px 0; }
.faq-list details:last-of-type, .faq-page details:last-of-type { border-bottom:1px solid var(--ink); }
summary { cursor:pointer; font-weight:800; }
details p { padding-top:14px; color:var(--muted); }

.page-hero { padding:110px 0 70px; background:var(--paper-2); border-bottom:1px solid var(--line); }
.page-hero.small h1 { font-size:clamp(3rem,7vw,6.2rem); max-width:1000px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; }
.lede-block { font-size:1.25rem; color:#3f3a34; }
.editorial-copy { max-width:820px; }
.editorial-copy h2 { font-size:clamp(2rem,4vw,3.5rem); margin:58px 0 20px; }
.editorial-copy h2:first-child { margin-top:0; }
.editorial-copy p { font-size:1.08rem; }
.contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.contact-card { min-height:260px; padding:30px; border:1.5px solid var(--ink); border-radius:24px; background:var(--paper-2); }
.contact-card:nth-child(2) { background:var(--lilac); }
.contact-card:nth-child(3) { background:var(--orange); }
.contact-card h2 { font-size:clamp(1.7rem,3vw,3rem); margin-top:28px; word-break:break-word; }
.contact-label { font-size:.76rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.curriculum-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.curriculum-grid article { padding:28px; border:1.5px solid var(--ink); border-radius:22px; background:var(--paper-2); }
.curriculum-grid article span { font-weight:900; color:var(--orange); }
.curriculum-grid h2 { font-size:2.3rem; margin:18px 0 15px; }
.update-list article { display:grid; grid-template-columns:220px 1fr; gap:45px; border-top:1px solid var(--ink); padding:30px 0; }
.update-list article:last-child { border-bottom:1px solid var(--ink); }
.update-list h2 { font-size:2rem; margin-bottom:12px; }
.update-list time { font-weight:800; }
.faq-page { max-width:900px; }
.faq-page details { padding:24px 0; }
.faq-page summary { font-size:1.12rem; }

.product-layout { display:grid; grid-template-columns:.92fr 1.08fr; gap:64px; align-items:start; }
.product-cover-large { position:sticky; top:110px; border:2px solid var(--ink); border-radius:26px; overflow:hidden; box-shadow:12px 12px 0 var(--ink); }
.product-info .eyebrow { color:var(--orange); }
.product-info h1 { font-size:clamp(3rem,6vw,6rem); }
.product-tagline { font-size:1.3rem; color:var(--muted); margin:22px 0; }
.product-price-line { display:flex; gap:18px; align-items:center; flex-wrap:wrap; margin:24px 0; }
.product-price { font-size:2rem; font-weight:900; }
.pill { border:1px solid var(--ink); border-radius:999px; padding:7px 11px; font-size:.8rem; font-weight:800; }
.product-description { font-size:1.08rem; }
.product-panel { border-top:1px solid var(--ink); padding-top:28px; margin-top:34px; }
.product-panel h2 { font-size:2.1rem; margin-bottom:18px; }
.module-list { padding-left:1.2rem; }
.module-list li { margin:9px 0; }
.buy-box { margin-top:38px; padding:24px; border:2px solid var(--ink); border-radius:22px; background:var(--lime); }
.buy-box p { margin:10px 0 18px; }
.buy-box .btn { width:100%; background:var(--ink); color:var(--paper); }

.loading-page { min-height:75vh; display:grid; place-items:center; padding:80px 20px; }
.loading-card { width:min(600px,94vw); text-align:center; padding:52px 34px; background:var(--paper-2); border:2px solid var(--ink); border-radius:28px; box-shadow:12px 12px 0 var(--ink); }
.loading-card h1 { font-size:clamp(2.4rem,6vw,4.5rem); }
.spinner { width:64px; height:64px; border:8px solid #ded6ca; border-top-color:var(--orange); border-radius:50%; margin:0 auto 26px; animation:spin .75s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
.small-muted { color:var(--muted); font-size:.88rem; }

.policy-wrap { padding-top:70px; }
.policy-shell { display:grid; grid-template-columns:minmax(0,820px) 1fr; }
.policy-copy { background:var(--paper-2); border:1px solid var(--line); border-radius:24px; padding:clamp(24px,5vw,60px); box-shadow:var(--shadow); }
.policy-copy h1 { font-size:clamp(3rem,6vw,5.6rem); margin-bottom:28px; }
.policy-copy h2 { font-size:clamp(1.55rem,3vw,2.5rem); margin:44px 0 16px; line-height:1.08; }
.policy-copy p, .policy-copy li { color:#393630; }
.policy-copy ul, .policy-copy ol { padding-left:1.4rem; }
.policy-copy li { margin:9px 0; }

.site-footer { background:var(--ink); color:var(--paper); padding:70px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:50px; }
.footer-col h3 { color:var(--lime); font-size:1rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:20px; }
.footer-col p { color:#cdc5b9; }
.footer-col a { display:block; color:#fff; margin:8px 0; text-decoration:none; }
.footer-socials { display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.footer-socials a { border:1px solid #6e6961; padding:8px 10px; border-radius:999px; }
.footer-bottom { margin-top:50px; padding-top:22px; border-top:1px solid #3a3835; display:flex; justify-content:space-between; gap:20px; color:#aaa39a; font-size:.86rem; }

@media (max-width: 980px) {
  .hero-grid,.split-block,.free-grid,.faq-preview,.two-col,.product-layout { grid-template-columns:1fr; }
  .hero { min-height:auto; }
  .hero-art { max-width:680px; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .benefit-grid { grid-template-columns:repeat(2,1fr); }
  .product-cover-large { position:static; max-width:650px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid .footer-col:first-child { grid-column:1/-1; }
  .policy-shell { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .section-pad { padding:68px 0; }
  .header-inner { grid-template-columns:auto auto; justify-content:space-between; }
  .menu-toggle { display:block; }
  .main-nav { display:none; position:absolute; left:4vw; right:4vw; top:68px; padding:18px; background:var(--paper-2); border:1.5px solid var(--ink); border-radius:18px; flex-direction:column; align-items:flex-start; box-shadow:var(--shadow); }
  .main-nav.open { display:flex; }
  .header-cta { display:none; }
  .hero-grid { gap:42px; }
  .product-grid,.benefit-grid,.contact-grid,.curriculum-grid { grid-template-columns:1fr; }
  .section-head { align-items:flex-start; flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid .footer-col:first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .update-list article { grid-template-columns:1fr; gap:10px; }
  .sticker-a { right:8px; }
  .page-hero { padding:80px 0 55px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
}
