.commercial-page {
  --commercial-ink: #e8f2fb;
  --commercial-muted: #91a9bd;
  --commercial-line: rgb(133 177 211 / 20%);
  --commercial-panel: #0a1d2e;
  --commercial-panel-2: #0e2941;
  overflow: clip;
}

.commercial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
}

.commercial-heading h1 {
  max-width: 50rem;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.commercial-heading > div:first-child > p:last-child {
  max-width: 49rem;
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.market-range {
  display: grid;
  gap: 0.28rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #b8d5e8;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff 10%, #eef7ff 100%);
  box-shadow: var(--shadow-sm);
}

.market-range span,
.market-range small {
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 720;
  line-height: 1.45;
}

.market-range span {
  letter-spacing: 0.12em;
}

.market-range strong {
  color: var(--navy);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  letter-spacing: -0.05em;
}

.cinematic-section {
  overflow: hidden;
  border: 1px solid #173e5e;
  border-radius: 1.15rem;
  background: #071522;
  color: var(--commercial-ink);
  box-shadow: 0 26px 70px rgb(9 33 53 / 18%);
}

.story-toolbar {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--commercial-line);
  background: #0a1c2c;
}

.story-toolbar h2 {
  margin: 0.22rem 0 0;
  color: #f2f7fb;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: -0.02em;
}

.story-kicker {
  color: #69bceb;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.story-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
}

.story-control,
.story-skip {
  min-height: 2.75rem;
  border: 1px solid #2a5270;
  border-radius: 0.55rem;
  background: #102b40;
  color: #d9e8f3;
  font-size: 0.72rem;
  font-weight: 720;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.story-control {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.72rem;
}

.story-control svg {
  width: 0.9rem;
  height: 0.9rem;
}

.story-skip {
  padding: 0 0.85rem;
  background: transparent;
  color: #9fb8cb;
}

.story-control:hover,
.story-skip:hover {
  border-color: #63b9ea;
  background: #153a56;
  color: #fff;
}

.story-control:active,
.story-skip:active {
  transform: translateY(1px);
}

.cinematic-stage {
  position: relative;
  isolation: isolate;
  height: clamp(36rem, 57vw, 47rem);
  min-height: 36rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgb(36 102 150 / 20%), transparent 38%),
    linear-gradient(155deg, #071522 0%, #091d2c 48%, #06111c 100%);
}

.stage-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgb(117 168 207 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(117 168 207 / 5%) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 95%);
}

.stage-vignette {
  position: absolute;
  z-index: 9;
  inset: 0;
  box-shadow: inset 0 0 8rem rgb(0 5 10 / 65%);
  pointer-events: none;
}

.fragment-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  transform-origin: 50% 72%;
}

.market-card {
  position: absolute;
  display: flex;
  width: clamp(14.5rem, 25vw, 20rem);
  min-height: 12rem;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid rgb(143 184 214 / 28%);
  border-radius: 0.72rem;
  background: linear-gradient(145deg, rgb(20 51 75 / 97%), rgb(8 29 45 / 98%));
  box-shadow: 0 18px 40px rgb(0 4 9 / 38%);
  opacity: 0;
  transform: translate3d(var(--from-x), var(--from-y), 0) rotate(var(--from-rotate)) scale(0.88);
}

.market-card::before {
  position: absolute;
  top: 0;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
  content: "";
}

