:root {
  --dark: #111827;
  --ink: #182033;
  --muted: #64748b;
  --line: #d9e4ea;
  --paper: #f7fafc;
  --white: #ffffff;
  --blue: #52b2e5;
  --green: #70b74d;
  --purple: #4b185d;
  --orange: #ff9900;
  --soft-blue: #e8f6fd;
  --soft-green: #edf8ea;
  --soft-purple: #f4ecf7;
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.26);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #090e17;
  color: var(--ink);
  font-family: Aptos, "Segoe UI", Inter, Arial, sans-serif;
}

.deck {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1600px;
  height: 900px;
  transform: translate(-50%, -50%) scale(var(--deck-scale, 1));
  transform-origin: center center;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  padding: 76px 86px 72px;
  background: var(--paper);
}

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

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(24, 32, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 51, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(120deg, transparent 0%, black 22%, black 72%, transparent 100%);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.slide-heading {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.slide-heading.narrow {
  max-width: 820px;
}

.slide-heading.center {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.slide-heading h2 {
  margin-top: 20px;
  color: var(--ink);
  font-size: 52px;
  font-weight: 820;
  line-height: 1.02;
}

.slide-heading p:not(.eyebrow) {
  max-width: 800px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.32;
}

.inverse-heading h2,
.inverse-heading p:not(.eyebrow) {
  color: var(--white);
}

.inverse-heading p:not(.eyebrow) {
  color: #cbd5e1;
}

.brand-lockup {
  position: absolute;
  z-index: 4;
  top: 58px;
  right: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 78px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 228, 234, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.brand-lockup span {
  display: grid;
  width: 150px;
  height: 58px;
  place-items: center;
  overflow: hidden;
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup span:not(.dark-logo) img {
  width: 92px;
  height: auto;
  max-height: 56px;
}

.brand-lockup .dark-logo {
  width: 150px;
  height: 48px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--dark);
}

.brand-lockup i {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.slide-footer {
  position: absolute;
  z-index: 8;
  left: 86px;
  right: 86px;
  bottom: 38px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(100, 116, 139, 0.28);
  padding-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.slide-footer.inverse {
  border-color: rgba(226, 232, 240, 0.18);
  color: #cbd5e1;
}

.slide-footer strong {
  color: currentColor;
}

.deck-controls {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  padding: 10px 12px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.deck-controls.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}

.deck-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.deck-controls button:hover {
  background: rgba(82, 178, 229, 0.42);
}

.progress-shell {
  width: 220px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-shell span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 260ms ease;
}

.slide-counter {
  min-width: 58px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 800;
}

.slide-cover {
  background: var(--dark);
  color: var(--white);
  padding: 0;
}

.slide-cover::before,
.slide-thesis::before,
.slide-agenda::before,
.slide-close::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cover-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--blue) 0 12px, var(--green) 12px 24px, transparent 24px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px),
    #0b1220;
}

.cover-copy {
  position: absolute;
  top: 104px;
  left: 92px;
  width: 760px;
}

.cover-copy h1 {
  margin-top: 34px;
  color: var(--white);
  font-size: 94px;
  line-height: 0.94;
  font-weight: 880;
}

.cover-copy h2 {
  margin-top: 18px;
  color: #dce9f1;
  font-size: 42px;
  font-weight: 750;
}

.cover-copy .lead {
  width: 650px;
  margin-top: 58px;
  color: #d5dee9;
  font-size: 31px;
  line-height: 1.22;
}

.cover-rule {
  width: 600px;
  height: 1px;
  margin-top: 44px;
  background: #334155;
}

.cover-note {
  width: 650px;
  margin-top: 34px;
  color: #bfd1df;
  font-size: 22px;
  line-height: 1.34;
}

.brand-tower {
  position: absolute;
  top: 190px;
  right: 132px;
  width: 310px;
}

.brand-card {
  display: grid;
  width: 310px;
  height: 126px;
  place-items: center;
  border-radius: 8px;
}

.brand-card img {
  width: 230px;
  height: 76px;
  object-fit: contain;
}

.brand-card-light {
  background: var(--white);
}

.brand-card-dark {
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: var(--dark);
}

.plus {
  height: 92px;
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  line-height: 92px;
  text-align: center;
}

.verto-mark {
  display: none;
}

.director-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 68px;
}

.issue-card {
  min-height: 250px;
  padding: 34px 34px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.issue-card::before {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  margin-bottom: 34px;
  background: var(--purple);
}

.issue-card.accent-orange::before {
  background: var(--orange);
}

.issue-card.accent-green::before {
  background: var(--green);
}

.issue-number {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.issue-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.04;
}

.issue-card p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.34;
}

.director-quote {
  position: absolute;
  left: 120px;
  right: 120px;
  bottom: 116px;
  margin: 0;
  padding: 26px 36px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 30px;
  font-weight: 780;
  text-align: center;
}

.top-band {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  padding: 0 86px;
  background: var(--dark);
  color: var(--white);
}

.top-band h2 {
  font-size: 38px;
}

.mini-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 50px;
}

.mini-lockup img:first-child {
  width: 132px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.mini-lockup img:last-child {
  width: 128px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--dark);
}

.mini-lockup span {
  color: #cbd5e1;
  font-weight: 900;
}

.signal-stage {
  position: absolute;
  z-index: 2;
  top: 180px;
  left: 86px;
  right: 86px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  min-height: 500px;
}

.signal-copy {
  position: relative;
  padding-top: 28px;
}

.signal-copy::after {
  content: "";
  display: block;
  width: 220px;
  height: 4px;
  margin-top: 38px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.signal-copy h3 {
  max-width: 650px;
  margin-top: 26px;
  color: var(--purple);
  font-size: 56px;
  font-weight: 850;
  line-height: 1.02;
}

.signal-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.34;
}

.signal-system {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(82, 178, 229, 0.25);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(82, 178, 229, 0.18), transparent 31%),
    linear-gradient(135deg, rgba(232, 246, 253, 0.94), rgba(237, 248, 234, 0.72));
}

