:root {
  --bg: #07111f;
  --bg-elevated: rgba(13, 25, 42, 0.74);
  --bg-panel: rgba(10, 20, 34, 0.86);
  --line: rgba(173, 214, 255, 0.14);
  --line-strong: rgba(173, 214, 255, 0.28);
  --text: #f3f7ff;
  --muted: #98acc7;
  --accent: #6fd1ff;
  --accent-strong: #78f7c3;
  --accent-warm: #ffd48b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --topbar-height: 68px;
  --rail-width: 180px;
  --rail-space: 180px;
  --gutter: clamp(20px, 3vw, 40px);
  --content-width: min(1180px, calc(100vw - var(--rail-space) - 160px));
  --viewport-height: 100dvh;
}

* {
  box-sizing: border-box;
}

[data-depth] {
  will-change: transform;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  [data-depth] {
    will-change: auto;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(93, 152, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(111, 209, 255, 0.12), transparent 24%),
    linear-gradient(160deg, #04101c 0%, #07111f 42%, #09182b 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

body {
  position: relative;
}

body.rail-collapsed {
  --rail-space: 0px;
}

button {
  font: inherit;
}

.presentation-shell {
  position: relative;
  min-height: var(--viewport-height);
}

#particlesCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  pointer-events: none;
  opacity: 0.34;
}

.ambient,
.presentation-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.ambient {
  filter: blur(90px);
  opacity: 0.6;
}

.ambient--one {
  background: radial-gradient(circle at 20% 18%, rgba(118, 160, 255, 0.34), transparent 26%);
}

.ambient--two {
  background: radial-gradient(circle at 86% 78%, rgba(120, 247, 195, 0.16), transparent 20%);
}

.presentation-grid {
  background-image:
    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: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 12%, rgba(0, 0, 0, 0.95) 88%, transparent 100%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(16px, 2vw, 28px);
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.16));
  transition: transform 260ms ease, opacity 220ms ease;
}

body.topbar-hidden .topbar {
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
}

body.fullscreen-mode .topbar {
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
  pointer-events: none;
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 22;
  background: rgba(255, 255, 255, 0.04);
}

.progress-line span {
  display: block;
  height: 100%;
  width: 7.14%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 24px rgba(111, 209, 255, 0.5);
  transition: width 320ms ease;
}

.topbar__brand,
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 21, 37, 0.38);
  color: rgba(252, 252, 235, 0.94);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slide-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.38rem;
  min-width: 72px;
  justify-content: center;
  padding: 0 2px;
  color: rgba(243, 247, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.slide-counter__divider {
  color: var(--muted);
}

.control-button {
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10, 21, 37, 0.84);
  color: var(--text);
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.control-button:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 209, 255, 0.44);
  background: rgba(14, 29, 48, 0.94);
}

.control-button:focus-visible,
.nav-chip:focus-visible,
.slide-rail__item:focus-visible {
  outline: 2px solid rgba(111, 209, 255, 0.65);
  outline-offset: 2px;
}

.control-button:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.control-button--ghost {
  background: linear-gradient(135deg, rgba(111, 209, 255, 0.16), rgba(120, 247, 195, 0.14));
}

.control-button--minimal {
  min-width: 58px;
  min-height: 32px;
  padding: 0 11px;
  background: rgba(10, 21, 37, 0.42);
  color: rgba(243, 247, 255, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.control-button--icon {
  min-width: 32px;
  width: 32px;
  padding: 0;
}

.control-button__svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.92;
}

.slide-rail {
  position: fixed;
  top: calc(var(--topbar-height) + 20px);
  right: 28px;
  bottom: 110px;
  width: var(--rail-width);
  display: grid;
  gap: 8px;
  align-content: start;
  z-index: 19;
  transition: transform 260ms ease, opacity 220ms ease;
}

body.rail-collapsed .slide-rail {
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
}

.slide-rail__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(8, 16, 29, 0.58);
  color: var(--muted);
  padding: 11px 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.slide-rail__item:hover,
.slide-rail__item.is-active {
  transform: translateX(-4px);
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(14, 27, 46, 0.9);
}

.slide-rail__number {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.slide-rail__label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.15;
}

.arrow-nav {
  position: fixed;
  right: 28px;
  bottom: 30px;
  display: flex;
  gap: 12px;
  z-index: 20;
}

.rail-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 21;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 70px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, rgba(15, 28, 47, 0.96), rgba(9, 18, 31, 0.88));
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rail-tab:hover {
  transform: translateY(calc(-50% - 1px));
  border-color: rgba(111, 209, 255, 0.44);
}

.rail-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 220ms ease;
}

.rail-tab__label {
  display: none;
}

body:not(.rail-collapsed) .rail-tab__icon {
  transform: rotate(180deg);
}

.nav-chip {
  appearance: none;
  min-width: 168px;
  min-height: 52px;
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(12, 24, 40, 0.9), rgba(8, 16, 29, 0.8));
  color: rgba(243, 247, 255, 0.86);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.nav-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 209, 255, 0.44);
}

.nav-chip:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.nav-chip__meta {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-chip__label {
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.15;
}

.nav-chip--next .nav-chip__meta,
.slide--theme-closing .eyebrow {
  color: var(--accent-warm);
}

.deck {
  min-height: var(--viewport-height);
  position: relative;
  z-index: 10;
}

.deck__viewport {
  height: var(--viewport-height);
  overflow: hidden;
}

.deck__track {
  height: 100%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slide {
  position: relative;
  min-height: var(--viewport-height);
  height: var(--viewport-height);
  padding: calc(var(--topbar-height) + 36px) calc(var(--rail-space) + 72px) 48px 36px;
  overflow: hidden;
}

.slide--portfolio {
  padding-top: calc(var(--topbar-height) + 24px);
  padding-bottom: 32px;
}

.slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.72) 0%, rgba(4, 10, 18, 0.44) 34%, rgba(4, 10, 18, 0.6) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.16) 0%, rgba(4, 10, 18, 0.54) 100%);
}

.slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.88) contrast(1.05) brightness(0.74);
}

.slide--theme-intro::before,
.slide--theme-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(111, 209, 255, 0.15), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(120, 247, 195, 0.12), transparent 24%);
}

.slide__inner {
  position: relative;
  width: min(var(--content-width), 100%);
  height: 100%;
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
}

.slide__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 28px;
}

.slide__content--hero {
  max-width: 820px;
}

.slide--hero-centered .slide__inner {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.slide--hero-centered .slide__content--hero {
  max-width: min(1180px, 86vw);
  justify-items: center;
  text-align: center;
}

.slide--hero-centered .lede {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: -0.015em;
}

.hero-copy-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px 28px;
}

.hero-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.025em;
  font-synthesis-weight: none;
}

.hero-copy--statement {
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  font-weight: 200;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-copy--statement-1 {
  color: #fcfceb;
}

.hero-copy--statement-2 {
  color: #fcfceb;
}

.hero-emphasis {
  font-weight: 400;
}

.hero-emphasis--pink {
  color: #ef5b7f;
}

.hero-emphasis--blue {
  color: #5fa7dc;
}

.hero-logo-wrap {
  position: relative;
  width: min(1100px, 80vw);
  isolation: isolate;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 52%, rgba(255, 73, 142, 0.42) 0%, rgba(255, 73, 142, 0.16) 24%, transparent 52%),
    radial-gradient(circle at 76% 48%, rgba(74, 149, 255, 0.42) 0%, rgba(74, 149, 255, 0.16) 24%, transparent 54%),
    radial-gradient(circle at 50% 50%, rgba(214, 95, 244, 0.24) 0%, transparent 42%);
  filter: blur(34px);
  opacity: 1;
  transform: scale(1.04);
}

