:root {
  --ink: #17171c;
  --paper: #f3f0e9;
  --white: #fffdf8;
  --violet: #211d61;
  --violet-deep: #151342;
  --orange: #ff9f1c;
  --orange-hot: #ffb12b;
  --red: #a31914;
  --cyan: #42d5cf;
  --muted: #898995;
  --line: rgba(255, 255, 255, 0.18);
  --display: "Archivo Black", sans-serif;
  --condensed: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--white); color: var(--ink); padding: .8rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
section[id] { scroll-margin-top: 76px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: 88px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .3s ease, min-height .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { min-height: 70px; background: rgba(21,19,66,.92); backdrop-filter: blur(16px); }
.brand { position: relative; display: inline-flex; width: max-content; align-items: center; gap: .65rem; }
.brand-orbit { position: relative; width: 43px; height: 43px; display: block; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.brand-orbit::before, .brand-orbit::after { content: ""; position: absolute; inset: 7px -5px; border: 1px solid var(--orange); border-radius: 50%; transform: rotate(23deg); }
.brand-orbit::after { inset: -3px 12px; transform: rotate(-28deg); border-color: rgba(255,255,255,.5); }
.brand-orbit i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.brand-orbit i:nth-child(1){ top: 8px; left: 4px; }
.brand-orbit i:nth-child(2){ right: 2px; top: 21px; }
.brand-orbit i:nth-child(3){ bottom: 2px; left: 18px; }
.brand-word { display: flex; align-items: baseline; font: 700 1.45rem/1 var(--condensed); letter-spacing: -.04em; text-transform: lowercase; }
.brand-word b { font-weight: 800; }
.brand-word em { color: var(--orange); font-style: normal; font-weight: 700; }
.site-nav { display: flex; gap: clamp(1.25rem, 2.8vw, 2.8rem); align-items: center; }
.site-nav a { position: relative; padding: .75rem 0; color: rgba(255,255,255,.82); font: 600 .83rem/1 var(--body); }
.site-nav a::after { content: ""; position: absolute; height: 2px; inset: auto 100% 0 0; background: var(--orange); transition: inset .25s ease; }
.site-nav a:hover::after { inset-right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: .65rem; border: 1px solid rgba(255,255,255,.35); padding: .78rem 1rem; font: 700 .75rem/1 var(--body); text-transform: uppercase; letter-spacing: .08em; }
.live-dot, .signal-label span, .product-status i, .console-head b i { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,159,28,.15); animation: pulse 2s infinite; }
.menu-button { display: none; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); align-items: center; padding: 11rem clamp(1.25rem, 7vw, 8rem) 7rem; color: var(--white); background: var(--violet); isolation: isolate; }
.hero-noise { position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; pointer-events: none; }
.hero-grid { position: absolute; inset: 0 0 0 52%; z-index: -2; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 64px 64px; transform: skewX(-8deg); }
.hero-slash { position: absolute; z-index: -1; width: 21vw; min-width: 250px; height: 150%; top: -20%; background: var(--violet-deep); transform: rotate(14deg); }
.hero-slash-one { right: 25%; }
.hero-slash-two { right: -13%; background: var(--orange); opacity: .95; }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: .9rem; margin: 0 0 1.6rem; color: rgba(255,255,255,.65); font: 700 .76rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { color: var(--orange); display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow span::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4.2rem, 8.1vw, 8.5rem); line-height: .86; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 > span, .hero h1 > strong { display: block; }
.hero h1 strong { color: var(--orange); font-weight: inherit; }
.hero h1 .outline-word { margin-top: .16em; font-family: var(--condensed); font-size: .4em; letter-spacing: .12em; line-height: 1.2; -webkit-text-stroke: 1px rgba(255,255,255,.7); color: transparent; }
.hero-lede { max-width: 620px; margin: 2rem 0 2.2rem; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.75; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.button { min-height: 54px; padding: 0 1.45rem; display: inline-flex; align-items: center; justify-content: center; gap: 1.2rem; font: 700 .82rem/1 var(--body); letter-spacing: .02em; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--orange); box-shadow: 10px 10px 0 rgba(8,7,31,.4); }
.button-primary:hover { background: var(--orange-hot); box-shadow: 6px 6px 0 rgba(8,7,31,.45); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.32); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.play-icon { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: .55rem; padding-left: 2px; }

