:root {
  --ink: #091b18;
  --forest: #0b3b31;
  --forest-2: #135847;
  --mint: #d9cfbb;
  --lime: #d2b982;
  --sand: #eee8dc;
  --paper: #faf8f3;
  --gold: #9d7437;
  --blue: #4969ff;
  --line: rgba(9, 27, 24, .16);
  --shadow: 0 30px 80px rgba(7, 26, 22, .16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}
main { display: flex; flex-direction: column; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,185,130,.15), transparent 68%);
  pointer-events: none;
  z-index: 20;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.reading-progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: 3px;
  background: rgba(255,255,255,.08);
}
.reading-progress span { display: block; width: 0; height: 100%; background: var(--lime); }

.intro-splash {
  position: fixed;
  z-index: 300;
  inset: 0;
  color: white;
  background: #000;
  display: grid;
  place-items: center;
  animation: introSplashExit 7.4s cubic-bezier(.7,0,.3,1) forwards;
}
.intro-splash-copy { width: min(1080px, calc(100% - 12vw)); }
.intro-splash-title { margin: 0; font-family: var(--serif); font-size: clamp(58px,7vw,116px); font-weight: 500; line-height: 1.25; letter-spacing: -.05em; }
.intro-splash-title > span { display: block; overflow: hidden; padding: 0 .06em .08em 0; }
.intro-splash-title b { display: block; font-weight: 500; opacity: 0; transform: translateY(112%) skewY(6deg); transform-origin: left bottom; animation: introTitleRise 1.05s .18s cubic-bezier(.16,1,.3,1) forwards; }
.intro-splash-title > span:nth-child(2) b { color: #d8bc79; animation-delay: .42s; }
.intro-splash-subtitle { margin: 38px 0 0; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.16); font-family: var(--serif); font-size: clamp(17px,1.65vw,27px); letter-spacing: .18em; white-space: nowrap; opacity: 0; filter: blur(12px); transform: scale(5.4); transform-origin: left center; animation: introSubtitleFocus 2s .82s cubic-bezier(.16,1,.3,1) forwards; }
.intro-splash-statement { min-height: 82px; margin: 34px 0 0; font-family: var(--serif); font-size: clamp(29px,3.4vw,56px); line-height: 1.45; white-space: nowrap; }
.intro-splash-statement span, .intro-splash-statement strong { display: inline-block; font-weight: 500; letter-spacing: .14em; opacity: 0; clip-path: inset(0 100% 0 0); filter: blur(6px); transform: translateX(-42px); animation: introStatementWipe .9s 3.55s cubic-bezier(.16,1,.3,1) forwards; }
.intro-splash-statement strong { color: #d8bc79; clip-path: inset(0 100% 0 0); transform: translateX(-42px); animation: introStatementWipe .9s 4.9s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes introTitleRise { to { opacity: 1; transform: none; } }
@keyframes introSubtitleFocus {
  0% { color: transparent; -webkit-text-stroke-color: rgba(255,255,255,.08); letter-spacing: .2em; opacity: 0; filter: blur(14px); transform: scale(5.4); }
  22% { opacity: .24; }
  72% { color: rgba(255,255,255,.34); -webkit-text-stroke-color: rgba(255,255,255,.2); }
  100% { color: rgba(255,255,255,.74); -webkit-text-stroke-color: transparent; letter-spacing: .04em; opacity: 1; filter: blur(0); transform: scale(1); }
}
@keyframes introStatementWipe {
  to { letter-spacing: -.01em; opacity: 1; clip-path: inset(0); filter: blur(0); transform: none; }
}
@keyframes introStatementRise {
  to { letter-spacing: -.01em; opacity: 1; clip-path: inset(0); filter: blur(0); transform: none; }
}
@keyframes introSplashExit {
  0%,84% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1380px, calc(100% - 40px));
  height: 70px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 18px;
  color: white;
  background: rgba(5, 24, 20, .72);
  backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 16px 42px rgba(0,0,0,.12);
}
.brand { display: flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 11px; color: var(--forest); background: var(--lime);
  font-size: 12px; font-weight: 900; letter-spacing: .04em;
  box-shadow: 0 0 28px rgba(210,185,130,.24);
}
.brand b { display: block; font-family: var(--serif); font-size: 15px; letter-spacing: .02em; white-space: nowrap; }
.brand small { display: block; margin-top: 2px; opacity: .55; font-size: 8px; letter-spacing: .18em; }
.site-header nav { display: flex; gap: 34px; font-size: 12px; letter-spacing: .08em; }
.site-header nav a { opacity: .68; transition: .25s; }
.site-header nav a:hover { opacity: 1; }
.header-cta { justify-self: end; min-height: 46px; padding: 0 7px 0 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; color: var(--ink); background: var(--lime); display: inline-flex; align-items: center; font-size: 12px; font-weight: 900; letter-spacing: .08em; box-shadow: 0 10px 30px rgba(0,0,0,.22), 0 0 28px rgba(210,185,130,.12); transition: color .25s, background .25s, transform .25s, box-shadow .25s; }
.header-cta:hover { color: white; background: #b8954f; transform: translateY(-2px); box-shadow: 0 15px 36px rgba(0,0,0,.3), 0 0 34px rgba(210,185,130,.2); }
.header-cta span { display: inline-grid; place-items: center; width: 32px; height: 32px; margin-left: 12px; border-radius: 50%; color: white; background: var(--forest); font-size: 15px; transition: transform .25s; }
.header-cta:hover span { transform: translate(2px,-2px); }

.site-reel {
  order: -1;
  position: relative;
  padding: 142px 0 82px;
  color: white;
  background: #050d0b;
  overflow: hidden;
}
.site-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0, rgba(157,116,55,.18), transparent 34%), radial-gradient(circle at 88% 85%, rgba(19,88,71,.18), transparent 34%);
  pointer-events: none;
}
.site-reel-heading {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 12vw));
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 5vw;
  align-items: end;
}
.site-reel-heading .section-index { grid-column: 1 / -1; margin-bottom: -8px; color: var(--lime); }
.site-reel-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4.1vw, 68px); font-weight: 500; line-height: 1.3; letter-spacing: -.04em; }
.site-reel-heading h2 em { color: var(--lime); font-style: normal; }
.site-reel-heading > p:last-child { margin: 0 0 8px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 2; }
.film-window {
  position: relative;
  padding: 34px 0;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(210,185,130,.55) 0 3px, transparent 3.5px) 0 9px / 29px 17px repeat-x,
    radial-gradient(circle, rgba(210,185,130,.55) 0 3px, transparent 3.5px) 14px calc(100% - 9px) / 29px 17px repeat-x,
    linear-gradient(180deg, #07100e, #020706);
  border-top: 1px solid rgba(210,185,130,.34);
  border-bottom: 1px solid rgba(210,185,130,.34);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.film-window::before, .film-window::after { content: ""; position: absolute; z-index: 4; top: 0; bottom: 0; width: 12vw; pointer-events: none; }
.film-window::before { left: 0; background: linear-gradient(90deg, #050d0b, transparent); }
.film-window::after { right: 0; background: linear-gradient(-90deg, #050d0b, transparent); }
.film-track { display: flex; width: max-content; animation: filmRoll 56s linear infinite; will-change: transform; }
.film-window:hover .film-track { animation-play-state: paused; }
.film-group { display: flex; gap: 18px; padding-right: 18px; }
.film-frame {
  position: relative;
  width: clamp(300px, 27vw, 470px);
  padding: 12px;
  border: 1px solid rgba(210,185,130,.22);
  background: #0b1210;
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
  transition: border-color .28s, transform .28s, background .28s;
}
.film-frame:hover { z-index: 3; transform: translateY(-7px); border-color: rgba(210,185,130,.75); background: #111c18; }
.film-model { margin: 0; border-color: rgba(210,185,130,.5); }
.film-model .film-number { color: var(--ink); background: rgba(210,185,130,.9); }
.film-model .film-meta b { color: var(--lime); }
.model-fv { position: relative; isolation: isolate; font-family: var(--sans); }
.model-fv::before, .model-fv::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.model-fv img { position: absolute; inset: 0; z-index: 0; }
.model-fv-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  min-height: 42px;
  padding: 13px 17px 11px 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-size: 6px;
  letter-spacing: .11em;
}
.model-fv-header b { font-family: var(--serif); font-size: 10px; letter-spacing: .03em; white-space: nowrap; }
.model-fv-header span { opacity: .82; white-space: nowrap; }
.model-fv-copy { position: absolute; z-index: 3; left: 26px; top: 50%; width: 46%; transform: translateY(-39%); color: white; }
.model-fv-copy small { display: block; margin-bottom: 11px; color: #ead39a; font-size: 6px; font-weight: 800; letter-spacing: .24em; }
.model-fv-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(20px, 1.7vw, 29px); font-weight: 500; line-height: 1.35; letter-spacing: -.035em; }
.model-fv-copy p { margin: 12px 0 0; font-size: 7px; line-height: 1.7; opacity: .82; }
.model-fv-copy em { display: inline-block; margin-top: 13px; padding: 8px 11px; color: #10251f; background: white; font-size: 6px; font-style: normal; font-weight: 800; letter-spacing: .05em; }

.model-editorial .model-fv::after { background: linear-gradient(90deg, rgba(3,12,10,.92), rgba(3,12,10,.54) 43%, transparent 68%); }
.model-editorial .model-fv-header { background: rgba(3,12,10,.18); }
.model-editorial .model-fv-copy { width: 42%; }

.model-growth .model-fv { background: #0c2b24; }
.model-growth .model-fv img { left: 45%; width: 55%; object-position: center; }
.model-growth .model-fv::after { background: linear-gradient(90deg, #0c2b24 0 44%, transparent 60%); }
.model-growth .model-fv-header { color: #13231f; background: rgba(255,255,255,.96); border-bottom-color: rgba(9,27,24,.15); }
.model-growth .model-fv-copy { top: 56%; width: 40%; }

.model-journal .model-fv::after { background: linear-gradient(0deg, rgba(7,14,12,.84), transparent 58%); }
.model-journal .model-fv-header { color: #19211e; background: rgba(250,248,242,.96); border-bottom-color: rgba(9,27,24,.16); }
.model-journal .model-fv-copy { top: auto; bottom: 21px; width: 54%; transform: none; }
.model-journal .model-fv-copy h3 { font-size: clamp(18px, 1.55vw, 25px); }

.model-medical .model-fv::after { background: linear-gradient(90deg, rgba(245,247,241,.97) 0 42%, rgba(245,247,241,.26) 61%, transparent 75%); }
.model-medical .model-fv-header { color: #285c47; background: rgba(255,255,255,.88); border-bottom-color: rgba(40,92,71,.18); }
.model-medical .model-fv-copy { width: 42%; color: #285c47; }
.model-medical .model-fv-copy small { color: #9a7c40; }
.model-medical .model-fv-copy em { color: white; background: #285c47; }

.model-beauty .model-fv { background: #eee4da; }
.model-beauty .model-fv img { left: 47%; width: 53%; object-position: center; }
.model-beauty .model-fv::after { background: linear-gradient(90deg, #eee4da 0 43%, rgba(238,228,218,.44) 57%, transparent 69%); }
.model-beauty .model-fv-header { color: #493830; background: rgba(255,250,245,.88); border-bottom-color: rgba(73,56,48,.18); }
.model-beauty .model-fv-copy { width: 42%; color: #493830; }
.model-beauty .model-fv-copy small { color: #9a6755; }
.model-beauty .model-fv-copy em { color: white; background: #7b594b; }

.model-craft .model-fv::after { background: linear-gradient(90deg, rgba(5,17,20,.9), rgba(5,17,20,.45) 46%, transparent 72%), linear-gradient(0deg, rgba(3,10,12,.5), transparent 48%); }
.model-craft .model-fv-header { background: rgba(3,12,14,.44); }
.model-craft .model-fv-copy { width: 40%; }
.model-craft .model-fv-copy small { color: #d2b982; }
.film-number { position: absolute; z-index: 3; left: 22px; top: 22px; min-width: 46px; padding: 7px 8px; color: #fff; background: rgba(5,16,13,.84); backdrop-filter: blur(9px); font-family: var(--serif); font-size: 11px; letter-spacing: .14em; text-align: center; }
.film-shot { aspect-ratio: 1.58; overflow: hidden; background: #e7e6e1; }
.film-shot img { height: 100%; object-fit: cover; object-position: top; transition: transform .75s cubic-bezier(.2,.8,.2,1); }
.film-frame:hover .film-shot img { transform: scale(1.035); }
.film-meta { min-height: 55px; padding: 13px 5px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.film-meta b { font-family: var(--serif); font-size: 15px; font-weight: 500; letter-spacing: .04em; }
.film-meta i { color: var(--lime); font-size: 7px; font-style: normal; letter-spacing: .18em; white-space: nowrap; }
@keyframes filmRoll { to { transform: translateX(-50%); } }

.hero {
  order: -2;
  position: relative;
  min-height: 100svh;
  padding: 160px max(6vw, 32px) 80px;
  color: white;
  background:
    radial-gradient(circle at 72% 38%, rgba(31,119,93,.45), transparent 34%),
    linear-gradient(135deg, #061613, #0a2d26 60%, #0d4739);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .83fr) minmax(620px, 1.17fr);
  gap: 7vw;
  align-items: center;
}
.hero-grid, .outro-grid {
  position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-index {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.eyebrow { color: var(--lime); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 4.3vw, 78px); font-weight: 500; line-height: 1.17; letter-spacing: -.04em; }
.hero h1 span { display: block; }
.hero-catch-line { overflow: hidden; padding: 0 .08em .08em 0; }
.hero-catch-line > span { white-space: nowrap; opacity: 0; transform: translateY(115%) skewY(7deg); transform-origin: left bottom; animation: heroTypeRise 1.08s cubic-bezier(.16,1,.3,1) forwards; }
.hero-catch-accent { position: relative; width: max-content; max-width: 100%; color: var(--lime); }
.hero-catch-accent > span { animation-delay: .18s; }
.hero-catch-accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg,transparent,#e7cf8c 18%,#fff3c9 50%,#e7cf8c 82%,transparent); transform: scaleX(0); transform-origin: left; animation: heroAccentLine .9s .78s cubic-bezier(.16,1,.3,1) forwards; }
.hero-story-title { font-size: clamp(38px,3.3vw,60px) !important; }
.hero-story-title .hero-catch-line > span { white-space: normal; }
.hero-subtitle { margin: 28px 0 0; color: rgba(255,255,255,.65); font-family: var(--serif); font-size: clamp(17px,1.45vw,24px); line-height: 1.65; }
.hero-subtitle strong { color: white; font-weight: 500; }
.hero-concept { margin: 28px 0 0; padding-left: 18px; border-left: 1px solid rgba(210,185,130,.75); color: white; font-family: var(--serif); font-size: clamp(20px,1.8vw,30px); line-height: 1.65; }
.hero-concept span { display: block; }
.hero-lead { max-width: 620px; margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 2; }
.hero-entrance { opacity: 0; filter: blur(8px); transform: translateY(18px); animation: heroSoftReveal .9s cubic-bezier(.16,1,.3,1) forwards; }
.hero-entrance-kicker { animation-delay: .05s; }
.hero-entrance-subtitle { animation-delay: .82s; }
.hero-entrance-concept { animation-delay: 1.02s; }
.hero-entrance-lead { animation-delay: 1.17s; }
.hero-entrance-actions { animation-delay: 1.32s; }
@keyframes heroTypeRise { to { opacity: 1; transform: none; } }
@keyframes heroAccentLine { to { transform: scaleX(1); } }
@keyframes heroSoftReveal { to { opacity: 1; filter: blur(0); transform: none; } }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 42px; }
.primary-button {
  display: inline-flex; align-items: center; gap: 40px;
  padding: 20px 22px 20px 26px; border-radius: 4px;
  color: var(--ink); background: var(--lime); font-size: 13px; font-weight: 800;
  box-shadow: 0 18px 50px rgba(210,185,130,.14); transition: transform .25s, box-shadow .25s;
}
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 24px 58px rgba(210,185,130,.24); }
.hero-flow-link { display: inline-flex; align-items: center; gap: 12px; padding: 12px 0; color: rgba(255,255,255,.66); border-bottom: 1px solid rgba(255,255,255,.22); font-size: 11px; font-weight: 700; letter-spacing: .08em; transition: color .25s, border-color .25s; }
.hero-flow-link:hover { color: white; border-color: var(--lime); }
.hero-flow-link span { color: var(--lime); }
.scroll-note { font-size: 9px; letter-spacing: .25em; opacity: .42; }
.hero-stage { position: relative; z-index: 2; min-height: 640px; display: grid; place-items: center; }
.browser { overflow: hidden; background: white; box-shadow: var(--shadow); }
.browser-bar { height: 34px; padding: 0 14px; display: flex; align-items: center; gap: 7px; color: var(--ink); background: #e9ede9; font-size: 9px; letter-spacing: .12em; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #aab5af; }
.browser-bar span { margin-left: 8px; opacity: .55; }
.browser-hero { width: min(840px, 100%); aspect-ratio: 1.35; border-radius: 10px; transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); }
.hero-quality-model { position: relative; height: calc(100% - 34px); overflow: hidden; isolation: isolate; }
.hero-quality-model::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(2,12,9,.92),rgba(2,12,9,.54) 43%,transparent 70%); }
.hero-quality-model > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.quality-model-header { position: absolute; z-index: 3; left: 0; right: 0; top: 0; min-height: 54px; padding: 16px 22px; border-bottom: 1px solid rgba(255,255,255,.22); color: white; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 7px; letter-spacing: .12em; }
.quality-model-header b { font-family: var(--serif); font-size: 13px; letter-spacing: .05em; }
.quality-model-header span { opacity: .72; }
.quality-model-copy { position: absolute; z-index: 3; left: 7%; top: 52%; width: 45%; color: white; transform: translateY(-50%); }
.quality-model-copy small { color: #e7cf8c; font-size: 7px; font-weight: 900; letter-spacing: .24em; }
.quality-model-copy strong { display: block; margin-top: 18px; font-family: var(--serif); font-size: clamp(28px,3.1vw,50px); font-weight: 500; line-height: 1.35; letter-spacing: -.04em; }
.quality-model-copy p { margin: 20px 0 0; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 10px; }
.floating-card { position: absolute; padding: 17px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(8,40,33,.8); backdrop-filter: blur(16px); box-shadow: 0 20px 50px rgba(0,0,0,.24); }
.floating-card b { display: block; color: var(--lime); font-family: var(--serif); font-size: 26px; }
.floating-card span { font-size: 11px; }
.floating-card em { display: block; margin-top: 8px; color: rgba(255,255,255,.42); font-size: 7px; font-style: normal; letter-spacing: .2em; }
.floating-card-a { left: -25px; top: 90px; }
.floating-card-b { right: 5px; bottom: 85px; }
.orbit-label { position: absolute; z-index: -1; color: rgba(255,255,255,.22); font-size: 8px; letter-spacing: .3em; }
.orbit-label::after { content: ""; display: inline-block; width: 90px; height: 1px; margin-left: 14px; vertical-align: middle; background: rgba(255,255,255,.18); }
.orbit-label-a { top: 22px; left: 18%; }
.orbit-label-b { right: 2%; top: 32%; transform: rotate(90deg); }
.orbit-label-c { left: 3%; bottom: 20px; }
.hero-foot { position: absolute; z-index: 2; left: max(6vw,32px); right: max(6vw,32px); bottom: 28px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .2em; }

.manifesto { padding: 140px max(7vw, 38px); background: var(--paper); }
.manifesto .section-index, .chapter-light .section-index { color: var(--gold); }
.manifesto-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10vw; align-items: end; }
.manifesto h2, .chapter h2, .outro h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.04em; }
.manifesto h2 { font-size: clamp(38px, 5vw, 78px); line-height: 1.35; }
.manifesto-copy { padding-left: 28px; border-left: 1px solid var(--line); color: rgba(9,27,24,.66); font-size: 15px; line-height: 1.9; }
.journey-map { list-style: none; margin: 100px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); }
.journey-map li { position: relative; min-height: 130px; padding: 24px 16px; border-right: 1px solid var(--line); }
.journey-map li:last-child { border-right: 0; }
.journey-map li::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--forest); }
.journey-map b { display: block; color: var(--gold); font-family: var(--serif); font-size: 11px; }
.journey-map span { display: block; margin-top: 25px; font-family: var(--serif); font-size: 18px; }

.chapter { position: relative; padding: 150px max(7vw, 38px); }
.chapter-heading { max-width: 1080px; margin-bottom: 80px; }
.chapter-heading-split { max-width: none; display: grid; grid-template-columns: 1fr .55fr; gap: 9vw; align-items: end; }
.chapter-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.chapter h2 { font-size: clamp(42px, 5vw, 76px); line-height: 1.25; }
.chapter h2 em, .outro h2 span { color: var(--forest-2); font-style: normal; }
.chapter-intro { max-width: 650px; margin: 30px 0 0; color: rgba(9,27,24,.62); font-size: 15px; line-height: 2; }
.centered .chapter-intro { margin-left: auto; margin-right: auto; }
.chapter-light { background: #f7f4ed; }

.editorial-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: start; }
.screen-card { margin: 0; background: white; border: 1px solid rgba(9,27,24,.12); box-shadow: 0 20px 50px rgba(8,30,25,.08); }
.screen-card-tall { grid-row: span 2; }
.screen-card-wide { grid-column: 2; }
.screen-label { min-height: 72px; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.screen-label span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.screen-label b { font-family: var(--serif); font-size: 17px; }
.screen-crop { height: 420px; overflow: hidden; background: #f2f1ed; }
.screen-card-tall .screen-crop { height: 760px; }
.screen-crop img { height: 100%; object-fit: cover; object-position: top; }
.screen-crop-top img { object-fit: cover; object-position: 50% 0; }
.editorial-note { min-height: 306px; padding: 34px; color: white; background: var(--forest); }
.note-number { color: var(--lime); font-family: var(--serif); font-size: 12px; }
.editorial-note h3 { margin: 36px 0 16px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.editorial-note p, .editorial-note li { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.8; }
.editorial-note ul { margin: 24px 0 0; padding-left: 18px; }

.chapter-dark { color: white; background: var(--ink); }
.chapter-dark .section-index { color: var(--lime); }
.chapter-dark h2 em { color: var(--lime); }
.chapter-dark .chapter-intro { color: rgba(255,255,255,.6); }
.split-showcase { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: stretch; }
.browser-dark { border-radius: 8px; }
.browser-dark img { aspect-ratio: 1.5; object-fit: cover; object-position: top; }
.signal-stack { display: grid; gap: 1px; background: rgba(255,255,255,.13); }
.signal { position: relative; min-height: 128px; padding: 25px; background: #102a25; display: flex; flex-direction: column; justify-content: center; }
.signal span { color: var(--lime); font-size: 8px; letter-spacing: .23em; }
.signal b { margin-top: 10px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.signal i { position: absolute; right: 22px; top: 20px; color: rgba(255,255,255,.2); font-family: var(--serif); font-style: normal; }
.wide-document { margin: 80px 0 0; }
.wide-document figcaption { display: flex; justify-content: space-between; align-items: end; padding: 0 0 22px; border-bottom: 1px solid rgba(255,255,255,.2); }
.wide-document figcaption span { color: var(--lime); font-size: 9px; letter-spacing: .24em; }
.wide-document figcaption b { font-family: var(--serif); font-size: 23px; font-weight: 500; }
.document-window { height: clamp(760px, 78vh, 980px); margin-top: 24px; border-radius: 7px; }
.document-window img { object-position: top; }

.scrollable-screen {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) rgba(255,255,255,.12);
  background: #edf0ec;
}
.scrollable-screen::-webkit-scrollbar { width: 10px; }
.scrollable-screen::-webkit-scrollbar-track { background: rgba(9,27,24,.1); }
.scrollable-screen::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: var(--lime); background-clip: padding-box; }
.scroll-hint {
  position: sticky;
  z-index: 8;
  top: 14px;
  display: block;
  width: max-content;
  height: 38px;
  margin: 14px 14px -52px auto;
  padding: 0 12px 0 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: white;
  background: rgba(5,24,20,.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  font-size: 9px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: .08em;
}
.scroll-hint b { display: inline-block; margin-left: 8px; color: var(--lime); font-size: 13px; animation: scrollCue 1.5s ease-in-out infinite; }
@keyframes scrollCue { 50% { transform: translateY(3px); } }
.scroll-continue {
  position: sticky;
  z-index: 12;
  top: calc(100% - 70px);
  left: 50%;
  width: 54px;
  height: 54px;
  margin: 0 0 -54px 50%;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(231,207,140,.95);
  display: grid;
  place-items: center;
  box-shadow: 0 13px 34px rgba(0,0,0,.28);
  transform: translateX(-50%);
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
  transition: color .25s, background .25s, transform .25s, box-shadow .25s;
}
.scroll-continue:hover { color: white; background: var(--forest); transform: translateX(-50%) translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.34); }
.scroll-continue.is-at-end { color: white; background: var(--forest); }
.scroll-continue[hidden] { display: none; }
.scroll-continue.show-guide::before {
  content: "画面内をスクロール";
  position: absolute;
  right: calc(100% + 13px);
  top: 50%;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: white;
  background: rgba(5,24,20,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  animation: scrollGuideIn .55s cubic-bezier(.16,1,.3,1) both;
}
@keyframes scrollGuideIn { from { opacity: 0; transform: translate(12px,-50%); } }

.chapter-accent { color: white; background: var(--forest-2); overflow: hidden; }
.chapter-accent::before { content: "AI"; position: absolute; right: -3vw; top: 0; color: rgba(255,255,255,.045); font-family: var(--serif); font-size: 38vw; line-height: .8; }
.chapter-accent .section-index { color: var(--lime); }
.chapter-accent h2 em { color: var(--lime); }
.chapter-accent .chapter-intro { color: rgba(255,255,255,.65); }
.generation-stage { position: relative; max-width: 1250px; margin: 0 auto; }
.generation-status { position: relative; z-index: 2; margin: 0 auto -22px; width: min(680px, 82%); min-height: 86px; padding: 18px 26px; border-radius: 14px; color: var(--ink); background: var(--lime); display: flex; align-items: center; box-shadow: 0 20px 40px rgba(0,0,0,.2); }
.pulse-dot { width: 12px; height: 12px; margin-right: 16px; border-radius: 50%; background: var(--forest); box-shadow: 0 0 0 0 rgba(11,59,49,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(11,59,49,0); } }
.generation-status small { display: block; opacity: .55; font-size: 7px; letter-spacing: .2em; }
.generation-status b { display: block; margin-top: 4px; font-family: var(--serif); font-size: 19px; }
.generation-status strong { margin-left: auto; font-family: var(--serif); font-size: 38px; }
.generation-status em { margin-left: 5px; font-size: 10px; font-style: normal; opacity: .55; }
.legacy-generation-detail { display: none !important; }
.page-build-demo { position: relative; z-index: 1; margin: 54px 0 32px; padding: 26px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(3,25,20,.52); box-shadow: 0 30px 80px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.page-build-head { min-height: 42px; padding-bottom: 20px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.page-build-head > span { color: #e7cf8c; font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.page-build-head > span i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #e7cf8c; box-shadow: 0 0 0 0 rgba(231,207,140,.5); animation: buildPulse 1.7s ease-out infinite paused; }
.page-build-head > b { font-family: var(--serif); font-size: 16px; font-weight: 500; }
.page-build-head > em { justify-self: end; padding: 6px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.55); font-size: 7px; font-style: normal; letter-spacing: .16em; }
.page-build-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.page-build-card { --build-delay: 0s; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.06); }
.page-build-card:nth-child(2) { --build-delay: 1.25s; }
.page-build-card:nth-child(3) { --build-delay: 2.5s; }
.page-build-card:nth-child(4) { --build-delay: 3.75s; }
.page-build-preview { position: relative; aspect-ratio: 1.45; overflow: hidden; background: #d8ddd9; }
.page-build-preview img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; clip-path: inset(0 100% 0 0); animation: buildImageReveal 10s cubic-bezier(.16,1,.3,1) var(--build-delay) infinite paused; }
.page-build-preview-home img { object-position: center top; }
.page-build-preview-about img { object-position: center top; }
.page-build-preview-care img { object-position: center top; }
.page-build-preview-contact img { object-position: center top; }
.page-build-skeleton { position: absolute; z-index: 1; inset: 0; background: linear-gradient(110deg,#d8ddd9 8%,#edf0ed 18%,#d8ddd9 33%); background-size: 220% 100%; animation: buildSkeleton 1.25s linear var(--build-delay) infinite paused; }
.page-build-skeleton::before, .page-build-skeleton::after { content: ""; position: absolute; left: 9%; height: 7px; border-radius: 10px; background: rgba(10,47,38,.13); }
.page-build-skeleton::before { right: 24%; bottom: 22%; }
.page-build-skeleton::after { right: 48%; bottom: 12%; }
.page-build-scan { position: absolute; z-index: 3; top: 0; bottom: 0; width: 2px; opacity: 0; background: #f5d98f; box-shadow: 0 0 18px 5px rgba(245,217,143,.5); animation: buildScan 10s ease var(--build-delay) infinite paused; }
.page-build-card > p { position: relative; min-height: 76px; margin: 0; padding: 16px 14px 13px 42px; }
.page-build-card > p > span { position: absolute; left: 14px; top: 17px; color: #e7cf8c; font-family: var(--serif); font-size: 9px; }
.page-build-card > p > b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--serif); font-size: 13px; font-weight: 500; }
.page-build-card > p > em, .page-build-card > p > strong { position: absolute; left: 42px; bottom: 13px; font-size: 7px; font-style: normal; letter-spacing: .08em; }
.page-build-card > p > em { color: rgba(255,255,255,.48); animation: buildStatusBusy 10s ease var(--build-delay) infinite paused; }
.page-build-card > p > strong { color: #f5d98f; font-weight: 800; opacity: 0; animation: buildStatusDone 10s ease var(--build-delay) infinite paused; }
.page-build-progress { height: 2px; margin-top: 22px; overflow: hidden; background: rgba(255,255,255,.12); }
.page-build-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,#e7cf8c,#f7e8ba); transform: scaleX(0); transform-origin: left; animation: buildOverallProgress 10s ease-in-out infinite paused; }
.page-build-demo.is-active .page-build-head > span i,
.page-build-demo.is-active .page-build-preview img,
.page-build-demo.is-active .page-build-skeleton,
.page-build-demo.is-active .page-build-scan,
.page-build-demo.is-active .page-build-card > p > em,
.page-build-demo.is-active .page-build-card > p > strong,
.page-build-demo.is-active .page-build-progress span { animation-play-state: running; }
@keyframes buildPulse { 75% { box-shadow: 0 0 0 11px rgba(231,207,140,0); } }
@keyframes buildSkeleton { to { background-position-x: -220%; } }
@keyframes buildImageReveal { 0%,8% { opacity: 0; clip-path: inset(0 100% 0 0); } 18%,88% { opacity: 1; clip-path: inset(0); } 96%,100% { opacity: 0; clip-path: inset(0 0 0 0); } }
@keyframes buildScan { 0%,8% { left: 0; opacity: 0; } 10% { opacity: 1; } 18% { left: 100%; opacity: 0; } 100% { left: 100%; opacity: 0; } }
@keyframes buildStatusBusy { 0%,13% { opacity: 1; } 20%,100% { opacity: 0; } }
@keyframes buildStatusDone { 0%,15% { opacity: 0; transform: translateY(4px); } 21%,89% { opacity: 1; transform: none; } 96%,100% { opacity: 0; } }
@keyframes buildOverallProgress { 0% { transform: scaleX(0); } 62%,88% { transform: scaleX(1); } 96%,100% { transform: scaleX(0); } }
.generation-browser { border-radius: 12px; transform: perspective(1600px) rotateX(1.5deg); }
.generation-crop { height: clamp(820px, 82vh, 1040px); }
.generation-crop img { object-position: top; }
.generation-caption { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .15em; }
.generation-caption span { width: 45px; height: 1px; background: rgba(255,255,255,.25); }

.conversion-bridge { position: relative; isolation: isolate; overflow: hidden; padding: 92px max(7vw,38px); color: white; background: #071d18; display: grid; grid-template-columns: 1.1fr .6fr; gap: 7vw; align-items: center; }
.conversion-bridge::before { content: "TRY"; position: absolute; z-index: -1; right: -1vw; bottom: -8vw; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: 25vw; font-weight: 800; line-height: .8; }
.conversion-bridge::after { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 58%; width: 1px; background: linear-gradient(transparent,rgba(210,185,130,.4),transparent); transform: rotate(12deg); }
.conversion-bridge .section-index { color: var(--lime); }
.conversion-bridge h2 { margin: 0; font-family: var(--serif); font-size: clamp(36px,4.1vw,60px); font-weight: 500; line-height: 1.35; letter-spacing: -.04em; }
.conversion-bridge h2 em { color: #e7cf8c; font-style: normal; }
.conversion-bridge-action { max-width: 520px; }
.conversion-bridge-action > p { margin: 0 0 28px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 2; }
.conversion-bridge-action > a { min-height: 68px; padding: 0 12px 0 23px; border: 1px solid rgba(231,207,140,.62); color: #0a2921; background: #e7cf8c; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; font-weight: 800; box-shadow: 0 20px 55px rgba(0,0,0,.24); transition: transform .25s, background .25s, box-shadow .25s; }
.conversion-bridge-action > a:hover { background: #f1dfa9; transform: translateY(-3px); box-shadow: 0 26px 65px rgba(0,0,0,.3); }
.conversion-bridge-action > a b { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: white; background: var(--forest); font-size: 16px; }
.conversion-bridge-action small { display: block; margin-top: 12px; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .08em; }

.personalize-showcase {
  margin: 0 0 150px;
}
.personalize-copy { padding: 45px 0 60px; display: grid; grid-template-columns: .9fr 1.1fr; column-gap: 7vw; align-items: start; }
.personalize-copy .section-index { color: var(--gold); }
.personalize-copy h3 { grid-column: 1; margin: 0; font-family: var(--serif); font-size: clamp(29px, 3vw, 48px); font-weight: 500; line-height: 1.55; letter-spacing: -.035em; }
.personalize-copy h3 em { color: var(--forest-2); font-style: normal; }
.personalize-copy > p:not(.section-index) { grid-column: 2; margin: 6px 0 0; color: rgba(9,27,24,.65); font-size: 13px; line-height: 2; }
.personalize-copy ul { grid-column: 2; list-style: none; margin: 30px 0 0; padding: 0; border-top: 1px solid var(--line); }
.personalize-copy li { min-height: 62px; padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 20px; }
.personalize-copy li b { color: var(--gold); font-family: var(--serif); font-size: 10px; }
.personalize-copy li span { font-family: var(--serif); font-size: 16px; }
.personalize-studio { position: relative; overflow: hidden; border: 1px solid rgba(9,27,24,.16); border-radius: 14px; background: #e7ebe7; box-shadow: 0 35px 90px rgba(7,35,28,.18); }
.personalize-browser-bar { height: 48px; padding: 0 18px; display: flex; align-items: center; gap: 7px; color: var(--ink); background: #f5f4ef; border-bottom: 1px solid rgba(9,27,24,.12); font-size: 8px; letter-spacing: .12em; }
.personalize-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #aab5af; }
.personalize-browser-bar span { margin-left: 8px; opacity: .55; }
.personalize-browser-bar b { margin-left: auto; padding: 6px 9px; border-radius: 999px; color: #f5ead0; background: var(--forest); font-size: 7px; letter-spacing: .14em; }
.live-type-demo { margin: 20px 20px 0; min-height: 420px; overflow: hidden; border: 1px solid rgba(9,27,24,.15); background: white; display: grid; grid-template-columns: 1.55fr .45fr; box-shadow: 0 16px 44px rgba(6,30,24,.1); }
.live-type-canvas { position: relative; min-width: 0; overflow: hidden; background: #182c25; }
.live-type-canvas > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.live-type-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,18,14,.84),rgba(3,18,14,.45) 48%,transparent 72%); }
.live-type-selection { position: absolute; z-index: 2; left: 7%; top: 50%; width: min(55%,520px); padding: 14px; border: 1px solid rgba(231,207,140,0); transform: translateY(-50%); animation: liveSelection 9s ease-in-out infinite paused; }
.live-type-selection small { color: #e7cf8c; font-size: 7px; font-weight: 800; letter-spacing: .2em; }
.live-type-selection strong { display: block; margin-top: 14px; color: white; font-family: var(--serif); font-size: clamp(30px,4vw,58px); font-weight: 500; line-height: 1.35; letter-spacing: -.04em; transform-origin: left center; animation: liveTypeChange 9s cubic-bezier(.16,1,.3,1) infinite paused; }
.live-type-selection > i { position: absolute; width: 7px; height: 7px; border: 1px solid #e7cf8c; background: white; opacity: 0; animation: liveHandle 9s ease infinite paused; }
.live-type-selection > i:nth-of-type(1) { left: -4px; top: -4px; }
.live-type-selection > i:nth-of-type(2) { right: -4px; top: -4px; }
.live-type-selection > i:nth-of-type(3) { right: -4px; bottom: -4px; }
.live-type-selection > i:nth-of-type(4) { left: -4px; bottom: -4px; }
.live-type-cursor { position: absolute; z-index: 4; left: 67%; top: 70%; width: 30px; height: 30px; border-radius: 50%; color: #173a30; background: #e7cf8c; display: grid; place-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); animation: liveCursor 9s cubic-bezier(.16,1,.3,1) infinite paused; }
.live-type-panel { position: relative; z-index: 3; min-width: 220px; padding: 26px 22px; color: var(--ink); background: #fbfaf6; border-left: 1px solid rgba(9,27,24,.13); }
.live-type-panel-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.live-type-panel-head span { display: block; color: var(--gold); font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.live-type-panel-head b { display: block; margin-top: 8px; font-family: var(--serif); font-size: 15px; font-weight: 500; }
.live-type-panel label { margin-top: 26px; color: rgba(9,27,24,.5); display: flex; justify-content: space-between; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.live-type-panel label strong { position: relative; min-width: 56px; color: var(--forest); font-size: 8px; text-align: right; }
.live-type-panel label strong i, .live-type-panel label strong em { font-style: normal; }
.live-type-panel label strong i { animation: liveSizeOld 9s ease infinite paused; }
.live-type-panel label strong em { position: absolute; right: 13px; opacity: 0; animation: liveSizeNew 9s ease infinite paused; }
.live-type-size { position: relative; height: 3px; margin-top: 15px; background: rgba(9,27,24,.12); }
.live-type-size span { display: block; width: 78%; height: 100%; background: var(--forest); transform: scaleX(.48); transform-origin: left; animation: liveSizeBar 9s ease infinite paused; }
.live-type-size i { position: absolute; top: -5px; left: 37%; width: 13px; height: 13px; border: 2px solid white; border-radius: 50%; background: var(--forest); box-shadow: 0 3px 10px rgba(0,0,0,.2); animation: liveSizeKnob 9s ease infinite paused; }
.live-type-colors { margin-top: 14px; display: flex; gap: 9px; }
.live-type-colors i { width: 25px; height: 25px; border-radius: 50%; border: 3px solid #fbfaf6; background: #173a30; box-shadow: 0 0 0 1px rgba(9,27,24,.15); }
.live-type-colors i:nth-child(2) { background: #9c7b26; animation: liveColorActive 9s ease infinite paused; }
.live-type-colors i:nth-child(3) { background: #6f554a; }
.live-type-colors i:nth-child(4) { background: #272727; }
.live-type-save { position: absolute; left: 22px; right: 22px; bottom: 24px; height: 40px; overflow: hidden; border-radius: 4px; color: white; background: var(--forest); display: grid; place-content: center; font-size: 8px; font-weight: 800; letter-spacing: .06em; }
.live-type-save span, .live-type-save b { grid-area: 1 / 1; transition: none; }
.live-type-save span { animation: liveSaving 9s ease infinite paused; }
.live-type-save b { opacity: 0; color: #f5d98f; animation: liveSaved 9s ease infinite paused; }
.live-type-demo.is-active .live-type-selection,
.live-type-demo.is-active .live-type-selection strong,
.live-type-demo.is-active .live-type-selection > i,
.live-type-demo.is-active .live-type-cursor,
.live-type-demo.is-active .live-type-panel label strong i,
.live-type-demo.is-active .live-type-panel label strong em,
.live-type-demo.is-active .live-type-size span,
.live-type-demo.is-active .live-type-size i,
.live-type-demo.is-active .live-type-colors i:nth-child(2),
.live-type-demo.is-active .live-type-save span,
.live-type-demo.is-active .live-type-save b { animation-play-state: running; }
@keyframes liveSelection { 0%,10% { border-color: transparent; } 16%,92% { border-color: #e7cf8c; } 100% { border-color: transparent; } }
@keyframes liveHandle { 0%,12%,96%,100% { opacity: 0; } 17%,92% { opacity: 1; } }
@keyframes liveTypeChange { 0%,30% { color: #fff; transform: scale(1); } 48%,72% { color: #fff; transform: scale(1.1); } 80%,94% { color: #e7cf8c; transform: scale(1.1); } 100% { color: #fff; transform: scale(1); } }
@keyframes liveCursor { 0%,8% { left: 67%; top: 70%; opacity: 0; } 15% { left: 38%; top: 52%; opacity: 1; } 38% { left: 83%; top: 43%; opacity: 1; } 66% { left: 88%; top: 66%; opacity: 1; } 82% { left: 84%; top: 86%; opacity: 1; } 90%,100% { left: 84%; top: 86%; opacity: 0; } }
@keyframes liveSizeOld { 0%,35% { opacity: 1; } 44%,94% { opacity: 0; } 100% { opacity: 1; } }
@keyframes liveSizeNew { 0%,35% { opacity: 0; } 44%,94% { opacity: 1; } 100% { opacity: 0; } }
@keyframes liveSizeBar { 0%,35% { transform: scaleX(.48); } 48%,94% { transform: scaleX(1); } 100% { transform: scaleX(.48); } }
@keyframes liveSizeKnob { 0%,35% { left: 37%; } 48%,94% { left: 73%; } 100% { left: 37%; } }
@keyframes liveColorActive { 0%,65% { box-shadow: 0 0 0 1px rgba(9,27,24,.15); transform: scale(1); } 72%,94% { box-shadow: 0 0 0 3px #fbfaf6,0 0 0 5px #9c7b26; transform: scale(1.08); } 100% { box-shadow: 0 0 0 1px rgba(9,27,24,.15); transform: scale(1); } }
@keyframes liveSaving { 0%,77% { opacity: 1; } 84%,100% { opacity: 0; } }
@keyframes liveSaved { 0%,79% { opacity: 0; transform: translateY(5px); } 86%,96% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.personalize-studio-image { padding: 20px 20px 0; }
.personalize-studio-image img { display: block; width: 100%; border: 1px solid rgba(9,27,24,.12); box-shadow: 0 16px 44px rgba(6,30,24,.12); }
.studio-scroll-hint { display: none; }
.studio-capabilities { display: grid; grid-template-columns: repeat(3,1fr); margin: 20px; border: 1px solid rgba(9,27,24,.12); background: rgba(255,255,255,.92); }
.studio-capabilities > div { min-height: 118px; padding: 22px 24px; border-right: 1px solid rgba(9,27,24,.12); display: grid; grid-template-columns: 34px 1fr; align-content: center; column-gap: 12px; }
.studio-capabilities > div:last-child { border-right: 0; }
.studio-capabilities b { grid-row: 1 / 3; color: var(--gold); font-family: var(--serif); font-size: 11px; }
.studio-capabilities span { color: rgba(9,27,24,.48); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.studio-capabilities strong { margin-top: 8px; font-family: var(--serif); font-size: 15px; font-weight: 500; }

.edit-transformation { margin-top: 120px; padding: 44px; color: white; background: #071d18; display: grid; grid-template-columns: .65fr 1.35fr; gap: 5vw; align-items: center; overflow: hidden; }
.transformation-copy { position: relative; z-index: 2; }
.transformation-copy .section-index { color: #d7b968; }
.transformation-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px,3vw,46px); font-weight: 500; line-height: 1.55; }
.transformation-copy h3 em { color: #e7cf8c; font-style: normal; }
.transformation-copy > p:not(.section-index) { margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 2; }
.transformation-request { margin-top: 36px; padding: 18px 20px; border-left: 2px solid #d7b968; background: rgba(255,255,255,.06); }
.transformation-request span { display: block; color: #d7b968; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.transformation-request strong { display: block; margin-top: 10px; font-family: var(--serif); font-size: 14px; font-weight: 500; line-height: 1.65; }
.transformation-stage { min-width: 0; }
.transformation-status { height: 38px; padding: 0 5px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 12px; align-items: center; color: rgba(255,255,255,.42); font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.transformation-status i { height: 1px; overflow: hidden; background: rgba(255,255,255,.15); }
.transformation-status i::after { content: ""; display: block; width: 100%; height: 100%; background: #d7b968; transform: translateX(-100%); animation: transformationProgress 8s ease-in-out infinite; }
.transformation-status i:nth-of-type(2)::after { animation-delay: 1.2s; }
.transformation-status b { color: #e7cf8c; font-size: 7px; }
.transformation-visual { position: relative; aspect-ratio: 1.58; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #c8c1b0; box-shadow: 0 30px 70px rgba(0,0,0,.32); }
.transformation-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: transformationImage 8s ease-in-out infinite; }
.transformation-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(4,20,16,.76) 0%,rgba(4,20,16,.42) 39%,transparent 67%); animation: transformationShade 8s ease-in-out infinite; }
.transformation-content { position: absolute; z-index: 2; left: 7%; top: 50%; width: 48%; transform: translateY(-50%); }
.transformation-content small { color: #e7cf8c; font-size: 6px; font-weight: 900; letter-spacing: .22em; }
.transformation-content strong { display: block; margin: 16px 0; font-family: var(--serif); font-size: clamp(23px,3vw,46px); font-weight: 500; line-height: 1.35; letter-spacing: -.03em; }
.transformation-content p { max-width: 390px; margin: 0; color: rgba(255,255,255,.74); font-size: 9px; line-height: 1.9; }
.transformation-content > span { display: inline-block; margin-top: 22px; padding: 11px 17px; color: #0a2921; background: white; font-size: 7px; font-weight: 800; }
.transformation-before { animation: transformationBefore 8s ease-in-out infinite; }
.transformation-after { opacity: 0; animation: transformationAfter 8s ease-in-out infinite; }
.transformation-ai { position: absolute; z-index: 4; left: 50%; top: 50%; padding: 14px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: white; background: rgba(6,35,28,.9); backdrop-filter: blur(12px); display: flex; align-items: center; gap: 7px; opacity: 0; transform: translate(-50%,-50%) scale(.92); animation: transformationAi 8s ease-in-out infinite; }
.transformation-ai b { width: 25px; height: 25px; border-radius: 50%; color: #153a30; background: #e7cf8c; display: grid; place-content: center; font-family: var(--serif); font-size: 9px; }
.transformation-ai span { margin-right: 4px; font-size: 8px; font-weight: 800; }
.transformation-ai i { width: 4px; height: 4px; border-radius: 50%; background: #e7cf8c; animation: transformationDot .8s ease-in-out infinite alternate; }
.transformation-ai i:nth-of-type(2) { animation-delay: .15s; }
.transformation-ai i:nth-of-type(3) { animation-delay: .3s; }
.transformation-cursor { position: absolute; z-index: 3; left: 45%; top: 34%; width: 28px; height: 28px; border-radius: 50%; color: #0d3027; background: #e7cf8c; display: grid; place-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); animation: transformationCursor 8s ease-in-out infinite; }
@keyframes transformationProgress { 0%,12% { transform: translateX(-100%); } 48%,100% { transform: none; } }
@keyframes transformationImage { 0%,38% { filter: saturate(.78) contrast(.92); transform: scale(1); } 58%,100% { filter: saturate(1.08) contrast(1.03); transform: scale(1.035); } }
@keyframes transformationShade { 0%,38% { opacity: .76; } 58%,100% { opacity: 1; } }
@keyframes transformationBefore { 0%,34% { opacity: 1; transform: translateY(-50%); } 44%,100% { opacity: 0; transform: translateY(-54%); } }
@keyframes transformationAfter { 0%,46% { opacity: 0; transform: translateY(-46%); } 58%,100% { opacity: 1; transform: translateY(-50%); } }
@keyframes transformationAi { 0%,35%,61%,100% { opacity: 0; transform: translate(-50%,-50%) scale(.92); } 43%,54% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes transformationCursor { 0%,18% { left: 45%; top: 34%; opacity: 1; } 34% { left: 26%; top: 71%; opacity: 1; } 42%,100% { left: 26%; top: 71%; opacity: 0; } }
@keyframes transformationDot { to { transform: translateY(-3px); opacity: .4; } }

.preview-composition { position: relative; min-height: 720px; }
.preview-main { width: 84%; border-radius: 7px; }
.preview-main img { aspect-ratio: 1.48; object-fit: cover; object-position: top; }
.preview-callout { position: absolute; right: 0; bottom: 15px; width: 360px; padding: 38px; color: white; background: var(--forest); box-shadow: var(--shadow); }
.preview-callout span { color: var(--lime); font-size: 8px; letter-spacing: .22em; }
.preview-callout h3, .form-copy h3 { margin: 30px 0 18px; font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.5; }
.preview-callout p, .form-copy p { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.9; }
.form-story { margin-top: 150px; display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: start; }
.form-copy { position: sticky; top: 130px; padding: 38px; color: white; background: var(--ink); }
.form-copy .section-index { color: var(--lime); }
.form-deck { position: relative; min-height: 900px; }
.form-slide { position: absolute; inset: 0; height: 850px; margin: 0; opacity: 0; transform: translateX(30px) scale(.98); transition: .55s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.form-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.form-slide img { height: auto; object-position: top; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-slide .scroll-hint { top: 82px; }
.form-slide figcaption { position: sticky; z-index: 6; bottom: 0; padding: 16px 18px; color: var(--forest); background: rgba(251,250,246,.94); backdrop-filter: blur(12px); font-family: var(--serif); font-size: 14px; }
.deck-controls { position: absolute; z-index: 4; right: 20px; bottom: 10px; display: flex; align-items: center; gap: 14px; padding: 7px; border-radius: 30px; color: white; background: var(--ink); }
.deck-controls button { width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--ink); background: var(--lime); cursor: pointer; }
.deck-controls span { font-size: 9px; letter-spacing: .15em; }

.chapter-publish { min-height: 980px; padding-right: 0; color: white; background: #071511; display: grid; grid-template-columns: .63fr 1.37fr; gap: 6vw; align-items: center; overflow: hidden; }
.chapter-publish .section-index { color: var(--lime); }
.chapter-publish h2 em { color: var(--lime); }
.chapter-publish .chapter-intro { color: rgba(255,255,255,.62); }
.publish-copy { position: relative; z-index: 2; }
.publish-steps { list-style: none; margin: 45px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.publish-steps li { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72); font-size: 12px; }
.publish-steps span { display: inline-block; width: 48px; color: var(--lime); font-family: var(--serif); }
.publish-screen { position: relative; height: 820px; margin: 0; overflow: hidden; border-radius: 16px 0 0 16px; background: white; box-shadow: -30px 0 100px rgba(0,0,0,.38); transform: perspective(1600px) rotateY(-3deg); transform-origin: right center; }
.publish-crop { height: 100%; }
.publish-crop .scroll-hint { top: 28px; margin-right: 176px; }
.publish-crop img { height: auto; object-position: top; }
.publish-badge { position: absolute; z-index: 3; right: 35px; top: 35px; width: 120px; height: 120px; border-radius: 50%; color: var(--ink); background: var(--lime); display: grid; place-content: center; text-align: center; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.publish-badge span { font-size: 7px; letter-spacing: .2em; }
.publish-badge b { margin-top: 5px; font-family: var(--serif); font-size: 25px; }

.outro { position: relative; min-height: 100svh; padding: 150px 7vw 90px; color: white; background: var(--forest); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.outro-grid { opacity: .18; mask-image: radial-gradient(circle at center, black, transparent 70%); }
.outro > *:not(.outro-grid) { position: relative; z-index: 2; }
.outro .section-index { color: var(--lime); }
.outro h2 { max-width: 1100px; font-size: clamp(48px, 7vw, 104px); line-height: 1.25; }
.outro h2 span { color: var(--lime); }
.outro > p:not(.section-index) { max-width: 760px; margin: 42px 0 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 2; }
.result-ribbon { margin-top: 70px; display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .2em; }
.result-ribbon i { color: var(--lime); font-style: normal; }
.outro-actions { margin-top: 52px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.outro-actions a { min-height: 60px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; font-size: 11px; font-weight: 800; letter-spacing: .06em; transition: transform .25s, background .25s, border-color .25s; }
.outro-actions a:hover { transform: translateY(-3px); }
.outro-primary { min-width: 310px; padding: 0 12px 0 22px; color: var(--ink); background: var(--lime); }
.outro-primary b { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: white; background: var(--forest); font-size: 15px; }
.outro-secondary { padding: 0 20px; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.76); }
.outro-secondary:hover { border-color: var(--lime); color: white; }
.final-mark { position: absolute !important; right: 5vw; bottom: 8vh; color: rgba(255,255,255,.045); font-family: var(--serif); font-size: 27vw; font-weight: 800; line-height: .7; }
.outro small { margin-top: 90px; color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .25em; }

footer { min-height: 110px; padding: 0 5vw; color: white; background: #04100d; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; font-size: 9px; letter-spacing: .13em; }
footer p:nth-child(2) { justify-self: center; color: rgba(255,255,255,.48); }
footer a { justify-self: end; color: var(--lime); }
.mobile-app-cta { display: none; }

a:focus-visible, button:focus-visible { outline: 3px solid #e7cf8c; outline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.motion-heading { will-change: opacity, transform, filter, clip-path; }
.motion-heading.motion-rise { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(34px); filter: blur(3px); transition: opacity .9s ease, transform 1.05s cubic-bezier(.16,1,.3,1), clip-path 1.05s cubic-bezier(.16,1,.3,1), filter .9s ease; }
.motion-heading.motion-focus { opacity: 0; transform: scale(1.055); filter: blur(13px); letter-spacing: .015em; transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.16,1,.3,1), filter 1.15s ease, letter-spacing 1.2s ease; }
.motion-heading.motion-wipe { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-28px); filter: saturate(.65); transition: opacity .8s ease, transform 1.1s cubic-bezier(.16,1,.3,1), clip-path 1.15s cubic-bezier(.16,1,.3,1), filter 1s ease; }
.motion-heading.is-motion-visible { opacity: 1; clip-path: inset(0); transform: none; filter: none; letter-spacing: -.04em; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-stage { min-height: 500px; }
  .browser-hero { width: 86%; }
  .manifesto-grid, .chapter-heading-split { grid-template-columns: 1fr; gap: 30px; }
  .split-showcase { grid-template-columns: 1fr; }
  .signal-stack { grid-template-columns: repeat(2,1fr); }
  .form-story { grid-template-columns: 1fr; }
  .personalize-copy { grid-template-columns: 1fr; }
  .personalize-copy h3, .personalize-copy > p:not(.section-index), .personalize-copy ul { grid-column: 1; }
  .edit-transformation { grid-template-columns: 1fr; }
  .conversion-bridge { grid-template-columns: 1fr; gap: 40px; }
  .form-copy { position: relative; top: 0; }
  .chapter-publish { grid-template-columns: 1fr; padding-right: max(7vw,38px); }
  .publish-screen { border-radius: 12px; transform: none; }
}

@media (max-width: 760px) {
  .cursor-glow { display: none; }
  .intro-splash-copy { width: calc(100% - 44px); }
  .intro-splash-title { font-size: clamp(43px,12.5vw,60px); line-height: 1.35; }
  .intro-splash-subtitle { max-width: 320px; margin-top: 28px; font-size: 15px; line-height: 1.8; white-space: normal; }
  .intro-splash-statement { min-height: 108px; margin-top: 24px; font-size: 27px; line-height: 1.55; white-space: normal; }
  .intro-splash-statement span, .intro-splash-statement strong { display: block; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 60px; padding: 0 10px; }
  .brand small { display: none; }
  .header-cta { flex-shrink: 0; min-height: 42px; padding: 0 5px 0 12px; font-size: 0; white-space: nowrap; }
  .header-cta::before { content: "無料登録"; font-size: 10px; letter-spacing: .03em; white-space: nowrap; }
  .header-cta span { width: 30px; height: 30px; margin-left: 8px; font-size: 14px; }
  .site-reel { padding: 104px 0 62px; }
  .site-reel-heading { width: calc(100% - 44px); margin-bottom: 38px; grid-template-columns: 1fr; gap: 22px; }
  .site-reel-heading .section-index { grid-column: auto; margin-bottom: -4px; }
  .site-reel-heading h2 { font-size: 35px; }
  .site-reel-heading > p:last-child { font-size: 12px; }
  .film-window { padding: 28px 0; }
  .film-frame { width: min(82vw, 360px); }
  .film-track { animation-duration: 42s; }
  .hero { padding: 120px 22px 90px; gap: 50px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 48px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-stage { min-height: 330px; }
  .browser-hero { width: 100%; aspect-ratio: 1.15; transform: none; }
  .quality-model-header { min-height: 38px; padding: 10px 12px; }
  .quality-model-header span { display: none; }
  .quality-model-copy { width: 58%; }
  .quality-model-copy strong { margin-top: 9px; font-size: 25px; }
  .quality-model-copy p { margin-top: 10px; font-size: 7px; }
  .floating-card { display: none; }
  .hero-foot { left: 22px; right: 22px; }
  .hero-foot p { display: none; }
  .manifesto, .chapter { padding: 100px 22px; }
  .manifesto h2, .chapter h2 { font-size: 38px; }
  .manifesto-copy { padding: 25px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .journey-map { grid-template-columns: 1fr; margin-top: 65px; }
  .journey-map li { min-height: 80px; border-right: 0; border-bottom: 1px solid var(--line); display: flex; gap: 25px; align-items: center; }
  .journey-map span { margin: 0; }
  .editorial-grid { grid-template-columns: 1fr; }
  .screen-card-wide { grid-column: 1; }
  .screen-card-tall .screen-crop, .screen-crop { height: 500px; }
  .signal-stack { grid-template-columns: 1fr; }
  .document-window { height: min(72vh, 680px); }
  .wide-document figcaption { align-items: start; flex-direction: column; gap: 10px; }
  .generation-status { width: 92%; }
  .page-build-demo { padding: 16px; }
  .page-build-head { grid-template-columns: 1fr auto; }
  .page-build-head > b { grid-column: 1 / -1; grid-row: 2; font-size: 14px; }
  .page-build-head > em { grid-column: 2; grid-row: 1; }
  .page-build-grid { grid-template-columns: repeat(2,1fr); }
  .generation-crop { height: min(74vh, 700px); }
  .generation-caption { gap: 8px; flex-wrap: wrap; }
  .generation-caption span { width: 15px; }
  .scroll-continue { top: calc(100% - 62px); width: 48px; height: 48px; margin-bottom: -48px; font-size: 18px; }
  .scroll-continue.show-guide::before { right: calc(100% + 9px); padding: 8px 10px; font-size: 8px; }
  .conversion-bridge { padding: 82px 22px; }
  .conversion-bridge h2 { font-size: 38px; }
  .conversion-bridge-action > a { min-height: 62px; }
  .personalize-showcase { margin-bottom: 100px; }
  .personalize-copy { padding-bottom: 45px; }
  .personalize-studio-image { position: relative; padding: 10px 10px 0; overflow-x: auto; }
  .personalize-studio-image img { width: 920px; max-width: none; }
  .live-type-demo { margin: 10px 10px 0; min-height: 610px; grid-template-columns: 1fr; }
  .live-type-canvas { min-height: 350px; }
  .live-type-panel { min-width: 0; min-height: 260px; border-left: 0; border-top: 1px solid rgba(9,27,24,.13); }
  .live-type-selection { width: 65%; }
  .live-type-selection strong { font-size: clamp(27px,8vw,42px); }
  .live-type-save { left: auto; width: 190px; }
  .studio-scroll-hint { position: sticky; z-index: 2; left: 0; top: 0; width: max-content; margin: 0 0 10px; padding: 10px 13px; border-radius: 999px; color: white; background: rgba(7,39,31,.9); display: block; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
  .studio-scroll-hint b { margin-left: 8px; color: #f5d98f; }
  .studio-capabilities { grid-template-columns: 1fr; margin: 10px; }
  .studio-capabilities > div { min-height: 94px; border-right: 0; border-bottom: 1px solid rgba(9,27,24,.12); }
  .studio-capabilities > div:last-child { border-bottom: 0; }
  .edit-transformation { margin-top: 80px; padding: 28px 18px; gap: 40px; }
  .transformation-content { width: 56%; }
  .transformation-content strong { margin: 9px 0; font-size: 20px; }
  .transformation-content p { display: none; }
  .transformation-content > span { margin-top: 12px; padding: 8px 10px; }
  .transformation-cursor { display: none; }
  .preview-composition { min-height: 480px; }
  .preview-main { width: 100%; }
  .preview-callout { position: relative; width: calc(100% - 30px); margin: -30px 0 0 auto; }
  .form-story { margin-top: 100px; }
  .form-deck { min-height: 650px; }
  .form-slide { height: 610px; }
  .chapter-publish { padding-right: 22px; }
  .publish-screen { height: 600px; }
  .outro { padding: 110px 22px 70px; }
  .outro h2 { font-size: 44px; }
  .outro-actions { align-items: stretch; flex-direction: column; }
  .outro-actions a { width: 100%; }
  .outro-primary { min-width: 0; }
  .result-ribbon { gap: 9px; flex-wrap: wrap; }
  footer { grid-template-columns: 1fr 1fr; padding: 25px 22px; }
  footer p:nth-child(2) { display: none; }
  body { padding-bottom: 68px; }
  .mobile-app-cta { position: fixed; z-index: 96; right: 12px; bottom: 10px; left: 12px; min-height: 54px; padding: 0 8px 0 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; color: white; background: rgba(5,24,20,.94); backdrop-filter: blur(18px); box-shadow: 0 14px 38px rgba(0,0,0,.3); display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
  .mobile-app-cta b { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .film-track { animation: none !important; }
  .film-window { overflow-x: auto; }
  .motion-heading { opacity: 1 !important; clip-path: none !important; transform: none !important; filter: none !important; }
  .page-build-preview img { opacity: 1; clip-path: inset(0); }
  .page-build-card > p > em, .page-build-scan { display: none; }
  .page-build-card > p > strong { opacity: 1; transform: none; }
  .page-build-progress span { transform: scaleX(1); }
  .live-type-selection { border-color: #e7cf8c; }
  .live-type-selection strong { color: #e7cf8c; transform: scale(1.1); }
  .live-type-selection > i { opacity: 1; }
  .live-type-cursor, .live-type-save span { display: none; }
  .live-type-panel label strong i { opacity: 0; }
  .live-type-panel label strong em, .live-type-save b { opacity: 1; }
  .live-type-size span { transform: scaleX(1); }
  .live-type-size i { left: 73%; }
}

@media print {
  @page { size: A4; margin: 10mm; }
  html, body { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  [data-count] { font-size: 0 !important; }
  [data-count]::after { content: "19"; font-size: 38px; }
  .site-header, .cursor-glow, .reading-progress, .hero-actions, .deck-controls { display: none !important; }
  .site-reel { break-after: page; }
  .film-track { animation: none; transform: none; }
  .film-group[aria-hidden="true"] { display: none; }
  body { background: white; }
  .hero, .outro { min-height: 270mm; break-after: page; }
  .manifesto, .chapter { padding: 18mm 10mm; break-before: page; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .screen-card, .browser, .wide-document, .form-story { break-inside: avoid; }
  .chapter-publish { display: block; }
  .publish-copy { margin-bottom: 15mm; }
  .publish-screen { height: 180mm; transform: none; }
  .form-slide { position: relative; display: none; opacity: 1; transform: none; }
  .form-slide.active { display: block; }
  .scrollable-screen { overflow: hidden !important; height: auto !important; }
  .scroll-hint { display: none !important; }
  footer { display: none; }
}