.hero-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 0.94;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255, 103, 166, 0.42))
    drop-shadow(0 0 42px rgba(95, 167, 220, 0.34))
    drop-shadow(0 22px 48px rgba(0, 0, 0, 0.34));
}

.slide__content--split {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
}

.slide__content--cube-infographic {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
  align-content: center;
  width: 100%;
  max-width: min(1200px, 100%);
  justify-self: stretch;
}

.promise-cube-layout {
  display: grid;
  gap: clamp(22px, 3.2vh, 36px);
  width: 100%;
}

#slide-05 .section-heading.promise-cube-layout__heading,
#slide-05 .promise-cube-layout__heading .title {
  max-width: none;
  width: 100%;
}

.promise-cube-layout__heading .title {
  max-width: none;
  width: 100%;
}

.promise-cube-layout__heading .lede {
  max-width: 72ch;
}

#slide-05 .promise-cube-layout {
  gap: clamp(26px, 4vh, 44px);
}

#slide-05 .slide__content--cube-infographic {
  min-height: calc(100dvh - var(--topbar-height) - 100px);
  align-content: start;
  grid-template-rows: auto 1fr;
}

.promise-cube-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

#slide-05 .promise-cube-main {
  grid-template-columns: minmax(300px, 1.22fr) minmax(260px, 0.78fr);
  align-items: center;
  min-height: 0;
  height: 100%;
  align-self: stretch;
}

.promise-cube-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

#slide-05 .promise-cube-visual {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 100%;
  min-height: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(6px, 1.5vh, 20px);
}

.promise-cube-visual__graphic {
  width: min(100%, 460px);
  height: auto;
  max-height: min(44vh, 368px);
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 26px 56px rgba(0, 0, 0, 0.4));
}

#slide-05 .promise-cube-visual__graphic {
  width: min(100%, 560px);
  max-height: min(52vh, 520px);
  margin-inline: auto;
  display: block;
  opacity: 0.94;
  position: relative;
}

.promise-cube-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(16px, 2.1vh, 24px);
}

.promise-cube-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(10, 22, 38, 0.9), rgba(7, 14, 26, 0.78));
  border-radius: 0 !important;
  --reveal-transform: translateX(72px);
  --reveal-duration: 1180ms;
}

.promise-cube-step__index {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.promise-cube-step--1 .promise-cube-step__index {
  color: #ef5b7f;
}

.promise-cube-step--2 .promise-cube-step__index {
  color: #5fa7dc;
}

.promise-cube-step--3 .promise-cube-step__index {
  color: #f2c549;
}

.promise-cube-step__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.promise-cube-step__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(82%) sepia(34%) saturate(1094%) hue-rotate(338deg) brightness(104%) contrast(101%);
  opacity: 0.92;
}

.promise-cube-step__body h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.promise-cube-step--1 .promise-cube-step__body h3 {
  color: #ef5b7f;
}

.promise-cube-step--2 .promise-cube-step__body h3 {
  color: #5fa7dc;
}

.promise-cube-step--3 .promise-cube-step__body h3 {
  color: #f2c549;
}

.promise-cube-step__body p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.slide__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.orb,
.beam,
.panel-glow {
  position: absolute;
  border-radius: 999px;
  transition: transform 180ms linear;
}

.orb {
  background: radial-gradient(circle, rgba(111, 209, 255, 0.26) 0%, rgba(111, 209, 255, 0.08) 42%, transparent 72%);
  filter: blur(5px);
}

.orb--xl {
  width: 520px;
  height: 520px;
  top: 8%;
  right: 2%;
}

.orb--lg {
  width: 360px;
  height: 360px;
  bottom: 4%;
  left: 10%;
}

.orb--md {
  width: 280px;
  height: 280px;
  top: 18%;
  right: 14%;
}

.orb--sm {
  width: 220px;
  height: 220px;
  bottom: 14%;
  right: 16%;
}

.beam {
  width: 520px;
  height: 520px;
  top: 12%;
  left: 32%;
  background: linear-gradient(180deg, rgba(120, 247, 195, 0.08), rgba(255, 212, 139, 0.22), transparent 76%);
  filter: blur(22px);
  transform: rotate(24deg);
}

.beam--vertical {
  width: 300px;
  height: 700px;
  top: -10%;
  right: 12%;
  left: auto;
  transform: rotate(8deg);
}

.beam--wide {
  width: 640px;
  height: 380px;
  top: 18%;
  left: 34%;
}

.panel-glow {
  width: 500px;
  height: 500px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(111, 209, 255, 0.2), transparent 68%);
  filter: blur(20px);
}