.hero-visual { position: relative; z-index: 2; width: min(42vw, 590px); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; }
.signal-label { position: absolute; top: 5%; left: 9%; display: flex; align-items: center; gap: .7rem; font: 700 .67rem/1 var(--body); letter-spacing: .1em; text-transform: uppercase; }
.orbit-stage { position: relative; width: 78%; aspect-ratio: 1; display: grid; place-items: center; }
.orbit { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; animation: rotate 22s linear infinite; }
.orbit::before, .orbit::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.15); border-radius: inherit; }
.orbit::after { inset: 31%; }
.orbit-two { inset: 12%; animation-duration: 15s; animation-direction: reverse; border-style: dashed; border-color: rgba(255,159,28,.7); }
.orbit i { position: absolute; width: 12px; height: 12px; border: 2px solid var(--orange); border-radius: 50%; background: var(--violet); box-shadow: 0 0 20px rgba(255,159,28,.7); }
.orbit i:nth-child(1) { top: 8%; left: 22%; }
.orbit i:nth-child(2) { right: -6px; top: 48%; }
.orbit i:nth-child(3) { bottom: 12%; left: 15%; }
.core-mark { position: relative; z-index: 2; width: 42%; aspect-ratio: 1; display: grid; place-items: center; background: rgba(21,19,66,.72); border: 1px solid rgba(255,255,255,.45); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.035), 0 0 80px rgba(66,213,207,.15); backdrop-filter: blur(10px); }
.core-mark svg { position: absolute; width: 62%; fill: none; stroke: rgba(255,255,255,.22); stroke-width: 2; }
.core-mark b { font: 400 clamp(4rem, 8vw, 7rem)/1 var(--display); color: var(--orange); transform: skew(-8deg); text-shadow: 8px 8px 0 rgba(0,0,0,.22); }
.telemetry-card { position: absolute; min-width: 145px; padding: .9rem 1rem; background: rgba(17,15,54,.84); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px); box-shadow: 12px 12px 30px rgba(0,0,0,.16); }
.telemetry-card span { display: block; margin-bottom: .45rem; color: rgba(255,255,255,.55); font: 600 .58rem/1 var(--body); letter-spacing: .12em; }
.telemetry-card b { color: var(--cyan); font: 700 .8rem/1 var(--condensed); letter-spacing: .1em; }
.telemetry-card > i { position: absolute; right: 12px; top: 12px; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; }
.telemetry-top { top: 16%; right: -1%; }
.telemetry-bottom { left: -3%; bottom: 17%; }
.mini-bars { height: 17px; display: flex; gap: 3px; align-items: end; margin-top: .6rem; }
.mini-bars i { width: 12px; background: var(--orange); transform-origin: bottom; animation: bars 1.2s ease-in-out infinite alternate; }
.mini-bars i:nth-child(1){height:30%}.mini-bars i:nth-child(2){height:70%;animation-delay:.2s}.mini-bars i:nth-child(3){height:45%;animation-delay:.35s}.mini-bars i:nth-child(4){height:100%;animation-delay:.1s}.mini-bars i:nth-child(5){height:60%;animation-delay:.45s}
.visual-caption { position: absolute; right: 0; bottom: 0; margin: 0; color: rgba(255,255,255,.5); font: 600 .58rem/1 var(--body); letter-spacing: .11em; }
.visual-caption b { color: var(--orange); margin-left: 1rem; }
.hero-rail { position: absolute; z-index: 3; inset: auto clamp(1.25rem, 4vw, 4.5rem) 2rem; display: grid; grid-template-columns: auto minmax(180px, 320px) 1fr auto; gap: 1.2rem; align-items: center; color: rgba(255,255,255,.55); font: 600 .62rem/1.4 var(--body); text-transform: uppercase; letter-spacing: .1em; }
.hero-rail > span { color: var(--orange); }
.hero-rail p { margin: 0; }
.rail-line { height: 1px; background: var(--line); }
.hero-rail a { display: flex; align-items: center; gap: .8rem; }
.hero-rail a b { color: var(--orange); font-size: 1rem; }