.signal-system::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(24, 32, 51, 0.18);
  border-radius: 8px;
}

.signal-system::after {
  content: "";
  position: absolute;
  top: 248px;
  left: 86px;
  right: 86px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: rotate(-13deg);
  transform-origin: center;
}

.system-node {
  position: absolute;
  z-index: 3;
  top: 188px;
  left: calc(50% - 145px);
  display: grid;
  width: 290px;
  min-height: 122px;
  place-items: center;
  padding: 20px 24px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  text-align: center;
}

.system-node span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.system-node strong {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.system-card {
  position: absolute;
  z-index: 4;
  width: 305px;
  min-height: 132px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(217, 228, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.system-card b {
  display: inline-grid;
  width: 38px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
}

.system-card h4 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.06;
}

.system-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.26;
}

.system-card.card-a {
  top: 40px;
  left: 46px;
}

.system-card.card-b {
  top: 40px;
  right: 42px;
}

.system-card.card-c {
  right: 138px;
  bottom: 38px;
}

.signal-footer-line {
  position: absolute;
  z-index: 3;
  left: 86px;
  right: 86px;
  bottom: 106px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.signal-footer-line span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 19px;
  font-weight: 820;
  text-align: center;
}

.journey-map {
  position: absolute;
  left: 90px;
  right: 90px;
  top: 330px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.journey-map::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.journey-node {
  position: relative;
  z-index: 2;
  min-height: 166px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.journey-node span {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--soft-blue);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.journey-node strong {
  display: block;
  margin-top: 38px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.journey-node.danger span {
  background: #fff3df;
}

.journey-node.danger strong {
  color: var(--purple);
}

.market-panel {
  position: absolute;
  left: 90px;
  right: 90px;
  bottom: 112px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 32px;
  padding: 26px 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.market-panel h3 {
  color: var(--white);
  font-size: 27px;
}

.market-panel p {
  color: #cbd5e1;
  font-size: 21px;
  line-height: 1.32;
}

.slide-thesis,
.slide-agenda,
.slide-close {
  background: var(--dark);
}

.slide-thesis {
  padding-top: 86px;
}

.thesis-equation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 64px;
}

.thesis-card {
  min-height: 348px;
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 8px;
  background: #182033;
}

.thesis-card.purple {
  background: linear-gradient(135deg, rgba(75, 24, 93, 0.72), #182033 64%);
}

.thesis-card.green {
  background: linear-gradient(135deg, rgba(112, 183, 77, 0.45), #182033 64%);
}

.thesis-card img {
  max-width: 210px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
}

.thesis-card.purple img {
  padding: 8px 12px;
  background: var(--white);
}

.thesis-card h3 {
  margin-top: 44px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.08;
}

.thesis-card p {
  margin-top: 24px;
  color: #cbd5e1;
  font-size: 21px;
  line-height: 1.34;
}

.operator {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  font-size: 54px;
  font-weight: 900;
}

.thesis-bottom {
  position: absolute;
  left: 250px;
  right: 250px;
  bottom: 116px;
  padding: 24px 32px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 25px;
  font-weight: 750;
  line-height: 1.24;
  text-align: center;
}

.metric-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.metric-row article {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.metric-row strong {
  display: block;
  color: var(--blue);
  font-size: 74px;
  line-height: 0.9;
}

.metric-row article:nth-child(2) strong {
  color: var(--purple);
}

.metric-row article:nth-child(3) strong {
  color: var(--green);
}

.metric-row span {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 800;
}

.metric-row p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.32;
}

.format-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
}

.format-strip span {
  padding: 18px 14px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 6px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  text-align: center;
}

.agenda-line {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 118px;
}

.agenda-line::before {
  content: "";
  position: absolute;
  top: 84px;
  left: 56px;
  right: 56px;
  height: 3px;
  background: #334155;
}

.agenda-line article {
  position: relative;
  min-height: 210px;
  padding-top: 118px;
  color: var(--white);
  text-align: center;
}

.agenda-line article::before {
  content: "";
  position: absolute;
  top: 55px;
  left: calc(50% - 26px);
  width: 52px;
  height: 52px;
  border: 8px solid var(--dark);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.18);
}

.agenda-line article:nth-child(2)::before,
.agenda-line article:nth-child(6)::before {
  background: var(--purple);
}

.agenda-line article:nth-child(3)::before,
.agenda-line article:nth-child(7)::before {
  background: var(--orange);
}

.agenda-line article:nth-child(5)::before {
  background: var(--green);
}

.agenda-line time {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 850;
}

.agenda-line strong {
  display: block;
  color: #e2e8f0;
  font-size: 19px;
  line-height: 1.18;
}

.agenda-result {
  position: absolute;
  left: 160px;
  right: 160px;
  bottom: 120px;
  padding: 26px 34px;
  border: 1px solid rgba(226, 232, 240, 0.17);
  border-radius: 8px;
  background: #182033;
  color: var(--white);
  font-size: 26px;
  font-weight: 780;
  text-align: center;
}

.menu-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
}

.menu-column {
  min-height: 418px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-column h3 {
  color: var(--purple);
  font-size: 30px;
}

.menu-column.green h3 {
  color: var(--green);
}

.menu-column article {
  min-height: 104px;
  margin-top: 14px;
  padding: 14px 0 14px 22px;
  border-left: 5px solid var(--orange);
}

.menu-column.green article {
  border-color: var(--blue);
}

.menu-column article + article {
  border-top: 1px solid var(--line);
}

.menu-column span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-column strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
}

.menu-column p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.maturity {
  position: absolute;
  left: 86px;
  right: 86px;
  bottom: 164px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 18px;
  height: 360px;
}

.maturity article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 168px;
  padding: 24px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
}

.maturity article:nth-child(2) {
  min-height: 214px;
  background: var(--purple);
}

.maturity article:nth-child(3) {
  min-height: 260px;
  background: var(--blue);
}

.maturity article:nth-child(4) {
  min-height: 306px;
  background: var(--green);
}

.maturity article:nth-child(5) {
  min-height: 352px;
  background: #1b8a6b;
}

.maturity b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  font-size: 22px;
}

.maturity h3 {
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.06;
}

.maturity p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.25;
}