.panel-glow--alt {
  background: radial-gradient(circle, rgba(120, 247, 195, 0.18), transparent 68%);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.display,
.title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.display {
  font-size: clamp(3.5rem, 7vw, 6.3rem);
  max-width: 12ch;
  text-wrap: balance;
}

.title {
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  max-width: 14ch;
  text-wrap: balance;
}

.lede {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.hero-chips,
.hero-metrics,
.mini-list,
.card-grid,
.stats-grid,
.pillar-grid,
.benefit-grid,
.service-grid,
.ai-grid,
.portfolio-grid,
.roi-grid {
  display: grid;
}

.hero-chips {
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
}

.hero-chips span,
.closing-panel,
.quote-panel,
.metric-panel,
.info-card,
.stat-card,
.promise-card,
.pillar-card,
.fusion-column,
.fusion-center,
.process-panel,
.benefit-card,
.roi-card,
.service-card,
.ai-card,
.compare-card,
.portfolio-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.84), rgba(8, 16, 29, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-chips span {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

.metric-panel {
  padding: 24px;
}

.metric-panel strong {
  display: block;
  font-size: 2.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.metric-panel span {
  color: var(--muted);
  line-height: 1.5;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.quote-panel,
.closing-panel,
.process-panel {
  padding: 28px;
}

.quote-panel p {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: 1.55;
  font-weight: 500;
}

.mini-list,
.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

header.section-heading {
  margin: 0;
}

/* Blank slide + full-bleed video: keep heading legible over motion */
.slide--blank-over-video .slide__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  justify-content: center;
}

.slide--blank-over-video .slide__content--blank {
  justify-items: center;
  width: 100%;
  max-width: none;
  text-align: center;
  gap: clamp(16px, 2.4vh, 28px);
}

.slide--blank-over-video .section-heading {
  max-width: none;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.slide--blank-over-video .section-heading .title {
  color: #f5f9ff;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.75);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  font-weight: 200;
  max-width: none;
  width: 100%;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-align: center;
  margin-inline: 0;
}

/* Matches .hero-emphasis--blue / .hero-emphasis--pink from deck theme */
.slide--blank-over-video .section-heading .title.title--split-blank {
  text-shadow: none;
}

.slide--blank-over-video .title--split-blank .title__part--brand-blue {
  color: #5fa7dc;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(0, 0, 0, 0.65);
}

.slide--blank-over-video .title--split-blank .title__part--brand-red {
  color: #ef5b7f;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(0, 0, 0, 0.65);
}

.slide--blank-over-video .title--split-blank .title__sep {
  color: rgba(245, 249, 255, 0.42);
  font-weight: 200;
}

.slide--blank-over-video .section-heading .eyebrow {
  color: rgba(235, 245, 255, 0.92);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
}

.slide--blank-over-video .section-heading .lede {
  color: rgba(220, 232, 248, 0.94);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
  max-width: min(68ch, 100%);
  width: 100%;
  text-align: center;
  margin-inline: auto;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.5;
  font-weight: 300;
}

.slide--blank-over-video .blank-media-grid {
  width: 50%;
  max-width: 50%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

.slide--blank-over-video .blank-media-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    180deg,
    rgba(10, 18, 34, 0.52),
    rgba(6, 12, 24, 0.44)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0;
  overflow: hidden;
  text-align: left;
}

.slide--blank-over-video .blank-media-card__figure {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.22);
}

.slide--blank-over-video .blank-media-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
  box-sizing: border-box;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.slide--blank-over-video .blank-media-card__text {
  padding: clamp(8px, 0.85vw, 11px) clamp(9px, 1vw, 12px) clamp(9px, 1vw, 12px);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.slide--blank-over-video .blank-media-card__label {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.74rem, 0.88vw, 0.86rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(252, 254, 255, 0.98);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.slide--blank-over-video .blank-media-card__body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(210, 224, 242, 0.92);
}

.slide--blank-over-video .blank-media-subheading {
  margin: clamp(6px, 1.2vh, 14px) 0 0;
  max-width: min(52ch, 92vw);
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.92rem, 1.22vw, 1.08rem);
  font-weight: 200;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(245, 249, 255, 0.97);
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.65);
}

@media (max-width: 1180px) {
  .slide--blank-over-video .blank-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 72%;
    max-width: 72%;
    gap: clamp(20px, 3vw, 36px);
  }
}

@media (max-width: 600px) {
  .slide--blank-over-video .blank-media-grid {
    grid-template-columns: 1fr;
    width: 88%;
    max-width: 88%;
    gap: clamp(22px, 4.5vw, 40px);
  }
}

.section-heading--center {
  max-width: min(940px, 100%);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.slide--showcase .title {
  max-width: 18ch;
}

.slide--showcase .lede {
  max-width: 68ch;
}

.slide--showcase .slide__content {
  align-self: stretch;
  gap: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.slide--showcase {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.slide--showcase .slide__inner {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

.showcase-shell {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.showcase-header-band {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 3vw, 42px) clamp(28px, 4vw, 56px) clamp(72px, 8vw, 98px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(111, 209, 255, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(15, 28, 47, 0.95), rgba(9, 18, 31, 0.92));
  color: var(--text);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.showcase-header-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 214, 255, 0.22), transparent);
}

.showcase-heading {
  max-width: 920px;
}

.showcase-heading .title {
  color: var(--text);
  max-width: 22ch;
  width: 100%;
  margin-top: clamp(12px, 1.8vw, 24px);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.showcase-heading .lede {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 200;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.slide:not(.slide--hero):not(.slide--showcase):not(.slide--gravity-hero):not(.slide--blank-over-video):not(.slide--portfolio) .section-heading,
.slide:not(.slide--hero):not(.slide--showcase) .content-stack,
.slide--closing .slide__content--hero {
  max-width: 920px;
}

.slide:not(.slide--hero):not(.slide--showcase):not(.slide--gravity-hero):not(.slide--blank-over-video):not(.slide--portfolio) .title,
.slide--closing .display {
  color: var(--text);
  max-width: 22ch;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.slide:not(.slide--hero):not(.slide--showcase):not(.slide--gravity-hero):not(.slide--blank-over-video):not(.slide--portfolio) .lede,
.slide--closing .lede {
  max-width: 68ch;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 200;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

#slide-03 .section-heading,
#slide-03 .title {
  max-width: none;
  width: 100%;
}

#slide-06 .slide__inner {
  margin-inline: auto;
}

#slide-06 .section-heading,
#slide-06 .title {
  max-width: none;
  width: 100%;
  text-align: center;
}

#slide-06 .section-heading {
  justify-items: center;
}

#slide-06 .section-heading .lede {
  max-width: none;
  width: 100%;
}

#slide-06 .fusion-column--left h3 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ef5b7f;
}

#slide-06 .fusion-column--right h3 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #5fa7dc;
}

.slide--partnership-process .slide__inner {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.slide--partnership-process .section-heading {
  max-width: none;
  width: 100%;
}

.slide--partnership-process .title {
  max-width: none;
  width: 100%;
  text-wrap: balance;
}

.slide--partnership-process .process-panel--partnership {
  max-width: none;
  width: 100%;
}

/* Gravity hero — RS “Gravity”-style scene (bound to .slide--gravity-hero, not slide id) */
.slide--gravity-hero .gravity-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #1d2931;
}

.slide--gravity-hero .slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.slide--gravity-hero .slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  gap: clamp(12px, 1.8vh, 20px);
}

.gravity-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(52%, 420px);
  z-index: 3;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.82) 0%, rgba(4, 10, 18, 0.25) 78%, transparent 100%);
  pointer-events: none;
}

.gravity-stage__layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.gravity-stage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
}

.gravity-stage__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.62;
}

.gravity-stage__flakes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gravity-flake {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.gravity-flake__img {
  display: block;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.42));
}

.gravity-flake--1 {
  left: 5%;
  bottom: min(30vh, 260px);
  width: 29px;
}

.gravity-flake--2 {
  right: 6%;
  bottom: min(34vh, 290px);
  width: 28px;
}

.gravity-flake--3 {
  right: 16%;
  bottom: min(26vh, 220px);
  width: 26px;
}

.gravity-flake--4 {
  left: 12%;
  bottom: min(24vh, 210px);
  width: 27px;
}

.gravity-flake--5 {
  left: 42%;
  bottom: min(31vh, 250px);
  width: 14px;
}

.gravity-flake--6 {
  left: 20%;
  bottom: min(20vh, 180px);
  width: 17px;
}

.gravity-stage__hero-mid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(68vh, 760px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: clamp(52px, 9vh, 108px);
  pointer-events: none;
}

.gravity-stage__galaxy-wrap,
.gravity-stage__astro-wrap {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.gravity-stage__float {
  flex: 0 0 auto;
  will-change: transform;
}

.gravity-stage__galaxy-wrap {
  bottom: clamp(210px, 34vh, 360px);
}

.gravity-stage__galaxy-wrap .gravity-stage__galaxy {
  width: min(509px, 88vw);
}

.gravity-stage__astro-wrap {
  bottom: clamp(132px, 21vh, 238px);
}

.gravity-stage__astro-wrap .gravity-stage__astro {
  width: min(820px, 92vw);
}

/* CCW 90° — applied here so parallax (parent) + wave motion (img) keep their own transforms */
.gravity-stage__astro-rotate {
  transform: rotate(-90deg);
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gravity-stage__galaxy {
  width: 100%;
  height: auto;
}

.gravity-stage__astro {
  width: 100%;
  height: auto;
}

.gravity-chrome {
  position: relative;
  z-index: 2;
  width: min(94vw, 920px);
  display: flex;
  justify-content: center;
  margin-bottom: clamp(4px, 1vh, 12px);
  will-change: transform;
}

.gravity-chrome--content-top {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: clamp(10px, 1.8vh, 22px);
  justify-content: flex-start;
  pointer-events: none;
}

.slide--gravity-hero .slide__content > .gravity-chrome--content-top {
  justify-content: flex-start;
  padding-left: clamp(12px, 3vw, 40px);
  margin-bottom: clamp(2px, 0.6vh, 10px);
}

.slide--gravity-hero .gravity-chrome__inner {
  text-align: left;
}

.slide--gravity-hero .slide__content > .section-heading {
  margin-top: clamp(-20px, -2.8vh, -8px);
  max-width: none;
  width: 100%;
}

.gravity-chrome__inner {
  position: relative;
  text-align: center;
  font-family: "Poppins", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.gravity-chrome__layer--base {
  position: relative;
  display: block;
  color: #fff;
  text-shadow: 0 8px 42px rgba(0, 0, 0, 0.55);
}

.gravity-chrome__layer--magenta,
.gravity-chrome__layer--yellow,
.gravity-chrome__layer--cyan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  pointer-events: none;
}

.gravity-chrome__layer--magenta {
  color: rgba(255, 0, 255, 0.92);
  transform: translate(2px, 2px);
}

.gravity-chrome__layer--yellow {
  color: rgba(255, 255, 0, 0.9);
  transform: translate(-2px, 1px);
}

.gravity-chrome__layer--cyan {
  color: rgba(0, 255, 255, 0.9);
  transform: translate(1px, -1px);
}

.slide--gravity-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.slide--gravity-hero .title {
  color: rgba(248, 252, 255, 0.96);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: none;
  width: 100%;
  text-wrap: balance;
}

.slide--gravity-hero .process-panel--partnership {
  padding: clamp(14px, 2vh, 22px);
  border-radius: 0;
  background: rgba(5, 12, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.slide--gravity-hero .process-step-card__label {
  color: rgba(168, 240, 255, 0.95);
}

.slide--gravity-hero .process-step-card__body,
.slide--gravity-hero .process-step-card__subtitle {
  color: rgba(235, 244, 252, 0.92);
}

.slide--gravity-hero .benefit-grid {
  position: relative;
  z-index: 2;
}

.slide--gravity-hero .benefit-card {
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.78), rgba(5, 10, 20, 0.72));
  border-color: rgba(255, 255, 255, 0.14);
}

.slide--gravity-hero .benefit-card h2 {
  margin: 0 0 14px;
  color: rgba(252, 254, 255, 0.98);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.14rem, 1.55vw, 1.52rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.022em;
}

.slide--gravity-hero .benefit-card p {
  color: rgba(225, 236, 248, 0.9);
}

/* Gentle staggered drift on Core Services cards (animation starts after reveal settles) */
@keyframes gravity-benefit-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(2px, -7px, 0) rotate(0.18deg);
  }
  70% {
    transform: translate3d(-2.5px, -4px, 0) rotate(-0.22deg);
  }
}

.slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal {
  animation: gravity-benefit-float 5.6s ease-in-out infinite;
  will-change: transform;
}

.slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal:nth-child(1) {
  animation-duration: 5.35s;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.52s);
}

.slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal:nth-child(2) {
  animation-duration: 5.85s;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.68s);
}

.slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal:nth-child(3) {
  animation-duration: 5.55s;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.45s);
}

.slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal:nth-child(4) {
  animation-duration: 6.1s;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.8s);
}

.slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal:nth-child(5) {
  animation-duration: 5.4s;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.36s);
}

@keyframes gravity-wave {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(1.5px, -2px) rotate(0.15deg);
  }
  66% {
    transform: translate(-1.2px, 1px) rotate(-0.12deg);
  }
}

@keyframes gravity-chrome-nudge {
  0%,
  100% {
    transform: translate(var(--gx, 0), var(--gy, 0));
  }
  50% {
    transform: translate(calc(var(--gx, 0px) + 1px), calc(var(--gy, 0px) - 0.5px));
  }
}

.gravity-stage__wave {
  animation: gravity-wave 4s ease-in-out infinite;
}

.gravity-chrome__layer--magenta.gravity-chrome__wave {
  --gx: 2px;
  --gy: 2px;
  animation: gravity-chrome-nudge 3.1s ease-in-out infinite;
}

.gravity-chrome__layer--yellow.gravity-chrome__wave {
  --gx: -2px;
  --gy: 1px;
  animation: gravity-chrome-nudge 3.4s ease-in-out infinite;
}

.gravity-chrome__layer--cyan.gravity-chrome__wave {
  --gx: 1px;
  --gy: -1px;
  animation: gravity-chrome-nudge 3.2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .gravity-stage__hero-mid {
    height: min(54vh, 560px);
    padding-bottom: clamp(40px, 7vh, 80px);
  }

  .gravity-stage__galaxy-wrap {
    bottom: clamp(170px, 28vh, 300px);
  }

  .gravity-stage__astro-wrap {
    bottom: clamp(100px, 18vh, 200px);
  }

  .gravity-flake--1 {
    left: 3%;
    bottom: 22vh;
  }

  .gravity-flake--2 {
    right: 2%;
    bottom: 26vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gravity-stage__wave,
  .gravity-chrome__wave {
    animation: none !important;
  }

  .gravity-chrome__layer--magenta {
    transform: translate(2px, 2px);
  }

  .gravity-chrome__layer--yellow {
    transform: translate(-2px, 1px);
  }

  .gravity-chrome__layer--cyan {
    transform: translate(1px, -1px);
  }
}

.showcase-field {
  position: relative;
  margin-top: -38px;
  padding: 0 clamp(22px, 3vw, 42px);
  border: 1px solid rgba(173, 214, 255, 0.1);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(111, 209, 255, 0.18), transparent 22%),
    radial-gradient(circle at 15% 80%, rgba(120, 247, 195, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(8, 16, 29, 0.94), rgba(7, 17, 31, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  min-height: 0;
}

.showcase-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(111, 209, 255, 0.12), transparent 16%),
    radial-gradient(circle at 20% 30%, rgba(111, 209, 255, 0.06), transparent 20%),
    radial-gradient(circle at 80% 68%, rgba(120, 247, 195, 0.05), transparent 24%);
  pointer-events: none;
}

.showcase-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(260px, 320px) minmax(360px, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: stretch;
}

.showcase-rail {
  display: grid;
  gap: 12px;
  align-content: center;
  padding-block: clamp(12px, 2vw, 18px);
  width: 100%;
  max-width: 420px;
}

.showcase-rail--left {
  grid-column: 1;
  justify-self: end;
  justify-items: stretch;
}

.showcase-rail--right {
  grid-column: 3;
  justify-self: start;
  justify-items: stretch;
}

.showcase-core-wrap {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding-block: 0;
  min-height: 0;
}

.showcase-core-wrap--image-only {
  grid-column: 2;
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 100%;
  justify-self: center;
  z-index: 0;
}

.showcase-rail {
  position: relative;
  z-index: 1;
}

.showcase-core {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 420px;
  margin-top: clamp(-72px, -6vw, -40px);
  border-radius: 34px;
  padding: 16px;
  border: 1px solid rgba(173, 214, 255, 0.18);
  background: linear-gradient(180deg, rgba(15, 28, 47, 0.98), rgba(8, 16, 29, 0.94));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(173, 214, 255, 0.08) inset;
}

.showcase-core--image-only {
  width: 100%;
  height: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: auto;
}

.showcase-core--image-only::before {
  display: none;
}

.showcase-core::before {
  content: "";
  position: absolute;
  inset: -10% -16%;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(111, 209, 255, 0.24) 0%, rgba(111, 209, 255, 0.08) 30%, transparent 66%);
  filter: blur(24px);
}

.showcase-core__device {
  display: grid;
  align-content: start;
  gap: 18px;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 29, 50, 0.9), rgba(8, 16, 29, 0.82));
  padding: 18px 16px;
}

.showcase-core__label {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-core__screen {
  display: grid;
  align-content: center;
  gap: 14px;
  flex: 1;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(111, 209, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(9, 20, 34, 0.96), rgba(14, 27, 46, 0.92));
  padding: 26px 18px;
}

.showcase-core__screen--image {
  overflow: hidden;
  padding: 0;
}

.showcase-core__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
}

.showcase-core__image--standalone {
  border-radius: 0;
  object-position: center top;
}

.showcase-core__line {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 209, 255, 0.12), rgba(111, 209, 255, 0.92), rgba(120, 247, 195, 0.35));
}

.showcase-core__line--short {
  width: 62%;
}

.showcase-card {
  width: min(100%, 390px);
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.84), rgba(8, 16, 29, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  color: var(--text);
}

.metric-panel,
.quote-panel,
.closing-panel,
.process-panel,
.info-card,
.stat-card,
.promise-card,
.pillar-card,
.fusion-column,
.fusion-center,
.benefit-card,
.roi-card,
.service-card,
.ai-card,
.compare-card,
.portfolio-card,
.showcase-card {
  border-radius: 0;
}