.proof-strip { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr) .8fr; min-height: 126px; background: var(--ink); color: var(--white); }
.proof-strip > div { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-content: center; padding: 1.5rem clamp(1.2rem, 3vw, 3rem); border-right: 1px solid rgba(255,255,255,.11); }
.proof-strip div > span { grid-row: span 2; align-self: center; color: var(--orange); font: 700 1.8rem/1 var(--condensed); }
.proof-strip b { font: 700 1rem/1.1 var(--condensed); text-transform: uppercase; letter-spacing: .05em; }
.proof-strip small { margin-top: .35rem; color: rgba(255,255,255,.45); font-size: .67rem; }
.proof-strip > p { display: grid; place-items: center; margin: 0; color: rgba(255,255,255,.45); font: 600 .65rem/1.5 var(--body); letter-spacing: .1em; text-align: center; }
.proof-strip p strong { display: inline; color: var(--white); font-size: 1rem; }

.section { padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.section-index { display: flex; align-items: center; gap: 1rem; color: #686871; font: 700 .63rem/1 var(--body); letter-spacing: .12em; }
.section-index div { width: 88px; height: 1px; background: #bcb9b2; }
.section-index.light { color: rgba(255,255,255,.5); }
.section-index.light div { background: rgba(255,255,255,.2); }
.experience { background: var(--paper); }
.experience-intro { display: grid; grid-template-columns: 1fr minmax(280px, 450px); align-items: end; gap: 3rem; margin: 3rem 0 4.5rem; }
.experience-intro .kicker { grid-column: 1 / -1; margin-bottom: -1.8rem; }
.kicker { margin: 0; color: var(--red); font: 800 .7rem/1 var(--body); letter-spacing: .13em; text-transform: uppercase; }
h2 { margin: 0; font: 400 clamp(2.8rem, 5.3vw, 6.1rem)/.94 var(--display); letter-spacing: -.06em; text-transform: uppercase; }
h2 em { color: var(--orange); font-style: normal; }
.experience-intro > p:last-child, .showcase-heading > p { margin: 0; color: #62616a; font-size: .96rem; line-height: 1.8; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c9c5bd; border-left: 1px solid #c9c5bd; }
.journey-card { position: relative; min-height: 330px; padding: 2rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; border-right: 1px solid #c9c5bd; border-bottom: 1px solid #c9c5bd; overflow: hidden; transition: color .3s ease, background .3s ease, transform .3s ease; }
.journey-card::before { content: ""; position: absolute; width: 160px; height: 160px; right: -55px; top: -55px; border: 1px solid rgba(23,23,28,.11); border-radius: 50%; transition: transform .4s ease; }
.journey-card:hover { z-index: 2; color: var(--white); background: var(--violet); transform: translateY(-8px); }
.journey-card:hover::before { transform: scale(1.8); border-color: rgba(255,255,255,.15); }
.journey-card.featured { color: var(--white); background: var(--red); }
.card-number { position: absolute; left: 2rem; top: 2rem; color: currentColor; opacity: .42; font: 700 .65rem/1 var(--body); }
.line-icon { margin-bottom: auto; color: var(--orange); font: 400 3.2rem/1 var(--condensed); }
.journey-card.featured .line-icon { color: var(--white); }
.journey-card h3 { margin: 0 0 .8rem; font: 700 1.8rem/1 var(--condensed); text-transform: uppercase; }
.journey-card p { max-width: 300px; margin: 0; opacity: .67; font-size: .85rem; line-height: 1.65; }
.journey-card small { margin-top: 1.4rem; font: 800 .58rem/1 var(--body); letter-spacing: .18em; }

.showcase { color: var(--white); background: var(--ink); }
.showcase-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(240px, .5fr); align-items: end; gap: 4rem; margin: 3rem 0 4rem; }
.showcase-heading .kicker { color: var(--orange); margin-bottom: 1rem; }
.showcase-heading > p { color: rgba(255,255,255,.55); }
.product-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.13); }
.product-tabs button { position: relative; min-height: 76px; border: 0; border-right: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.52); background: transparent; cursor: pointer; font: 700 1rem/1 var(--condensed); text-transform: uppercase; letter-spacing: .06em; transition: color .2s ease, background .2s ease; }
.product-tabs button:last-child { border-right: 0; }
.product-tabs button span { margin-right: 1rem; color: rgba(255,255,255,.25); font-size: .6rem; }
.product-tabs button::after { content: ""; position: absolute; height: 3px; inset: auto 100% 0 0; background: var(--orange); transition: inset .3s ease; }
.product-tabs button[aria-selected="true"] { color: var(--white); background: rgba(255,255,255,.04); }
.product-tabs button[aria-selected="true"]::after { inset-right: 0; }
.product-stage { border: 1px solid rgba(255,255,255,.13); border-top: 0; }
.product-panel { min-height: 540px; display: grid; grid-template-columns: .78fr 1.22fr; }
.product-panel[hidden] { display: none; }
.product-copy { padding: clamp(2rem, 4vw, 4.5rem); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.product-status { display: flex; align-items: center; gap: .7rem; margin: 0 0 2rem; color: var(--orange); font: 700 .6rem/1 var(--body); letter-spacing: .15em; }
.product-status i { width: 5px; height: 5px; }
.product-copy h3 { margin: 0; max-width: 560px; font: 400 clamp(2.5rem, 4.2vw, 4.8rem)/.92 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.product-copy > p:not(.product-status) { margin: 1.4rem 0; color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.75; }
.product-copy ul { margin: 0 0 2rem; padding: 0; list-style: none; color: rgba(255,255,255,.78); font: 600 .76rem/1.4 var(--body); }
.product-copy li { position: relative; padding: .55rem 0 .55rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.product-copy li::before { content: "+"; position: absolute; left: 0; color: var(--orange); }
.product-copy a, .text-link { color: var(--orange); font: 700 .72rem/1 var(--body); text-transform: uppercase; letter-spacing: .08em; }
.product-copy a span, .text-link span { margin-left: .8rem; transition: margin .2s ease; }
.product-copy a:hover span, .text-link:hover span { margin-left: 1.2rem; }
.product-image { position: relative; min-height: 540px; overflow: hidden; background: #25242b; }
.product-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(23,23,28,.45), transparent 30%), linear-gradient(0deg, rgba(23,23,28,.65), transparent 35%); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.product-panel:hover .product-image img { transform: scale(1.035); }
.map-image img { object-position: 60% center; }
.emergency-image img { object-position: center; }
.image-tag { position: absolute; z-index: 2; bottom: 1.5rem; right: 1.5rem; padding: .7rem .8rem; color: var(--white); background: rgba(23,23,28,.72); backdrop-filter: blur(10px); font: 700 .55rem/1 var(--body); letter-spacing: .12em; }

.zcloud { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,.85fr) minmax(430px,1.15fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); min-height: 780px; background: var(--orange); }
.zcloud::before { content: "Z"; position: absolute; right: -3vw; top: -15%; color: rgba(255,255,255,.11); font: 400 44rem/1 var(--display); transform: rotate(8deg); }
.cloud-shape { position: absolute; width: 420px; height: 420px; left: -210px; bottom: -210px; border: 1px solid rgba(23,23,28,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(23,23,28,.03), 0 0 0 110px rgba(23,23,28,.025); }
.zcloud-copy, .cloud-console { position: relative; z-index: 2; }
.zcloud .eyebrow { color: rgba(23,23,28,.55); }
.zcloud .eyebrow span { color: var(--red); }
.zcloud h2 em { color: var(--white); }
.zcloud-copy > p:not(.eyebrow) { max-width: 620px; margin: 1.8rem 0 2rem; color: rgba(23,23,28,.7); font-size: .95rem; line-height: 1.8; }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 10px 10px 0 rgba(255,255,255,.3); }
.cloud-console { min-height: 510px; padding: clamp(1.5rem, 3vw, 3rem); color: var(--white); background: rgba(23,23,28,.96); box-shadow: 24px 24px 0 rgba(163,25,20,.35); }
.console-head { display: flex; justify-content: space-between; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font: 700 .57rem/1 var(--body); letter-spacing: .13em; }
.console-head b { display: flex; align-items: center; gap: .6rem; color: var(--cyan); }
.console-head b i { width: 5px; height: 5px; background: var(--cyan); box-shadow: 0 0 0 4px rgba(66,213,207,.12); }
.console-score { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; padding: 2.4rem 0 2rem; }
.score-ring { width: 148px; height: 148px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: radial-gradient(circle at center, var(--ink) 59%, transparent 60%), conic-gradient(var(--cyan) 0 82%, rgba(255,255,255,.08) 82%); }
.score-ring b { font: 700 3.2rem/.9 var(--condensed); }
.score-ring span { margin-top: .45rem; color: rgba(255,255,255,.4); font: 700 .5rem/1 var(--body); letter-spacing: .12em; }
.score-copy small { color: rgba(255,255,255,.4); font: 600 .55rem/1 var(--body); letter-spacing: .12em; }
.score-copy strong { display: block; margin-top: .6rem; font: 700 2.1rem/1 var(--condensed); text-transform: uppercase; }
.score-copy p { margin: .5rem 0 0; color: var(--cyan); font-size: .7rem; }
.console-list { border-top: 1px solid rgba(255,255,255,.1); }
.console-list > div { display: grid; grid-template-columns: 1fr auto 10px; gap: 1rem; align-items: center; min-height: 48px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .67rem; }
.console-list span { color: rgba(255,255,255,.55); }
.console-list b { color: rgba(255,255,255,.8); font: 700 .57rem/1 var(--body); letter-spacing: .09em; }
.console-list i { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }
.console-wave { height: 60px; margin-top: 1rem; }
.console-wave svg { width: 100%; height: 100%; fill: none; stroke: var(--orange); stroke-width: 2; filter: drop-shadow(0 0 5px rgba(255,159,28,.4)); }

.zbot-section { display: grid; grid-template-columns: minmax(400px,1fr) minmax(0,1fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; background: var(--white); }
.zbot-image { position: relative; min-height: 620px; overflow: hidden; background: #2e3338; box-shadow: -24px 24px 0 var(--orange); }
.zbot-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.stamp { position: absolute; right: 1.5rem; top: 1.5rem; width: 100px; height: 100px; display: grid; place-items: center; border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: rgba(163,25,20,.88); font: 800 .65rem/1.2 var(--body); letter-spacing: .08em; text-align: center; transform: rotate(8deg); }
.zbot-copy .section-index { margin-bottom: 2.7rem; }
.zbot-copy .kicker { margin-bottom: 1rem; }
.zbot-copy h2 em { color: var(--red); }
.zbot-copy > p:not(.kicker) { margin: 1.7rem 0 2rem; color: #66656c; font-size: .95rem; line-height: 1.8; }
.bot-commands { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.bot-commands span { padding: .72rem .85rem; border: 1px solid #d7d3cb; color: #5b5a62; font: 700 .63rem/1 var(--body); }
.bot-commands span::before { content: ">"; margin-right: .5rem; color: var(--red); }
.text-link { color: var(--red); }

.contact { position: relative; overflow: hidden; min-height: 680px; display: grid; grid-template-columns: 1fr .75fr; align-items: center; color: var(--white); background: var(--violet-deep); isolation: isolate; }
.contact::before { content: ""; position: absolute; inset: 0 0 0 58%; z-index: -1; background: var(--red); clip-path: polygon(35% 0,100% 0,100% 100%,0 100%); }
.contact-glow { position: absolute; z-index: -1; width: 550px; height: 550px; left: -15%; top: -20%; border-radius: 50%; background: rgba(255,159,28,.13); filter: blur(100px); }
.contact-content { position: relative; z-index: 2; }
.contact h2 em { color: var(--orange); }
.contact-content > p:not(.eyebrow) { margin: 1.5rem 0 2rem; color: rgba(255,255,255,.6); }
.contact-mark { position: relative; z-index: 2; justify-self: center; width: min(33vw, 390px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.025); }
.contact-mark::before, .contact-mark::after { content: ""; position: absolute; inset: 10% -13%; border: 1px solid rgba(255,159,28,.65); border-radius: 50%; transform: rotate(24deg); }
.contact-mark::after { inset: -9% 23%; transform: rotate(-32deg); border-color: rgba(255,255,255,.45); }
.contact-mark span { position: absolute; font: 400 clamp(8rem,15vw,13rem)/1 var(--display); color: var(--orange); transform: skew(-8deg); opacity: .95; }
.contact-mark b { position: relative; z-index: 2; margin-top: 40%; color: var(--white); font: 800 1rem/.9 var(--condensed); letter-spacing: .12em; text-align: center; }
.contact-mark i { position: absolute; bottom: 10%; z-index: 2; color: rgba(255,255,255,.55); font: 700 .65rem/1 var(--body); letter-spacing: .2em; }

.site-footer { min-height: 110px; padding: 2rem clamp(1.25rem, 4vw, 4.5rem); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; color: rgba(255,255,255,.5); background: #0d0d11; font-size: .66rem; }
.site-footer > p:last-child { justify-self: end; }
.footer-brand { color: var(--white); transform: scale(.85); transform-origin: left center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.38} }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes bars { to { transform: scaleY(.25); } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 70px 0 0; display: none; padding: 2rem; flex-direction: column; align-items: flex-start; background: rgba(21,19,66,.985); }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.2rem; }
  .header-cta { display: none; }
  .menu-button { justify-self: end; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; color: inherit; border: 1px solid rgba(255,255,255,.25); background: transparent; cursor: pointer; }
  .menu-button > span:not(.sr-only) { display: block; width: 18px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .menu-button[aria-expanded="true"] span:nth-child(2){opacity:0}
  .menu-button[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .hero { grid-template-columns: 1fr .8fr; padding-inline: 3rem; }
  .hero h1 { font-size: clamp(4rem, 8.3vw, 6.8rem); }
  .hero-visual { width: 42vw; }
  .proof-strip { grid-template-columns: repeat(3,1fr); }
  .proof-strip > p { display: none; }
  .section { padding-inline: 3rem; }
  .product-panel { grid-template-columns: .9fr 1.1fr; }
  .zcloud { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header { min-height: 70px; padding-inline: 1.25rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 8rem 1.25rem 6.5rem; }
  .hero-copy { max-width: 670px; }
  .hero h1 { font-size: clamp(3.8rem, 16vw, 7.2rem); }
  .hero-lede { max-width: 550px; }
  .hero-visual { width: min(88vw, 560px); margin: 3rem auto 0; justify-self: center; }
  .hero-slash-one { right: 5%; }
  .hero-slash-two { right: -45%; }
  .hero-grid { inset-left: 20%; }
  .hero-rail { grid-template-columns: auto 1fr auto; }
  .hero-rail .rail-line { display: none; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { min-height: 100px; border-bottom: 1px solid rgba(255,255,255,.11); }
  .section { padding: 5.5rem 1.25rem; }
  .experience-intro, .showcase-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .experience-intro .kicker { margin-bottom: 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 270px; }
  .showcase-heading { margin-bottom: 2.5rem; }
  .product-tabs { grid-template-columns: repeat(2,1fr); }
  .product-tabs button:nth-child(2) { border-right: 0; }
  .product-tabs button:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .product-panel { grid-template-columns: 1fr; }
  .product-image { min-height: 430px; order: -1; }
  .product-copy { padding-block: 3rem; }
  .zcloud { grid-template-columns: 1fr; gap: 3rem; }
  .cloud-console { min-height: 0; }
  .zbot-section { grid-template-columns: 1fr; }
  .zbot-image, .zbot-image img { min-height: 500px; }
  .zbot-image { box-shadow: -12px 12px 0 var(--orange); }
  .contact { min-height: auto; grid-template-columns: 1fr; gap: 5rem; }
  .contact::before { inset: 50% 0 0; clip-path: polygon(30% 0,100% 0,100% 100%,0 100%); }
  .contact-mark { width: min(75vw,390px); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .site-footer > p:last-child { justify-self: center; }
}

@media (max-width: 520px) {
  .brand-word { font-size: 1.2rem; }
  .brand-orbit { width: 35px; height: 35px; }
  .hero { padding-top: 7rem; }
  .hero h1 { font-size: clamp(3.15rem, 17vw, 5.4rem); }
  .eyebrow { align-items: flex-start; flex-direction: column; gap: .65rem; line-height: 1.5; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { margin-top: 1.5rem; }
  .telemetry-card { min-width: 122px; padding: .7rem; }
  .telemetry-top { right: 0; }
  .telemetry-bottom { left: 0; }
  .hero-rail { font-size: .52rem; }
  .hero-rail p { display: none; }
  .hero-rail { grid-template-columns: 1fr auto; }
  .experience-intro { margin-bottom: 3rem; }
  h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .product-tabs button { min-height: 64px; font-size: .85rem; }
  .product-image { min-height: 320px; }
  .console-score { grid-template-columns: 1fr; }
  .zbot-image, .zbot-image img { min-height: 380px; }
  .bot-commands { flex-direction: column; align-items: stretch; }
}

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