:root {
  --w: 1920;
  --h: 1080;
  --ink: #fff6e6;
  --muted: rgba(255,246,230,.68);
  --bg: #15110e;
  --paper: #f2e7d4;
  --accent: #d54d2d;
  --gold: #e3b15d;
  --line: rgba(255,246,230,.16);
  --sans: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', sans-serif;
  --serif: ui-serif, 'Yu Mincho', 'Hiragino Mincho ProN', 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; overflow: hidden; background: #080706; font-family: var(--sans); color: var(--ink); }
.deck-shell { position: fixed; inset: 0; }
.stage { width: 1920px; height: 1080px; position: absolute; left: 50%; top: 50%; transform-origin: center center; background: var(--bg); box-shadow: 0 40px 120px rgba(0,0,0,.45); overflow: hidden; }
.slide { position: absolute; inset: 0; padding: 78px 92px; display: none; overflow: hidden; background: radial-gradient(circle at 78% 18%, rgba(213,77,45,.22), transparent 34%), linear-gradient(135deg, #17120f, #0f0d0b); }
.slide.is-active { display: block; }
.slide.light { color: #191512; background: radial-gradient(circle at 86% 12%, rgba(213,77,45,.18), transparent 30%), var(--paper); }
.slide.photo { padding: 0; }
.slide.photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,8,7,.84), rgba(10,8,7,.42), rgba(10,8,7,.08)); }
.slide.photo .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide.photo .slide-content { position: absolute; inset: 0; height: auto; }
.slide-content { position: relative; z-index: 2; height: 100%; display: grid; align-content: center; }
.kicker { font-size: 24px; font-weight: 900; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-bottom: 26px; }
h1, h2, h3, p { margin: 0; }
h1 { font-family: var(--serif); font-size: 112px; line-height: 1.02; letter-spacing: -.06em; max-width: 1450px; }
h2 { font-family: var(--serif); font-size: 86px; line-height: 1.04; letter-spacing: -.055em; max-width: 1340px; }
h3 { font-size: 38px; line-height: 1.2; letter-spacing: -.03em; }
.lead { font-size: 38px; line-height: 1.55; color: var(--muted); max-width: 1180px; margin-top: 34px; }
.light .lead { color: rgba(25,21,18,.68); }
.big-line { font-family: var(--serif); font-size: 122px; line-height: 1.05; letter-spacing: -.06em; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; margin-top: 52px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.card { border: 1px solid var(--line); border-radius: 38px; padding: 34px; background: rgba(255,246,230,.07); min-height: 220px; }
.light .card { border-color: rgba(25,21,18,.16); background: rgba(255,255,255,.42); }
.card strong { display: block; font-size: 34px; line-height: 1.25; margin-bottom: 16px; }
.card p, .list li { font-size: 28px; line-height: 1.55; color: var(--muted); }
.light .card p, .light .list li { color: rgba(25,21,18,.68); }
.list { display: grid; gap: 22px; padding: 0; margin: 48px 0 0; list-style: none; max-width: 1180px; }
.list li { position: relative; padding-left: 42px; }
.list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); }
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 60px; align-items: stretch; }
.flow .step { border-radius: 30px; padding: 30px 24px; background: rgba(255,246,230,.08); border: 1px solid var(--line); min-height: 250px; }
.flow .step span { display: block; color: var(--gold); font-weight: 900; font-size: 22px; letter-spacing: .12em; margin-bottom: 30px; }
.flow .step b { display: block; font-size: 34px; line-height: 1.2; margin-bottom: 16px; }
.flow .step small { color: var(--muted); font-size: 22px; line-height: 1.45; }
.light .flow .step { color: #191512; border-color: rgba(25,21,18,.18); background: rgba(255,250,240,.78); box-shadow: 0 22px 62px rgba(109,80,42,.08); }
.light .flow .step span { color: #9a5a10; }
.light .flow .step b { color: #14100d; }
.light .flow .step small { color: #3b2d22; font-weight: 700; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 54px; }
.compare .bad, .compare .good { border-radius: 38px; padding: 38px; min-height: 380px; }
.compare .bad { background: rgba(255,246,230,.08); color: rgba(255,246,230,.58); }
.compare .good { background: #fff6e6; color: #191512; }
.light .compare .bad {
  color: #2a211a;
  border: 1px solid rgba(25,21,18,.16);
  background: rgba(255,250,240,.74);
  box-shadow: 0 24px 68px rgba(109,80,42,.08);
}
.light .compare .bad .quote { color: #2a211a; }
.light .compare .good {
  border: 1px solid rgba(25,21,18,.12);
  box-shadow: 0 24px 68px rgba(109,80,42,.08);
}
.compare .label { font-size: 22px; font-weight: 900; letter-spacing: .16em; margin-bottom: 26px; color: var(--accent); }
.compare .quote { font-family: var(--serif); font-size: 54px; line-height: 1.22; letter-spacing: -.05em; }
.mock-img { border-radius: 42px; overflow: hidden; min-height: 560px; box-shadow: 0 26px 80px rgba(0,0,0,.26); }
.mock-img img { width: 100%; height: 100%; object-fit: cover; }
.controls { position: fixed; z-index: 100; left: 18px; right: 18px; bottom: 14px; display: flex; justify-content: space-between; align-items: center; pointer-events: none; color: rgba(255,255,255,.82); font-size: 13px; }
.controls > div:nth-child(2) { padding: 7px 13px; border-radius: 999px; background: rgba(8,7,6,.42); backdrop-filter: blur(12px); }
.controls button, .controls a { pointer-events: auto; background: rgba(8,7,6,.42); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 8px 12px; text-decoration: none; cursor: pointer; backdrop-filter: blur(12px); }
.link-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.link-list a { border: 1px solid currentColor; border-radius: 999px; padding: 15px 22px; font-size: 24px; text-decoration: none; }
.identity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.identity-card { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; padding: 34px; border: 1px solid rgba(255,246,230,.18); border-radius: 0; text-decoration: none; color: var(--ink); background: rgba(255,246,230,.06); }
.identity-card span { color: var(--gold); font-size: 20px; font-weight: 900; letter-spacing: .18em; }
.identity-card strong { font-family: var(--serif); font-size: 46px; line-height: 1.04; letter-spacing: -.055em; }
.identity-card small { color: var(--muted); font-size: 23px; line-height: 1.45; }
.identity-card.noir { background: linear-gradient(145deg, rgba(216,58,36,.18), rgba(255,246,230,.04)); }
.identity-card.dossier { color: #1c1b18; background: #f7f4ee; border-color: rgba(247,244,238,.4); }
.identity-card.dossier small { color: rgba(28,27,24,.62); }
.identity-card.forest { color: #073f31; background: linear-gradient(135deg, #65c81c, #e9fff8); border-color: rgba(255,255,255,.3); }
.identity-card.forest small { color: rgba(7,63,49,.68); }
.tech-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.tech-map article { min-height: 310px; padding: 34px; border: 1px solid rgba(25,21,18,.16); background: rgba(255,255,255,.46); }
.tech-map span { display: block; color: var(--accent); font-size: 20px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 26px; }
.tech-map strong { display: block; font-size: 38px; line-height: 1.16; letter-spacing: -.04em; }
.tech-map p { margin-top: 20px; color: rgba(25,21,18,.64); font-size: 26px; line-height: 1.55; }
.review-lens-slide { background: radial-gradient(circle at 78% 18%, rgba(227,177,93,.2), transparent 34%), linear-gradient(135deg, #17120f, #0f0d0b); }
.big-line.small { margin-top: 26px; font-size: 92px; line-height: 1.06; }
.review-lens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.review-lens-grid article { min-height: 230px; padding: 32px; border-top: 1px solid rgba(255,246,230,.22); background: rgba(255,246,230,.045); }
.review-lens-grid strong { display: block; font-size: 34px; line-height: 1.2; margin-bottom: 18px; }
.review-lens-grid p { color: var(--muted); font-size: 26px; line-height: 1.55; }
.one-more-slide { background: radial-gradient(circle at 80% 10%, rgba(79,140,255,.36), transparent 34%), radial-gradient(circle at 12% 88%, rgba(143,212,255,.14), transparent 30%), linear-gradient(135deg, #020813, #05070d 70%); }
.one-more-slide .kicker { color: #8fd4ff; }
.one-more-slide h2 { font-family: var(--sans); font-size: 86px; line-height: 1.02; letter-spacing: -.08em; max-width: 1180px; }
.one-more-slide .lead { color: rgba(229,241,255,.74); max-width: 1320px; }
.one-more-slide .card { border-color: rgba(143,212,255,.22); background: rgba(143,212,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.one-more-slide .card p { color: rgba(229,241,255,.7); }
.one-more-slide .link-list a { color: #8fd4ff; border-color: rgba(143,212,255,.56); background: rgba(143,212,255,.08); }
.actor-slide { color: #1c1b18; background: linear-gradient(90deg, #f7f4ee 0 62%, #161513 62% 100%); }
.actor-dossier-preview { grid-template-columns: minmax(0, 1fr) 560px; gap: 86px; align-items: center; }
.actor-dossier-preview .kicker { color: rgba(28,27,24,.48); }
.actor-dossier-preview h2 { color: #1c1b18; font-size: 76px; line-height: 1.1; max-width: 820px; }
.actor-dossier-preview .lead { color: rgba(28,27,24,.64); max-width: 760px; }
.dossier-name { position: absolute; left: 70px; bottom: 58px; color: transparent; -webkit-text-stroke: 1px rgba(28,27,24,.12); font-size: 255px; font-weight: 1000; letter-spacing: -.13em; line-height: .72; }
.dossier-copy { position: relative; z-index: 2; }
.dossier-meta { display: grid; grid-template-columns: 150px 1fr; gap: 16px 24px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(28,27,24,.18); max-width: 740px; }
.dossier-meta span { color: rgba(28,27,24,.46); font-size: 18px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.dossier-meta b { color: #1c1b18; font-size: 26px; line-height: 1.35; }
.dossier-portrait { position: relative; z-index: 2; margin: 0; height: 720px; border: 1px solid rgba(247,244,238,.32); background: #111; box-shadow: -26px 26px 0 rgba(247,244,238,.14); overflow: hidden; }
.dossier-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: grayscale(1) contrast(1.1) brightness(.94); }
.forest-photo::after { background: linear-gradient(90deg, rgba(0,56,38,.72), rgba(0,56,38,.34), rgba(0,56,38,.05)), linear-gradient(0deg, rgba(0,92,45,.55), transparent 48%); }
.forest-photo .kicker { color: #ffd447; }
.forest-photo h2 { font-family: var(--sans); max-width: 900px; font-size: 104px; line-height: .98; letter-spacing: -.08em; font-weight: 1000; }
.forest-photo .lead { max-width: 900px; font-weight: 800; color: rgba(255,255,255,.86); }
@media print {
  html, body { overflow: visible; background: #fff; }
  .deck-shell { position: static; display: block; }
  .stage { position: relative; left: auto; top: auto; transform: none !important; box-shadow: none; width: 1920px; height: auto; overflow: visible; }
  .slide { position: relative; display: block !important; width: 1920px; height: 1080px; break-after: page; }
  .controls { display: none; }
}