.showcase-card__index {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-warm);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-card__rule {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.showcase-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.34;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.showcase-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.info-card,
.stat-card,
.promise-card,
.pillar-card,
.benefit-card,
.roi-card,
.service-card,
.ai-card,
.portfolio-card {
  border-radius: 0;
  padding: 24px;
}

.info-card h3,
.stat-card h3,
.promise-card h3,
.pillar-card h3,
.fusion-column h3,
.benefit-card h3,
.roi-card h3,
.service-card h3,
.ai-card h3,
.compare-card h3,
.portfolio-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.info-card p,
.stat-card p,
.promise-card p,
.pillar-card p,
.benefit-card p,
.roi-card p,
.service-card p,
.ai-card p,
.portfolio-card p,
.compare-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stat-card {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.stat-card--flip {
  min-height: 240px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  perspective: 1400px;
}

.stat-card--flip:focus-visible {
  outline: 2px solid rgba(111, 209, 255, 0.65);
  outline-offset: 4px;
}

.stat-card__inner {
  position: relative;
  min-height: 240px;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

.stat-card--flip.is-flipped .stat-card__inner {
  transform: rotateY(180deg);
}

.stat-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.84), rgba(8, 16, 29, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.stat-card__face--back {
  align-content: center;
  justify-items: center;
  transform: rotateY(180deg);
  text-align: center;
}

.stat-card__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  color: var(--accent);
}

.stat-card__icon svg {
  width: 100%;
  height: 100%;
}

.stat-card__face--back p {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.stat-card__value {
  display: inline-block;
  margin-bottom: 6px;
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--accent-warm);
}

.stack-panels {
  display: grid;
  gap: 16px;
}

#slide-04 .slide__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

#slide-04 .slide__content--split {
  width: 100%;
}

#slide-04 .promise-card {
  width: 100%;
  --reveal-transform: translateX(84px);
  --reveal-duration: 1320ms;
}

#slide-04 .promise-card:nth-child(1) {
  --reveal-delay: 260ms;
}

#slide-04 .promise-card:nth-child(2) {
  --reveal-delay: 620ms;
}

#slide-04 .promise-card:nth-child(3) {
  --reveal-delay: 980ms;
}

#slide-04 .stack-panels {
  justify-self: center;
  width: min(100%, 420px);
}

.slide--cube-infographic .slide__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.slide--cube-infographic .slide__content--cube-infographic {
  width: 100%;
  max-width: none;
}

.promise-card {
  position: relative;
  overflow: hidden;
}

.promise-card__icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(82%) sepia(34%) saturate(1094%) hue-rotate(338deg) brightness(104%) contrast(101%);
}

.promise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(111, 209, 255, 0.06), transparent);
  transform: translateX(-100%);
}

.promise-card:hover::after {
  transform: translateX(100%);
  transition: transform 720ms ease;
}

.pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card__number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fusion-layout--wired {
  position: relative;
}

.fusion-layout__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.fusion-layout--wired > .fusion-column,
.fusion-layout--wired > .fusion-center {
  position: relative;
  z-index: 1;
}

.fusion-layout__wire {
  stroke: rgba(173, 214, 255, 0.38);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.fusion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.fusion-column,
.fusion-center {
  border-radius: 0;
  padding: 28px;
}

.fusion-center {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 14px;
  background:
    radial-gradient(circle at top, rgba(111, 209, 255, 0.18), transparent 56%),
    linear-gradient(180deg, rgba(10, 20, 34, 0.96), rgba(8, 16, 29, 0.86));
}

.fusion-center__label {
  color: var(--accent-warm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fusion-center p {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.fusion-center small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fusion-center.fusion-center--control {
  width: min(204px, 82%);
  max-width: 204px;
  aspect-ratio: 1;
  height: auto;
  margin-inline: auto;
  align-self: center;
  padding: clamp(14px, 3.5vw, 18px) !important;
  border-radius: 50% !important;
  overflow: visible;
  display: grid;
  place-items: center;
  gap: 0;
  box-sizing: border-box;
  border: none !important;
  background: #2a3139 !important;
  box-shadow:
    12px 12px 26px rgba(0, 0, 0, 0.52),
    -10px -10px 22px rgba(255, 255, 255, 0.06);
  transition: box-shadow 280ms ease, background 280ms ease;
}

.fusion-center.fusion-center--control:has(.fusion-fuse-toggle--power[aria-pressed="true"]) {
  box-shadow:
    inset 11px 11px 22px rgba(0, 0, 0, 0.55),
    inset -8px -8px 18px rgba(255, 255, 255, 0.05);
  background: #262d34 !important;
}

.fusion-center__fuse-text {
  display: block;
  max-width: 12ch;
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: rgba(232, 240, 248, 0.82);
}

.fusion-power-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: 2px;
  color: rgba(236, 244, 252, 0.94);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  transition: color 260ms ease, filter 260ms ease;
}

.fusion-center.fusion-center--control:has(.fusion-fuse-toggle--power[aria-pressed="true"]) .fusion-power-icon {
  color: rgba(120, 247, 195, 0.95);
  filter: drop-shadow(0 0 10px rgba(120, 247, 195, 0.25));
}

.fusion-power-icon__svg {
  width: 46px;
  height: 46px;
}

.fusion-center.fusion-center--control .fusion-fuse-toggle--circle.fusion-fuse-toggle--power {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
}

.fusion-center.fusion-center--control .fusion-fuse-toggle--circle.fusion-fuse-toggle--power:hover {
  border: none;
  background: transparent;
}

.fusion-center.fusion-center--control:has(.fusion-fuse-toggle--power:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.fusion-center.fusion-center--control .fusion-fuse-toggle--power:focus-visible {
  outline: none;
}

.fusion-stage {
  position: relative;
  overflow: visible;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(260px, min(56vh, 580px));
  align-items: stretch;
}

.fusion-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(140%, 920px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.08);
  opacity: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 42%, rgba(255, 255, 255, 0.95) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 220, 160, 0.55) 0%, transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(120, 247, 195, 0.42) 12%, rgba(95, 167, 220, 0.35) 45%, transparent 58%);
  filter: blur(18px);
}

.fusion-stage.is-fused::before {
  animation: fusion-burst-glow 1100ms cubic-bezier(0.18, 0.85, 0.28, 1) forwards;
}

.fusion-stage--shake {
  animation: fusion-stage-rumble 520ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes fusion-burst-glow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.06);
    filter: blur(28px);
  }
  18% {
    opacity: 1;
    filter: blur(12px);
  }
  45% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
    filter: blur(22px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.35);
    filter: blur(56px);
  }
}

