:root {
  --lime: #a8c522;
  --lime-bright: #c8e64c;
  --ink: #172018;
  --muted: #5b665d;
  --paper: #f7f7f2;
  --dark: #09110e;
  --viewport-w: 100vw;
  --viewport-h: 100svh;
  --deck-scale: 1;
  --stage-w: 1920px;
  --stage-h: 1080px;
  --deck-edge-gap: 0px;
  --deck-controls-space: 0px;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; }
body {
  display: grid;
  place-items: center;
  width: var(--viewport-w);
  min-height: var(--viewport-h);
  height: var(--viewport-h);
  padding: calc(var(--deck-edge-gap) + env(safe-area-inset-top, 0px)) calc(var(--deck-edge-gap) + env(safe-area-inset-right, 0px)) calc(var(--deck-edge-gap) + var(--deck-controls-space) + env(safe-area-inset-bottom, 0px)) calc(var(--deck-edge-gap) + env(safe-area-inset-left, 0px));
  overflow: hidden;
  background: #111612;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.stage { position: relative; width: var(--stage-w); height: var(--stage-h); }
.deck {
  position: absolute; inset: 0 auto auto 0;
  width: 1920px; height: 1080px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
  transform: scale(var(--deck-scale)); transform-origin: 0 0;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none; overflow: hidden;
  transform: translateX(24px);
  transition: opacity 360ms ease, transform 500ms ease;
}
.slide.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.slide-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.muted-bg { opacity: .76; }
.slide::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.light::after { background: linear-gradient(90deg, rgba(249,249,244,.94) 0%, rgba(249,249,244,.72) 46%, rgba(249,249,244,.04) 100%); }
.dark::after { background: linear-gradient(90deg, rgba(4,10,8,.93) 0%, rgba(4,10,8,.66) 52%, rgba(4,10,8,.08) 100%); }
.title-slide::after { background: linear-gradient(90deg, rgba(249,249,244,.93) 0%, rgba(249,249,244,.58) 43%, rgba(249,249,244,.02) 75%); }
.contour-slide::after, .cycle-slide::after { background: rgba(249,249,244,.84); }
.roadmap-slide::after, .final-slide::after { background: linear-gradient(90deg, rgba(4,10,8,.94) 0%, rgba(4,10,8,.72) 59%, rgba(4,10,8,.18) 100%); }

.content { position: absolute; z-index: 2; }
.title-lockup { left: 112px; top: 178px; width: 790px; }
.left-wide { left: 118px; top: 120px; width: 980px; }
.left-medium { left: 118px; top: 92px; width: 845px; }
.full-width { left: 112px; right: 112px; top: 84px; }
.statement { left: 112px; top: 165px; width: 1050px; }
.final-lockup { left: 112px; top: 144px; width: 980px; }

h1,h2,h3,p,ul,blockquote { margin: 0; }
h1,h2,h3 { font-weight: 640; letter-spacing: -.025em; }
h1 { font-size: 82px; line-height: .98; max-width: 850px; }
h2 { font-size: 64px; line-height: 1.01; max-width: 1240px; }
h3 { font-size: 29px; line-height: 1.05; }
.dark h1, .dark h2, .dark h3 { color: #f6f8f0; }
.eyebrow { margin-bottom: 16px; color: #73930e; font-size: 19px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.dark .eyebrow { color: var(--lime-bright); }
.subtitle { margin-top: 30px; font-size: 34px; line-height: 1.2; font-weight: 560; color: #344037; }
.micro { margin-top: 18px; color: var(--muted); font-size: 22px; }
.lead { margin-top: 34px; max-width: 960px; font-size: 31px; line-height: 1.3; font-weight: 520; }
.dark .lead { color: rgba(246,248,240,.88); }
.closing { margin-top: 30px; max-width: 1000px; font-size: 25px; line-height: 1.35; color: #334037; }
.light-text { color: rgba(246,248,240,.86); }
.footnote { margin-top: 23px; font-size: 21px; line-height: 1.35; color: #4e5a50; }
.dark-note { color: rgba(246,248,240,.7); }

.formula-line { display: flex; align-items: center; gap: 16px; margin-top: 58px; }
.formula-line span { padding: 14px 18px; border: 1px solid rgba(200,230,76,.36); background: rgba(10,18,14,.58); color: #f5f7ef; font-size: 24px; font-weight: 650; }
.formula-line i, .vertical-flow i, .contour-flow i { color: var(--lime-bright); font-size: 28px; font-style: normal; }

.metric-grid { display: grid; gap: 16px; margin-top: 52px; }
.metric-grid.three { grid-template-columns: repeat(3, 1fr); width: 1050px; }
.metric-grid article { min-height: 210px; padding: 30px 28px; border-top: 4px solid var(--lime); background: rgba(249,249,244,.8); box-shadow: 0 14px 32px rgba(50,62,47,.08); }
.metric-grid strong { display: block; color: #6d8d0c; font-size: 58px; line-height: 1; }
.metric-grid span { display: block; margin-top: 22px; font-size: 23px; line-height: 1.22; font-weight: 590; }

.number-cards { display: grid; gap: 18px; margin-top: 46px; }
.number-cards.four { grid-template-columns: repeat(4, 1fr); }
.number-cards article { min-height: 310px; padding: 30px 28px; border: 1px solid rgba(107,127,95,.18); background: rgba(250,250,245,.86); box-shadow: 0 16px 42px rgba(39,48,37,.07); }
.number-cards b, .package-grid b { display: block; margin-bottom: 56px; color: #7a9a17; font-size: 18px; letter-spacing: .16em; }
.number-cards p, .package-grid p { margin-top: 18px; font-size: 22px; line-height: 1.34; color: #4c584f; }

.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 38px; }
.scope-grid article { min-height: 570px; padding: 34px 38px 30px; border-top: 4px solid; background: rgba(250,250,245,.9); }
.scope-grid .scope-in { border-color: var(--lime); }
.scope-grid .scope-out { border-color: #879087; }
.scope-grid span { font-size: 27px; font-weight: 700; }
.scope-grid ul, .check-list { padding: 0; list-style: none; }
.scope-grid ul { display: grid; gap: 18px; margin-top: 30px; }
.scope-grid li, .check-list li { position: relative; padding-left: 30px; font-size: 22px; line-height: 1.22; }
.scope-grid li::before, .check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(168,197,34,.14); }
.scope-out li::before { background: #8a9389; box-shadow: 0 0 0 5px rgba(138,147,137,.14); }

.platform-flow { display: grid; grid-template-columns: 1fr 360px 1fr; align-items: center; gap: 30px; margin-top: 70px; }
.platform-flow article { min-height: 330px; padding: 36px; border: 1px solid rgba(200,230,76,.24); background: rgba(8,16,12,.68); }
.platform-flow small, .roadmap small { color: var(--lime-bright); font-size: 17px; font-weight: 760; letter-spacing: .12em; }
.platform-flow strong { display: block; margin-top: 22px; color: #f6f8f0; font-size: 50px; }
.platform-flow article p { margin-top: 28px; color: rgba(246,248,240,.76); font-size: 23px; line-height: 1.35; }
.transfer { text-align: center; color: rgba(246,248,240,.75); }
.transfer span { display: block; font-size: 18px; text-transform: uppercase; letter-spacing: .13em; }
.transfer i { display: block; margin: 14px 0; color: var(--lime-bright); font-size: 48px; font-style: normal; }
.transfer em { font-size: 18px; line-height: 1.4; font-style: normal; }

.dark-panel { padding: 44px 46px 48px; border: 1px solid rgba(200,230,76,.24); background: linear-gradient(135deg, rgba(7,14,11,.82), rgba(8,16,12,.55)); backdrop-filter: blur(7px); }
.vertical-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 48px; }
.vertical-flow span { padding: 14px 17px; border: 1px solid rgba(200,230,76,.26); color: #f6f8f0; font-size: 21px; font-weight: 620; }

.contour-flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 105px; padding: 50px 40px; background: rgba(250,250,245,.86); box-shadow: 0 18px 50px rgba(42,53,40,.08); }
.contour-flow span { padding: 16px 17px; border-bottom: 3px solid #859e2d; font-size: 22px; font-weight: 650; }
.contour-flow .accent { background: var(--lime); border: 0; color: #111a12; }

.passport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.passport-grid span { min-height: 128px; padding: 28px 24px; border-left: 4px solid var(--lime); background: rgba(250,250,245,.9); font-size: 23px; line-height: 1.18; font-weight: 620; }
blockquote { margin-top: 38px; padding: 24px 30px; border: 1px solid rgba(112,139,35,.28); background: rgba(244,247,232,.82); font-size: 27px; line-height: 1.28; font-weight: 620; }

.role-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 42px; }
.role-grid article { grid-column: span 2; min-height: 216px; padding: 28px; border: 1px solid rgba(200,230,76,.22); background: rgba(8,16,12,.64); }
.role-grid .role-main { grid-column: span 3; border-top: 4px solid var(--lime-bright); }
.role-grid article:nth-child(4), .role-grid article:nth-child(5) { grid-column: span 3; }
.role-grid b { color: #f6f8f0; font-size: 26px; }
.role-grid p { margin-top: 18px; color: rgba(246,248,240,.72); font-size: 20px; line-height: 1.32; }

.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 80px; }
.roadmap article { position: relative; min-height: 390px; padding: 36px 32px; border-top: 4px solid var(--lime-bright); background: rgba(7,14,11,.78); }
.roadmap article::after { content: ""; position: absolute; left: 0; right: -20px; top: -14px; height: 2px; background: rgba(200,230,76,.36); }
.roadmap article:last-child::after { right: 0; }
.roadmap strong { display: block; margin-top: 34px; color: #f6f8f0; font-size: 36px; }
.roadmap p { margin-top: 28px; color: rgba(246,248,240,.76); font-size: 23px; line-height: 1.35; }

.check-list { display: grid; gap: 15px; margin-top: 34px; }
.check-list li { font-size: 23px; }
.dark .check-list li { color: rgba(246,248,240,.86); }
.result-tag { margin-top: 30px; padding: 20px 22px; border-left: 5px solid var(--lime); background: rgba(247,248,237,.88); font-size: 22px; line-height: 1.3; font-weight: 650; }
.dark-tag { background: rgba(17,27,20,.74); color: #f6f8f0; }

.cycle-ring { position: relative; width: 1160px; height: 550px; margin: 36px auto 0; }
.cycle-ring::before { content: ""; position: absolute; inset: 65px 210px 70px; border: 2px solid rgba(142,172,54,.32); border-radius: 50%; }
.cycle-ring > div { position: absolute; left: 50%; top: 50%; width: 190px; height: 190px; display: grid; place-items: center; border-radius: 50%; transform: translate(-50%,-50%); background: #1a241b; color: #f6f8f0; text-align: center; font-size: 28px; font-weight: 650; box-shadow: 0 0 0 16px rgba(168,197,34,.16); }
.cycle-ring span { position: absolute; left: calc(50% + 455px * cos(calc((var(--n) * 51.43deg) - 90deg))); top: calc(50% + 210px * sin(calc((var(--n) * 51.43deg) - 90deg))); width: 240px; min-height: 84px; padding: 16px 18px; transform: translate(-50%,-50%); border: 1px solid rgba(120,145,56,.24); background: rgba(250,250,245,.94); font-size: 19px; line-height: 1.2; font-weight: 620; }
.cycle-ring b { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-right: 9px; border-radius: 50%; background: var(--lime); color: #172018; }

.package-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px; }
.package-grid article { min-height: 380px; padding: 30px 28px; border: 1px solid rgba(107,127,95,.18); background: rgba(250,250,245,.9); }
.package-grid b { margin-bottom: 88px; }

.acceptance-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 42px; }
.acceptance-grid article { min-height: 180px; padding: 27px; border: 1px solid rgba(200,230,76,.22); background: rgba(7,14,11,.68); }
.acceptance-grid strong { color: var(--lime-bright); font-size: 18px; letter-spacing: .13em; }
.acceptance-grid p { margin-top: 18px; color: rgba(246,248,240,.82); font-size: 21px; line-height: 1.28; }

.final-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 46px; }
.final-points span { padding: 13px 17px; border: 1px solid rgba(200,230,76,.28); background: rgba(8,16,12,.52); color: #f6f8f0; font-size: 20px; }

.brand-mark, .chapter-label, .deck-progress { position: absolute; z-index: 10; pointer-events: none; }
.brand-mark { left: 70px; bottom: 36px; color: #586158; font-size: 16px; font-weight: 760; letter-spacing: .12em; }
.dark.is-active ~ .brand-mark { color: rgba(246,248,240,.6); }
.brand-mark span { color: var(--lime); }
.chapter-label { right: 126px; top: 39px; color: #5c665c; font-size: 16px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.on-dark .brand-mark, .on-dark .chapter-label, .on-dark .slide-nav { color: rgba(246,248,240,.58); }
.deck-progress { left: 255px; right: 150px; bottom: 42px; height: 3px; background: rgba(112,128,107,.22); }
.progress-line { display: block; width: 7.14%; height: 100%; background: var(--lime); transition: width 360ms ease; }

.slide-nav { position: absolute; right: 54px; bottom: 24px; z-index: 20; display: flex; align-items: center; gap: 11px; color: #5c665c; }
.slide-nav button { width: 28px; height: 28px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: rgba(247,247,242,.36); color: inherit; font-size: 16px; line-height: 1; cursor: pointer; }
.slide-nav button:hover { color: #25331f; background: rgba(168,197,34,.28); }
.slide-counter { min-width: 56px; text-align: center; font-size: 16px; font-weight: 650; letter-spacing: .03em; }
.on-dark .slide-nav button { background: rgba(8,16,12,.44); }

.is-exporting { width: 1920px; height: 1080px; padding: 0; background: #000; }
.is-exporting .stage, .is-exporting .deck { width: 1920px; height: 1080px; }
.is-exporting .deck { transform: none; box-shadow: none; }
.is-exporting .slide-nav button { display: none; }
