:root {
  --black: #050505;
  --coal: #0c0e12;
  --panel: #12161c;
  --white: #f7f7f8;
  --muted: #aeb5c0;
  --ink: #101217;
  --line: rgba(255, 255, 255, 0.15);
  --line-light: #d8dee7;
  --blue: #0078ff;
  --sky: #49beff;
  --green: #3dde9b;
  --shell: min(1320px, calc(100% - 80px));
  font-family: Inter, Arial, Helvetica, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 16px; background: #fff; color: #000; font-weight: 800; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.report-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(18px);
}
.report-nav { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.report-brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1.05; }
.report-brand img { width: 32px; height: 38px; object-fit: contain; }
.report-brand strong { display: block; font-size: 15px; font-weight: 850; }
.report-brand small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.back-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid var(--sky); font-size: 11px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.back-link span { transition: transform 180ms ease; }
.back-link:hover span { transform: translateX(-5px); }
.report-actions { display: flex; align-items: center; gap: 20px; }
.report-header-cta { display: inline-flex; min-height: 42px; align-items: center; gap: 12px; padding: 0 15px; background: var(--blue); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; transition: background 180ms ease, transform 180ms ease; }
.report-header-cta:hover { background: #2398ff; transform: translateY(-2px); }

.report-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 38px;
  background: radial-gradient(circle at 86% 14%, rgba(0, 120, 255, 0.25), transparent 29%), linear-gradient(135deg, #09131f 0%, #05070a 50%, #050505 100%);
}
.report-hero::after { position: absolute; right: -12%; bottom: -62%; width: 58vw; aspect-ratio: 1; border: 1px solid rgba(73, 190, 255, 0.16); border-radius: 50%; content: ""; box-shadow: 0 0 0 80px rgba(73, 190, 255, 0.035), 0 0 0 160px rgba(73, 190, 255, 0.025); }
.report-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.eyebrow { margin: 0 0 14px; color: var(--sky); font-size: 10px; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.report-hero h1 { max-width: 920px; margin: 0; font-size: clamp(48px, 7.2vw, 104px); line-height: 0.88; letter-spacing: -0.07em; text-wrap: balance; }
.report-summary { max-width: 410px; margin: 0 0 8px; color: #c9ced6; font-size: clamp(16px, 1.5vw, 19px); font-weight: 600; }

.deck-section { padding: 24px 0 64px; background: linear-gradient(180deg, #050505, #080d14); }
.report-deck { border: 1px solid var(--line); background: #0b0e13; box-shadow: 0 36px 110px rgba(0, 0, 0, 0.5); }
.report-slides { display: grid; overflow: hidden; }
.report-slide {
  --slide-offset: 7%;
  grid-area: 1 / 1;
  display: grid;
  min-height: min(670px, calc(100vh - 212px));
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(var(--slide-offset));
  transition: opacity 520ms cubic-bezier(.22,.8,.24,1), transform 680ms cubic-bezier(.22,.8,.24,1), visibility 0s linear 680ms;
}
.report-slide.is-active { z-index: 2; opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
.slide-visual { position: relative; overflow: hidden; min-height: 100%; background: #e9eef4; }
.slide-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 18, 36, 0.02), rgba(0, 18, 36, 0.2)); content: ""; pointer-events: none; }
.slide-visual.dark { background: #07121d; }
.slide-visual.light { background: #f3f1ef; }
.slide-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform 1.1s cubic-bezier(.22,.8,.24,1); }
.slide-visual.contain img { padding: clamp(26px, 4vw, 64px); object-fit: contain; }
.report-slide.is-active .slide-visual img { transform: scale(1.025); }
.slide-content { display: flex; min-width: 0; padding: clamp(38px, 5.8vw, 82px); flex-direction: column; justify-content: center; background: #f7f7f8; color: var(--ink); }
.slide-content.dark { background: #0d1117; color: #fff; }
.slide-kicker { margin-bottom: 30px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.slide-content.dark .slide-kicker { color: var(--sky); }
.slide-content h2 { max-width: 760px; margin: 0 0 22px; font-size: clamp(38px, 5vw, 70px); line-height: 0.94; letter-spacing: -0.06em; text-wrap: balance; }
.slide-lead { max-width: 740px; margin: 0 0 28px; color: #3e4755; font-size: clamp(17px, 1.8vw, 22px); font-weight: 650; line-height: 1.48; }
.slide-content.dark .slide-lead { color: #bdc5cf; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { padding: 8px 10px; border: 1px solid #8bbce9; color: #10558f; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.slide-content.dark .tag-row span { border-color: #32516d; color: #8bd4ff; }
.quote-panel { padding: 26px; border-left: 4px solid var(--blue); background: #e8f3ff; color: #12334f; font-size: clamp(20px, 2.2vw, 29px); font-weight: 850; line-height: 1.18; }
.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.mini-card { padding: 18px; border: 1px solid var(--line-light); background: #fff; }
.slide-content.dark .mini-card { border-color: #26303c; background: #141a22; }
.mini-card strong { display: block; margin-bottom: 7px; color: #0767c1; font-size: 15px; font-weight: 900; }
.slide-content.dark .mini-card strong { color: var(--sky); }
.mini-card p { margin: 0; color: #4d5665; font-size: 13px; font-weight: 650; }
.slide-content.dark .mini-card p { color: #aeb8c4; }
.risk-list { display: grid; gap: 10px; }
.risk-item { display: grid; padding: 16px; grid-template-columns: 38px 1fr; align-items: start; gap: 14px; border: 1px solid var(--line-light); background: #fff; }
.risk-item > span { display: grid; width: 38px; height: 38px; place-items: center; background: var(--blue); color: #fff; font-size: 10px; font-weight: 900; }
.risk-item strong { display: block; margin-bottom: 5px; font-size: 14px; font-weight: 900; }
.risk-item p { margin: 0; color: #596271; font-size: 12px; font-weight: 650; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { min-height: 130px; padding: 18px; border-top: 3px solid var(--blue); background: #eaf3fc; }
.metric strong { display: block; margin-bottom: 8px; color: #075da8; font-size: clamp(30px, 3.4vw, 48px); line-height: 0.9; letter-spacing: -0.05em; }
.metric span { color: #4e5b69; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.framework-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.framework-cloud span { flex: 1 1 120px; padding: 18px 12px; border: 1px solid #b8c5d1; background: #fff; color: #0c5ca5; font-size: 13px; font-weight: 900; text-align: center; }
.deck-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 22px; }
.deck-platforms span { display: inline-flex; min-height: 42px; padding: 7px 11px; align-items: center; gap: 8px; border: 1px solid #2c3a48; background: #151b23; color: #fff; font-size: 10px; font-weight: 850; }
.deck-platforms img { width: 27px; height: 27px; padding: 3px; border-radius: 4px; background: #fff; object-fit: contain; }

.deck-controls { display: grid; min-height: 82px; padding: 0 22px; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; border-top: 1px solid var(--line); background: #0a0c10; }
.control-group { display: flex; align-items: center; gap: 8px; }
.control-group:last-child { justify-self: end; }
.deck-control { display: inline-grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid #39414b; background: transparent; color: #fff; cursor: pointer; font-size: 18px; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.deck-control:hover, .deck-control:focus-visible { border-color: var(--sky); background: #11263a; transform: translateY(-2px); }
.deck-control.play-toggle { width: auto; padding-inline: 15px; font-size: 9px; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.deck-status { display: grid; min-width: 190px; gap: 9px; justify-items: center; }
.slide-count { color: #b8c0cb; font-size: 10px; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.deck-progress { width: 100%; height: 2px; overflow: hidden; background: #2a3038; }
.deck-progress span { display: block; width: 100%; height: 100%; background: var(--sky); transform: scaleX(0); transform-origin: left; }
.report-deck.is-playing .deck-progress span { animation: deckTimer 7s linear forwards; }
@keyframes deckTimer { to { transform: scaleX(1); } }
.deck-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.deck-dot { width: 38px; height: 4px; padding: 0; border: 0; background: #3a414a; cursor: pointer; }
.deck-dot.is-active { background: var(--sky); }

.report-next { padding: 72px 0; background: #f3f4f6; color: var(--ink); }
.next-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.report-next h2 { max-width: 850px; margin: 0 0 15px; font-size: clamp(36px, 5vw, 67px); line-height: 0.95; letter-spacing: -0.055em; }
.report-next p:not(.eyebrow) { max-width: 720px; margin: 0; color: #4e5968; font-size: 17px; font-weight: 650; }
.report-button { display: inline-flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 30px; padding: 0 22px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; transition: background 180ms ease, transform 180ms ease; }
.report-button:hover { background: #2398ff; transform: translateY(-3px); }
.report-next-actions { display: grid; min-width: 300px; gap: 9px; }
.report-button.secondary { border: 1px solid #7d8793; background: transparent; color: #17202a; }
.report-button.secondary:hover { border-color: var(--blue); background: #e6f2ff; }
.report-deck { touch-action: pan-y; }
.legal-note { margin: 22px 0 0; color: #737c88; font-size: 11px; }
.report-footer { padding: 32px 0; border-top: 1px solid var(--line); color: #737b86; font-size: 11px; }
.report-footer .shell { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 48px, 900px); }
  .report-heading { grid-template-columns: 1fr; gap: 24px; }
  .report-summary { max-width: 720px; }
  .report-slide { grid-template-columns: 1fr; }
  .slide-visual { min-height: 360px; }
  .slide-visual img { min-height: 360px; max-height: 470px; }
  .slide-content { min-height: 520px; }
}

@media (max-width: 650px) {
  :root { --shell: calc(100% - 30px); }
  .report-nav { min-height: 70px; }
  .report-actions { gap: 10px; }
  .report-header-cta { min-height: 38px; padding: 0 10px; font-size: 8px; }
  .report-brand small { display: none; }
  .back-link { font-size: 9px; }
  .report-hero { padding: 58px 0 30px; }
  .report-hero h1 { font-size: clamp(45px, 15vw, 68px); }
  .deck-section { padding-top: 10px; }
  .slide-visual, .slide-visual img { min-height: 255px; max-height: 320px; }
  .slide-content { min-height: 570px; padding: 32px 22px; }
  .slide-content h2 { font-size: 40px; }
  .slide-lead { font-size: 16px; }
  .mini-grid, .metric-row { grid-template-columns: 1fr; }
  .mini-card { padding: 14px; }
  .metric { min-height: 0; }
  .deck-controls { padding: 14px; grid-template-columns: 1fr 1fr; }
  .deck-status { min-width: 0; grid-column: 1 / -1; grid-row: 1; width: 100%; }
  .control-group { grid-row: 2; }
  .control-group:last-child { grid-row: 2; }
  .next-grid { grid-template-columns: 1fr; }
  .report-next-actions { min-width: 0; }
  .report-button { width: 100%; }
  .report-footer .shell { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .report-slide { transform: none; }
}