@keyframes fusion-stage-rumble {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  7% {
    transform: translate3d(-11px, 5px, 0) rotate(-0.85deg);
  }
  14% {
    transform: translate3d(10px, -7px, 0) rotate(0.7deg);
  }
  21% {
    transform: translate3d(-9px, -4px, 0) rotate(-0.55deg);
  }
  28% {
    transform: translate3d(8px, 6px, 0) rotate(0.45deg);
  }
  35% {
    transform: translate3d(-7px, 3px, 0) rotate(-0.35deg);
  }
  42% {
    transform: translate3d(6px, -5px, 0) rotate(0.28deg);
  }
  49% {
    transform: translate3d(-4px, 2px, 0) rotate(-0.18deg);
  }
  56% {
    transform: translate3d(3px, -2px, 0) rotate(0.12deg);
  }
  63%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.fusion-stage > .fusion-layout,
.fusion-stage > .fusion-merged {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 1;
}

.fusion-stage > .fusion-merged {
  z-index: 2;
}

.fusion-stage > .fusion-layout {
  transform-origin: center center;
  transition:
    opacity 560ms cubic-bezier(0.45, 0.05, 0.55, 1),
    transform 780ms cubic-bezier(0.52, 0.02, 0.6, 1),
    filter 640ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(0);
}

.fusion-stage.is-fused > .fusion-layout {
  opacity: 0;
  transform: scale(0.78) translateY(32px);
  filter: blur(16px);
  pointer-events: none;
}

.fusion-merged {
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: center;
  width: min(100%, 620px);
  box-sizing: border-box;
  padding: 32px 34px;
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 12%, rgba(111, 209, 255, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(10, 20, 34, 0.97), rgba(8, 16, 29, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-origin: center center;
  opacity: 0;
  transform: scale(0.68) translateY(36px) rotate(-2.5deg);
  filter: blur(20px);
  pointer-events: none;
  transition:
    opacity 720ms cubic-bezier(0.2, 0.85, 0.3, 1) 70ms,
    transform 920ms cubic-bezier(0.28, 1.65, 0.42, 1) 50ms,
    filter 740ms cubic-bezier(0.22, 1, 0.36, 1) 60ms,
    border-color 600ms ease 100ms,
    box-shadow 960ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.fusion-merged::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 255, 255, 0.22),
    rgba(120, 247, 195, 0.12) 38%,
    transparent 68%
  );
  opacity: 0;
  transform: scale(0.75);
}

.fusion-merged > * {
  position: relative;
  z-index: 1;
}

.fusion-stage.is-fused .fusion-merged {
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0deg);
  filter: blur(0);
  pointer-events: auto;
  border-color: rgba(120, 247, 195, 0.35);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(111, 209, 255, 0.12),
    0 0 52px rgba(120, 247, 195, 0.18),
    0 0 96px rgba(95, 167, 220, 0.12);
}

.fusion-stage.is-fused .fusion-merged::after {
  animation: fusion-merged-flash 850ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 40ms 1 forwards;
}

@keyframes fusion-merged-flash {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  25% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.fusion-merged__title {
  margin: 0 0 12px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.fusion-merged__title--logo {
  margin: 0 0 20px;
  font-size: 0;
  line-height: 0;
}

.fusion-merged__logo {
  display: block;
  width: min(300px, 88%);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.fusion-merged__body--lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28em;
  text-align: center;
}

.fusion-merged__body-line {
  display: block;
  margin: 0;
}

.fusion-merged__body-line--italic {
  font-style: italic;
  margin-top: 0.35em;
  color: rgba(232, 240, 248, 0.82);
}

.fusion-merged__body {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--text);
}

.fusion-merged__tagline {
  margin: 18px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-warm);
  line-height: 1.45;
  text-align: center;
}

.fusion-fuse-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(6, 12, 24, 0.55);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.fusion-fuse-toggle:hover {
  border-color: rgba(120, 247, 195, 0.35);
  background: rgba(8, 18, 32, 0.72);
}

.fusion-fuse-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.fusion-fuse-toggle__track {
  position: relative;
  width: 46px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 220ms ease;
}

.fusion-fuse-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f4f8ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fusion-fuse-toggle[aria-pressed="true"] .fusion-fuse-toggle__track {
  background: rgba(120, 247, 195, 0.28);
}

.fusion-fuse-toggle[aria-pressed="true"] .fusion-fuse-toggle__knob {
  transform: translateX(18px);
}

.fusion-fuse-toggle--bottom {
  margin-top: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .fusion-stage > .fusion-layout,
  .fusion-merged,
  .fusion-fuse-toggle__knob,
  .fusion-fuse-toggle__track {
    transition-duration: 0.01ms !important;
  }

  .fusion-merged::after {
    animation: none !important;
  }

  .fusion-stage::before {
    animation: none !important;
    opacity: 0 !important;
  }

  .fusion-stage--shake {
    animation: none !important;
  }

  .fusion-stage.is-fused > .fusion-layout,
  .fusion-stage .fusion-merged {
    transform: none;
    filter: none;
  }

  .fusion-stage.is-fused > .fusion-layout {
    opacity: 0;
  }

  .fusion-stage:not(.is-fused) .fusion-merged {
    opacity: 0;
    pointer-events: none;
  }

  .fusion-stage.is-fused .fusion-merged {
    opacity: 1;
    pointer-events: auto;
  }
}

.slide__content--process-graphic {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vh, 32px);
}

.process-graphic {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.process-graphic__track-shell {
  position: relative;
  min-width: min(1100px, 100%);
  width: max(100%, 940px);
  padding-top: clamp(48px, 6.5vh, 72px);
}

.process-graphic__rocket {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(58px, 8vw, 88px);
  height: auto;
  z-index: 6;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 4px));
  transition:
    left 0.58s cubic-bezier(0.33, 1, 0.68, 1),
    top 0.58s cubic-bezier(0.33, 1, 0.68, 1);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .process-graphic__rocket {
    transition-duration: 0.05s;
  }
}

.process-graphic__track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  min-width: 0;
}

.process-graphic__node {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 10px 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 209, 255, 0.12), transparent 55%),
    rgba(10, 20, 34, 0.72);
  box-shadow: var(--shadow);
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.process-graphic__node:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.process-graphic__node.is-done {
  opacity: 0.88;
  border-color: rgba(173, 214, 255, 0.24);
}

.process-graphic__node.is-done .process-graphic__index {
  color: rgba(232, 240, 248, 0.88);
  border-color: rgba(173, 214, 255, 0.38);
  background: rgba(6, 14, 26, 0.72);
}

.process-graphic__node.is-current {
  border-color: rgba(120, 247, 195, 0.48);
  box-shadow:
    0 0 0 1px rgba(120, 247, 195, 0.2),
    0 12px 36px rgba(0, 0, 0, 0.38);
}

.process-graphic__node.is-next {
  opacity: 0.82;
  border-style: dashed;
  border-color: rgba(120, 247, 195, 0.35);
}

.process-graphic__node.is-locked {
  opacity: 0.34;
  cursor: not-allowed;
  pointer-events: none;
}

.process-graphic__node:active:not(.is-locked) {
  transform: translateY(1px);
}

.process-graphic__index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(120, 247, 195, 0.95);
  border: 2px solid rgba(120, 247, 195, 0.42);
  background: rgba(6, 14, 26, 0.65);
  flex-shrink: 0;
}

.process-graphic__code {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.process-graphic__title {
  margin: 0;
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  line-height: 1.32;
  font-weight: 700;
  color: var(--text);
}

.process-graphic__tie {
  flex: 0 0 22px;
  width: 22px;
  height: 2px;
  margin-top: 32px;
  align-self: flex-start;
  border-radius: 1px;
  background: linear-gradient(90deg, rgba(95, 167, 220, 0.15), rgba(120, 247, 195, 0.55), rgba(95, 167, 220, 0.15));
  box-shadow: 0 0 12px rgba(120, 247, 195, 0.12);
  opacity: 0.55;
  transition: opacity 280ms ease, filter 280ms ease;
}

.process-graphic__tie.is-complete {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(120, 247, 195, 0.35));
}

.process-panel--partnership {
  margin-top: 0;
  display: grid;
  gap: clamp(16px, 2vh, 22px);
  width: 100%;
}

.process-step-card {
  display: grid;
  grid-template-columns: minmax(200px, min(38vw, 360px)) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
}

.process-step-card__text {
  min-width: 0;
}

.process-step-card__label {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: none;
  color: rgba(120, 247, 195, 0.92);
}

.process-step-card__subtitle {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.process-step-card__subtitle[hidden] {
  display: none;
}

.process-step-card__body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text);
}