.market-card p {
  margin: 0;
  color: #b7cad9;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.market-card strong {
  margin-top: 0.55rem;
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.market-card small {
  margin-top: 0.25rem;
  color: var(--card-accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.market-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.market-card > div span {
  padding: 0.2rem 0.34rem;
  border: 1px solid rgb(170 202 225 / 18%);
  border-radius: 0.22rem;
  background: rgb(255 255 255 / 4%);
  color: #a9bdcc;
  font-size: 0.52rem;
  font-weight: 730;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.market-card-intune {
  --card-accent: #6dc4f3;
  --from-x: -18rem;
  --from-y: -9rem;
  --from-rotate: -8deg;
  top: 8%;
  left: 5%;
  transform-origin: bottom right;
}

.market-card-defender {
  --card-accent: #9fa8ff;
  --from-x: 16rem;
  --from-y: -8rem;
  --from-rotate: 7deg;
  top: 13%;
  right: 5%;
  transform-origin: bottom left;
}

.market-card-forti {
  --card-accent: #75d0b1;
  --from-x: -19rem;
  --from-y: 10rem;
  --from-rotate: 6deg;
  bottom: 13%;
  left: 15%;
  transform-origin: top right;
}

.market-card-ups {
  --card-accent: #c5a9e8;
  --from-x: 17rem;
  --from-y: 12rem;
  --from-rotate: -6deg;
  right: 13%;
  bottom: 8%;
  transform-origin: top left;
}

.cost-accumulator {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 20rem;
  place-items: center;
  opacity: 0;
  transform: translate(-50%, -45%) scale(0.94);
}

.cost-accumulator > span {
  color: #b7cddd;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 680;
  opacity: 0;
  transform: translateY(-0.5rem);
}

.accumulator-rule {
  width: min(20rem, 70vw);
  height: 1px;
  margin: 0.75rem 0;
  background: linear-gradient(90deg, transparent, #6bbdeb, transparent);
  transform: scaleX(0);
}

.cost-accumulator strong {
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.cost-accumulator strong b {
  font-weight: inherit;
}

.cost-accumulator small {
  margin-top: 0.55rem;
  color: #89a9bf;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-shadow {
  position: absolute;
  z-index: 5;
  right: 16%;
  bottom: 5%;
  left: 16%;
  height: 2rem;
  border-radius: 50%;
  background: #000;
  filter: blur(18px);
  opacity: 0;
  transform: scaleX(0.4);
}

.argus-wall {
  position: absolute;
  z-index: 6;
  top: 8%;
  right: 8%;
  bottom: 7%;
  left: 8%;
  overflow: hidden;
  border: 1px solid #2f5875;
  border-radius: 0.45rem;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 2%), transparent 15%, transparent 85%, rgb(255 255 255 / 2%)),
    linear-gradient(160deg, #15364d 0%, #0c263a 46%, #081a2a 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 9%),
    inset 0 -14px 30px rgb(0 7 13 / 34%),
    0 2rem 5rem rgb(0 5 10 / 70%);
  opacity: 0;
  transform: translateY(-145%) scaleY(1.02);
  transform-origin: 50% 100%;
}

.argus-wall::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 7rem, rgb(135 183 215 / 5%) 7rem calc(7rem + 1px)),
    linear-gradient(90deg, transparent 49.9%, rgb(125 171 202 / 8%) 50%, transparent 50.1%);
  content: "";
}

.wall-edge {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.32rem;
  background: linear-gradient(90deg, #315f7e, #7ba6c1 50%, #315f7e);
  box-shadow: 0 1px 0 rgb(255 255 255 / 12%);
}

.wall-rivets {
  position: absolute;
  z-index: 2;
  inset: 0.85rem;
}

.wall-rivets i {
  position: absolute;
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid #547996;
  border-radius: 50%;
  background: #0a2235;
  box-shadow: inset 0 1px 1px rgb(255 255 255 / 15%);
}

.wall-rivets i:nth-child(1) { top: 0; left: 0; }
.wall-rivets i:nth-child(2) { top: 0; right: 0; }
.wall-rivets i:nth-child(3) { bottom: 0; left: 0; }
.wall-rivets i:nth-child(4) { right: 0; bottom: 0; }

.wall-reveal {
  position: absolute;
  z-index: 1;
  inset: 8% 7% 19%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.argus-word {
  display: flex;
  justify-content: center;
  gap: clamp(0.35rem, 2vw, 1.25rem);
  color: #f6fbff;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 770;
  letter-spacing: 0.09em;
  line-height: 0.9;
}

.argus-word span {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  text-shadow: 0 0 2rem rgb(80 178 233 / 22%);
  transform: translateY(0.55rem);
}

.wall-reveal > p,
.wall-scope,
.wall-reveal > em,
.wall-reveal > strong,
.wall-reveal > small {
  opacity: 0;
  transform: translateY(0.55rem);
}

.wall-reveal > p {
  margin: 1.2rem 0 0;
  color: #e5f2fb;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-weight: 650;
}

.wall-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: #84c7ed;
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  font-weight: 740;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.wall-scope i {
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: #6dbce8;
}

.wall-reveal > em {
  max-width: 54rem;
  margin-top: 0.85rem;
  color: #9db4c6;
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  line-height: 1.55;
}

.wall-reveal > strong {
  margin-top: 1rem;
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: -0.05em;
}

.wall-reveal > small {
  margin-top: 0.28rem;
  color: #8ba4b7;
  font-size: 0.62rem;
}

.wall-capability-strip {
  position: absolute;
  z-index: 2;
  right: 2.5%;
  bottom: 3%;
  left: 2.5%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgb(128 175 207 / 17%);
  background: rgb(4 18 29 / 35%);
  opacity: 0;
  transform: translateY(1rem);
}

.wall-capability-strip span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.65rem 0.75rem;
  color: #829caf;
  font-size: 0.56rem;
  line-height: 1.35;
}

.wall-capability-strip span + span {
  border-left: 1px solid rgb(128 175 207 / 17%);
}

.wall-capability-strip b {
  color: #dcebf5;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.impact-particles {
  position: absolute;
  z-index: 7;
  right: 8%;
  bottom: 6%;
  left: 8%;
  height: 3rem;
  opacity: 0;
  pointer-events: none;
}

.impact-particles i {
  position: absolute;
  bottom: 0;
  left: var(--particle-left);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: #77a7c5;
  transform: translate(0, 0);
}

.particle-1 { --particle-left: 5%; --particle-size: 2px; --particle-x: -1rem; --particle-y: -2rem; }
.particle-2 { --particle-left: 13%; --particle-size: 3px; --particle-x: 1.2rem; --particle-y: -1.2rem; }
.particle-3 { --particle-left: 22%; --particle-size: 2px; --particle-x: -0.5rem; --particle-y: -2.6rem; }
.particle-4 { --particle-left: 31%; --particle-size: 4px; --particle-x: 0.8rem; --particle-y: -1.5rem; }
.particle-5 { --particle-left: 39%; --particle-size: 2px; --particle-x: -1.4rem; --particle-y: -2rem; }
.particle-6 { --particle-left: 47%; --particle-size: 3px; --particle-x: 0.5rem; --particle-y: -2.8rem; }
.particle-7 { --particle-left: 54%; --particle-size: 2px; --particle-x: -0.8rem; --particle-y: -1.8rem; }
.particle-8 { --particle-left: 63%; --particle-size: 3px; --particle-x: 1.1rem; --particle-y: -2.5rem; }
.particle-9 { --particle-left: 71%; --particle-size: 2px; --particle-x: -0.6rem; --particle-y: -1.4rem; }
.particle-10 { --particle-left: 79%; --particle-size: 4px; --particle-x: 1.5rem; --particle-y: -2.2rem; }
.particle-11 { --particle-left: 87%; --particle-size: 2px; --particle-x: -1rem; --particle-y: -2.7rem; }
.particle-12 { --particle-left: 95%; --particle-size: 3px; --particle-x: 0.6rem; --particle-y: -1.7rem; }

.story-progress {
  position: absolute;
  z-index: 10;
  right: 1.1rem;
  bottom: 0.85rem;
  left: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.story-progress li {
  position: relative;
  padding-top: 0.55rem;
  color: #67849a;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-progress li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: #24445c;
  content: "";
}

.story-progress li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #6fc3f0;
  content: "";
}

.story-progress span {
  margin-right: 0.35rem;
  color: #8ea9bc;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

.is-running .market-card {
  animation: market-card-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-running .market-card-1 { animation-delay: 350ms; }
.is-running .market-card-2 { animation-delay: 950ms; }
.is-running .market-card-3 { animation-delay: 1550ms; }
.is-running .market-card-4 { animation-delay: 2150ms; }

.is-running .fragment-field {
  animation: fragment-compress 900ms cubic-bezier(0.55, 0, 0.2, 1) 7450ms forwards;
}

.is-running .cost-accumulator {
  animation: accumulator-life 4200ms ease 3600ms forwards;
}

.is-running .cost-accumulator > span:nth-child(1) { animation: cost-line-in 340ms ease-out 3900ms forwards; }
.is-running .cost-accumulator > span:nth-child(2) { animation: cost-line-in 340ms ease-out 4450ms forwards; }
.is-running .cost-accumulator > span:nth-child(3) { animation: cost-line-in 340ms ease-out 5000ms forwards; }
.is-running .cost-accumulator > span:nth-child(4) { animation: cost-line-in 340ms ease-out 5550ms forwards; }
.is-running .accumulator-rule { animation: rule-grow 450ms ease-out 6050ms forwards; }

.is-running .argus-wall {
  animation: wall-drop 1450ms cubic-bezier(0.72, 0, 0.18, 1) 7000ms forwards;
}

.is-running .impact-shadow { animation: impact-shadow 900ms ease-out 7950ms forwards; }
.is-running .impact-particles { animation: particles-show 850ms ease-out 8070ms forwards; }
.is-running .impact-particles i { animation: particle-rise 850ms ease-out 8070ms forwards; }

.is-running .argus-word span {
  animation: letter-reveal 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-running .argus-word span:nth-child(1) { animation-delay: 9350ms; }
.is-running .argus-word span:nth-child(2) { animation-delay: 9800ms; }
.is-running .argus-word span:nth-child(3) { animation-delay: 10250ms; }
.is-running .argus-word span:nth-child(4) { animation-delay: 10700ms; }
.is-running .argus-word span:nth-child(5) { animation-delay: 11150ms; }
.is-running .wall-reveal > p { animation: reveal-up 600ms ease-out 11900ms forwards; }
.is-running .wall-scope { animation: reveal-up 600ms ease-out 12450ms forwards; }
.is-running .wall-reveal > em { animation: reveal-up 600ms ease-out 12900ms forwards; }
.is-running .wall-reveal > strong { animation: reveal-up 600ms ease-out 13500ms forwards; }
.is-running .wall-reveal > small { animation: reveal-up 600ms ease-out 13850ms forwards; }
.is-running .wall-capability-strip { animation: reveal-up 700ms ease-out 14600ms forwards; }

.is-running .story-progress li:nth-child(1)::after { animation: progress-fill 2600ms linear 250ms forwards; }
.is-running .story-progress li:nth-child(2)::after { animation: progress-fill 3300ms linear 3400ms forwards; }
.is-running .story-progress li:nth-child(3)::after { animation: progress-fill 1800ms linear 6900ms forwards; }
.is-running .story-progress li:nth-child(4)::after { animation: progress-fill 6100ms linear 8800ms forwards; }

.is-paused .cinematic-stage *,
.is-paused .cinematic-stage *::before,
.is-paused .cinematic-stage *::after {
  animation-play-state: paused !important;
}

.is-complete .market-card,
.is-complete .cost-accumulator,
.is-complete .impact-particles {
  display: none;
}

.is-complete .argus-wall {
  opacity: 1;
  transform: none;
}

.is-complete .argus-word span,
.is-complete .wall-reveal > p,
.is-complete .wall-scope,
.is-complete .wall-reveal > em,
.is-complete .wall-reveal > strong,
.is-complete .wall-reveal > small,
.is-complete .wall-capability-strip {
  clip-path: none;
  opacity: 1;
  transform: none;
}

.is-complete .story-progress li::after {
  width: 100%;
}

@keyframes market-card-enter {
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes fragment-compress {
  55% { opacity: 0.8; transform: scaleX(0.78) scaleY(0.9); filter: saturate(0.7); }
  100% { opacity: 0; transform: scaleX(0.42) scaleY(0.78); filter: saturate(0); }
}

@keyframes accumulator-life {
  0% { opacity: 0; transform: translate(-50%, -45%) scale(0.94); }
  10%, 75% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -52%) scale(0.98); }
}

@keyframes cost-line-in {
  to { opacity: 1; transform: none; }
}

@keyframes rule-grow {
  to { transform: scaleX(1); }
}

@keyframes wall-drop {
  0% { opacity: 0; transform: translateY(-145%) scaleY(1.02); }
  8% { opacity: 1; }
  76% { transform: translateY(1.3%) scaleY(0.985); }
  88% { transform: translateY(-0.5%) scaleY(1.005); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

@keyframes impact-shadow {
  0% { opacity: 0; transform: scaleX(0.4); }
  25% { opacity: 0.75; transform: scaleX(1); }
  100% { opacity: 0.38; transform: scaleX(0.82); }
}

@keyframes particles-show {
  0%, 12% { opacity: 0; }
  20% { opacity: 0.5; }
  100% { opacity: 0; }
}

@keyframes particle-rise {
  to { transform: translate(var(--particle-x), var(--particle-y)); opacity: 0; }
}

@keyframes letter-reveal {
  to { clip-path: inset(0 0 0 0); opacity: 1; transform: none; }
}

@keyframes reveal-up {
  to { opacity: 1; transform: none; }
}

@keyframes progress-fill {
  to { width: 100%; }
}

.capability-section,
.calculator-section {
  margin-top: 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 6rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.section-heading-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.7vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading-row > p {
  max-width: 31rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.capability-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.capability-column {
  position: relative;
  min-width: 0;
  padding: 1rem;
  background: linear-gradient(180deg, var(--column-soft), #fff 44%);
}

.capability-column + .capability-column {
  border-left: 1px solid var(--border);
}

.capability-column[data-tone="blue"] { --column: #0b78c8; --column-soft: #eef7ff; }
.capability-column[data-tone="indigo"] { --column: #4f65b9; --column-soft: #f1f3ff; }
.capability-column[data-tone="violet"] { --column: #76547f; --column-soft: #f8f2fa; }
.capability-column[data-tone="slate"] { --column: #4b657a; --column-soft: #f2f6f8; }

.capability-column::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--column);
  content: "";
}

.capability-column header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.capability-index {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--column) 35%, white);
  border-radius: 0.48rem;
  background: #fff;
}

.capability-index::before {
  width: 0.62rem;
  height: 0.62rem;
  border: 2px solid var(--column);
  border-radius: 0.16rem;
  box-shadow: 0.22rem 0.22rem 0 color-mix(in srgb, var(--column) 40%, white);
  content: "";
}

.capability-column header p {
  margin: 0;
  color: var(--column);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.capability-column h3 {
  margin: 0.16rem 0 0;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: -0.015em;
}

.capability-column ul {
  display: grid;
  gap: 0.52rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.capability-column li {
  position: relative;
  padding-left: 0.82rem;
  color: var(--text-soft);
  font-size: 0.7rem;
  line-height: 1.45;
}

.capability-column li::before {
  position: absolute;
  top: 0.49rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--column);
  content: "";
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 1rem;
}

.calculator-controls {
  display: grid;
  gap: 0.75rem;
}

.cost-control {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-subtle);
}

.cost-control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cost-control-heading label,
.cost-control-heading small {
  display: block;
}

.cost-control-heading label {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 740;
}

.cost-control-heading small {
  margin-top: 0.14rem;
  color: var(--text-muted);
  font-size: 0.62rem;
}

.cost-control-heading input {
  width: 5.3rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.48rem;
  background: #fff;
  color: var(--navy);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-weight: 720;
  text-align: right;
}

.cost-range {
  width: 100%;
  height: 2.75rem;
  margin: 0.3rem 0 -0.3rem;
  accent-color: var(--blue);
  cursor: pointer;
}

.range-limits {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
}

.calculator-result {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid #1f5277;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgb(50 145 204 / 20%), transparent 40%),
    linear-gradient(145deg, #0b2a44, #081d30);
  color: #fff;
}

.calculator-result::after {
  position: absolute;
  right: -2rem;
  bottom: -3.5rem;
  width: 10rem;
  height: 10rem;
  border: 1.4rem solid rgb(99 183 232 / 6%);
  border-radius: 50%;
  content: "";
}

.result-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.result-label span {
  color: #75c4ef;
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.result-label small,
.result-assumptions {
  color: #94adbf;
  font-size: 0.65rem;
}

.result-total {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.result-period {
  margin-top: 0.3rem;
  color: #86c5e9;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.monthly-total {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(136 187 220 / 20%);
  color: #b9cede;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
}

.monthly-total span {
  color: #fff;
  font-weight: 720;
}

.result-assumptions {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
}

.cost-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cost-breakdown article {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
}

.cost-breakdown article:nth-child(even) { border-left: 1px solid var(--border); }
.cost-breakdown article:nth-child(n + 3) { border-top: 1px solid var(--border); }

.cost-breakdown article > div:first-child {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  column-gap: 0.55rem;
}

.reference-mark {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.25rem;
  border-radius: 0.14rem;
  background: var(--reference-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--reference-color) 13%, white);
  grid-row: span 2;
}

.reference-mark[data-reference="endpoint"] { --reference-color: #0b78c8; }
.reference-mark[data-reference="security"] { --reference-color: #536cc4; }
.reference-mark[data-reference="analytics"] { --reference-color: #147a57; }
.reference-mark[data-reference="power"] { --reference-color: #76547f; }

.cost-breakdown p,
.cost-breakdown small,
.cost-breakdown code,
.cost-breakdown strong {
  display: block;
}

.cost-breakdown p {
  margin: 0;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 720;
}

.cost-breakdown small {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.6rem;
}

.cost-breakdown article > div:last-child {
  flex: 0 0 auto;
  text-align: right;
}

.cost-breakdown code {
  color: var(--text-muted);
  font-size: 0.62rem;
}

.cost-breakdown strong {
  margin-top: 0.2rem;
  color: var(--navy);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.pricing-disclosure {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d6e3ec;
  border-radius: var(--radius-md);
  background: #f7fafc;
}

.pricing-disclosure svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.12rem;
  color: var(--blue-dark);
}

.pricing-disclosure p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.68rem;
  line-height: 1.55;
}

.commercial-page > .showcase-disclaimer {
  margin-top: 1rem;
}

@media (max-width: 75rem) {
  .capability-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-column:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .capability-column:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .wall-reveal {
    bottom: 22%;
  }
}

@media (max-width: 58rem) {
  .commercial-heading,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .market-range {
    max-width: 35rem;
  }

  .cinematic-stage {
    height: 42rem;
  }

  .market-card {
    width: 15rem;
    min-height: 11rem;
  }

  .market-card-intune { top: 6%; left: 4%; }
  .market-card-defender { top: 10%; right: 4%; }
  .market-card-forti { bottom: 13%; left: 8%; }
  .market-card-ups { right: 7%; bottom: 8%; }

  .argus-wall {
    right: 4%;
    left: 4%;
  }

  .wall-reveal {
    inset: 8% 5% 23%;
  }

  .wall-capability-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wall-capability-strip span:nth-child(3) {
    border-top: 1px solid rgb(128 175 207 / 17%);
    border-left: 0;
  }

  .wall-capability-strip span:nth-child(4) {
    border-top: 1px solid rgb(128 175 207 / 17%);
  }
}

@media (max-width: 44rem) {
  .commercial-heading {
    gap: 1rem;
  }

  .commercial-heading h1 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .story-toolbar,
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-controls {
    width: 100%;
    flex-wrap: wrap;
  }

  .story-control,
  .story-skip {
    flex: 1 1 auto;
    justify-content: center;
  }

  .cinematic-stage {
    height: 39rem;
    min-height: 39rem;
  }

  .market-card {
    width: 11.8rem;
    min-height: 10.5rem;
    padding: 0.72rem;
  }

  .market-card p { font-size: 0.56rem; }
  .market-card strong { font-size: 1.45rem; }
  .market-card > div span { font-size: 0.45rem; }
  .market-card-intune { top: 5%; left: 3%; }
  .market-card-defender { top: 12%; right: 3%; }
  .market-card-forti { bottom: 15%; left: 4%; }
  .market-card-ups { right: 3%; bottom: 7%; }

  .argus-wall {
    top: 6%;
    right: 2.5%;
    bottom: 6%;
    left: 2.5%;
  }

  .wall-reveal {
    inset: 7% 4% 25%;
  }

  .argus-word {
    gap: 0.22rem;
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  .wall-reveal > p {
    margin-top: 0.8rem;
    font-size: 0.95rem;
  }

  .wall-scope {
    max-width: 21rem;
    margin-top: 0.6rem;
    font-size: 0.55rem;
  }

  .wall-reveal > em {
    margin-top: 0.6rem;
    font-size: 0.61rem;
    line-height: 1.42;
  }

  .wall-reveal > strong {
    margin-top: 0.65rem;
    font-size: 1.15rem;
  }

  .wall-reveal > small {
    max-width: 19rem;
    font-size: 0.52rem;
  }

  .wall-capability-strip span {
    padding: 0.45rem;
    font-size: 0.48rem;
  }

  .wall-capability-strip b {
    font-size: 0.5rem;
  }

  .story-progress {
    right: 0.65rem;
    left: 0.65rem;
    gap: 0.25rem;
  }

  .story-progress li {
    overflow: hidden;
    font-size: 0;
  }

  .story-progress span {
    font-size: 0.52rem;
  }

  .capability-map,
  .cost-breakdown {
    grid-template-columns: 1fr;
  }

  .capability-column + .capability-column,
  .capability-column:nth-child(3),
  .capability-column:nth-child(4) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .cost-control-heading {
    align-items: flex-start;
  }

  .cost-control-heading small {
    max-width: 13rem;
  }

  .cost-breakdown article,
  .cost-breakdown article:nth-child(even),
  .cost-breakdown article:nth-child(n + 3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .cost-breakdown article:first-child {
    border-top: 0;
  }
}

@media (max-width: 25rem) {
  .market-card {
    width: 10.6rem;
  }

  .market-card > div span:nth-child(n + 5) {
    display: none;
  }

  .cost-breakdown article {
    align-items: flex-start;
    flex-direction: column;
  }

  .cost-breakdown article > div:last-child {
    width: 100%;
    padding-left: 1.1rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commercial-page {
    scroll-behavior: auto;
  }

  .commercial-page *,
  .commercial-page *::before,
  .commercial-page *::after {
    animation: none !important;
  }

  .cinematic-stage {
    height: clamp(36rem, 57vw, 47rem);
  }
}

@media (prefers-contrast: more) {
  .cinematic-section,
  .argus-wall,
  .story-control,
  .story-skip {
    border-color: #83c9f2;
  }

  .commercial-muted,
  .wall-reveal > em,
  .wall-reveal > small {
    color: #d0dfeb;
  }
}