.pillars {
  position: absolute;
  left: 86px;
  right: 86px;
  bottom: 110px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pillars span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.partnership-grid article {
  min-height: 310px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.partnership-grid h3 {
  color: var(--ink);
  font-size: 32px;
}

.partnership-grid ul {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.partnership-grid li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.25;
}

.partnership-grid li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--purple);
}

.partnership-grid article:nth-child(2) li::before {
  background: var(--green);
}

.no-cost {
  position: absolute;
  left: 470px;
  right: 470px;
  bottom: 114px;
  padding: 22px 20px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
}

.slide-benefits .slide-heading {
  max-width: 980px;
}

.benefit-grid {
  position: absolute;
  z-index: 2;
  top: 326px;
  left: 86px;
  right: 86px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 0;
}

.benefit-grid article {
  grid-column: span 2;
  min-height: 146px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.benefit-grid article:nth-child(4),
.benefit-grid article:nth-child(5) {
  grid-column: span 3;
  min-height: 138px;
}

.benefit-grid span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--purple);
}

.benefit-grid article:nth-child(2) span {
  background: var(--orange);
}

.benefit-grid article:nth-child(3) span {
  background: var(--blue);
}

.benefit-grid article:nth-child(4) span,
.benefit-grid article:nth-child(5) span {
  background: var(--green);
}

