:root {
  --paper: #f6f3ec;
  --paper-deep: #ebe5db;
  --surface: #fffdf8;
  --ink: #16141a;
  --dim: #66616a;
  --line: #d8d1c6;
  --accent: #c45c26;
  --accent-dark: #963d16;
  --plum: #562b4b;
  --blue: #215f72;
  --green: #2d7056;
  --shadow: 0 28px 80px rgba(22, 20, 26, .12);
  --soft-shadow: 0 16px 42px rgba(22, 20, 26, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.58 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .32;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(196, 92, 38, .45);
  outline-offset: 4px;
}
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.skip { position: fixed; top: -80px; left: 18px; z-index: 100; color: white; background: var(--ink); padding: 10px 14px; border-radius: 9px; }
.skip:focus { top: 14px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(22, 20, 26, .09);
  background: rgba(246, 243, 236, .88);
  backdrop-filter: blur(20px) saturate(1.2);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; font-size: 14px; font-weight: 850; letter-spacing: .11em; }
.brand img { width: 40px; height: 40px; border-radius: 11px; box-shadow: 0 8px 20px rgba(22, 20, 26, .14); }
.nav-link { color: var(--dim); font-size: 14px; font-weight: 650; transition: color .18s ease; }
.nav-link:hover { color: var(--accent); }
.menu-button { display: none; border: 0; background: transparent; color: var(--ink); font: inherit; font-weight: 750; }

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 780;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 14px 30px rgba(196, 92, 38, .26); }
.btn-primary:hover { background: #b74d1c; box-shadow: 0 18px 34px rgba(196, 92, 38, .32); }
.btn-dark { background: var(--ink); color: white; box-shadow: 0 12px 28px rgba(22, 20, 26, .15); }
.btn-line { background: rgba(255, 253, 248, .72); border-color: var(--line); }
.btn-small { min-height: 40px; padding-inline: 15px; font-size: 14px; }

.eyebrow { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.hero { padding: 82px 0 76px; }
.hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 52px; }
.hero h1 { margin: 15px 0 22px; font-size: clamp(52px, 6.2vw, 86px); line-height: .96; letter-spacing: -.055em; }
.hero h1 span { color: var(--accent); }
.hero-copy > p { max-width: 650px; margin: 0 0 28px; color: var(--dim); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 24px; color: var(--dim); font-size: 13px; }
.micro-proof span::before { content: "✓"; margin-right: 6px; color: var(--green); font-weight: 900; }
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -6% -8% -10% -4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 40%, rgba(196, 92, 38, .18), transparent 48%), radial-gradient(circle at 72% 65%, rgba(86, 43, 75, .16), transparent 44%);
  filter: blur(10px);
}
.hero-visual > img { width: 100%; height: auto; aspect-ratio: 1586 / 992; object-fit: contain; border-radius: 24px; box-shadow: var(--shadow); }
.visual-note { display: flex; align-items: center; gap: 9px; width: fit-content; margin: -18px 20px 0 auto; position: relative; padding: 10px 14px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); box-shadow: var(--soft-shadow); color: var(--dim); font-size: 12px; }
.visual-note b { color: var(--ink); }

