:root {
  --ink: #101b3f;
  --ink-2: #1d2852;
  --muted: #5e6984;
  --violet: #4932a2;
  --violet-2: #7356e5;
  --cyan: #25c5cf;
  --cyan-2: #65e3e4;
  --teal: #115356;
  --ice: #e9f6f7;
  --line: rgba(23, 42, 80, 0.16);
  --white: #ffffff;
  --dark: #070d27;
  --danger: #d14c76;
  --success: #1a9c91;
  --shadow: 0 28px 80px rgba(22, 31, 72, 0.16);
  --soft-shadow: 0 15px 40px rgba(22, 31, 72, 0.11);
  --ease: cubic-bezier(.2, .78, .2, 1);
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050816;
}

body {
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button, input, textarea, select { font: inherit; }

.viewport {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(65, 58, 158, .26), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(34, 193, 201, .16), transparent 28%),
    #050816;
}

.stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1920px;
  height: 1080px;
  flex: none;
  overflow: hidden;
  transform-origin: center center;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 120px rgba(0,0,0,.5);
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  display: none;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff url("assets/layout.png") center / 100% 100% no-repeat;
  pointer-events: none;
}

.slide.is-active { display: block; }

.slide__content {
  position: absolute;
  z-index: 1;
  top: 126px;
  right: 78px;
  bottom: 68px;
  left: 78px;
  overflow: hidden;
  border-radius: 44px 44px 28px 28px;
}

.slide-head {
  position: relative;
  z-index: 4;
  max-width: 1540px;
  padding: 22px 34px 0;
}

.slide-head--compact { padding-top: 8px; }

.kicker {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin: 0 13px 5px 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.kicker--light { color: #b9fbff; }

.slide-title {
  max-width: 1420px;
  margin: 0;
  color: var(--ink);
  font-size: 62px;
  font-weight: 740;
  letter-spacing: -.038em;
  line-height: 1.02;
}

.slide-lead {
  max-width: 1320px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 27px;
  font-weight: 450;
  line-height: 1.35;
}

.source {
  position: absolute;
  right: 34px;
  bottom: 11px;
  left: 34px;
  z-index: 8;
  margin: 0;
  color: #66718b;
  font-size: 16px;
  line-height: 1.3;
}

.source--on-dark { color: rgba(224, 241, 255, .7); }

.source--split {
  right: 44px;
  left: 44px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .58s var(--ease), transform .68s var(--ease);
}

.slide.is-active .reveal { opacity: 1; transform: none; }
.slide.is-active .reveal:nth-child(2) { transition-delay: .08s; }
.slide.is-active .reveal:nth-child(3) { transition-delay: .15s; }
.slide.is-active .reveal:nth-child(4) { transition-delay: .22s; }
.slide.is-active .reveal:nth-child(5) { transition-delay: .29s; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 01 — cover */
.cover-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  padding: 46px 34px 44px 68px;
}

.cover-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 22px;
}

.cover-title {
  margin: 0;
  color: var(--ink);
  font-size: 126px;
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: .9;
}

.cover-subtitle {
  max-width: 670px;
  margin: 31px 0 0;
  color: var(--ink-2);
  font-size: 35px;
  font-weight: 520;
  line-height: 1.22;
}

.cover-rule {
  width: 155px;
  height: 8px;
  margin-top: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 28px rgba(44, 194, 207, .32);
}

.cover-date {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 720;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.presenters {
  display: flex;
  gap: 52px;
  margin-top: 50px;
}

.presenters div { display: flex; flex-direction: column; gap: 5px; }
.presenters strong { color: var(--ink); font-size: 23px; }
.presenters span { color: var(--muted); font-size: 17px; }

.hero-animation {
  position: relative;
  align-self: stretch;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(133, 231, 241, .35);
  border-radius: 38px;
  background: #080d2b;
  box-shadow: 0 34px 90px rgba(17, 21, 67, .32);
}

.hero-poster,
.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.hero-frame { z-index: 2; pointer-events: none; }
.hero-poster { z-index: 1; }

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 60%, rgba(6,9,31,.78));
  pointer-events: none;
}

.hero-animation figcaption {
  position: absolute;
  right: 34px;
  bottom: 27px;
  left: 34px;
  z-index: 4;
  color: #dffcff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* 02 — one view */
.one-view {
  position: relative;
  height: 493px;
  margin: 30px 34px 0;
  border: 1px solid rgba(42, 66, 110, .1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 227, 228, .28), transparent 27%),
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(225,244,246,.64));
  box-shadow: var(--soft-shadow);
}

.one-view::before,
.one-view::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(74,50,162,.3) 22%, rgba(37,197,207,.62) 50%, rgba(74,50,162,.3) 78%, transparent);
}

.one-view::after { width: 1px; height: 68%; }

.pfm-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  padding: 28px;
  transform: translate(-50%, -50%);
  text-align: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #7859e4, #382387 47%, #14254e 100%);
  color: #fff;
  box-shadow: 0 25px 70px rgba(50, 38, 129, .34), inset 0 0 45px rgba(94,231,239,.17);
}

.pfm-core .pfm-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: -8px;
  color: #09204a;
  font-size: 20px;
  font-weight: 900;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #83eff1);
}

.pfm-core strong { font-size: 31px; line-height: 1; }
.pfm-core small { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.25; }

.core-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 326px;
  height: 326px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(37,197,207,.36);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255,255,255,.35), 0 0 60px rgba(37,197,207,.23);
}

.branch {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  width: 370px;
  min-height: 108px;
  padding: 20px 24px;
  border: 1px solid rgba(28, 51, 90, .13);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 35px rgba(21, 42, 75, .1);
}

.branch > span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--cyan);
  font-size: 25px;
  font-weight: 850;
}

.branch strong { color: var(--ink); font-size: 22px; align-self: end; }
.branch small { color: var(--muted); font-size: 17px; align-self: start; }
.branch--1 { top: 47px; left: 70px; }
.branch--2 { top: 47px; right: 70px; }
.branch--3 { bottom: 47px; left: 70px; }
.branch--4 { right: 70px; bottom: 47px; }

.quiet-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 34px 0;
}