.benefit-grid h3 {
  margin-top: 16px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.benefit-grid p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.27;
}

.benefit-result {
  position: absolute;
  left: 205px;
  right: 205px;
  bottom: 108px;
  padding: 22px 28px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.close-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 28px;
  background: linear-gradient(90deg, var(--blue) 0 50%, var(--green) 50% 100%);
}

.close-copy {
  position: absolute;
  left: 92px;
  top: 132px;
  width: 670px;
}

.close-copy h2 {
  margin-top: 28px;
  color: var(--white);
  font-size: 66px;
  line-height: 1.02;
}

.close-copy p:not(.eyebrow) {
  margin-top: 34px;
  color: #d5dee9;
  font-size: 25px;
  line-height: 1.34;
}

.close-badge {
  margin-top: 56px;
  padding: 24px 30px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  font-weight: 850;
}

.edition-preview {
  position: absolute;
  top: 108px;
  right: 126px;
  width: 470px;
  height: 610px;
  padding: 58px 50px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 8px;
  background: #182033;
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.preview-bars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 18px;
}

.preview-bars span:first-child {
  background: var(--blue);
}

.preview-bars span:last-child {
  background: var(--green);
}

.edition-preview p {
  color: var(--blue);
  font-size: 19px;
  font-weight: 850;
}

.edition-preview h3 {
  margin-top: 14px;
  color: #dce9f1;
  font-size: 32px;
}

.edition-name {
  margin-top: 96px;
  padding: 26px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.18);
  border-bottom: 1px solid rgba(226, 232, 240, 0.18);
}

.edition-name span {
  display: block;
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.edition-name b {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.1;
}

.edition-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.edition-assets span {
  padding: 10px 8px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.preview-lockup {
  position: static;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.preview-lockup img:first-child {
  width: 130px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.preview-lockup img:last-child {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

.preview-lockup span {
  color: #cbd5e1;
  font-weight: 900;
}

@media print {
  body {
    overflow: visible;
    background: white;
  }

  .deck {
    position: static;
    width: 1600px;
    height: auto;
    transform: none !important;
    box-shadow: none;
  }

  .slide {
    position: relative;
    display: block;
    width: 1600px;
    height: 900px;
    page-break-after: always;
  }

  .deck-controls {
    display: none;
  }
}