.audience-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255, 253, 248, .5); }
.audience-list { display: flex; gap: 12px; padding: 18px 0; overflow-x: auto; scrollbar-width: none; }
.audience-list::-webkit-scrollbar { display: none; }
.audience-list span { white-space: nowrap; padding: 7px 12px; border: 1px solid #ded6ca; border-radius: 999px; color: #4d4850; background: rgba(255, 255, 255, .55); font-size: 13px; font-weight: 650; }

section { padding: 96px 0; }
.section-head { max-width: 780px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 12px 0 18px; font-size: clamp(40px, 5.2vw, 66px); line-height: 1; letter-spacing: -.048em; }
.section-head p { margin: 0; color: var(--dim); font-size: 18px; }

.dark-section { position: relative; overflow: hidden; background: var(--ink); color: white; }
.dark-section::after { content: ""; position: absolute; top: -360px; right: -280px; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(196, 92, 38, .44), transparent 68%); }
.dark-section .section-head p { color: #cbc5cd; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; position: relative; z-index: 2; }
.step-card { min-height: 320px; padding: 26px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); }
.step-card:nth-child(2) { background: #21383d; }
.step-card:nth-child(3) { background: #40253a; }
.step-no { color: #f2a07a; font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.step-icon { margin: 54px 0 20px; font-size: 42px; }
.step-card h3 { margin: 0 0 10px; font-size: 28px; }
.step-card p { margin: 0; color: #d0cad2; }

.story-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 55px; align-items: start; }
.sticky-copy { position: sticky; top: 112px; }
.sticky-copy h2 { margin: 13px 0 19px; font-size: clamp(40px, 5vw, 62px); line-height: 1.01; letter-spacing: -.048em; }
.sticky-copy p { color: var(--dim); font-size: 18px; }
.levels { display: grid; gap: 13px; }
.level { display: grid; grid-template-columns: 50px 1fr; gap: 17px; padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255, 253, 248, .76); transition: transform .2s ease, border .2s ease, box-shadow .2s ease; }
.level:hover { transform: translateX(5px); border-color: rgba(196, 92, 38, .48); box-shadow: var(--soft-shadow); }
.level-no { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; color: white; background: var(--ink); font-weight: 850; }
.level:nth-child(2) .level-no { background: var(--blue); }
.level:nth-child(3) .level-no { background: var(--plum); }
.level:nth-child(4) .level-no { background: var(--accent); }
.level h3 { margin: 1px 0 4px; font-size: 20px; }
.level p { margin: 0; color: var(--dim); font-size: 14px; }

.bento-section { background: var(--paper-deep); }
.bento { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 15px; }
.bento-card { min-height: 230px; padding: 25px; border: 1px solid rgba(22, 20, 26, .10); border-radius: 19px; background: var(--surface); box-shadow: 0 14px 36px rgba(22,20,26,.045); }
.bento-card.wide { grid-column: span 2; background: linear-gradient(145deg, #fffdf8, #f2e3d9); }
.bento-card.dark { background: var(--ink); color: white; }
.bento-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--accent); background: #f5dfd3; font-size: 21px; }
.bento-card.dark .bento-icon { color: #ffc2a2; background: rgba(255,255,255,.1); }
.bento-card h3 { margin: 30px 0 8px; font-size: 21px; }
.bento-card p { margin: 0; color: var(--dim); font-size: 14px; }
.bento-card.dark p { color: #c9c3ca; }

.showcase { background: linear-gradient(145deg, #18161c, #2b2028); color: white; }
.showcase-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 48px; align-items: center; }
.showcase-shot { position: relative; }
.showcase-shot img { width: 100%; height: auto; aspect-ratio: 1586 / 992; object-fit: contain; border-radius: 22px; box-shadow: 0 34px 90px rgba(0,0,0,.45); }
.showcase-copy h2 { margin: 13px 0 18px; font-size: clamp(40px, 5vw, 62px); line-height: 1.01; letter-spacing: -.048em; }
.showcase-copy p { color: #cec8d0; font-size: 18px; }
.feature-list { display: grid; gap: 13px; margin: 24px 0 28px; }
.feature-list span::before { content: "•"; margin-right: 10px; color: #f19568; font-weight: 900; }

.book-gallery { position: relative; overflow: hidden; background: #e9e2d8; }
.book-gallery-top { padding-top: 80px; }
.book-gallery::before { content: ""; position: absolute; width: 520px; height: 520px; top: -300px; right: -120px; border-radius: 50%; background: rgba(196,92,38,.16); box-shadow: 0 0 0 70px rgba(33,95,114,.08), 0 0 0 140px rgba(86,43,75,.055); }
.gallery-heading { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: end; margin-bottom: 40px; }
.gallery-heading h2 { max-width: 700px; margin: 12px 0 0; font-size: clamp(44px, 5.8vw, 72px); line-height: .97; letter-spacing: -.052em; }
.gallery-intro p { max-width: 580px; margin: 0; color: var(--dim); font-size: 17px; }
.carousel-controls { display: flex; gap: 8px; margin-top: 22px; }
.carousel-controls button { width: 44px; height: 44px; border: 1px solid rgba(22,20,26,.16); border-radius: 50%; color: var(--ink); background: rgba(255,253,248,.72); font: 700 20px/1 -apple-system, BlinkMacSystemFont, sans-serif; cursor: pointer; transition: transform .18s ease, color .18s ease, background .18s ease; }
.carousel-controls button:hover { transform: translateY(-2px); color: white; background: var(--accent); }
.book-carousel { position: relative; width: min(100vw - 22px, 1480px); }
.book-track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 24vw, 306px); gap: 25px; padding: 12px 7px 36px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
.book-track::-webkit-scrollbar { display: none; }
.sample-book { scroll-snap-align: start; transition: transform .28s cubic-bezier(.2,.75,.2,1); }
.sample-book:hover { transform: translateY(-9px) rotate(-.35deg); }
.book-cover { position: relative; aspect-ratio: 2 / 3; overflow: hidden; border-radius: 5px 11px 11px 5px; background: var(--ink); box-shadow: -8px 12px 0 #d0c6b9, 0 25px 48px rgba(22,20,26,.24); isolation: isolate; }
.book-cover::before { content: ""; position: absolute; inset: 0 auto 0 0; z-index: 3; width: 6px; background: linear-gradient(90deg, rgba(255,255,255,.38), rgba(0,0,0,.18)); mix-blend-mode: soft-light; }
.book-cover::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,12,18,.26), transparent 42%, rgba(7,10,15,.76)); pointer-events: none; }
.book-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.sample-book:hover .book-cover img { transform: scale(1.035); }
.book-cover.book-mockup { aspect-ratio: 1122 / 1402; border-radius: 18px; background: #ded8d1; box-shadow: 0 25px 54px rgba(22,20,26,.20); }
.book-cover.book-mockup::before, .book-cover.book-mockup::after { display: none; }
.book-cover.book-mockup img { object-fit: cover; }
.sample-book:hover .book-cover.book-mockup img { transform: scale(1.018); }
.cover-copy { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; padding: 25px 23px 22px 28px; color: #fff; text-shadow: 0 2px 15px rgba(0,0,0,.58); }
.cover-copy span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; background: rgba(13,16,21,.17); backdrop-filter: blur(5px); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.cover-copy h3 { max-width: 95%; margin: 17px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 2.6vw, 38px); line-height: .92; letter-spacing: -.04em; }
.cover-copy b { margin-top: auto; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.book-light .book-cover::after { background: linear-gradient(180deg, rgba(255,250,240,.08), transparent 44%, rgba(7,10,15,.72)); }
.book-light .cover-copy { color: var(--ink); text-shadow: 0 1px 12px rgba(255,255,255,.82); }
.book-light .cover-copy b { color: white; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.book-meta { display: flex; justify-content: space-between; gap: 12px; padding: 22px 3px 0; }
.book-meta span { color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.book-meta b { max-width: 150px; font-size: 11px; text-align: right; }
.gallery-conversion { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin: 5px 0 16px; padding: 18px 20px; border: 1px solid rgba(22,20,26,.12); border-radius: 16px; background: rgba(255,253,248,.68); }
.gallery-conversion p { margin: 0; font-size: 16px; font-weight: 760; }
.sample-disclosure { max-width: 820px; margin: 0; color: #756f78; font-size: 11px; }
.sample-disclosure.centered { margin: 24px auto 0; text-align: center; }

.creator-proof { background: var(--paper); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.voice-card { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 18px 46px rgba(22,20,26,.055); }
.voice-card.featured { color: white; border-color: var(--plum); background: var(--plum); transform: translateY(-10px); box-shadow: 0 28px 60px rgba(86,43,75,.22); }
.voice-mark { color: var(--accent); font: 700 54px/1 Georgia, serif; }
.voice-card.featured .voice-mark { color: #f4a27c; }
.voice-card blockquote { margin: 12px 0 32px; font: 500 24px/1.28 Georgia, "Times New Roman", serif; letter-spacing: -.02em; }
.voice-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.voice-person > span { width: 43px; height: 43px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--accent); font-size: 11px; font-weight: 850; }
.voice-card.featured .voice-person > span { color: var(--plum); background: #f5cab6; }
.voice-person b, .voice-person small { display: block; }
.voice-person b { font-size: 13px; }
.voice-person small { margin-top: 2px; color: var(--dim); font-size: 11px; line-height: 1.35; }
.voice-card.featured .voice-person small { color: #dacdd7; }

.pricing-grid { display: grid; grid-template-columns: .88fr 1fr 1.08fr; gap: 16px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 23px; background: var(--surface); }
.price-card.popular { transform: translateY(-9px); border: 2px solid var(--accent); box-shadow: 0 28px 70px rgba(196,92,38,.18); }
.badge { position: absolute; top: 21px; right: 20px; padding: 6px 10px; border-radius: 999px; color: white; background: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-name { font-size: 18px; font-weight: 850; }
.plan-for { min-height: 52px; margin: 8px 0 16px; color: var(--dim); font-size: 14px; }
.price-line { display: flex; align-items: end; gap: 7px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.price-line b { font-size: 50px; line-height: 1; letter-spacing: -.055em; }
.price-line span { margin-bottom: 6px; color: var(--dim); font-size: 13px; }
.price-card ul { display: grid; gap: 11px; padding: 0; margin: 0 0 24px; list-style: none; font-size: 14px; }
.price-card li { position: relative; padding-left: 22px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.price-card .btn { margin-top: auto; }
.saving { margin-bottom: 18px; padding: 11px 12px; border-radius: 10px; color: #1f5a43; background: #e6f0eb; font-size: 13px; font-weight: 780; }
.price-math { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; margin-top: 25px; padding: 22px 24px; border-radius: 16px; color: white; background: var(--ink); }
.price-math p { margin: 4px 0 0; color: #cdc7cf; font-size: 14px; }
.price-math strong { color: #f5a67e; }
.extra-book { display: flex; justify-content: space-between; align-items: center; gap: 22px; margin-top: 15px; padding: 19px 22px; border: 1px dashed #b7aea2; border-radius: 15px; }
.extra-book p { margin: 3px 0 0; color: var(--dim); font-size: 14px; }
.competitor-note { margin-top: 14px; color: var(--dim); font-size: 12px; }
.competitor-note a { text-decoration: underline; text-underline-offset: 2px; }

.tutorial-preview { background: var(--ink); color: white; }
.tutorial-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; overflow: hidden; }
.tutorial-step { min-height: 220px; padding: 23px 20px; border-right: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.tutorial-step:last-child { border-right: 0; }
.tutorial-step b { display: block; margin-bottom: 60px; color: #f0a17a; font-size: 12px; letter-spacing: .12em; }
.tutorial-step h3 { margin: 0 0 7px; font-size: 18px; }
.tutorial-step p { margin: 0; color: #c9c3cb; font-size: 13px; }
.tutorial-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 26px; }
.tutorial-cta p { max-width: 660px; margin: 0; color: #c9c3cb; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; }
.faq-intro h2 { margin: 12px 0; font-size: 48px; line-height: 1; letter-spacing: -.045em; }
.faq-intro p { color: var(--dim); }
details { padding: 19px 0; border-bottom: 1px solid var(--line); }
summary { position: relative; padding-right: 34px; cursor: pointer; list-style: none; font-weight: 780; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: -4px; right: 4px; color: var(--accent); font-size: 24px; }
details[open] summary::after { content: "−"; }
details p { margin: 12px 30px 0 0; color: var(--dim); font-size: 14px; }

.final { padding-top: 42px; }
.final-card { position: relative; overflow: hidden; padding: 64px; border-radius: 28px; color: white; background: var(--accent); }
.final-card::after { content: ""; position: absolute; top: -160px; right: -110px; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.07), 0 0 0 76px rgba(255,255,255,.06); }
.final-card h2 { position: relative; z-index: 2; max-width: 820px; margin: 0 0 18px; font-size: clamp(42px, 5.8vw, 70px); line-height: .98; letter-spacing: -.048em; }
.final-card p { position: relative; z-index: 2; max-width: 680px; color: #ffe8dc; }
.final-card .btn { position: relative; z-index: 2; margin-top: 8px; background: white; color: var(--ink); }

.page-hero { padding: 72px 0 48px; text-align: center; }
.page-hero .app-icon { width: 82px; height: 82px; margin: 0 auto 22px; border-radius: 21px; box-shadow: var(--soft-shadow); }
.page-hero h1 { max-width: 860px; margin: 11px auto 16px; font-size: clamp(46px, 6vw, 74px); line-height: .98; letter-spacing: -.052em; }
.page-hero p { max-width: 760px; margin: auto; color: var(--dim); font-size: 18px; }
.download-grid, .requirement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.download-card, .requirement-card, .guide-card, .legal-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 18px 50px rgba(22,20,26,.05); }
.download-card h2 { margin: 13px 0 6px; font-size: 30px; }
.download-card p, .requirement-card p { color: var(--dim); font-size: 14px; }
.download-card .btn { width: 100%; margin: 20px 0 9px; }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.meta { text-align: center; color: var(--dim); font-size: 12px; }
.install-steps { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; }
.notice-band { margin: 20px 0; padding: 25px; border-radius: 19px; color: white; background: var(--ink); }
.notice-band h2 { margin: 0 0 14px; }
.notice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.notice-grid p { margin: 0; color: #ccc6ce; font-size: 13px; }
.notice-grid b { display: block; margin-bottom: 4px; color: #f3a27b; }

.guide-hero-visual { margin-top: 36px; }
.guide-hero-visual img { width: min(1120px, 100%); height: auto; aspect-ratio: 1586 / 992; object-fit: contain; margin: auto; border-radius: 24px; box-shadow: var(--shadow); }
.guide-nav { position: sticky; top: 72px; z-index: 25; border-block: 1px solid var(--line); background: rgba(246,243,236,.94); backdrop-filter: blur(16px); }
.guide-nav .wrap { display: flex; gap: 8px; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.guide-nav a { white-space: nowrap; padding: 8px 11px; border-radius: 9px; color: var(--dim); font-size: 13px; font-weight: 700; }
.guide-nav a:hover { color: var(--accent); background: #f1e5dc; }
.guide-section { padding: 78px 0; border-bottom: 1px solid var(--line); }
.guide-heading { display: grid; grid-template-columns: 120px 1fr; gap: 30px; max-width: 900px; margin-bottom: 28px; }
.guide-heading .number { font-size: 64px; line-height: 1; color: var(--accent); font-weight: 850; letter-spacing: -.05em; }
.guide-heading h2 { margin: 0 0 8px; font-size: 38px; line-height: 1.05; letter-spacing: -.035em; }
.guide-heading p { margin: 0; color: var(--dim); }
.guide-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.guide-card h3 { margin: 0 0 9px; font-size: 20px; }
.guide-card p, .guide-card li { color: var(--dim); font-size: 14px; }
.guide-card ol, .guide-card ul { padding-left: 20px; }
.tip { margin-top: 16px; padding: 13px 14px; border-radius: 11px; background: #eef1ec; color: #315c46; font-size: 13px; }
.path { margin-top: 15px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.legal-wrap { max-width: 900px; margin-inline: auto; }
.legal-wrap h2 { margin-top: 40px; }
.legal-wrap p, .legal-wrap li { color: var(--dim); }
.legal-card { margin: 28px 0; border-left: 4px solid var(--accent); }

footer { padding: 36px 0 50px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: .1em; }
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--dim); font-size: 13px; }
.legal { max-width: 700px; margin: 10px 0 0; color: #817b84; font-size: 12px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.on { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid, .story-grid, .showcase-grid, .faq-grid, .gallery-heading { grid-template-columns: 1fr; }
  .hero-visual { max-width: 780px; }
  .sticky-copy { position: static; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { order: -1; transform: none; }
  .tutorial-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card { min-height: 250px; }
  .voice-card.featured { transform: none; }
  .tutorial-step { border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-link { display: none; }
  .menu-button { display: block; }
  .nav-open .nav-link { display: block; position: absolute; left: 22px; right: 22px; padding: 13px 17px; border: 1px solid var(--line); background: var(--surface); }
  .nav-open .nav-link:nth-of-type(1) { top: 72px; }
  .nav-open .nav-link:nth-of-type(2) { top: 121px; }
  .nav-open .nav-link:nth-of-type(3) { top: 170px; }
  .nav-open .nav-link:nth-of-type(4) { top: 219px; }
  .nav-open .nav-link:nth-of-type(5) { top: 268px; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav-inner > .btn { display: none; }
  .hero { padding: 56px 0 62px; }
  .hero h1 { font-size: 50px; }
  .hero-copy > p { font-size: 17px; }
  section { padding: 72px 0; }
  .steps-grid, .bento, .download-grid, .requirement-grid, .notice-grid, .guide-cards { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: auto; }
  .price-math, .extra-book, .tutorial-cta { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .tutorial-grid { grid-template-columns: 1fr; }
  .tutorial-step { min-height: 180px; border-right: 0; }
  .tutorial-step b { margin-bottom: 40px; }
  .book-track { grid-auto-columns: min(76vw, 286px); gap: 20px; }
  .gallery-heading { gap: 20px; }
  .gallery-heading h2 { font-size: 48px; }
  .cover-copy h3 { font-size: 33px; }
  .gallery-conversion { flex-direction: column; align-items: stretch; }
  .gallery-conversion .btn { width: 100%; }
  .final-card { padding: 44px 25px; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .guide-heading { grid-template-columns: 1fr; gap: 10px; }
  .guide-heading .number { font-size: 42px; }
  .page-hero { padding-top: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