.quiet-strip span {
  padding: 15px 12px;
  color: #43516f;
  font-size: 15px;
  font-weight: 760;
  text-align: center;
  letter-spacing: .075em;
  border: 1px solid rgba(36,74,103,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

/* 03 — value flow */
.value-flow {
  position: relative;
  height: 488px;
  margin: 27px 34px 0;
}

.value-step {
  position: absolute;
  top: 20px;
  width: 390px;
  min-height: 185px;
  padding: 27px 30px;
  border: 1px solid rgba(38, 54, 94, .13);
  border-radius: 27px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--soft-shadow);
}

.value-step:nth-of-type(1) { left: 10px; }
.value-step:nth-of-type(2) { left: 50%; transform: translateX(-50%); }
.slide.is-active .value-step:nth-of-type(2) { transform: translateX(-50%); }
.value-step:nth-of-type(3) { right: 10px; }
.value-step--end { top: 278px; width: 280px; min-height: 145px; padding: 22px 24px; }
.value-step--end:nth-of-type(4) { right: 314px; }
.value-step--end:nth-of-type(5) { right: 10px; }

.value-step span {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--violet);
  font-weight: 850;
  border-radius: 12px;
  background: #eeeafd;
}

.value-step h3 { margin: 24px 0 7px; color: var(--ink); font-size: 29px; }
.value-step p { margin: 0; color: var(--muted); font-size: 20px; }
.value-step--dark { color: #fff; background: linear-gradient(145deg, #111b40, #192859); }
.value-step--dark h3 { color: #fff; }
.value-step--dark p { color: rgba(255,255,255,.68); }
.value-step--core { border-color: rgba(89,67,183,.38); box-shadow: 0 20px 50px rgba(59, 42, 141, .21); }
.value-step--core span { color: #fff; background: linear-gradient(135deg, var(--violet), var(--cyan)); }
.value-step--end h3 { margin-top: 16px; font-size: 24px; }
.value-step--end p { font-size: 18px; }

.flow-arrow {
  position: absolute;
  top: 97px;
  width: 102px;
  height: 28px;
}

.flow-arrow:nth-of-type(1) { left: 411px; }
.flow-arrow:nth-of-type(2) { right: 411px; }

.flow-arrow::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.flow-arrow::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.flow-arrow i {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.flow-split {
  position: absolute;
  top: 205px;
  right: 148px;
  width: 304px;
  height: 57px;
  border-right: 2px solid rgba(73,50,162,.42);
  border-bottom: 2px solid rgba(73,50,162,.42);
  border-left: 2px solid rgba(73,50,162,.42);
  border-radius: 0 0 20px 20px;
}

.fact-band {
  position: absolute;
  right: 34px;
  bottom: 51px;
  left: 34px;
  display: grid;
  grid-template-columns: 190px 270px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  padding: 13px 22px;
  color: #dffbff;
  border-radius: 18px;
  background: linear-gradient(90deg, #111a3c, #1f3262);
}

.fact-band span { color: #73e8eb; font-size: 14px; font-weight: 850; letter-spacing: .11em; }
.fact-band strong { color: #fff; font-size: 20px; }
.fact-band p { margin: 0; color: rgba(255,255,255,.7); font-size: 17px; }

/* Visual slide base */
.slide--visual .slide__content { background: #090e2d; }
.visual-backdrop,
.portfolio-art,
.map-image {
  position: absolute;
  inset: 0;
}

.visual-backdrop img,
.portfolio-art img,
.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,10,34,.72), rgba(7,12,36,.30) 45%, rgba(7,12,36,.82));
}

.slide-head--on-dark { color: #fff; }
.slide-head--on-dark .slide-title { color: #fff; }

/* 04 — model */
.model-track {
  position: absolute;
  top: 258px;
  right: 70px;
  left: 70px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 105px 1fr 105px 1fr;
  align-items: center;
  gap: 0;
}

.model-node {
  position: relative;
  height: 258px;
  padding: 35px 28px 26px;
  color: #fff;
  text-align: left;
  border: 1px solid rgba(133, 237, 244, .28);
  border-radius: 28px;
  background: rgba(9, 15, 43, .77);
  box-shadow: inset 0 0 38px rgba(61, 91, 170, .13), 0 22px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
}

.model-node > b { color: rgba(132,240,243,.42); font-size: 54px; line-height: 1; }
.model-node h3 { margin: 31px 0 7px; font-size: 28px; }
.model-node p { margin: 0; color: rgba(255,255,255,.65); font-size: 20px; }
.model-node.is-future { border-style: dashed; opacity: .82; }

.node-state {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 13px;
  color: #bdfdff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  border: 1px solid rgba(95,226,230,.45);
  border-radius: 999px;
  background: rgba(35, 193, 199, .12);
}

.model-node.is-future .node-state { color: #decfff; border-color: rgba(150,120,240,.45); background: rgba(91,58,172,.2); }

.model-link {
  height: 3px;
  background: linear-gradient(90deg, rgba(56,197,207,.25), #5de3e6, rgba(56,197,207,.25));
  box-shadow: 0 0 14px rgba(55,216,224,.7);
}

.model-link.is-future {
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(154,128,238,.75) 0 11px, transparent 11px 22px);
  box-shadow: none;
}

.technology-rail {
  grid-column: 2 / 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  padding: 17px 25px;
  border: 1px solid rgba(124, 218, 231, .28);
  border-radius: 17px;
  background: rgba(9, 20, 50, .82);
}

.technology-rail span { color: #75e8eb; font-size: 15px; font-weight: 850; letter-spacing: .1em; }
.technology-rail strong { color: #fff; font-size: 18px; font-weight: 580; }

.status-legend {
  position: absolute;
  bottom: 58px;
  left: 72px;
  z-index: 4;
  display: flex;
  gap: 30px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.status-legend span { display: flex; align-items: center; gap: 9px; }
.status-legend i { width: 31px; height: 3px; border-radius: 10px; background: var(--cyan); }
.status-legend .legend-future { background: repeating-linear-gradient(90deg, #9076dc 0 6px, transparent 6px 11px); }

/* 05 — photo */
.photo-stage { background: #061127; }
.photo-fill,
.photo-fill img,
.photo-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-fill { margin: 0; }
.photo-fill img { object-fit: cover; }
.photo-overlay {
  background:
    linear-gradient(90deg, rgba(6,12,36,.94) 0%, rgba(7,15,39,.79) 34%, rgba(8,16,37,.14) 65%, rgba(8,15,34,.12)),
    linear-gradient(0deg, rgba(7,14,36,.56), transparent 35%);
}

.photo-copy {
  position: absolute;
  top: 102px;
  left: 73px;
  z-index: 3;
  width: 690px;
  color: #fff;
}

.photo-title { margin: 0; font-size: 68px; letter-spacing: -.045em; line-height: 1.02; }
.photo-lead { margin: 28px 0 0; color: rgba(255,255,255,.78); font-size: 27px; line-height: 1.35; }
.photo-points { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 40px; }
.photo-points span { padding: 12px 17px; color: #d5fdff; font-size: 16px; font-weight: 720; border: 1px solid rgba(114,235,239,.36); border-radius: 999px; background: rgba(20,58,80,.42); backdrop-filter: blur(8px); }
.photo-credit { position: absolute; right: 32px; bottom: 22px; z-index: 3; margin: 0; color: rgba(255,255,255,.66); font-size: 15px; }

/* 06 — qualification */
.qualification-flow {
  display: grid;
  grid-template-columns: 1fr 130px 1fr 130px 1fr;
  align-items: center;
  gap: 4px;
  margin: 56px 55px 0;
}

.qualification-flow article {
  min-height: 300px;
  padding: 38px 32px;
  border: 1px solid rgba(35,58,99,.12);
  border-radius: 29px;
  background: rgba(255,255,255,.8);
  box-shadow: var(--soft-shadow);
}

.qualification-flow article > span { color: var(--violet); font-size: 15px; font-weight: 850; letter-spacing: .12em; }
.qualification-flow h3 { margin: 30px 0 8px; font-size: 30px; }
.qualification-flow p { margin: 0; color: var(--muted); font-size: 20px; line-height: 1.35; }
.qualification-result { color: #fff; border-color: transparent !important; background: linear-gradient(145deg, #3e2d96, #1a2758) !important; }
.qualification-result h3 { color: #fff; }
.qualification-result p { color: rgba(255,255,255,.67); }
.qualification-result > span { color: #73edf0 !important; }

.qual-arrow svg { width: 100%; overflow: visible; }
.qual-arrow path { fill: none; stroke: url(#none); stroke: #59cfd5; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.line-icon {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(145deg, #e8e5fb, #d8f2f4);
}

.line-icon::before,
.line-icon::after { content: ""; position: absolute; }
.line-icon--person::before { top: 17px; left: 29px; width: 20px; height: 20px; border: 3px solid var(--violet); border-radius: 50%; }
.line-icon--person::after { bottom: 14px; left: 20px; width: 38px; height: 23px; border: 3px solid var(--violet); border-bottom: 0; border-radius: 22px 22px 0 0; }
.line-icon--gate::before { inset: 16px 20px; border: 3px solid var(--violet); border-radius: 7px; }
.line-icon--gate::after { top: 31px; left: 31px; width: 17px; height: 10px; transform: rotate(-45deg); border-bottom: 3px solid var(--cyan); border-left: 3px solid var(--cyan); }
.line-icon--capital { background: rgba(255,255,255,.12); }
.line-icon--capital::before { top: 17px; left: 16px; width: 46px; height: 38px; border: 3px solid #70e5e9; border-radius: 9px; }
.line-icon--capital::after { top: 28px; left: 29px; width: 18px; height: 18px; border: 3px solid #70e5e9; border-radius: 50%; }

.guardrail {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 20px;
  margin: 33px 55px 0;
  padding: 18px 24px;
  border: 1px solid rgba(73,50,162,.18);
  border-radius: 18px;
  background: rgba(239,236,252,.66);
}

.guardrail b { color: var(--violet); font-size: 14px; letter-spacing: .12em; }
.guardrail p { margin: 0; color: #46526e; font-size: 18px; }

/* 07 — license */
.license-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin: 70px 42px 0;
  padding-top: 28px;
}

.journey-line {
  position: absolute;
  top: 45px;
  right: 110px;
  left: 110px;
  height: 4px;
  background: repeating-linear-gradient(90deg, rgba(73,50,162,.18) 0 11px, transparent 11px 20px);
}

.journey-line span { display: block; width: 50%; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 16px rgba(37,197,207,.4); }
.journey-step { position: relative; z-index: 2; text-align: center; }
.journey-step > b { color: rgba(33,45,80,.34); font-size: 14px; letter-spacing: .12em; }
.journey-step > i { display: block; width: 35px; height: 35px; margin: 11px auto 31px; border: 8px solid #fff; border-radius: 50%; background: #cbd1df; box-shadow: 0 0 0 2px #cbd1df; }
.journey-step h3 { margin: 0; font-size: 25px; }
.journey-step p { min-height: 48px; margin: 8px auto 0; color: var(--muted); font-size: 18px; line-height: 1.3; }
.journey-step.is-done > i { background: var(--cyan); box-shadow: 0 0 0 2px var(--cyan), 0 0 25px rgba(37,197,207,.4); }
.journey-step.is-current > i { width: 43px; height: 43px; margin-top: 7px; margin-bottom: 27px; background: #fff; box-shadow: 0 0 0 4px var(--violet), 0 0 35px rgba(73,50,162,.45); }
.journey-step.is-current h3 { color: var(--violet); }
.journey-step.is-future { opacity: .6; }

.current-status {
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 74px 42px 0;
  padding: 23px 28px;
  color: #fff;
  border-radius: 21px;
  background: linear-gradient(90deg, #18234e, #3f2e94 65%, #1d5571);
  box-shadow: var(--shadow);
}

.current-status span { color: #89f1f2; font-size: 14px; font-weight: 850; letter-spacing: .12em; }
.current-status strong { font-size: 27px; }
.current-status p { margin: 0; color: rgba(255,255,255,.65); font-size: 17px; }

/* 08 — dual lane */
.dual-lane { margin: 42px 42px 0; }
.lane {
  display: grid;
  grid-template-columns: 250px 1fr 115px 1fr 115px 1fr;
  align-items: center;
  min-height: 195px;
  padding: 24px 28px;
  border: 1px solid rgba(39,58,93,.12);
  background: rgba(255,255,255,.7);
}
.lane:first-child { border-radius: 28px 28px 0 0; }
.lane:last-child { border-top: 0; border-radius: 0 0 28px 28px; background: linear-gradient(90deg, rgba(236,235,251,.72), rgba(221,244,246,.72)); }
.lane-label { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding-right: 24px; border-right: 1px solid rgba(36,55,91,.12); }
.lane-label span { color: var(--violet); font-size: 15px; font-weight: 850; letter-spacing: .1em; }
.lane-label small { margin-top: 8px; color: var(--muted); font-size: 15px; }
.lane-node { min-height: 107px; padding: 22px 24px; border: 1px solid rgba(32,55,91,.13); border-radius: 20px; background: #fff; box-shadow: 0 10px 25px rgba(30,44,78,.08); }
.lane-node b { display: block; color: var(--ink); font-size: 23px; }
.lane-node span { display: block; margin-top: 7px; color: var(--muted); font-size: 16px; }
.lane-node--future { border-style: dashed; background: rgba(255,255,255,.52); }
.lane-node--pfm { color: #fff; background: linear-gradient(135deg, #46319d, #23346d); }
.lane-node--pfm b { color: #fff; }
.lane-node--pfm span { color: rgba(255,255,255,.66); }
.lane > i { display: block; height: 3px; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.lane > i.dashed { height: 2px; background: repeating-linear-gradient(90deg, var(--violet) 0 8px, transparent 8px 16px); }

.model-caveat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 42px 0;
}
.model-caveat span { padding: 15px 12px; color: #4d5875; font-size: 16px; font-weight: 650; text-align: center; border-radius: 14px; background: rgba(255,255,255,.62); }

/* 09 — technology */
.split-visual { display: grid; grid-template-columns: .92fr 1.08fr; }
.split-copy { position: relative; z-index: 3; padding: 65px 35px 55px 58px; background: linear-gradient(90deg, #fbffff 78%, rgba(251,255,255,.72), transparent); }
.split-copy .slide-title { max-width: 690px; font-size: 59px; }
.split-copy .slide-lead { max-width: 650px; font-size: 24px; }
.tech-art { position: relative; z-index: 1; min-width: 0; margin: 0; overflow: hidden; background: #090f2c; }
.tech-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.tech-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(249,254,255,.82), transparent 24%); }

.tech-modules { display: grid; gap: 12px; margin-top: 37px; }
.tech-modules article { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 15px; padding: 17px 20px; border: 1px solid rgba(40,61,98,.12); border-radius: 17px; background: rgba(255,255,255,.78); }
.tech-modules article > span { grid-row: 1/3; align-self: center; color: var(--cyan); font-size: 19px; font-weight: 850; }
.tech-modules h3 { margin: 0; font-size: 22px; }
.tech-modules p { margin: 4px 0 0; color: var(--muted); font-size: 16px; }
.tech-modules .tech-plan { border-style: dashed; }
.build-status { display: flex; align-items: center; gap: 13px; margin-top: 27px; color: var(--muted); }
.build-status i { width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.build-status span { font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.build-status strong { color: var(--ink); font-size: 18px; }

/* 10 — index */
.index-story { display: grid; grid-template-columns: 1.25fr .75fr; gap: 31px; margin: 35px 42px 0; }
.index-chart { position: relative; height: 425px; padding: 30px 65px 37px; overflow: hidden; border: 1px solid rgba(35,57,96,.12); border-radius: 30px; background: rgba(255,255,255,.72); box-shadow: var(--soft-shadow); }
.chart-grid { position: absolute; inset: 28px 48px 55px; display: flex; flex-direction: column; justify-content: space-between; }
.chart-grid span { height: 1px; background: rgba(31,56,92,.09); }
.index-bar { position: absolute; bottom: 58px; width: 175px; text-align: center; }
.index-bar--base { left: 190px; }
.index-bar--growth { right: 190px; }
.index-bar i { display: block; width: 100%; margin: 10px 0 13px; border-radius: 18px 18px 4px 4px; background: linear-gradient(180deg, #9b8be3, #49329f); box-shadow: 0 15px 35px rgba(73,50,162,.22); transform-origin: bottom; }
.index-bar--base i { height: 90px; }
.index-bar--growth i { height: 284px; background: linear-gradient(180deg, #68e5e6, #20999e); box-shadow: 0 15px 42px rgba(37,197,207,.28); }
.index-bar b { color: var(--ink); font-size: 46px; line-height: 1; }
.index-bar span { display: block; color: var(--ink); font-size: 20px; font-weight: 750; }
.index-bar small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; letter-spacing: .12em; }
.growth-badge { position: absolute; top: 39px; right: 54px; padding: 13px 18px; color: #fff; font-size: 20px; font-weight: 800; border-radius: 999px; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 12px 30px rgba(53,62,157,.24); }

.result-shift { display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding: 34px; color: #fff; border-radius: 30px; background: linear-gradient(150deg, #111b40, #24366c); box-shadow: var(--shadow); }
.result-shift > p { margin: 0 0 24px; color: #85e9ec; font-size: 14px; font-weight: 850; letter-spacing: .13em; }
.result-shift > div { display: flex; align-items: center; justify-content: space-between; padding: 20px 23px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; }
.result-shift > div span { color: rgba(255,255,255,.6); font-size: 18px; }
.result-shift > div b { font-size: 22px; }
.result-shift > i { align-self: center; width: 2px; height: 43px; background: linear-gradient(#df5e83, #5de3e6); }
.result-shift .is-positive { border-color: rgba(94,226,229,.35); background: rgba(40,171,174,.12); }
.result-shift .is-positive b { color: #77edef; }
.result-shift > small { margin-top: 21px; color: rgba(255,255,255,.58); font-size: 16px; text-align: center; }
.data-rule { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 21px 42px 0; }
.data-rule > * { padding: 10px 16px; color: #526078; font-size: 14px; border-radius: 999px; background: rgba(255,255,255,.66); }
.data-rule strong { color: var(--violet); }

/* 11 — financials */
.financial-compare { display: grid; grid-template-columns: 1fr 110px 1fr; align-items: stretch; gap: 0; margin: 35px 58px 0; }
.period-card { min-height: 470px; padding: 31px 34px 27px; border: 1px solid rgba(37,60,96,.12); border-radius: 30px; background: rgba(255,255,255,.8); box-shadow: var(--soft-shadow); }
.period-card > header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; padding-bottom: 22px; border-bottom: 1px solid rgba(38,58,95,.1); }
.period-card > header span { color: var(--ink); font-size: 35px; font-weight: 820; }
.period-card > header b { padding: 9px 13px; color: var(--violet); font-size: 13px; letter-spacing: .1em; border-radius: 999px; background: #ece9fb; }
.metric { display: grid; grid-template-columns: 1fr auto auto; align-items: baseline; gap: 8px; padding: 17px 2px; border-bottom: 1px solid rgba(38,58,95,.08); }
.metric span { color: var(--muted); font-size: 19px; }
.metric strong { color: var(--ink); font-size: 43px; letter-spacing: -.035em; }
.metric small { color: var(--muted); font-size: 17px; }
.metric--accent strong { color: var(--violet); }
.period-card > footer { margin-top: 22px; color: #65718a; font-size: 15px; }
.period-card--quarter { border-color: rgba(37,197,207,.25); background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(220,246,247,.64)); }
.period-card--quarter > header b { color: #096f74; background: #d8f5f5; }
.period-card--quarter .metric--accent strong { color: #168f94; }
.period-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); }
.period-divider span { display: grid; place-items: center; width: 56px; height: 56px; color: var(--violet); font-size: 32px; font-weight: 700; border: 1px solid rgba(73,50,162,.15); border-radius: 50%; background: rgba(255,255,255,.7); }
.period-divider small { margin-top: 12px; font-size: 11px; font-weight: 800; line-height: 1.3; text-align: center; letter-spacing: .09em; }

/* 12 — analysis */
.split-visual--reverse { grid-template-columns: 1.05fr .95fr; background: #fff !important; }
.analysis-art { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #07102d; }
.analysis-art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.analysis-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,13,40,.06), rgba(7,13,40,.08) 70%, rgba(255,255,255,.94)); }
.analysis-art figcaption { position: absolute; bottom: 27px; left: 29px; z-index: 2; padding: 8px 12px; color: rgba(255,255,255,.72); font-size: 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(7,12,35,.5); }
.analysis-copy { position: relative; z-index: 3; padding: 60px 52px 55px 8px; }
.analysis-copy .slide-title { max-width: 740px; font-size: 58px; }
.decision-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 38px; }
.decision-steps article { display: grid; grid-template-columns: 47px 1fr; grid-template-rows: auto auto; column-gap: 15px; padding: 19px 20px; border: 1px solid rgba(34,56,94,.12); border-radius: 18px; background: rgba(255,255,255,.8); box-shadow: 0 10px 24px rgba(30,43,76,.07); }
.decision-steps span { grid-row: 1/3; align-self: center; color: var(--cyan); font-size: 21px; font-weight: 850; }
.decision-steps b { font-size: 21px; }
.decision-steps small { margin-top: 4px; color: var(--muted); font-size: 15px; }
.test-example { margin-top: 22px; padding: 19px 22px; color: #fff; border-radius: 19px; background: linear-gradient(115deg, #1a2657, #3e2e91); }
.test-example > span { color: #7be9eb; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.test-example p { display: inline-block; margin: 13px 27px 0 0; color: rgba(255,255,255,.7); font-size: 16px; }
.test-example p b { color: #fff; }

/* 13 — map */
.map-stage { background: #06102d; }
.map-image img { object-position: center 48%; }
.map-mask { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,34,.88) 0%, rgba(5,10,34,.56) 33%, rgba(5,10,34,.04) 67%, rgba(5,10,34,.42) 100%), linear-gradient(0deg, rgba(5,10,34,.82) 0%, transparent 33%, rgba(5,10,34,.2) 100%); }
.map-head { position: absolute; top: 60px; left: 62px; z-index: 3; max-width: 700px; }
.map-title { margin: 0; color: #fff; font-size: 67px; letter-spacing: -.044em; line-height: 1.02; }
.map-callout { position: absolute; z-index: 4; min-width: 238px; padding: 17px 20px; color: #fff; border: 1px solid rgba(123,233,238,.35); border-radius: 17px; background: rgba(8,18,48,.78); box-shadow: 0 18px 42px rgba(0,0,0,.28); backdrop-filter: blur(7px); }
.map-callout::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #6ae4e7; box-shadow: 0 0 18px #6ae4e7; }
.map-callout span { color: #7be9eb; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.map-callout strong { display: block; margin-top: 6px; font-size: 25px; }
.map-callout p { margin: 4px 0 0; color: rgba(255,255,255,.64); font-size: 15px; }
.map-callout--poland { top: 394px; left: 733px; }
.map-callout--poland::after { right: -49px; bottom: -47px; }
.map-callout--czech { top: 572px; left: 525px; }
.map-callout--czech::after { right: -98px; top: -33px; }
.map-callout--tests { right: 70px; bottom: 153px; min-width: 340px; }
.map-callout--tests::after { top: -72px; left: 78px; background: #9d81ed; box-shadow: 0 0 18px #9d81ed; }
.map-legend { position: absolute; bottom: 72px; left: 64px; z-index: 4; display: flex; gap: 22px; color: rgba(255,255,255,.74); font-size: 14px; }
.map-legend span { display: flex; align-items: center; gap: 8px; }
.map-legend i { width: 11px; height: 11px; border-radius: 50%; }
.legend-base { background: #69e5e7; box-shadow: 0 0 12px #69e5e7; }
.legend-direction { background: #fff; box-shadow: 0 0 0 2px #69e5e7; }
.legend-test { background: #9d81ed; box-shadow: 0 0 12px #9d81ed; }

/* 14 — regulatory roadmap */
.regulatory-roadmap { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin: 75px 33px 0; padding-top: 28px; }
.road-line { position: absolute; top: 45px; right: 75px; left: 75px; height: 3px; background: repeating-linear-gradient(90deg, rgba(75,55,160,.3) 0 10px, transparent 10px 18px); }
.road-line span { display: block; width: 40%; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.road-line i { position: absolute; top: -13px; left: 40%; width: 29px; height: 29px; transform: translateX(-50%) rotate(45deg); border: 3px solid #fff; background: var(--violet); box-shadow: 0 0 0 2px var(--violet), 0 0 25px rgba(73,50,162,.35); }
.road-point { position: relative; z-index: 2; min-height: 280px; padding: 85px 20px 22px; text-align: center; border: 1px solid rgba(36,57,94,.12); border-radius: 24px; background: rgba(255,255,255,.72); }
.road-point::before { content: ""; position: absolute; top: 0; left: 50%; width: 31px; height: 31px; transform: translate(-50%, -1px); border: 7px solid #fff; border-radius: 50%; background: #c7ccda; box-shadow: 0 0 0 2px #c7ccda; }
.road-point > b { position: absolute; top: 44px; left: 0; width: 100%; color: rgba(45,56,88,.34); font-size: 13px; letter-spacing: .12em; }
.road-point h3 { margin: 0; font-size: 24px; }
.road-point p { margin: 9px 0 0; color: var(--muted); font-size: 16px; line-height: 1.3; }
.road-point.is-done::before { background: var(--cyan); box-shadow: 0 0 0 2px var(--cyan); }
.road-point.is-current { color: #fff; border-color: transparent; background: linear-gradient(150deg, #39268b, #202c61); box-shadow: var(--shadow); }
.road-point.is-current::before { background: #fff; box-shadow: 0 0 0 3px var(--violet), 0 0 23px rgba(73,50,162,.5); }
.road-point.is-current p { color: rgba(255,255,255,.68); }
.road-point.is-current > b { color: rgba(255,255,255,.42); }
.road-point.is-gate { border: 2px dashed rgba(73,50,162,.38); }
.road-point.is-future, .road-point.is-option { opacity: .62; }
.road-point.is-option { border-style: dashed; }
.regulatory-note { display: grid; grid-template-columns: 105px 1fr auto; align-items: center; gap: 18px; margin: 30px 33px 0; padding: 19px 23px; color: #fff; border-radius: 18px; background: #14204a; }
.regulatory-note span { color: #78e8eb; font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.regulatory-note strong { font-size: 23px; }
.regulatory-note p { margin: 0; color: rgba(255,255,255,.64); font-size: 16px; }

/* 15 — portfolio */
.portfolio-stage { background: #07102e; }
.portfolio-art img { object-position: center; }
.portfolio-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,11,35,.92) 0, rgba(6,11,35,.78) 45%, rgba(6,11,35,.18) 68%, rgba(6,11,35,.56)), linear-gradient(0deg, rgba(5,10,32,.86), transparent 46%); }
.portfolio-head { position: absolute; top: 56px; left: 60px; z-index: 3; width: 760px; }
.portfolio-title { margin: 0; color: #fff; font-size: 63px; line-height: 1.03; letter-spacing: -.044em; }
.portfolio-lead { margin: 21px 0 0; color: rgba(255,255,255,.65); font-size: 23px; line-height: 1.36; }
.portfolio-core { position: absolute; top: 365px; left: 60px; z-index: 4; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 650px; padding: 23px; border: 1px solid rgba(104,231,235,.3); border-radius: 23px; background: rgba(8,18,49,.78); backdrop-filter: blur(8px); }
.portfolio-core span { grid-column: 1/3; margin-bottom: 3px; color: #71e7ea; font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.portfolio-core b { padding: 12px 14px; color: #fff; font-size: 16px; border-radius: 11px; background: rgba(255,255,255,.08); }
.portfolio-groups { position: absolute; right: 54px; bottom: 72px; z-index: 4; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; width: 822px; }
.portfolio-groups article { min-height: 112px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: rgba(8,17,44,.77); backdrop-filter: blur(8px); }
.portfolio-groups span { color: #7be9eb; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.portfolio-groups p { margin: 10px 0 0; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.35; }

/* 16 — dividends */
.dividend-story { display: grid; grid-template-columns: 1fr 160px 1fr; align-items: stretch; gap: 0; margin: 48px 65px 0; }
.dividend-card { min-height: 385px; padding: 34px 40px; border: 1px solid rgba(37,60,96,.13); border-radius: 31px; background: rgba(255,255,255,.82); box-shadow: var(--soft-shadow); }
.dividend-card--primary { color: #fff; border-color: transparent; background: linear-gradient(145deg, #1a2659, #49319d); box-shadow: var(--shadow); }
.dividend-year { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(37,57,92,.12); }
.dividend-card--primary .dividend-year { border-color: rgba(255,255,255,.14); }
.dividend-year span { color: var(--muted); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.dividend-card--primary .dividend-year span { color: #82e9ec; }
.dividend-year b { font-size: 27px; }
.dividend-label { margin: 30px 0 8px; color: var(--muted); font-size: 21px; }
.dividend-card--primary .dividend-label { color: rgba(255,255,255,.65); }
.dividend-value { display: block; margin-top: 17px; color: var(--ink); font-size: 79px; line-height: 1; letter-spacing: -.055em; }
.dividend-card--primary .dividend-value { color: #fff; }
.dividend-value small { font-size: 24px; letter-spacing: 0; }
.dividend-status { display: flex; align-items: center; gap: 10px; margin-top: 39px; color: var(--muted); font-size: 16px; }
.dividend-card--primary .dividend-status { color: rgba(255,255,255,.7); }
.dividend-status i { width: 10px; height: 10px; border-radius: 50%; background: #78e8eb; box-shadow: 0 0 13px #78e8eb; }
.dividend-status--manager i { background: var(--violet); box-shadow: 0 0 13px rgba(73,50,162,.5); }
.dividend-arrow { display: flex; align-items: center; justify-content: center; }
.dividend-arrow span { display: grid; place-items: center; width: 103px; height: 103px; color: var(--violet); font-size: 12px; font-weight: 850; line-height: 1.3; text-align: center; letter-spacing: .1em; border: 1px solid rgba(73,50,162,.18); border-radius: 50%; background: rgba(255,255,255,.72); }
.dividend-caveat { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 25px 65px 0; padding: 17px 22px; border-radius: 17px; background: rgba(255,255,255,.68); }
.dividend-caveat strong { color: var(--ink); font-size: 18px; }
.dividend-caveat span { color: var(--muted); font-size: 17px; }

/* 17 — shareholding */
.shareholding { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; margin: 47px 56px 0; }
.share-bar { display: flex; height: 395px; overflow: hidden; border: 13px solid rgba(255,255,255,.78); border-radius: 30px; background: #e9edf3; box-shadow: var(--shadow); }
.share-bar > span { position: relative; display: block; transition: width .8s var(--ease); }
.share-bar > span i { position: absolute; top: 50%; left: 50%; color: #fff; font-size: 33px; font-weight: 820; font-style: normal; transform: translate(-50%, -50%); white-space: nowrap; }
.share-a { width: 47.386%; flex: 0 0 47.386%; background: linear-gradient(180deg, #4932a2, #2e216d); }
.share-b { width: 47.386%; flex: 0 0 47.386%; background: linear-gradient(180deg, #26c6cf, #14787e); }
.share-c { width: 5.228%; flex: 0 0 5.228%; background: #9ea9bd; }
.share-c i { display: none; }
.share-list { display: flex; flex-direction: column; gap: 9px; }
.share-list article { display: grid; grid-template-columns: 17px 1fr; align-items: center; gap: 14px; min-height: 68px; padding: 13px 17px; border: 1px solid rgba(36,58,94,.1); border-radius: 15px; background: rgba(255,255,255,.72); }
.share-list article > i { width: 12px; height: 12px; border-radius: 50%; }
.share-list article > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.share-list strong { color: var(--ink); font-size: 17px; }
.share-list span { color: var(--ink); font-size: 19px; font-weight: 820; }
.share-list .share-minor { min-height: 59px; }
.share-list .share-minor strong { font-size: 15px; }
.share-list .share-minor span { font-size: 17px; }
.dot-a { background: var(--violet); }
.dot-b { background: var(--cyan); }
.dot-c { background: #9ea9bd; }
.share-date { display: flex; align-items: baseline; gap: 18px; margin: 26px 56px 0; }
.share-date span { color: var(--violet); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.share-date strong { color: var(--ink); font-size: 23px; }
.share-date p { margin: 0; color: var(--muted); font-size: 16px; }

/* 18 — packages */
.slide-head--packages { display: flex; align-items: flex-end; justify-content: space-between; max-width: none; padding-top: 8px; }
.slide-head--packages .slide-title { font-size: 54px; }
.package-instruction { margin: 0 0 6px; color: var(--muted); font-size: 16px; }
.package-instruction b { color: var(--violet); }
.packages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; margin: 35px 34px 0; }
.package-card { position: relative; min-height: 174px; padding: 22px 18px; color: var(--ink); text-align: left; border: 1px solid rgba(35,57,94,.13); border-radius: 20px; background: rgba(255,255,255,.74); cursor: pointer; box-shadow: 0 10px 25px rgba(25,42,73,.07); transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.package-card:hover { transform: translateY(-4px); border-color: rgba(73,50,162,.34); }
.package-card:focus-visible { outline: 4px solid rgba(37,197,207,.35); outline-offset: 3px; }
.package-card.is-selected { color: #fff; border-color: transparent; background: linear-gradient(145deg, #172451, #49329c); box-shadow: 0 18px 42px rgba(58,43,137,.23); }
.package-card > span { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 27px; height: 27px; color: var(--violet); font-size: 13px; font-weight: 850; border-radius: 9px; background: #eeeafd; }
.package-card.is-selected > span { color: var(--ink); background: #74e8eb; }
.package-card > b { display: block; color: var(--violet); font-size: 13px; letter-spacing: .1em; }
.package-card.is-selected > b { color: #78e9eb; }
.package-card > strong { display: block; margin-top: 34px; font-size: 25px; letter-spacing: -.02em; }
.package-card > small { display: block; margin-top: 8px; color: var(--muted); font-size: 16px; }
.package-card.is-selected > small { color: rgba(255,255,255,.64); }
.benefit-panel { display: grid; grid-template-columns: 380px 1fr; align-items: center; gap: 35px; min-height: 210px; margin: 20px 34px 0; padding: 27px 31px; border: 1px solid rgba(73,50,162,.15); border-radius: 23px; background: linear-gradient(105deg, rgba(237,234,251,.78), rgba(223,246,247,.64)); }
.benefit-panel > div span { color: var(--violet); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.benefit-panel h3 { margin: 10px 0 0; font-size: 27px; }
.benefit-panel ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; margin: 0; padding: 0; list-style: none; }
.benefit-panel li { position: relative; padding-left: 25px; color: #46536e; font-size: 17px; line-height: 1.35; }
.benefit-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.package-warning { display: flex; align-items: center; gap: 18px; margin: 18px 34px 0; padding: 13px 18px; border: 1px solid rgba(209,76,118,.17); border-radius: 14px; background: rgba(255,244,248,.72); }
.package-warning strong { color: #9d3152; font-size: 16px; }
.package-warning span { color: #6c5362; font-size: 15px; }

/* 19 — process */
.nda-flow { display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr 56px 1fr 56px 1fr; align-items: center; margin: 65px 40px 0; }
.nda-flow article { position: relative; min-height: 290px; padding: 32px 20px 25px; text-align: center; border: 1px solid rgba(35,57,94,.12); border-radius: 25px; background: rgba(255,255,255,.78); box-shadow: var(--soft-shadow); }
.nda-flow article > span { position: absolute; top: 17px; right: 18px; color: rgba(73,50,162,.42); font-size: 14px; font-weight: 850; }
.nda-flow article h3 { margin: 29px 0 7px; font-size: 25px; }
.nda-flow article p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.3; }
.nda-flow > div { height: 3px; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.nda-icon { position: relative; display: block; width: 82px; height: 82px; margin: 23px auto 0; border-radius: 25px; background: linear-gradient(145deg, #eeeafd, #daf4f5); }
.nda-icon::before,
.nda-icon::after { content: ""; position: absolute; }
.nda-icon--form::before { inset: 18px 21px; border: 3px solid var(--violet); border-radius: 5px; }
.nda-icon--form::after { top: 30px; left: 29px; width: 25px; height: 3px; border-top: 3px solid var(--cyan); border-bottom: 3px solid var(--cyan); box-shadow: 0 9px 0 var(--cyan); }
.nda-icon--contact::before { top: 18px; left: 31px; width: 20px; height: 20px; border: 3px solid var(--violet); border-radius: 50%; }
.nda-icon--contact::after { bottom: 15px; left: 22px; width: 38px; height: 22px; border: 3px solid var(--violet); border-bottom: 0; border-radius: 21px 21px 0 0; }
.nda-icon--lock::before { right: 19px; bottom: 17px; left: 19px; height: 36px; border: 3px solid var(--violet); border-radius: 7px; }
.nda-icon--lock::after { top: 15px; left: 28px; width: 26px; height: 28px; border: 3px solid var(--cyan); border-bottom: 0; border-radius: 16px 16px 0 0; }
.nda-icon--data::before { top: 19px; right: 19px; bottom: 19px; left: 19px; border-left: 4px solid var(--violet); border-bottom: 4px solid var(--violet); }
.nda-icon--data::after { top: 29px; left: 27px; width: 31px; height: 22px; transform: skewY(-25deg); border-top: 4px solid var(--cyan); border-right: 4px solid var(--cyan); }
.nda-icon--talk::before { top: 19px; left: 17px; width: 48px; height: 36px; border: 3px solid var(--violet); border-radius: 14px; }
.nda-icon--talk::after { bottom: 18px; left: 29px; width: 17px; height: 17px; transform: rotate(45deg); border-right: 3px solid var(--violet); border-bottom: 3px solid var(--violet); background: #e6eff8; }
.nda-statement { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 38px 40px 0; padding: 18px 23px; color: #fff; border-radius: 18px; background: linear-gradient(90deg, #16224e, #3f2d93); }
.nda-statement > i { display: grid; place-items: center; width: 43px; height: 43px; flex: none; font-style: normal; border-radius: 50%; background: var(--cyan); }
.nda-statement p { display: flex; align-items: center; gap: 20px; margin: 0; }
.nda-statement strong { font-size: 20px; }
.nda-statement span { color: rgba(255,255,255,.65); font-size: 16px; }

/* 20 — close */
.closing-layout { display: grid; grid-template-columns: 1fr 520px; align-items: center; gap: 90px; padding: 65px 95px 65px 100px; background: radial-gradient(circle at 80% 45%, rgba(57,198,207,.28), transparent 28%), linear-gradient(135deg, rgba(255,255,255,.77), rgba(222,245,246,.68)); }
.closing-copy { position: relative; z-index: 2; }
.closing-title { max-width: 880px; margin: 0; color: var(--ink); font-size: 85px; line-height: .98; letter-spacing: -.055em; }
.closing-lead { max-width: 790px; margin: 29px 0 0; color: var(--muted); font-size: 28px; line-height: 1.36; }
.closing-contact { display: grid; grid-template-columns: 110px 1fr; gap: 8px 20px; margin-top: 47px; }
.closing-contact span { align-self: center; color: var(--violet); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.closing-contact strong { color: var(--ink); font-size: 24px; }
.closing-disclaimer { display: inline-block; margin-top: 39px; padding: 14px 18px; color: #526078; font-size: 16px; border: 1px solid rgba(37,64,99,.12); border-radius: 13px; background: rgba(255,255,255,.65); }
.qr-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 38px; border: 1px solid rgba(255,255,255,.85); border-radius: 35px; background: rgba(255,255,255,.84); box-shadow: 0 35px 85px rgba(36,44,93,.21); }
.qr-wrap img { position: relative; z-index: 2; width: 390px; height: 390px; padding: 13px; border-radius: 20px; background: #fff; }
.qr-glow { position: absolute; top: 93px; left: 50%; width: 340px; height: 340px; transform: translateX(-50%); border-radius: 50%; background: rgba(52,203,210,.34); filter: blur(55px); }
.qr-wrap strong { margin-top: 25px; color: var(--violet); font-size: 17px; letter-spacing: .12em; }
.qr-wrap > span { margin-top: 7px; color: var(--muted); font-size: 15px; }

/* Deck chrome */
.deck-chrome { position: absolute; inset: 0; z-index: 50; pointer-events: none; opacity: 0; transition: opacity .22s ease; }
.stage.is-chrome-visible .deck-chrome,
.deck-chrome:focus-within { opacity: 1; }
.chrome-button,
.chrome-tools button { pointer-events: auto; color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(7,13,37,.68); box-shadow: 0 10px 28px rgba(0,0,0,.18); backdrop-filter: blur(8px); cursor: pointer; }
.chrome-button { position: absolute; top: 50%; display: grid; place-items: center; width: 52px; height: 88px; margin-top: -44px; border-radius: 18px; }
.chrome-button span { font-size: 29px; }
.chrome-button--prev { left: 18px; }
.chrome-button--next { right: 18px; }
.chrome-button:disabled { opacity: .25; cursor: default; }
.chrome-tools { position: absolute; top: 62px; left: 50px; display: flex; gap: 8px; }
.chrome-tools button { width: 38px; height: 38px; border-radius: 12px; font-size: 14px; font-weight: 850; }
.chrome-button:focus-visible,
.chrome-tools button:focus-visible { outline: 4px solid rgba(55,213,221,.45); outline-offset: 3px; }

.slide-counter { position: absolute; top: 70px; right: 59px; z-index: 40; display: flex; align-items: center; gap: 9px; color: #33425f; font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.slide-counter i { width: 27px; height: 1px; background: rgba(35,57,90,.35); }
.progress { position: absolute; right: 78px; bottom: 60px; left: 78px; z-index: 41; height: 3px; overflow: hidden; border-radius: 10px; background: rgba(21,49,82,.08); }
.progress span { display: block; width: 5%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--cyan)); transition: width .42s var(--ease); }

.notes-overlay { position: absolute; top: 115px; right: 70px; bottom: 76px; z-index: 80; width: 650px; padding: 43px 42px 82px; overflow: auto; color: #eef7ff; border: 1px solid rgba(121,232,237,.24); border-radius: 30px; background: rgba(7,13,38,.95); box-shadow: 0 35px 100px rgba(0,0,0,.46); backdrop-filter: blur(16px); transform: translateX(calc(100% + 100px)); transition: transform .38s var(--ease); }
.notes-overlay.is-open { transform: translateX(0); }
.notes-overlay > button { position: absolute; top: 18px; right: 20px; display: grid; place-items: center; width: 39px; height: 39px; color: #fff; font-size: 26px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; cursor: pointer; }
.notes-overlay h2 { margin: 0 45px 26px 0; color: #fff; font-size: 34px; }
.notes-overlay p { margin: 0 0 18px; color: rgba(239,248,255,.74); font-size: 20px; line-height: 1.5; }
.notes-overlay p b { color: #76e8eb; }
.notes-overlay footer { position: absolute; right: 42px; bottom: 27px; left: 42px; padding-top: 17px; color: rgba(255,255,255,.46); font-size: 14px; border-top: 1px solid rgba(255,255,255,.12); }

.help-hint { position: absolute; bottom: 74px; left: 50%; z-index: 70; padding: 11px 17px; color: #eafbff; font-size: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(8,14,39,.8); box-shadow: 0 12px 32px rgba(0,0,0,.22); opacity: 0; transform: translate(-50%, 12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.help-hint.is-visible { opacity: 1; transform: translate(-50%, 0); }

.noscript { position: fixed; inset: auto 20px 20px; z-index: 100; margin: 0; padding: 14px 18px; color: #fff; background: #8a2448; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-frame { display: none !important; }
}

@media print {
  html, body { width: auto; height: auto; overflow: visible; background: #fff; }
  .viewport { position: static; display: block; background: #fff; }
  .stage { position: relative; top: auto; left: auto; width: 1920px; height: auto; transform: none !important; box-shadow: none; }
  .slides { position: static; }
  .slide { position: relative; display: block !important; width: 1920px; height: 1080px; break-after: page; }
  .deck-chrome, .slide-counter, .progress, .notes-overlay, .help-hint { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