.process-step-card__figure {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.process-step-card__figure.is-hidden {
  display: none !important;
}

.process-step-card__img {
  display: block;
  width: 100%;
  max-width: min(100%, 360px);
  height: auto;
  max-height: min(40vh, 340px);
  object-fit: contain;
}

@media (max-width: 960px) {
  .process-graphic__track {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
  }

  .process-graphic__tie {
    flex: 0 0 auto;
    width: 2px;
    height: 18px;
    margin: 6px auto;
    align-self: center;
    margin-top: 0;
    background: linear-gradient(
      180deg,
      rgba(95, 167, 220, 0.15),
      rgba(120, 247, 195, 0.55),
      rgba(95, 167, 220, 0.15)
    );
    box-shadow: 0 0 10px rgba(120, 247, 195, 0.1);
  }

  .process-graphic__node {
    flex: none;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .process-step-card {
    grid-template-columns: 1fr;
  }

  .process-step-card__figure {
    justify-content: center;
    min-height: 0;
  }

  .process-step-card__img {
    max-width: min(92vw, 360px);
    max-height: min(32vh, 280px);
  }
}

.metric-panel,
.quote-panel,
.closing-panel,
.process-panel,
.info-card,
.stat-card,
.promise-card,
.pillar-card,
.fusion-column,
.fusion-center,
.fusion-merged,
.benefit-card,
.roi-card,
.service-card,
.ai-card,
.compare-card,
.portfolio-card,
.showcase-card,
.process-graphic__node,
.process-step-card__figure,
.blank-media-card {
  border-radius: 0 !important;
}

#slide-03 .stat-card {
  --reveal-transform: translateX(76px);
  --reveal-duration: 880ms;
}

#slide-03 .stat-card__value {
  font-size: clamp(3.2rem, 4.4vw, 4.8rem);
}

#slide-03 .stat-card:nth-child(1) .stat-card__value {
  color: #ef5b7f;
}

#slide-03 .stat-card:nth-child(3) .stat-card__value {
  color: #5fa7dc;
}

#slide-03 .stat-card h3 {
  font-size: 1.02rem;
  line-height: 1.38;
}

#slide-03 .stat-card__face--back p {
  font-size: 1.08rem;
  line-height: 1.6;
}

#slide-03 .stat-card:nth-child(1) {
  --reveal-delay: 560ms;
}

#slide-03 .stat-card:nth-child(2) {
  --reveal-delay: 360ms;
}

#slide-03 .stat-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.process-panel {
  max-width: 760px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.benefit-grid,
.roi-grid,
.service-grid,
.ai-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: start;
}

.proof-layout--portfolio-only {
  grid-template-columns: 1fr;
}

.slide--comparison-table {
  background: radial-gradient(ellipse 85% 55% at 50% 18%, rgba(239, 91, 127, 0.14), transparent 55%),
    #0a0a0d;
  color: #f5f9ff;
}

.slide--comparison-table .slide__inner {
  width: 100%;
  max-width: min(1120px, 100%);
  margin-inline: auto;
}

.slide__content--comparison-table {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3.2vh, 36px);
  width: 100%;
}

.comparison-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 0.12em;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  font-weight: 200;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-align: center;
}

.comparison-title__part {
  color: rgba(252, 254, 255, 0.98);
  font-weight: 200;
}

.comparison-title__accent-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.comparison-title__accent {
  color: #ff4d6d;
  font-weight: 400;
}

.comparison-title__rule {
  display: block;
  width: 0.95em;
  height: 4px;
  margin-top: 6px;
  border-radius: 1px;
  background: #ff4d6d;
}

.comparison-table-viewport {
  width: 100%;
  max-width: 1080px;
}

.comparison-sheet {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-th {
  padding: 12px 10px 16px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.58rem, 0.72vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(210, 220, 235, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  vertical-align: bottom;
}

.comparison-th--col-0 {
  width: 28%;
  text-align: left;
}

.comparison-th--col-1,
.comparison-th--col-2,
.comparison-th--col-3 {
  width: 24%;
}

.comparison-feature {
  padding: clamp(14px, 1.6vh, 18px) 12px clamp(14px, 1.6vh, 18px) 4px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  color: rgba(252, 254, 255, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.comparison-td {
  padding: clamp(14px, 1.6vh, 18px) 8px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-cell {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.comparison-cell--text {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 400;
  line-height: 1.35;
}

.comparison-cell--muted {
  color: rgba(180, 190, 204, 0.62);
}

.comparison-cell--warn {
  color: #f39c12;
}

.comparison-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.comparison-icon--check {
  color: #2ecc71;
  filter: drop-shadow(0 1px 8px rgba(46, 204, 113, 0.35));
}

.comparison-icon--x {
  color: #e74c3c;
  filter: drop-shadow(0 1px 8px rgba(231, 76, 60, 0.35));
}

@media (max-width: 720px) {
  .comparison-th--col-0 {
    width: 34%;
  }

  .comparison-feature {
    font-size: 0.8rem;
    padding-inline: 6px 8px;
  }

  .comparison-cell--text {
    font-size: 0.74rem;
  }

  .comparison-icon {
    width: 19px;
    height: 19px;
  }
}

.compare-card {
  border-radius: 0;
  padding: 28px;
}

.compare-table {
  display: grid;
  gap: 8px;
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1.7fr 0.75fr 0.75fr;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.compare-table__row span:nth-child(2) {
  color: var(--accent-strong);
  font-weight: 700;
}

.compare-table__row--head {
  color: var(--text);
  font-weight: 700;
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.slide__content--portfolio {
  gap: clamp(6px, 1vh, 12px);
  width: 100%;
  max-width: min(1180px, 100%);
  margin-inline: auto;
  justify-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slide--portfolio .slide__inner {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  box-sizing: border-box;
}

.slide--portfolio .section-heading.section-heading--center {
  max-width: none;
  width: 100%;
  justify-items: center;
  text-align: center;
  flex: 0 0 auto;
}

.slide--portfolio .section-heading .eyebrow {
  justify-self: center;
  text-align: center;
  width: 100%;
}

.slide--portfolio .section-heading .title {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  text-align: center;
  text-wrap: balance;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.42rem);
  font-weight: 200;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.slide--portfolio .portfolio-note {
  margin-block: 0;
  line-height: 1.42;
  font-size: clamp(0.72rem, 0.92vw, 0.84rem);
  flex: 0 0 auto;
}

.portfolio-note {
  margin-inline: auto;
  max-width: min(62ch, 94vw);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--muted);
}

.portfolio-grid--site {
  margin-top: 0;
}

.slide--portfolio .portfolio-grid--site {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  gap: 10px 12px;
  padding-right: 2px;
  align-content: start;
  scrollbar-gutter: stable;
}

.portfolio-note__label {
  font-weight: 600;
  color: rgba(235, 240, 248, 0.78);
  margin-right: 0.35em;
}

.portfolio-card--site {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.84), rgba(8, 16, 29, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.portfolio-card__hit-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  padding: 18px 18px 16px;
  text-decoration: none;
  color: inherit;
  outline: none;
  box-sizing: border-box;
}

.portfolio-card__hit-area:hover .portfolio-card__img {
  transform: scale(1.04);
}

.portfolio-card__hit-area:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(111, 209, 255, 0.9);
}

.portfolio-card__thumb {
  margin: -18px -18px 6px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-card__open-hint {
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(111, 209, 255, 0.82);
}

.portfolio-card__hit-area:hover .portfolio-card__open-hint {
  color: rgba(186, 234, 255, 0.98);
}

.slide--portfolio .portfolio-card__hit-area {
  gap: 5px;
  padding: 11px 11px 9px;
}

.slide--portfolio .portfolio-card__thumb {
  margin: -11px -11px 3px;
  height: clamp(48px, 7.5vh, 78px);
  max-height: 78px;
  aspect-ratio: unset;
}

.slide--portfolio .portfolio-card__meta {
  margin-bottom: 0;
  gap: 5px 7px;
}

.slide--portfolio .portfolio-card__code {
  padding: 2px 6px;
  font-size: 0.62rem;
}

.slide--portfolio .portfolio-card__kind,
.slide--portfolio .portfolio-card__sector {
  font-size: 0.62rem;
}

.slide--portfolio .portfolio-card__title {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  margin: 0 0 3px;
  line-height: 1.28;
}

.slide--portfolio .portfolio-card__stages {
  gap: 6px;
  margin-top: 0;
}

.slide--portfolio .portfolio-card__stage {
  gap: 2px;
}

.slide--portfolio .portfolio-card__stage-label {
  font-size: 0.6rem;
}

.slide--portfolio .portfolio-card__stage p {
  font-size: clamp(0.66rem, 0.78vw, 0.74rem);
  line-height: 1.32;
}

.slide--portfolio .portfolio-card__open-hint {
  margin-top: 1px;
  font-size: 0.6rem;
}

.portfolio-card--site .portfolio-card__meta span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  line-height: 1.2;
}

.portfolio-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 4px;
}

.portfolio-card__code {
  padding: 4px 9px;
  border: 1px solid rgba(111, 209, 255, 0.35);
  color: rgba(168, 225, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card__kind {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 212, 230, 0.52);
}

.portfolio-card__sector {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.portfolio-card--site .portfolio-card__title {
  font-size: 1.02rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.portfolio-card__stages {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.portfolio-card__stage {
  display: grid;
  gap: 5px;
}

.portfolio-card__stage-label {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(190, 204, 222, 0.52);
}

.portfolio-card__stage--after .portfolio-card__stage-label {
  color: rgba(111, 209, 255, 0.78);
}

.portfolio-card__stage p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.portfolio-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.closing-panel {
  display: inline-grid;
  gap: 8px;
  width: fit-content;
  min-width: 320px;
}

.closing-panel strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
}

.closing-panel span {
  color: var(--muted);
}

.closing-panel__emails {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.closing-panel__emails a {
  color: rgba(220, 232, 248, 0.92);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.closing-panel__emails a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: var(--reveal-transform, translateY(30px));
  transition:
    opacity var(--reveal-duration, 520ms) cubic-bezier(0.19, 1, 0.22, 1),
    transform var(--reveal-duration, 520ms) cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.slide.is-active .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal--left {
  --reveal-transform: translateX(-64px);
}

.reveal--right {
  --reveal-transform: translateX(64px);
}

.reveal--bottom {
  --reveal-transform: translateY(38px);
}

.hero-copy.reveal.reveal--left {
  --reveal-transform: translateX(-120px);
  --reveal-duration: 1240ms;
}

.hero-copy.reveal.reveal--right {
  --reveal-transform: translateX(120px);
  --reveal-duration: 1240ms;
}

.slide--hero-centered .lede.reveal {
  --reveal-transform: translateY(68px);
  --reveal-duration: 1480ms;
}

@media (prefers-reduced-motion: reduce) {
  .deck__track,
  .reveal,
  .control-button,
  .nav-chip,
  .slide-rail__item,
  .orb,
  .beam,
  .panel-glow,
  .promise-card::after,
  .stat-card__inner {
    transition: none !important;
  }

  .slide--gravity-hero.is-active .benefit-grid .benefit-card.reveal {
    animation: none !important;
    will-change: auto;
  }
}

@media (max-width: 1440px) {
  :root {
    --rail-width: 160px;
  }

  .card-grid,
  .benefit-grid,
  .roi-grid,
  .service-grid,
  .ai-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.card-grid--five article:nth-child(4),
  .card-grid.card-grid--five article:nth-child(5),
  .benefit-grid article:nth-child(4),
  .benefit-grid article:nth-child(5),
  .roi-grid article:nth-child(4),
  .roi-grid article:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 1180px) {
  .topbar {
    padding-right: 20px;
  }

  .slide-rail {
    right: 18px;
    width: 144px;
  }

  .rail-tab {
    right: 0;
  }

  .slide {
    padding: calc(var(--topbar-height) + 30px) calc(var(--rail-width) + 46px) 40px 24px;
  }

  .slide__content--split,
  .slide__content--cube-infographic .promise-cube-main,
  .fusion-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .fusion-layout__wires {
    display: none;
  }

  #slide-05 .slide__content--cube-infographic {
    min-height: 0;
    grid-template-rows: auto auto;
  }

  #slide-05 .promise-cube-main {
    height: auto;
  }

  .promise-cube-visual {
    order: -1;
  }

  #slide-05 .promise-cube-visual {
    min-height: 0;
    padding-block: clamp(4px, 1vh, 12px);
  }

  #slide-05 .promise-cube-visual__graphic {
    max-height: min(40vh, 380px);
  }

  .hero-metrics,
  .stats-grid,
  .pillar-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-logo-wrap {
    width: min(920px, 84vw);
  }

  .showcase-shell {
    min-height: auto;
  }

  .showcase-header-band {
    padding-bottom: 88px;
  }

  .showcase-field {
    margin-top: -44px;
    padding-top: 92px;
  }

  .showcase-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .showcase-core-wrap {
    order: -1;
  }

  .showcase-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: none;
  }

  .showcase-rail--left,
  .showcase-rail--right {
    grid-column: auto;
    justify-self: stretch;
    justify-items: stretch;
  }

  .showcase-core-wrap--image-only {
    grid-column: auto;
    width: min(100%, 320px);
    max-width: 320px;
    justify-self: center;
  }

  .showcase-card {
    width: 100%;
  }
}

@media (max-width: 920px) {
  :root {
    --rail-width: 0px;
    --rail-space: 0px;
  }

  html,
  body {
    overflow: hidden;
  }

  .topbar {
    gap: 16px;
    flex-wrap: wrap;
    height: auto;
    min-height: var(--topbar-height);
    padding-bottom: 10px;
  }

  .brand-mark {
    min-width: 38px;
    height: 28px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .slide {
    padding: calc(var(--topbar-height) + 48px) 18px 138px;
  }

  .slide__inner {
    width: 100%;
  }

  .slide-rail {
    top: auto;
    right: 16px;
    left: 16px;
    bottom: 86px;
    width: auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  body.rail-collapsed .slide-rail {
    transform: translateY(calc(100% + 20px));
  }

  .slide-rail::-webkit-scrollbar {
    display: none;
  }

  .slide-rail__item {
    flex: 0 0 96px;
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 66px;
    padding: 10px;
  }

  .slide-rail__number {
    font-size: 0.72rem;
  }

  .slide-rail__label {
    font-size: 0.72rem;
  }

  .arrow-nav {
    left: 16px;
    right: 16px;
    bottom: 22px;
    justify-content: space-between;
  }

  .rail-tab {
    top: auto;
    right: 0;
    bottom: 160px;
    width: 16px;
    height: 64px;
    transform: none;
  }

  .rail-tab:hover {
    transform: translateY(-1px);
  }

  .control-button,
  .nav-chip {
    flex: 1;
  }

  .nav-chip {
    min-width: 0;
    min-height: 62px;
    padding: 12px 14px;
  }

  .hero-chips {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    width: min(92vw, 760px);
  }

  .hero-metrics,
  .stats-grid,
  .pillar-grid,
  .benefit-grid,
  .roi-grid,
  .service-grid,
  .ai-grid,
  .card-grid,
  .portfolio-grid,
  .showcase-stage {
    grid-template-columns: 1fr;
  }

  .showcase-header-band {
    padding: 28px 20px 72px;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }

  .showcase-field {
    margin-top: -28px;
    padding: 64px 18px 28px;
    border-radius: 0;
  }

  .showcase-card {
    padding: 18px;
  }

  .showcase-stage,
  .showcase-rail {
    grid-template-columns: 1fr;
  }

  .showcase-rail--left,
  .showcase-rail--right,
  .showcase-core-wrap--image-only {
    grid-column: auto;
  }

  .showcase-core {
    width: min(220px, 100%);
    height: 388px;
  }
}
