:root {
  --bg: #03050b;
  --bg-soft: #060a12;
  --surface: #080d17;
  --surface-2: #0b1220;
  --surface-3: #101a2d;
  --ink: #f5f8ff;
  --ink-soft: #d7e1f2;
  --muted: #8f9db3;
  --muted-2: #66758d;
  --blue: #2468ff;
  --blue-bright: #138dff;
  --cyan: #23e6ff;
  --signal: #ff4a57;
  --amber: #f5aa18;
  --line: rgba(132, 166, 222, 0.16);
  --line-strong: rgba(132, 188, 255, 0.34);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius: 28px;
  --shell: min(1340px, calc(100vw - 80px));
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --header-h: 82px;
  --mx: 50vw;
  --my: 20vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% -10%, rgba(14, 77, 255, .20), transparent 36rem),
    radial-gradient(circle at 8% 18%, rgba(0, 216, 255, .08), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .22;
  background-image: url("../images/noise.png");
  background-repeat: repeat;
  mix-blend-mode: soft-light;
}
::selection { background: rgba(35,230,255,.26); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #020309;
  transition: opacity .8s var(--ease), visibility .8s;
}
.page-loader.is-done { opacity: 0; visibility: hidden; }
.loader-mark { width: 160px; display: grid; gap: 24px; justify-items: center; }
.loader-mark img { width: 132px; filter: drop-shadow(0 0 18px rgba(35,230,255,.42)); animation: loaderPulse 1.4s ease-in-out infinite; }
.loader-mark span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.08); overflow: hidden; border-radius: 9px; }
.loader-mark span::after { content: ""; display: block; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent); animation: loaderLine 1.25s ease-in-out infinite; }
@keyframes loaderPulse { 50% { transform: scale(1.035); filter: drop-shadow(0 0 30px rgba(35,230,255,.7)); } }
@keyframes loaderLine { from { transform: translateX(-120%); } to { transform: translateX(220%); } }

.scroll-progress { position: fixed; z-index: 130; top: 0; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,.03); }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--signal)); box-shadow: 0 0 12px rgba(35,230,255,.7); }
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(89,128,188,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89,128,188,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.pointer-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(500px circle at var(--mx) var(--my), rgba(21,112,255,.09), transparent 56%);
}

.section-shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; isolation: isolate; scroll-margin-top: 96px; }
.eyebrow {
  margin: 0 0 22px;
  color: #9ab5de;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.3;
}
.display-heading {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(3rem, 5.6vw, 6.6rem);
  line-height: .97;
  letter-spacing: -.065em;
  font-weight: 720;
}
.display-heading span { color: #71829d; }
.section-intro { margin: 0; max-width: 510px; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); }
.gradient-text {
  color: transparent;
  background: linear-gradient(120deg, #fff 0%, #99c9ff 28%, var(--cyan) 58%, #3980ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 32px rgba(26,147,255,.16));
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1420px, calc(100vw - 32px));
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px 0 22px;
  border: 1px solid transparent;
  border-radius: 22px;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, height .35s var(--ease);
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(5,9,17,.76);
  border-color: rgba(133,180,255,.16);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(20px) saturate(150%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-weight: 850; letter-spacing: .12em; }
.brand img { width: 47px; height: 30px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(30,157,255,.38)); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; padding: 8px 0; color: #aab7c9; font-size: .85rem; font-weight: 680; transition: color .25s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--cyan); transition: right .3s var(--ease); }
.site-nav a:hover, .site-nav a.is-active { color: #fff; }
.site-nav a:hover::after, .site-nav a.is-active::after { right: 0; }
.header-cta { justify-self: end; }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 0; place-items: center; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 1px; background: #fff; transition: transform .3s ease; }
.menu-toggle span + span { margin-top: 6px; }

.button {
  --btn-bg: rgba(255,255,255,.04);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(154,190,255,.20);
  border-radius: 999px;
  background: var(--btn-bg);
  color: #f8fbff;
  font-size: .88rem;
  font-weight: 760;
  letter-spacing: .01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.16), transparent 75%); transform: translateX(-130%); transition: transform .7s var(--ease); }
.button:hover::before { transform: translateX(130%); }
.button:hover { transform: translateY(-2px); border-color: rgba(84,200,255,.55); }
.button svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.button:hover svg { transform: translateX(3px); }
.button-primary {
  --btn-bg: linear-gradient(120deg, #1756ff, #1395ff 55%, #19cbe7);
  border-color: rgba(91,198,255,.7);
  box-shadow: 0 12px 38px rgba(16,100,255,.28), inset 0 1px rgba(255,255,255,.22);
}
.button-primary:hover { box-shadow: 0 18px 50px rgba(16,100,255,.42), 0 0 0 5px rgba(34,153,255,.08); }
.button-ghost { background: rgba(8,17,31,.68); backdrop-filter: blur(12px); }
.button-small { min-height: 43px; padding-inline: 18px; font-size: .79rem; }
.button-text { min-height: auto; border: 0; background: transparent; padding-inline: 4px; color: #aab7c9; border-radius: 0; overflow: visible; }
.button-text::before { display: none; }
.button-text span { border-bottom: 1px solid rgba(170,183,201,.34); transition: color .25s ease, border-color .25s ease; }
.button-text:hover { transform: none; }
.button-text:hover span { color: #fff; border-color: var(--cyan); }

.section-rail { position: fixed; z-index: 100; right: 22px; top: 50%; transform: translateY(-50%); display: grid; gap: 12px; }
.section-rail a { width: 18px; height: 18px; display: grid; place-items: center; }
.section-rail span { width: 4px; height: 4px; border-radius: 50%; background: #536277; transition: all .3s var(--ease); }
.section-rail a:hover span, .section-rail a.is-active span { width: 8px; height: 8px; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, .88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 4vw;
  width: var(--shell);
  margin-inline: auto;
  padding: calc(var(--header-h) + 90px) 0 100px;
}
.hero::before { content: ""; position: absolute; inset: 0 auto 0 44%; width: 1px; background: linear-gradient(transparent, rgba(101,150,230,.13) 24%, rgba(101,150,230,.13) 74%, transparent); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; z-index: -1; }
.hero-orb-one { width: 580px; height: 580px; right: 4%; top: 9%; background: radial-gradient(circle, rgba(27,83,255,.18), transparent 68%); animation: orbDrift 9s ease-in-out infinite alternate; }
.hero-orb-two { width: 460px; height: 460px; left: -16%; bottom: -7%; background: radial-gradient(circle, rgba(35,230,255,.08), transparent 68%); animation: orbDrift 12s ease-in-out infinite alternate-reverse; }
@keyframes orbDrift { to { transform: translate3d(30px,-18px,0) scale(1.08); } }
.hero-copy { position: relative; z-index: 3; padding-top: 26px; }
.hero-title { margin: 0; font-size: clamp(4.15rem, 6.8vw, 8.2rem); line-height: .88; letter-spacing: -.075em; font-weight: 760; }
.hero-lede { max-width: 690px; margin: 30px 0 0; color: #a9b5c8; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.62; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 36px; }
.hero-signals { display: flex; flex-wrap: wrap; gap: 11px 18px; margin-top: 38px; color: #74839a; font-size: .72rem; font-weight: 730; letter-spacing: .07em; text-transform: uppercase; }
.hero-signals span { display: inline-flex; align-items: center; gap: 8px; }
.hero-signals i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.hero-stage { position: relative; min-height: 650px; perspective: 1500px; z-index: 2; }
.hero-logo-ghost { position: absolute; width: 72%; right: -6%; top: -3%; opacity: .10; filter: blur(.2px) drop-shadow(0 0 35px rgba(0,114,255,.7)); transform: rotate(-6deg); }
.system-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(126,179,255,.24);
  border-radius: 23px;
  background: #080d18;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.025) inset, 0 0 80px rgba(20,95,255,.12);
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-window { width: 94%; right: 0; top: 19%; transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg); }
.window-bar { height: 50px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 0 17px; border-bottom: 1px solid rgba(142,174,225,.13); background: linear-gradient(180deg, rgba(18,28,47,.96), rgba(7,12,22,.96)); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #34435c; }
.window-dots span:first-child { background: var(--signal); box-shadow: 0 0 10px rgba(255,74,87,.5); }
.window-dots span:nth-child(2) { background: var(--amber); }
.window-dots span:nth-child(3) { background: #31d784; }
.window-status { display: inline-flex; align-items: center; gap: 8px; justify-self: center; color: #dfe9fa; font-size: .64rem; font-weight: 820; letter-spacing: .16em; }
.window-status i { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan); }
.window-meta { justify-self: end; color: #64748b; font-size: .58rem; font-weight: 800; letter-spacing: .14em; }
.window-media { position: relative; overflow: hidden; aspect-ratio: 2.7 / 1; background: #07101c; }
.window-media img { width: 100%; height: 100%; object-fit: cover; object-position: top left; transform: scale(1.02); }
.window-scan { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0 46%, rgba(35,230,255,.12) 50%, transparent 54%); transform: translateY(-100%); animation: scan 5s linear infinite; mix-blend-mode: screen; }
@keyframes scan { to { transform: translateY(100%); } }
.float-card { position: absolute; z-index: 5; border: 1px solid rgba(135,180,255,.24); border-radius: 18px; background: linear-gradient(145deg, rgba(15,25,43,.91), rgba(5,10,19,.91)); box-shadow: 0 22px 60px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(16px); will-change: transform; }
.float-card-one { width: 270px; left: -5%; top: 6%; padding: 20px; }
.float-card-one strong { display: block; margin: 6px 0 3px; font-size: 1rem; }
.float-card-one small, .float-card-two small, .float-card-three small { display: block; color: #718099; font-size: .69rem; }
.float-kicker { color: var(--cyan); font-size: .57rem; font-weight: 850; letter-spacing: .17em; }
.float-card-two { right: -3%; bottom: 18%; padding: 14px 17px; display: flex; align-items: center; gap: 12px; }
.float-card-two strong, .float-card-three strong { display: block; font-size: .78rem; }
.pulse-dot { width: 11px; height: 11px; border-radius: 50%; background: #37dc8c; box-shadow: 0 0 0 7px rgba(55,220,140,.10), 0 0 20px rgba(55,220,140,.7); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(55,220,140,0), 0 0 26px rgba(55,220,140,.75); } }
.float-card-three { left: 13%; bottom: 5%; padding: 13px 16px 13px 13px; display: flex; align-items: center; gap: 12px; }
.float-number { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(35,230,255,.26); border-radius: 11px; color: var(--cyan); font-size: .7rem; font-weight: 850; background: rgba(35,230,255,.06); }
.scroll-cue { position: absolute; left: 0; bottom: 30px; display: flex; align-items: center; gap: 15px; color: #59677a; font-size: .6rem; font-weight: 800; letter-spacing: .18em; }
.scroll-cue i { width: 64px; height: 1px; background: linear-gradient(90deg, #506176, transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; width: 24px; height: 1px; background: var(--cyan); animation: cue 1.9s ease-in-out infinite; }
@keyframes cue { from { transform: translateX(-28px); } to { transform: translateX(70px); } }

.marquee { position: relative; overflow: clip; contain: inline-size; border-block: 1px solid rgba(121,160,220,.14); background: rgba(7,12,22,.76); }
.marquee::before, .marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 12vw; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: marquee 35s linear infinite; color: #8290a6; font-size: .66rem; font-weight: 850; letter-spacing: .19em; white-space: nowrap; }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 10px var(--blue-bright); }
@keyframes marquee { to { transform: translateX(-50%); } }

.manifesto { padding: 150px 0 170px; }
.manifesto-grid { display: grid; grid-template-columns: 190px 1fr; gap: 5vw; }
.manifesto-label { display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; padding-bottom: 12px; }
.section-index { color: #29364a; font-size: 5.6rem; line-height: 1; font-weight: 780; letter-spacing: -.08em; }
.manifesto-copy .display-heading { max-width: 1180px; }
.manifesto-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; margin-top: 74px; padding-left: 28%; }
.manifesto-detail p { margin: 0; color: #93a0b3; font-size: 1.05rem; }
.truth-shift { margin-top: 110px; min-height: 250px; display: grid; grid-template-columns: 1fr 120px 1fr; align-items: stretch; border: 1px solid rgba(124,168,234,.16); border-radius: var(--radius); background: linear-gradient(145deg, rgba(10,16,28,.78), rgba(5,8,14,.86)); overflow: hidden; box-shadow: 0 32px 90px rgba(0,0,0,.28); }
.truth-side { padding: 38px 42px; }
.truth-side > span { color: #69788d; font-size: .64rem; font-weight: 820; letter-spacing: .18em; }
.truth-items { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.truth-items b { padding: 10px 13px; border: 1px solid rgba(255,255,255,.075); border-radius: 9px; color: #758297; background: rgba(255,255,255,.022); font-size: .76rem; font-weight: 680; text-decoration: line-through; text-decoration-color: rgba(255,74,87,.7); }
.truth-new { position: relative; display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 30% 50%, rgba(15,105,255,.16), transparent 70%); }
.truth-new strong { margin-top: 28px; font-size: clamp(1.7rem, 2.4vw, 2.8rem); letter-spacing: -.04em; }
.truth-new small { margin-top: 8px; color: #8ea0ba; }
.truth-arrow { display: grid; place-items: center; position: relative; }
.truth-arrow::before { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(transparent, rgba(98,153,238,.28), transparent); }
.truth-arrow span { width: 62px; height: 62px; border: 1px solid rgba(60,180,255,.28); border-radius: 50%; background: #08111e; box-shadow: 0 0 40px rgba(14,116,255,.14); }
.truth-arrow svg { position: absolute; width: 28px; color: var(--cyan); }

.platform { padding: 150px 0 170px; background: linear-gradient(180deg, transparent, rgba(7,14,27,.68) 16%, rgba(7,14,27,.54) 84%, transparent); }
.platform::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 45%, rgba(20,99,255,.12), transparent 35rem); pointer-events: none; }
.platform-heading, .shift-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.platform-console { margin-top: 86px; display: grid; grid-template-columns: 340px 1fr; min-height: 720px; border: 1px solid rgba(124,175,244,.18); border-radius: 30px; overflow: hidden; background: rgba(4,8,15,.76); box-shadow: 0 38px 110px rgba(0,0,0,.45); }
.console-tabs { padding: 20px; border-right: 1px solid rgba(124,175,244,.14); background: linear-gradient(180deg, rgba(13,21,36,.9), rgba(5,9,17,.86)); }
.console-tab { width: 100%; min-height: 94px; display: grid; grid-template-columns: 34px 1fr 8px; align-items: center; gap: 15px; text-align: left; padding: 0 18px; border: 1px solid transparent; border-radius: 18px; background: transparent; cursor: pointer; color: #718098; transition: all .35s var(--ease); }
.console-tab + .console-tab { margin-top: 6px; }
.console-tab span { font-size: .64rem; font-weight: 820; letter-spacing: .1em; }
.console-tab b { font-size: .91rem; font-weight: 720; color: #aeb9c9; }
.console-tab i { width: 5px; height: 5px; border-radius: 50%; background: #435064; transition: all .3s ease; }
.console-tab:hover { background: rgba(255,255,255,.028); color: #a7b3c5; }
.console-tab.is-active { border-color: rgba(74,170,255,.25); background: linear-gradient(120deg, rgba(20,91,231,.17), rgba(19,220,255,.05)); box-shadow: inset 3px 0 var(--blue-bright); }
.console-tab.is-active span, .console-tab.is-active b { color: #fff; }
.console-tab.is-active i { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.console-view { min-width: 0; padding: 48px; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 76% 68%, rgba(14,84,255,.10), transparent 30rem); outline: none; }
.console-copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.console-kicker { margin: 0 0 15px; color: var(--cyan); font-size: .66rem; font-weight: 830; letter-spacing: .18em; }
.console-copy h3 { max-width: 720px; margin: 0; font-size: clamp(2rem, 3.4vw, 4.3rem); line-height: 1.02; letter-spacing: -.055em; }
.console-copy p:not(.console-kicker) { max-width: 660px; margin: 20px 0 0; color: #93a1b5; font-size: 1rem; }
.console-tags { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.console-tags span { padding: 8px 11px; border: 1px solid rgba(128,166,224,.15); border-radius: 999px; color: #78889f; background: rgba(255,255,255,.022); font-size: .64rem; font-weight: 750; }
.product-window { margin-top: 45px; border: 1px solid rgba(114,172,255,.25); border-radius: 22px; overflow: hidden; background: #07101c; box-shadow: 0 25px 75px rgba(0,0,0,.45), 0 0 60px rgba(24,108,255,.08); transform-style: preserve-3d; }
.product-window .window-bar { height: 45px; }
.expand-button { justify-self: end; display: flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(131,171,229,.16); border-radius: 8px; color: #8190a5; background: rgba(255,255,255,.02); font-size: .58rem; font-weight: 820; letter-spacing: .12em; cursor: pointer; transition: color .25s, border-color .25s, background .25s; }
.expand-button svg { width: 13px; height: 13px; }
.expand-button:hover { color: #fff; border-color: rgba(35,230,255,.35); background: rgba(35,230,255,.06); }
.product-media { position: relative; min-height: 330px; display: grid; place-items: center; overflow: hidden; background: #060b14; }
.product-media img { width: 100%; max-height: 420px; object-fit: cover; object-position: center top; transition: opacity .25s ease, transform .55s var(--ease-out), filter .25s ease; }
.product-media img.is-switching { opacity: 0; transform: scale(.985); filter: blur(6px); }
.media-glass { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.035), transparent 25%, transparent 70%, rgba(36,126,255,.05)); }

.shift { padding: 150px 0 180px; }
.shift-cards { margin-top: 82px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.shift-card { min-height: 410px; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(125,163,218,.14); border-radius: 24px; background: linear-gradient(155deg, rgba(14,22,37,.80), rgba(5,9,16,.90)); position: relative; overflow: hidden; transform-style: preserve-3d; transition: border-color .35s ease, box-shadow .35s ease; }
.shift-card::before { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; top: -140px; right: -120px; background: radial-gradient(circle, rgba(32,119,255,.18), transparent 68%); transition: transform .6s var(--ease); }
.shift-card:hover { border-color: rgba(61,177,255,.32); box-shadow: 0 28px 75px rgba(0,0,0,.3); }
.shift-card:hover::before { transform: scale(1.35); }
.card-number { color: #596a80; font-size: .64rem; font-weight: 850; letter-spacing: .12em; }
.shift-word { margin-top: 86px; display: grid; }
.shift-word s { color: #56657a; font-size: 1.05rem; text-decoration-color: var(--signal); text-decoration-thickness: 1px; }
.shift-word strong { margin-top: 2px; color: #fff; font-size: clamp(2rem, 2.5vw, 3.15rem); line-height: 1; letter-spacing: -.055em; }
.shift-card p { margin: 25px 0 0; color: #8f9daf; font-size: .9rem; }
.shift-signal { margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(121,158,211,.11); color: #6d7c91; font-size: .65rem; font-weight: 750; letter-spacing: .04em; }
.shift-signal i { display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.motion-stage { margin-top: 130px; min-height: 680px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; border-top: 1px solid rgba(119,157,214,.14); padding-top: 100px; }
.motion-copy h3 { max-width: 560px; margin: 0; font-size: clamp(2.8rem, 5vw, 6rem); line-height: .95; letter-spacing: -.065em; }
.motion-copy > p:not(.eyebrow) { max-width: 510px; margin: 28px 0 0; color: #8f9daf; font-size: 1.05rem; }
.motion-steps { margin-top: 42px; display: flex; align-items: center; gap: 12px; color: #87a0c4; font-size: .61rem; font-weight: 850; letter-spacing: .15em; }
.motion-steps i { flex: 1; max-width: 52px; height: 1px; background: linear-gradient(90deg, var(--blue), rgba(35,230,255,.28)); }
.motion-collage { position: relative; height: 620px; perspective: 1500px; }
.collage-card { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(119,173,252,.24); border-radius: 20px; background: #07101b; box-shadow: 0 30px 90px rgba(0,0,0,.5); transform-style: preserve-3d; }
.collage-card img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.collage-card figcaption { position: absolute; left: 14px; bottom: 12px; padding: 7px 9px; border-radius: 7px; color: #dce8f9; background: rgba(3,7,14,.76); backdrop-filter: blur(10px); font-size: .56rem; font-weight: 850; letter-spacing: .14em; }
.collage-one { width: 76%; height: 310px; top: 2%; right: 4%; transform: rotateY(-8deg) rotateZ(1.5deg); }
.collage-two { width: 58%; height: 285px; left: 0; bottom: 2%; transform: rotateY(8deg) rotateZ(-3deg); z-index: 3; }
.collage-three { width: 54%; height: 240px; right: 0; bottom: 6%; transform: rotateY(-9deg) rotateZ(3deg); z-index: 4; }

.legacy { padding: 180px 0; background: linear-gradient(180deg, transparent, rgba(8,12,18,.9) 22%, rgba(8,12,18,.92) 78%, transparent); overflow: hidden; }
.legacy::before { content: ""; position: absolute; width: 1000px; height: 1000px; left: -440px; top: 0; border-radius: 50%; background: radial-gradient(circle, rgba(181,133,48,.10), transparent 66%); }
.legacy-line { position: absolute; left: 0; right: 0; top: 138px; height: 1px; background: rgba(140,156,180,.10); }
.legacy-line span { display: block; width: 0; height: 1px; background: linear-gradient(90deg, #a88335, #e4c784, transparent); box-shadow: 0 0 16px rgba(228,199,132,.35); transition: width 2s var(--ease-out); }
.legacy.is-inview .legacy-line span { width: 72%; }
.legacy-grid { display: grid; grid-template-columns: 270px 1fr; gap: 6vw; }
.legacy-year { min-height: 760px; display: flex; flex-direction: column; align-items: flex-start; padding-top: 8px; color: #cbb37a; }
.legacy-year span { font-size: clamp(3rem, 5vw, 5.4rem); line-height: 1; font-weight: 750; letter-spacing: -.07em; }
.legacy-year i { flex: 1; width: 1px; margin: 28px 0 28px 8px; background: linear-gradient(#b38f47, rgba(117,137,167,.16)); position: relative; }
.legacy-year i::after { content: ""; position: absolute; left: -4px; bottom: -1px; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.legacy-copy .eyebrow { color: #c8b17a; }
.legacy-copy .display-heading { max-width: 1050px; }
.legacy-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; max-width: 1050px; margin-top: 64px; }
.legacy-story p { margin: 0; color: #9aa5b5; font-size: 1.04rem; }
.legacy-transition { max-width: 1100px; margin-top: 85px; display: grid; grid-template-columns: 1fr 120px 1fr; align-items: center; padding: 38px 0; border-block: 1px solid rgba(167,145,94,.17); }
.legacy-transition > div > span { color: #bda971; font-size: .62rem; font-weight: 850; letter-spacing: .18em; }
.legacy-transition h3 { margin: 18px 0 10px; font-size: clamp(1.6rem, 2.5vw, 2.7rem); line-height: 1.05; letter-spacing: -.045em; }
.legacy-transition p { max-width: 430px; margin: 0; color: #8793a5; font-size: .88rem; }
.transition-mark { display: grid; place-items: center; position: relative; }
.transition-mark span { width: 62px; height: 62px; border: 1px solid rgba(198,173,112,.22); border-radius: 50%; }
.transition-mark svg { position: absolute; width: 31px; color: #d5bd7e; }
.legacy-actions { margin-top: 46px; display: flex; align-items: center; gap: 34px; }
.legacy-actions blockquote { margin: 0; color: #7f8b9d; font-size: .83rem; font-style: normal; }

.principles { padding: 150px 0 180px; }
.principles-title { margin: 0; font-size: clamp(5rem, 12vw, 12rem); line-height: .82; letter-spacing: -.085em; color: transparent; -webkit-text-stroke: 1px rgba(157,194,255,.36); text-shadow: 0 0 80px rgba(32,111,255,.10); }
.principle-grid { margin-top: 100px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.principle { min-height: 330px; padding: 34px; border: 1px solid rgba(122,163,222,.14); border-radius: 24px; background: linear-gradient(145deg, rgba(13,21,36,.72), rgba(5,9,16,.82)); position: relative; overflow: hidden; transform-style: preserve-3d; }
.principle::after { content: ""; position: absolute; inset: auto -80px -130px auto; width: 290px; height: 290px; border-radius: 50%; background: radial-gradient(circle, rgba(24,106,255,.13), transparent 68%); }
.principle > span { color: var(--cyan); font-size: .64rem; font-weight: 850; letter-spacing: .14em; }
.principle h3 { max-width: 520px; margin: 95px 0 16px; font-size: clamp(1.8rem, 2.8vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.principle p { max-width: 540px; margin: 0; color: #8d9bae; }

.contact { min-height: 920px; display: grid; place-items: center; padding: 160px 0; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(3,5,11,.22), rgba(3,5,11,.76)), radial-gradient(circle at 50% 55%, rgba(19,89,255,.20), transparent 28rem); }
.contact-glow { position: absolute; width: 820px; height: 820px; border-radius: 50%; background: radial-gradient(circle, rgba(25,119,255,.20), rgba(35,230,255,.05) 32%, transparent 68%); filter: blur(2px); animation: orbDrift 10s ease-in-out infinite alternate; }
.contact-panel { position: relative; z-index: 2; text-align: center; padding: 100px 50px; border: 1px solid rgba(113,177,255,.20); border-radius: 36px; background: linear-gradient(145deg, rgba(10,17,30,.82), rgba(4,8,15,.72)); box-shadow: 0 45px 130px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.035); backdrop-filter: blur(16px); overflow: hidden; }
.contact-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.03), transparent 20%, transparent 80%, rgba(24,134,255,.05)); }
.contact-mark { width: min(440px, 52vw); margin: -55px auto -20px; opacity: .14; filter: drop-shadow(0 0 30px rgba(22,127,255,.7)); }
.contact-panel .eyebrow { position: relative; z-index: 2; color: #9bb8e0; }
.contact-panel h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(3.3rem, 6.5vw, 7.5rem); line-height: .92; letter-spacing: -.075em; }
.contact-panel h2 span { color: #7b8ba3; }
.contact-panel > p:not(.eyebrow) { position: relative; z-index: 2; max-width: 780px; margin: 34px auto 0; color: #93a0b3; font-size: 1.05rem; }
.contact-actions { position: relative; z-index: 2; margin-top: 42px; display: flex; align-items: center; justify-content: center; gap: 24px; }

.site-footer { position: relative; z-index: 3; padding: 42px 0; border-top: 1px solid rgba(121,158,214,.12); background: #020409; }
.footer-inner { display: grid; grid-template-columns: 280px 1fr auto; align-items: center; gap: 40px; }
.footer-wordmark img { width: 230px; max-height: 110px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(32,133,255,.22)); }
.footer-copy p { margin: 0; color: #79879b; font-size: .78rem; }
.footer-copy span { display: block; margin-top: 7px; color: #46536a; font-size: .68rem; }
.footer-copy b { font-weight: inherit; }
.footer-links { display: flex; gap: 20px; color: #6f7d91; font-size: .72rem; }
.footer-links a:hover { color: #fff; }

.media-dialog, .contact-dialog { width: min(1180px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; border: 1px solid rgba(120,180,255,.26); border-radius: 24px; color: var(--ink); background: rgba(4,8,15,.96); box-shadow: 0 50px 150px rgba(0,0,0,.72); overflow: visible; }
.media-dialog::backdrop, .contact-dialog::backdrop { background: rgba(0,2,8,.82); backdrop-filter: blur(10px); }
.dialog-close { position: absolute; z-index: 4; top: 14px; right: 14px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: #dce7f7; background: rgba(4,8,15,.78); cursor: pointer; font-size: 1.2rem; }
.dialog-frame { max-height: calc(100vh - 120px); overflow: auto; border-radius: 24px 24px 0 0; }
.dialog-frame img { width: 100%; min-height: 300px; object-fit: contain; background: #060b13; }
.media-dialog > p { margin: 0; padding: 14px 20px 18px; color: #8796aa; font-size: .8rem; }
.contact-dialog { width: min(680px, calc(100vw - 34px)); }
.contact-dialog-inner { padding: 60px; }
.contact-dialog h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); line-height: .98; letter-spacing: -.055em; }
.contact-dialog p:not(.eyebrow) { margin: 24px 0 32px; color: #92a0b4; }
.contact-dialog small { display: block; margin-top: 16px; color: #5e6c82; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .20s; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1120px); }
  .hero { grid-template-columns: 1fr; padding-top: 170px; }
  .hero::before { display: none; }
  .hero-copy { max-width: 920px; }
  .hero-stage { min-height: 610px; width: min(900px, 100%); margin-left: auto; }
  .hero-window { width: 88%; }
  .platform-console { grid-template-columns: 290px 1fr; }
  .console-view { padding: 36px; }
  .shift-cards { grid-template-columns: repeat(2, 1fr); }
  .shift-card { min-height: 350px; }
  .motion-stage { grid-template-columns: 1fr; }
  .motion-copy { max-width: 720px; }
  .motion-collage { width: min(900px,100%); margin-inline: auto; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 860px); --header-h: 70px; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; justify-self: end; }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: grid; gap: 0; padding: 12px; border: 1px solid rgba(132,176,237,.16); border-radius: 18px; background: rgba(5,9,17,.96); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s var(--ease); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 14px 12px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .section-rail { display: none; }
  .hero { width: var(--shell); padding-top: 150px; }
  .hero-stage { min-height: 520px; }
  .hero-window { width: 95%; top: 18%; }
  .float-card-one { left: -1%; }
  .float-card-two { right: 1%; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-label { min-height: auto; flex-direction: row; }
  .section-index { font-size: 3.5rem; }
  .manifesto-detail { padding-left: 0; }
  .truth-shift { grid-template-columns: 1fr; }
  .truth-arrow { min-height: 90px; }
  .truth-arrow::before { inset: 0 auto; width: 1px; }
  .truth-arrow svg { transform: rotate(90deg); }
  .platform-heading, .shift-heading { align-items: flex-start; flex-direction: column; }
  .platform-console { grid-template-columns: 1fr; }
  .console-tabs { border-right: 0; border-bottom: 1px solid rgba(124,175,244,.14); display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .console-tab { min-height: 78px; grid-template-columns: 28px 1fr; padding: 0 12px; }
  .console-tab i { display: none; }
  .console-tab + .console-tab { margin-top: 0; }
  .console-view { min-height: 620px; }
  .console-copy { grid-template-columns: 1fr; }
  .console-tags { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .legacy-grid { grid-template-columns: 1fr; }
  .legacy-year { min-height: auto; flex-direction: row; align-items: center; gap: 24px; margin-bottom: 38px; }
  .legacy-year i { flex: 1; height: 1px; width: auto; margin: 0; }
  .legacy-transition { grid-template-columns: 1fr; gap: 30px; }
  .transition-mark { min-height: 60px; }
  .transition-mark svg { transform: rotate(90deg); }
  .principles-title { font-size: clamp(4.2rem, 15vw, 8rem); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 28px); }
  body { font-size: 15px; }
  .site-header { top: 8px; width: calc(100vw - 16px); padding-inline: 14px; border-radius: 17px; }
  .brand span { display: none; }
  .hero { min-height: auto; padding: 136px 0 90px; }
  .hero-title { font-size: clamp(3.5rem, 17.5vw, 5.3rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-signals { gap: 10px 14px; }
  .hero-stage { min-height: 410px; margin-top: 24px; }
  .hero-logo-ghost { width: 82%; top: 2%; }
  .hero-window { width: 100%; top: 20%; transform: none !important; border-radius: 16px; }
  .window-bar { height: 42px; grid-template-columns: auto 1fr auto; padding-inline: 12px; }
  .window-status { font-size: .51rem; }
  .window-meta { font-size: .48rem; }
  .float-card { border-radius: 13px; }
  .float-card-one { width: 215px; padding: 14px; top: 0; }
  .float-card-one strong { font-size: .82rem; }
  .float-card-two { bottom: 2%; padding: 10px 12px; }
  .float-card-three { display: none; }
  .scroll-cue { display: none; }
  .manifesto, .platform, .shift, .principles { padding: 105px 0 120px; }
  .display-heading { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .manifesto-detail, .legacy-story { grid-template-columns: 1fr; gap: 28px; margin-top: 46px; }
  .truth-shift { margin-top: 70px; }
  .truth-side { padding: 28px 24px; }
  .platform-console { margin-top: 55px; border-radius: 20px; }
  .console-tabs { grid-template-columns: repeat(2, 1fr); padding: 10px; }
  .console-tab { min-height: 72px; }
  .console-tab b { font-size: .72rem; }
  .console-view { min-height: auto; padding: 25px 16px 18px; }
  .console-copy h3 { font-size: 2.35rem; }
  .console-tags { display: none; }
  .product-window { margin-top: 30px; border-radius: 14px; }
  .product-media { min-height: 220px; }
  .product-media img { min-height: 220px; object-fit: cover; }
  .expand-button { font-size: 0; padding: 8px; }
  .expand-button svg { width: 16px; height: 16px; }
  .shift-cards { grid-template-columns: 1fr; margin-top: 55px; }
  .shift-card { min-height: 330px; }
  .shift-word { margin-top: 58px; }
  .motion-stage { margin-top: 95px; padding-top: 75px; gap: 45px; }
  .motion-collage { height: 470px; }
  .collage-one { width: 88%; height: 220px; }
  .collage-two { width: 66%; height: 205px; }
  .collage-three { width: 60%; height: 175px; }
  .legacy { padding: 125px 0; }
  .legacy-year span { font-size: 3.2rem; }
  .legacy-transition { margin-top: 58px; }
  .legacy-actions { align-items: flex-start; flex-direction: column; }
  .principle-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .principle { min-height: 300px; padding: 26px; }
  .principle h3 { margin-top: 72px; }
  .contact { min-height: 760px; padding: 110px 0; }
  .contact-panel { padding: 70px 22px; border-radius: 24px; }
  .contact-mark { width: 80vw; }
  .contact-panel h2 { font-size: 3.2rem; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-wordmark img { width: 210px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .contact-dialog-inner { padding: 52px 24px 32px; }
}

@media (hover: none), (pointer: coarse) {
  .pointer-glow { display: none; }
  .magnetic { transform: none !important; }
}

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

/* ========================================================================== 
   PCC refinement pass — operating model, system principles, navigation, CTA
   ========================================================================== */

.site-header {
  will-change: transform, opacity, height;
  transition:
    transform .58s var(--ease-out),
    opacity .35s ease,
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    height .35s var(--ease);
}
.site-header.is-hidden {
  transform: translate(-50%, calc(-100% - 26px));
  opacity: 0;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.login-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(127, 176, 244, .13);
  border-radius: 999px;
  color: #a8b7ca;
  background: rgba(6, 12, 23, .48);
  font-size: .76rem;
  font-weight: 760;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.login-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(35,230,255,.09), transparent 72%);
  transform: translateX(-125%);
  transition: transform .7s var(--ease);
}
.login-link:hover::before { transform: translateX(125%); }
.login-link:hover {
  color: #fff;
  border-color: rgba(35,230,255,.34);
  background: rgba(11, 24, 42, .78);
  box-shadow: 0 0 0 4px rgba(35,230,255,.045), 0 12px 28px rgba(0,0,0,.22);
}
.login-lock {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35,230,255,.18);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(35,230,255,.05);
}
.login-lock svg { width: 13px; height: 13px; }
.login-link > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #26d879;
  box-shadow: 0 0 11px rgba(38,216,121,.78);
}
.nav-contact-mobile,
.nav-login-mobile { display: none; }
.nav-login-mobile svg { width: 16px; height: 16px; color: var(--cyan); }

/* Operating model */
.operating-model {
  --step-position: 12.5%;
  margin-top: 78px;
  position: relative;
}
.operating-model::before {
  content: "";
  position: absolute;
  inset: 34px -4% auto;
  height: 450px;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--step-position) 18%, rgba(35,230,255,.11), transparent 19rem),
    linear-gradient(90deg, transparent, rgba(31,108,255,.035), transparent);
  transition: background-position .7s var(--ease-out);
}
.model-rail { position: relative; z-index: 2; }
.model-rail-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
  color: #5d6d82;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .17em;
}
.model-rail-labels span:last-child { color: #79a9e8; }
.model-rail-track {
  position: relative;
  height: 12px;
  display: flex;
  align-items: center;
}
.model-rail-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,74,87,.30), rgba(83,102,132,.20) 28%, rgba(30,119,255,.42) 66%, rgba(35,230,255,.50));
}
.model-rail-track::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), var(--cyan), transparent);
  filter: drop-shadow(0 0 8px var(--cyan));
  animation: modelRailSweep 5.5s linear infinite;
}
.model-rail-track > span {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  opacity: .16;
  background-image: repeating-linear-gradient(90deg, transparent 0 9.5%, rgba(116,159,218,.42) 9.5% 9.62%);
}
.model-rail-track > i {
  position: absolute;
  z-index: 2;
  left: var(--step-position);
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #d8fbff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(35,230,255,.08), 0 0 24px rgba(35,230,255,.85);
  transform: translate(-50%, -50%);
  transition: left .72s var(--ease-out), box-shadow .35s ease;
}
@keyframes modelRailSweep { from { transform: translateX(-120%); } to { transform: translateX(650%); } }

.shift-cards {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.shift-card {
  --accent: #23e6ff;
  --accent-rgb: 35, 230, 255;
  appearance: none;
  width: 100%;
  min-width: 0;
  min-height: 482px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(125,163,218,.15);
  border-radius: 25px;
  color: inherit;
  text-align: left;
  background:
    linear-gradient(155deg, rgba(var(--accent-rgb),.075), transparent 30%),
    linear-gradient(155deg, rgba(14,22,37,.92), rgba(4,8,15,.96));
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  transition: border-color .38s ease, box-shadow .38s ease, background .38s ease, opacity .38s ease;
}
.shift-card:nth-child(2) { --accent: #3994ff; --accent-rgb: 57, 148, 255; }
.shift-card:nth-child(3) { --accent: #8b75ff; --accent-rgb: 139, 117, 255; }
.shift-card:nth-child(4) { --accent: #ff5872; --accent-rgb: 255, 88, 114; }
.shift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(rgba(114,154,216,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,154,216,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 63%);
  opacity: .48;
  transition: opacity .35s ease, transform .7s var(--ease-out);
}
.shift-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -150px;
  right: -130px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.24), transparent 68%);
  transition: transform .7s var(--ease-out), opacity .35s ease;
}
.shift-card:hover,
.shift-card:focus-visible,
.shift-card.is-active {
  outline: none;
  border-color: rgba(var(--accent-rgb),.48);
  background:
    linear-gradient(155deg, rgba(var(--accent-rgb),.13), transparent 38%),
    linear-gradient(155deg, rgba(14,24,41,.98), rgba(4,8,15,.98));
  box-shadow:
    0 28px 85px rgba(0,0,0,.34),
    0 0 0 1px rgba(var(--accent-rgb),.08),
    inset 0 1px rgba(255,255,255,.045);
}
.shift-card:hover::before,
.shift-card.is-active::before { opacity: .8; transform: scale(1.03); }
.shift-card:hover::after,
.shift-card.is-active::after { transform: scale(1.34); }
.shift-card:not(.is-active) { opacity: .82; }
.shift-card:not(.is-active):hover { opacity: 1; }
.shift-node {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 18px;
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb),.40);
  border-radius: 50%;
  background: rgba(3,7,14,.82);
}
.shift-node i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),.62);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.shift-card.is-active .shift-node i {
  background: var(--accent);
  transform: scale(1.5);
  box-shadow: 0 0 12px var(--accent);
}
.shift-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 28px;
}
.card-number {
  color: var(--accent);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-shadow: 0 0 16px rgba(var(--accent-rgb),.45);
}
.card-mode {
  padding: 6px 8px;
  border: 1px solid rgba(var(--accent-rgb),.18);
  border-radius: 999px;
  color: rgba(202,220,244,.58);
  background: rgba(var(--accent-rgb),.035);
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.shift-icon {
  position: relative;
  z-index: 2;
  height: 118px;
  display: grid;
  place-items: center;
  margin: 28px -2px 4px;
  border-block: 1px solid rgba(119,158,215,.08);
  color: var(--accent);
}
.shift-icon::before,
.shift-icon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 50%;
}
.shift-icon::before { width: 94px; height: 94px; }
.shift-icon::after { width: 68px; height: 68px; border-style: dashed; animation: shiftOrbit 12s linear infinite; }
.shift-icon svg {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 12px rgba(var(--accent-rgb),.30));
  transition: transform .55s var(--ease-out), filter .35s ease;
}
.shift-card:hover .shift-icon svg,
.shift-card.is-active .shift-icon svg { transform: scale(1.08); filter: drop-shadow(0 0 18px rgba(var(--accent-rgb),.48)); }
@keyframes shiftOrbit { to { transform: rotate(360deg); } }
.shift-word {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 10px;
}
.shift-word s {
  grid-column: 1 / -1;
  color: #5f6d82;
  font-size: .93rem;
  text-decoration-color: rgba(255,74,87,.82);
  text-decoration-thickness: 1px;
}
.shift-word strong {
  margin-top: 2px;
  min-width: 0;
  color: #fff;
  font-size: clamp(2rem, 2.35vw, 3.15rem);
  line-height: .98;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
}
.word-arrow {
  align-self: center;
  color: var(--accent);
  font-size: 1.25rem;
  opacity: .74;
  transform: translateX(-2px);
  transition: transform .35s var(--ease-out), opacity .35s ease;
}
.shift-card:hover .word-arrow,
.shift-card.is-active .word-arrow { transform: translateX(4px); opacity: 1; }
.shift-card > p {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  color: #93a1b4;
  font-size: .88rem;
  line-height: 1.58;
}
.shift-signal {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(121,158,211,.11);
  color: #718096;
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .035em;
}
.shift-signal i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px rgba(var(--accent-rgb),.82);
}
.model-readout {
  position: relative;
  z-index: 2;
  min-height: 196px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 30px;
  padding: 30px 34px;
  border: 1px solid rgba(122,173,242,.18);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(24,94,225,.12), transparent 34%),
    rgba(6,11,20,.88);
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 28px 80px rgba(0,0,0,.24);
  overflow: hidden;
}
.model-readout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(35,230,255,.45);
}
.model-readout::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.025), transparent 24%, transparent 74%, rgba(35,230,255,.035));
}
.model-readout-index {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  color: #fff;
}
.model-readout-index span {
  font-size: 4rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.08em;
  text-shadow: 0 0 28px rgba(35,230,255,.24);
}
.model-readout-index small { margin-left: 8px; color: #52627a; font-size: .68rem; font-weight: 780; letter-spacing: .08em; }
.model-readout-copy,
.model-readout-tags { position: relative; z-index: 2; transition: opacity .2s ease, transform .28s var(--ease-out); }
.model-readout.is-switching .model-readout-copy,
.model-readout.is-switching .model-readout-tags { opacity: 0; transform: translateY(8px); }
.model-readout-copy > p:first-child {
  margin: 0 0 9px;
  color: var(--cyan);
  font-size: .6rem;
  font-weight: 850;
  letter-spacing: .16em;
}
.model-readout-copy h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.55rem, 2.25vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.model-readout-copy > p:last-child { margin: 13px 0 0; max-width: 750px; color: #8796aa; font-size: .84rem; }
.model-readout-tags { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.model-readout-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(126,174,240,.14);
  border-radius: 999px;
  color: #72839b;
  background: rgba(255,255,255,.02);
  font-size: .59rem;
  font-weight: 760;
  white-space: nowrap;
}

/* System principles */
.principles {
  padding: 165px 0 190px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 48%, rgba(19,91,255,.09), transparent 34rem),
    linear-gradient(180deg, transparent, rgba(5,10,19,.72) 24%, rgba(5,10,19,.64) 82%, transparent);
}
.principles::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(92,132,192,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,132,192,.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent 3%, black 23%, black 82%, transparent);
}
.principles-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.principles-heading .section-intro { padding-bottom: 8px; }
.principles-title {
  margin: 0;
  font-size: clamp(5rem, 11.2vw, 11rem);
  line-height: .82;
  letter-spacing: -.085em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(157,194,255,.38);
  text-shadow: 0 0 80px rgba(32,111,255,.13);
}
.principle-system { position: relative; z-index: 2; margin-top: 88px; }
.principle-spine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
}
.principle-spine > span,
.principle-spine > i {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(35,230,255,.22), rgba(52,106,255,.20), transparent);
}
.principle-spine > span { left: 2%; right: 2%; top: 50%; height: 1px; }
.principle-spine > i { top: 2%; bottom: 2%; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(35,230,255,.19), rgba(52,106,255,.18), transparent); }
.principle-spine::before,
.principle-spine::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #d8fbff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(35,230,255,.05), 0 0 22px rgba(35,230,255,.72);
  opacity: 0;
}
.principle-spine::before { top: calc(50% - 5px); left: 2%; }
.principle-spine::after { left: calc(50% - 5px); top: 2%; }
.principles.is-inview .principle-spine::before { opacity: 1; animation: principlePulseX 6s linear infinite; }
.principles.is-inview .principle-spine::after { opacity: 1; animation: principlePulseY 6.8s linear infinite .7s; }
@keyframes principlePulseX { from { left: 2%; } to { left: calc(98% - 9px); } }
@keyframes principlePulseY { from { top: 2%; } to { top: calc(98% - 9px); } }
.principle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.principle {
  --accent: #23e6ff;
  --accent-rgb: 35,230,255;
  min-height: 422px;
  display: grid;
  grid-template-rows: auto 128px 1fr auto;
  padding: 27px 29px 25px;
  border: 1px solid rgba(122,163,222,.16);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb),.07), transparent 37%),
    linear-gradient(145deg, rgba(13,21,36,.91), rgba(4,8,15,.94));
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: inset 0 1px rgba(255,255,255,.03), 0 28px 80px rgba(0,0,0,.19);
  transition: border-color .38s ease, box-shadow .38s ease, background .38s ease;
}
.principle-state { --accent: #3d91ff; --accent-rgb: 61,145,255; }
.principle-decision { --accent: #9a7cff; --accent-rgb: 154,124,255; }
.principle-audience { --accent: #ff5c78; --accent-rgb: 255,92,120; }
.principle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent 74%);
  opacity: .58;
  box-shadow: 0 0 14px rgba(var(--accent-rgb),.30);
}
.principle::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: -215px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.18), transparent 66%);
  transition: transform .75s var(--ease-out), opacity .35s ease;
}
.principle:hover {
  border-color: rgba(var(--accent-rgb),.42);
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb),.12), transparent 42%),
    linear-gradient(145deg, rgba(14,24,42,.96), rgba(4,8,15,.96));
  box-shadow: 0 34px 100px rgba(0,0,0,.30), 0 0 0 1px rgba(var(--accent-rgb),.06), inset 0 1px rgba(255,255,255,.045);
}
.principle:hover::after { transform: scale(1.25); }
.principle-ghost {
  position: absolute;
  top: 28px;
  right: 24px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--accent-rgb),.12);
  font-size: 7.5rem;
  line-height: .8;
  letter-spacing: -.09em;
  font-weight: 800;
  opacity: .65;
  transform: translateZ(-1px);
  transition: transform .65s var(--ease-out), opacity .35s ease;
}
.principle:hover .principle-ghost { transform: translate3d(-6px,7px,-1px) scale(1.04); opacity: .9; }
.principle-top {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.principle .principle-index {
  color: var(--accent);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-shadow: 0 0 12px rgba(var(--accent-rgb),.45);
}
.principle-label {
  min-width: 0;
  color: #7e8da2;
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .14em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.principle-top > i {
  padding: 5px 8px;
  border: 1px solid rgba(var(--accent-rgb),.18);
  border-radius: 999px;
  color: rgba(208,224,247,.58);
  background: rgba(var(--accent-rgb),.035);
  font-size: .49rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .10em;
  white-space: nowrap;
}
.principle-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--accent);
  overflow: hidden;
}
.principle-visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),.0), rgba(var(--accent-rgb),.16), rgba(var(--accent-rgb),.0));
}
.principle-visual svg {
  position: relative;
  z-index: 2;
  width: min(210px, 48%);
  height: 102px;
  margin-right: 5%;
  stroke-width: 1.45;
  filter: drop-shadow(0 0 11px rgba(var(--accent-rgb),.25));
  transition: transform .6s var(--ease-out), filter .35s ease;
}
.principle:hover .principle-visual svg { transform: translateX(-7px) scale(1.06); filter: drop-shadow(0 0 18px rgba(var(--accent-rgb),.44)); }
.visual-track { stroke-dasharray: 7 6; animation: visualTrace 9s linear infinite; }
@keyframes visualTrace { to { stroke-dashoffset: -52; } }
.visual-orbit {
  position: absolute;
  right: 5.8%;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(var(--accent-rgb),.10);
  border-radius: 50%;
  animation: principleOrbit 15s linear infinite;
}
.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.visual-orbit::before { inset: 15px; border: 1px dashed rgba(var(--accent-rgb),.14); }
.visual-orbit::after { width: 6px; height: 6px; top: 8px; left: 54px; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
@keyframes principleOrbit { to { transform: rotate(360deg); } }
.principle-copy { position: relative; z-index: 3; align-self: end; }
.principle h3 {
  max-width: 580px;
  margin: 7px 0 13px;
  color: #f7f9ff;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: .97;
  letter-spacing: -.055em;
}
.principle p { max-width: 560px; margin: 0; color: #91a0b3; font-size: .91rem; }
.principle-meta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(121,158,211,.10);
}
.principle-meta span {
  padding: 6px 8px;
  border: 1px solid rgba(var(--accent-rgb),.13);
  border-radius: 999px;
  color: #6f8097;
  background: rgba(var(--accent-rgb),.025);
  font-size: .56rem;
  font-weight: 740;
}

/* Closing statement and footer refinement */
.contact-panel h2 span {
  color: transparent;
  background: linear-gradient(115deg, #71829d 0%, #9cb7dd 28%, #37d9ff 62%, #337dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 26px rgba(35,166,255,.15));
}
.contact-panel::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35,230,255,.68), rgba(38,98,255,.72), transparent);
  box-shadow: 0 0 18px rgba(35,230,255,.25);
}
.footer-copy p { display: flex; align-items: center; gap: 8px; }
.footer-copy p i { width: 6px; height: 6px; border-radius: 50%; background: #26d879; box-shadow: 0 0 10px rgba(38,216,121,.7); }
.footer-links a { transition: color .25s ease; }

@media (max-width: 1180px) {
  .header-actions { gap: 6px; }
  .login-link { padding-inline: 12px; }
  .header-cta { display: none; }
  .shift-card { min-height: 445px; padding: 23px; }
  .shift-word strong { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
  .model-readout { grid-template-columns: 96px 1fr 220px; gap: 24px; }
  .principle { min-height: 405px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { display: none; }
  .nav-contact-mobile,
  .nav-login-mobile { display: flex !important; align-items: center; gap: 9px; }
  .nav-login-mobile { margin-top: 5px; border-top: 1px solid rgba(132,176,237,.10); color: #dce8f8 !important; }
  .operating-model { margin-top: 62px; }
  .model-rail-labels { font-size: .51rem; }
  .shift-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .shift-card { min-height: 440px; }
  .model-rail-track > i { display: none; }
  .model-readout { grid-template-columns: 90px 1fr; }
  .model-readout-tags { grid-column: 2; flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
  .principles-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .principles-heading .section-intro { padding-bottom: 0; }
  .principle { min-height: 390px; }
  .principle-spine { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header.is-hidden { transform: translate(-50%, calc(-100% - 16px)); }
  .model-rail { display: none; }
  .operating-model { margin-top: 54px; }
  .shift-cards { grid-template-columns: 1fr; gap: 12px; }
  .shift-card { min-height: 430px; padding: 23px; }
  .shift-icon { height: 105px; margin-top: 22px; }
  .shift-word { margin-top: 18px; }
  .shift-word strong { font-size: 2.65rem; }
  .model-readout { grid-template-columns: 1fr; gap: 18px; padding: 26px 23px; }
  .model-readout-index span { font-size: 3.2rem; }
  .model-readout-tags { grid-column: auto; align-items: flex-start; }
  .principles { padding: 115px 0 130px; }
  .principles-title { font-size: clamp(4.6rem, 19vw, 7rem); }
  .principle-system { margin-top: 56px; }
  .principle-grid { grid-template-columns: 1fr; gap: 13px; }
  .principle { min-height: 385px; padding: 23px; grid-template-rows: auto 112px 1fr auto; }
  .principle-ghost { font-size: 6.2rem; }
  .principle-label { font-size: .49rem; }
  .principle-top > i { display: none; }
  .principle-visual svg { width: 58%; margin-right: 0; }
  .visual-orbit { right: 0; }
  .principle h3 { font-size: 2.35rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .model-rail-track::after,
  .shift-icon::after,
  .visual-track,
  .visual-orbit,
  .principle-spine::before,
  .principle-spine::after { animation: none !important; }
}


/* Installable app controls — only displayed when the browser exposes an install prompt. */
.install-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(35,230,255,.16);
  border-radius: 999px;
  color: #91dff0;
  background: rgba(6, 18, 31, .54);
  font: inherit;
  font-size: .72rem;
  font-weight: 780;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .3s var(--ease);
}
.install-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.install-link:hover { color: #fff; border-color: rgba(35,230,255,.42); background: rgba(10, 31, 52, .80); box-shadow: 0 0 0 4px rgba(35,230,255,.045); }
.install-link[hidden], .nav-install-mobile[hidden], .footer-install[hidden] { display: none !important; }
.nav-install-mobile { display: none; width: 100%; align-items: center; gap: 9px; padding: 14px 12px; border: 0; border-top: 1px solid rgba(132,176,237,.10); color: #9edff0; background: transparent; font: inherit; font-size: .85rem; font-weight: 680; text-align: left; cursor: pointer; }
.nav-install-mobile svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.footer-install { padding: 0; border: 0; color: #6f7d91; background: transparent; font: inherit; font-size: inherit; cursor: pointer; transition: color .25s ease; }
.footer-install:hover { color: #fff; }
.install-status { position: fixed; z-index: 180; left: 50%; bottom: 24px; max-width: min(540px, calc(100vw - 32px)); margin: 0; padding: 12px 18px; border: 1px solid rgba(35,230,255,.22); border-radius: 999px; color: #d8f7ff; background: rgba(4,11,20,.92); box-shadow: 0 18px 55px rgba(0,0,0,.45); backdrop-filter: blur(18px); font-size: .76rem; opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: .32s var(--ease); }
.install-status.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (max-width: 1180px) { .install-link span { display: none; } .install-link { width: 43px; justify-content: center; padding: 0; } }
@media (max-width: 900px) { .nav-install-mobile { display: flex; } }

/* PCC v4.1 completion: command navigation, linked standards, expanded product views */
.nav-menu-meta,.nav-menu-foot{display:none}.menu-toggle svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round;position:absolute;transition:opacity .3s ease,transform .42s var(--ease-out)}.menu-command-icon{opacity:1;transform:scale(1) rotate(0)}.menu-close-icon{opacity:0;transform:scale(.7) rotate(-70deg)}.menu-toggle[aria-expanded="true"] .menu-command-icon{opacity:0;transform:scale(.7) rotate(70deg)}.menu-toggle[aria-expanded="true"] .menu-close-icon{opacity:1;transform:scale(1) rotate(0)}.console-tabs{max-height:830px;overflow:auto;scrollbar-width:thin;scrollbar-color:rgba(35,230,255,.3) transparent}.console-tab{min-height:78px}.principle{grid-template-rows:auto 128px 1fr auto auto;color:inherit;text-decoration:none}.principle-action{position:relative;z-index:3;display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:18px;padding-top:17px;border-top:1px solid rgba(var(--accent-rgb),.16);color:#c6d8ed;font-size:.64rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.principle-action svg{width:18px;height:18px;fill:none;stroke:var(--accent);stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;transition:transform .3s var(--ease-out),filter .3s ease}.principle:hover .principle-action svg{transform:translateX(5px);filter:drop-shadow(0 0 8px rgba(var(--accent-rgb),.55))}.collage-four{width:48%;height:210px;left:28%;top:34%;transform:rotateY(3deg) rotateZ(-1deg);z-index:5}.nav-open{overflow:hidden}
@media(max-width:1320px) and (min-width:901px){.site-nav{gap:18px}.site-nav a{font-size:.78rem}.header-actions{gap:6px}.login-link{padding-inline:10px}.install-link{display:none!important}}
@media(max-width:900px){.brand,.menu-toggle{position:relative;z-index:3}.menu-toggle{border:1px solid rgba(82,177,255,.22);border-radius:15px;background:linear-gradient(145deg,rgba(22,73,157,.22),rgba(5,12,23,.72));color:#a8eaff;box-shadow:inset 0 1px rgba(255,255,255,.04),0 10px 28px rgba(0,0,0,.26)}.site-nav{position:fixed;z-index:1;inset:0;top:0;right:0;left:0;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:0;padding:118px max(26px,7vw) 48px;border:0;border-radius:0;background:radial-gradient(circle at 82% 22%,rgba(33,112,255,.18),transparent 30rem),radial-gradient(circle at 18% 80%,rgba(35,230,255,.08),transparent 25rem),rgba(3,6,12,.97);backdrop-filter:blur(28px) saturate(150%);opacity:0;visibility:hidden;pointer-events:none;transform:scale(.985);transition:opacity .38s ease,visibility .38s,transform .55s var(--ease-out);overflow:auto}.site-nav::before{content:"";position:absolute;right:-10vw;top:12%;width:min(520px,72vw);height:min(520px,72vw);background:url('/assets/images/pcc-symbol.png') center/contain no-repeat;opacity:.045;filter:drop-shadow(0 0 40px rgba(35,230,255,.6));pointer-events:none}.site-nav.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:scale(1)}.site-nav a{width:100%;padding:9px 0;color:#dbe7f8;font-size:clamp(2.05rem,8vw,4.4rem);font-weight:780;letter-spacing:-.045em;line-height:1.03;transform:translateY(18px);opacity:0;transition:color .25s ease,transform .55s var(--ease-out),opacity .4s ease}.site-nav a::after{display:none}.site-nav.is-open a{transform:translateY(0);opacity:1}.site-nav.is-open a:nth-of-type(1){transition-delay:.06s}.site-nav.is-open a:nth-of-type(2){transition-delay:.10s}.site-nav.is-open a:nth-of-type(3){transition-delay:.14s}.site-nav.is-open a:nth-of-type(4){transition-delay:.18s}.site-nav.is-open a:nth-of-type(5){transition-delay:.22s}.site-nav.is-open a:nth-of-type(6){transition-delay:.26s}.site-nav.is-open a:nth-of-type(7){transition-delay:.30s}.site-nav a:hover,.site-nav a.is-active{color:#54e7ff}.nav-contact-mobile,.nav-login-mobile{display:flex!important}.nav-login-mobile{margin-top:10px;padding-top:18px!important;border-top:1px solid rgba(126,178,245,.15);font-size:clamp(1.3rem,5.8vw,2.6rem)!important;letter-spacing:-.02em!important}.nav-login-mobile svg{width:24px;height:24px}.nav-menu-meta{display:grid;gap:6px;margin-bottom:24px;color:#6c819e;position:relative;z-index:2}.nav-menu-meta span{font-size:.58rem;font-weight:900;letter-spacing:.19em}.nav-menu-meta b{color:#a8b9ce;font-size:.72rem}.nav-menu-foot{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto;padding-top:26px;position:relative;z-index:2}.nav-menu-foot span{padding:7px 9px;border:1px solid rgba(88,160,255,.15);border-radius:999px;color:#617792;font-size:.52rem;font-weight:800;letter-spacing:.1em}.nav-install-mobile{font-size:1rem!important;padding:16px 0!important}.console-tabs{max-height:none;overflow:visible}.collage-four{width:46%;height:185px;left:28%;top:36%}}
@media(max-width:640px){.principle{grid-template-rows:auto 112px 1fr auto auto;min-height:430px}.principle-action{font-size:.57rem}.collage-four{width:52%;height:150px;left:24%;top:35%}}

/* PCC v4.5 — three-company business family */
.business-family {
  padding: 155px 0 165px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(28, 102, 255, .10), transparent 35rem),
    linear-gradient(180deg, rgba(6,10,18,.08), rgba(7,12,21,.70), rgba(6,10,18,.08));
}
.business-family::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .27;
  background-image:
    linear-gradient(rgba(94,130,187,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,130,187,.065) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 85%, transparent);
}
.business-family-glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 43%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(66,152,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(34,116,255,.018), 0 0 0 220px rgba(35,230,255,.008);
}
.business-family-head {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 8vw;
  align-items: end;
}
.business-family-head .display-heading { max-width: 880px; }
.business-family-intro { padding-bottom: 12px; }
.business-family-intro p { margin: 0; color: #8e9db2; font-size: 1.05rem; }
.business-family-intro strong { display: block; margin-top: 24px; color: #d8e6f7; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.business-family-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  align-items: stretch;
  gap: 15px;
  margin-top: 78px;
}
.family-map-line {
  position: absolute;
  z-index: -1;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,162,255,.55), transparent);
  filter: drop-shadow(0 0 7px rgba(35,230,255,.42));
}
.family-map-line-left { left: 25%; width: 26%; }
.family-map-line-right { right: 25%; width: 26%; }
.business-unit {
  --unit-accent: #ff5a58;
  --unit-rgb: 255,90,88;
  min-height: 440px;
  padding: 27px;
  border: 1px solid rgba(133,169,225,.16);
  border-radius: 27px;
  color: inherit;
  background:
    radial-gradient(circle at 90% 8%, rgba(var(--unit-rgb),.12), transparent 15rem),
    linear-gradient(145deg, rgba(11,18,31,.92), rgba(5,9,16,.88));
  box-shadow: 0 28px 80px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform .38s var(--ease-out), border-color .28s ease, box-shadow .28s ease;
}
.business-unit::before {
  content: "";
  position: absolute;
  inset: auto -70px -100px auto;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(var(--unit-rgb),.13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(var(--unit-rgb),.022), 0 0 0 84px rgba(var(--unit-rgb),.012);
}
.business-unit:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--unit-rgb),.46);
  box-shadow: 0 36px 100px rgba(0,0,0,.36), 0 0 0 1px rgba(var(--unit-rgb),.08) inset;
}
.business-unit-core {
  --unit-accent: #23e6ff;
  --unit-rgb: 35,230,255;
  min-height: 485px;
  margin-top: -22px;
  border-color: rgba(35,230,255,.28);
  background:
    radial-gradient(circle at 86% 9%, rgba(35,230,255,.17), transparent 16rem),
    radial-gradient(circle at 18% 88%, rgba(30,92,255,.14), transparent 18rem),
    linear-gradient(145deg, rgba(10,24,44,.96), rgba(5,9,17,.94));
}
.business-unit-admin { --unit-accent: #a070ff; --unit-rgb: 160,112,255; }
.business-unit-top { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.business-unit-top span { color: var(--unit-accent); font-size: .57rem; font-weight: 900; letter-spacing: .15em; }
.business-unit-top i { padding: 6px 8px; border: 1px solid rgba(var(--unit-rgb),.20); border-radius: 999px; color: #778aa4; font-style: normal; font-size: .49rem; font-weight: 850; letter-spacing: .1em; }
.business-unit-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-top: 60px;
  border: 1px solid rgba(var(--unit-rgb),.38);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, rgba(var(--unit-rgb),.20), rgba(7,12,21,.82));
  box-shadow: 0 0 32px rgba(var(--unit-rgb),.13), inset 0 1px rgba(255,255,255,.10);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.business-unit-pcc { width: 92px; }
.business-unit-pcc img { width: 70px; filter: drop-shadow(0 0 14px rgba(35,230,255,.55)); }
.business-unit-copy { position: relative; z-index: 2; margin-top: 28px; }
.business-unit-copy small { color: var(--unit-accent); font-size: .56rem; font-weight: 900; letter-spacing: .16em; }
.business-unit-copy h3 { margin: 9px 0 13px; font-size: clamp(1.65rem, 2.2vw, 2.45rem); line-height: 1; letter-spacing: -.055em; }
.business-unit-copy p { margin: 0; color: #8291a6; font-size: .9rem; }
.business-unit-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(var(--unit-rgb),.16);
  color: #d8e5f5;
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.business-unit-action svg { width: 18px; height: 18px; color: var(--unit-accent); transition: transform .3s var(--ease-out); }
.business-unit:hover .business-unit-action svg { transform: translateX(5px); }
.business-family-note {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
  color: #697b93;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.business-family-note i { width: 32px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }

@media (max-width: 1080px) {
  .business-family-head { grid-template-columns: 1fr; gap: 34px; }
  .business-family-intro { max-width: 680px; }
  .business-family-map { grid-template-columns: 1fr 1fr; }
  .business-unit-core { grid-column: 1 / -1; grid-row: 1; min-height: 430px; margin-top: 0; }
  .family-map-line { display: none; }
}
@media (max-width: 720px) {
  .business-family { padding: 115px 0 125px; }
  .business-family-map { grid-template-columns: 1fr; margin-top: 55px; }
  .business-unit-core { grid-column: auto; grid-row: auto; }
  .business-unit, .business-unit-core { min-height: 410px; }
  .business-unit-mark { margin-top: 43px; }
  .business-family-note { justify-content: flex-start; }
}

/* Eighth mobile navigation item after adding Companies. */
@media(max-width:900px){.site-nav.is-open a:nth-of-type(8){transition-delay:.34s}}

/* PCC v4.7 - restrained business-family refinement */
.business-family {
  background:
    radial-gradient(circle at 50% 43%, rgba(39, 91, 184, .075), transparent 38rem),
    linear-gradient(180deg, rgba(6,10,18,.05), rgba(7,12,21,.62), rgba(6,10,18,.05));
}
.business-family-glow {
  opacity: .58;
  box-shadow: 0 0 0 110px rgba(31,85,175,.012), 0 0 0 220px rgba(44,101,197,.006);
}
.business-unit-sales {
  --unit-accent: #bf7455;
  --unit-rgb: 191,116,85;
  background:
    radial-gradient(circle at 90% 8%, rgba(191,116,85,.075), transparent 16rem),
    linear-gradient(145deg, rgba(13,18,29,.95), rgba(6,9,16,.94));
}
.business-unit-sales:hover {
  border-color: rgba(191,116,85,.34);
  box-shadow: 0 34px 88px rgba(0,0,0,.34), 0 0 0 1px rgba(191,116,85,.045) inset;
}
.business-unit-core {
  --unit-accent: #5b91f7;
  --unit-rgb: 91,145,247;
  border-color: rgba(76,129,226,.32);
  background:
    radial-gradient(circle at 86% 9%, rgba(66,110,205,.13), transparent 17rem),
    radial-gradient(circle at 18% 88%, rgba(35,72,157,.12), transparent 20rem),
    linear-gradient(145deg, rgba(8,17,35,.97), rgba(4,8,17,.96));
  box-shadow: 0 30px 90px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.04);
}
.business-unit-core:hover {
  border-color: rgba(91,145,247,.48);
  box-shadow: 0 38px 105px rgba(0,0,0,.4), 0 0 0 1px rgba(91,145,247,.07) inset;
}
.business-unit-admin {
  --unit-accent: #9278c8;
  --unit-rgb: 146,120,200;
}
.business-unit-mark {
  box-shadow: 0 18px 38px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.075);
}
.business-unit-sales-mark img { width: 56px; height: 56px; }
.business-unit-pcc img { filter: drop-shadow(0 0 10px rgba(63,116,222,.35)); }
.business-unit-action { color: #c8d4e5; }
.business-family-note i { background: linear-gradient(90deg, #315dba, #6e8fc9); }
.motion-collage { height: 590px; }
.collage-one { width: 78%; height: 330px; right: 2%; }
.collage-two { width: 60%; height: 285px; left: 0; bottom: 0; }
.collage-three { width: 58%; height: 250px; right: 0; bottom: 3%; }
@media (max-width:640px){
  .motion-collage{height:455px}
  .collage-one{width:90%;height:225px}
  .collage-two{width:68%;height:205px}
  .collage-three{width:64%;height:180px}
}

/* ========================================================================== 
   PCC 5.7.0 — responsive public-site and privacy-softened live-view refresh
   ========================================================================== */
:root {
  --shell: min(1440px, calc(100vw - clamp(32px, 5vw, 88px)));
  --header-h: 76px;
  --pcc-scroll-track: rgba(5, 10, 18, .32);
  --pcc-scroll-thumb: rgba(69, 125, 207, .42);
  --pcc-scroll-thumb-hover: rgba(85, 152, 235, .64);
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--pcc-scroll-thumb) var(--pcc-scroll-track);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--pcc-scroll-thumb) var(--pcc-scroll-track);
}
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: var(--pcc-scroll-track); }
*::-webkit-scrollbar-thumb {
  min-height: 38px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(87, 153, 239, .58), rgba(39, 87, 166, .38)) padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(105, 174, 255, .76), rgba(50, 107, 196, .58)) padding-box;
}
.pointer-glow {
  opacity: .58;
  background: radial-gradient(430px circle at var(--mx) var(--my), rgba(31, 107, 212, .045), transparent 61%);
}
.ambient-grid { opacity: .12; }
.scroll-progress span { box-shadow: 0 0 6px rgba(66, 152, 235, .42); }
.gradient-text { filter: drop-shadow(0 0 14px rgba(39, 125, 222, .10)); }
.button-primary {
  border-color: rgba(90, 158, 235, .56);
  background: linear-gradient(120deg, #174db8, #1d6cc6 58%, #2b83c9);
  box-shadow: 0 12px 30px rgba(10, 48, 115, .25), inset 0 1px rgba(255,255,255,.16);
}
.button-primary:hover { box-shadow: 0 17px 38px rgba(10, 48, 115, .32), 0 0 0 3px rgba(57, 126, 211, .055); }
.brand img,
.footer-wordmark img { filter: drop-shadow(0 0 7px rgba(51, 119, 212, .22)); }
.section-rail a:hover span,
.section-rail a.is-active span { box-shadow: 0 0 7px rgba(63, 146, 231, .52); }

.site-header {
  top: 12px;
  width: min(1460px, calc(100vw - 24px));
  min-width: 0;
  grid-template-columns: minmax(110px,1fr) auto minmax(110px,1fr);
  border-radius: 20px;
}
.site-header.is-scrolled {
  background: rgba(5, 9, 17, .88);
  border-color: rgba(104, 151, 214, .14);
  box-shadow: 0 14px 38px rgba(0,0,0,.25);
}
.site-nav { gap: clamp(16px, 2vw, 29px); }
.site-nav a { font-size: .79rem; }
.login-link,
.install-link { box-shadow: none; }

.hero {
  min-width: 0;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 4vw, 74px);
  padding-top: calc(var(--header-h) + 86px);
}
.hero-copy,
.hero-stage { min-width: 0; }
.hero-title {
  display: grid;
  gap: .08em;
  font-size: clamp(4rem, 6.25vw, 7.65rem);
  line-height: .86;
}
.hero-title > span { display: block; }
.hero-title-line { white-space: nowrap; }
.hero-lede { max-width: 660px; }
.hero-stage { min-height: clamp(585px, 46vw, 730px); }
.hero-logo-ghost {
  opacity: .055;
  filter: drop-shadow(0 0 18px rgba(36, 92, 171, .28));
}
.hero-window {
  width: 100%;
  max-width: 900px;
  top: 12%;
  right: 0;
  border-color: rgba(82, 141, 215, .25);
  box-shadow: 0 30px 75px rgba(0,0,0,.36), 0 0 34px rgba(24, 78, 159, .07);
}
.window-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  background: #060a11;
}
.window-media img,
.product-media img,
.collage-card img,
.dialog-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.88) contrast(.95) brightness(.92);
  transform: scale(1.012);
}
.window-scan,
.media-glass {
  opacity: .24;
  background: linear-gradient(180deg, rgba(5,10,18,.03), rgba(4,8,14,.16));
}
.float-card {
  border-color: rgba(104, 151, 214, .20);
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
}
.hero-signals i,
.shift-signal i { box-shadow: 0 0 5px rgba(79, 153, 229, .45); }

.platform { padding-top: 140px; }
.platform-console {
  grid-template-columns: 270px minmax(0,1fr);
  min-height: 0;
  margin-top: 72px;
  border-color: rgba(102, 150, 215, .17);
  background: rgba(4, 8, 15, .84);
  box-shadow: 0 30px 78px rgba(0,0,0,.38);
}
.console-tabs { min-width: 0; padding: 14px; }
.console-tab {
  min-height: 70px;
  grid-template-columns: 29px minmax(0,1fr) 7px;
  gap: 11px;
  padding-inline: 13px;
  border-radius: 15px;
}
.console-tab b { min-width: 0; font-size: .82rem; overflow-wrap: anywhere; }
.console-tab.is-active {
  border-color: rgba(76, 137, 214, .25);
  background: linear-gradient(120deg, rgba(31, 83, 164, .20), rgba(39, 119, 176, .045));
  box-shadow: inset 2px 0 #357bc6;
}
.console-tab.is-active i { box-shadow: 0 0 6px rgba(76, 158, 228, .55); }
.console-view { min-width: 0; padding: clamp(28px, 3.5vw, 52px); }
.console-copy { gap: 26px; }
.console-copy h3 { font-size: clamp(2.15rem, 3.25vw, 4rem); }
.console-copy p:not(.console-kicker) { max-width: 750px; }
.console-tags span { color: #8795a9; }
.product-window {
  margin-top: clamp(28px, 3.2vw, 46px);
  border-color: rgba(91, 147, 216, .26);
  box-shadow: 0 22px 58px rgba(0,0,0,.39), 0 0 28px rgba(33, 90, 172, .055);
}
.product-media {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #050910;
}
.product-media img { display: block; transition: opacity .25s ease, transform .55s var(--ease-out), filter .25s ease; }
.product-media img.is-switching { opacity: 0; transform: scale(.995); filter: blur(4px) saturate(.84); }
.expand-button { color: #8296b0; }
.dialog-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: calc(100vh - 110px);
  overflow: hidden;
  background: #050910;
}

/* Professional, restrained treatment for interactive operating cards. */
.shift-card,
.principle,
.business-unit { box-shadow: 0 22px 58px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.035); }
.shift-card::before,
.shift-card::after,
.principle::after,
.business-unit::before { opacity: .52; }
.shift-card:hover,
.shift-card:focus-visible,
.shift-card.is-active { box-shadow: 0 25px 68px rgba(0,0,0,.29), inset 0 1px rgba(255,255,255,.045); }
.shift-icon::before,
.shift-icon::after { opacity: .48; }
.shift-icon svg,
.principle-visual svg { filter: drop-shadow(0 0 7px rgba(var(--accent-rgb),.22)); }
.shift-card:hover .shift-icon svg,
.shift-card.is-active .shift-icon svg,
.principle:hover .principle-visual svg { filter: drop-shadow(0 0 10px rgba(var(--accent-rgb),.30)); }
.principles-title { text-shadow: 0 0 36px rgba(32, 91, 166, .07); }
.principle-spine::before,
.principle-spine::after { box-shadow: 0 0 0 5px rgba(35,230,255,.035), 0 0 10px rgba(69,141,219,.40); }

.motion-stage { gap: clamp(42px, 5vw, 76px); }
.motion-collage { height: 650px; }
.collage-card {
  border-color: rgba(91, 144, 211, .25);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
.collage-one { width: 72%; height: 295px; top: 0; right: 1%; transform: rotateY(-5deg) rotateZ(1deg); }
.collage-two { width: 59%; height: 255px; left: 0; top: 31%; bottom: auto; transform: rotateY(5deg) rotateZ(-2deg); z-index: 3; }
.collage-three { width: 55%; height: 225px; right: 0; bottom: 2%; transform: rotateY(-5deg) rotateZ(1.6deg); z-index: 4; }
.collage-four { width: 47%; height: 205px; left: 28%; top: 32%; transform: rotateY(2deg) rotateZ(-.8deg); z-index: 5; }
.collage-five { width: 42%; height: 185px; left: 11%; bottom: 0; transform: rotateY(4deg) rotateZ(-1.4deg); z-index: 6; }
.collage-card figcaption { background: rgba(4,8,14,.82); }

.business-family-map { grid-template-columns: minmax(0, .94fr) minmax(0, 1.12fr) minmax(0, .94fr); }
.business-unit { min-width: 0; }
.business-unit-copy h3 {
  font-size: clamp(1.45rem, 1.9vw, 2.2rem);
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.business-unit-core .business-unit-copy h3 { font-size: clamp(1.5rem, 2vw, 2.28rem); }
.company-alias {
  display: block;
  margin: -3px 0 14px;
  color: #7697c8;
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.business-family-glow { opacity: .28; }
.business-unit:hover { transform: translateY(-4px); }
.business-unit-mark { box-shadow: 0 14px 30px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.065); }
.business-unit-pcc img { filter: drop-shadow(0 0 6px rgba(63,116,222,.22)); }
.contact-glow { opacity: .48; }
.contact-mark { opacity: .09; filter: drop-shadow(0 0 16px rgba(39, 98, 175, .28)); }
.contact-panel { box-shadow: 0 34px 86px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.03); }
.contact-panel h2 span { filter: drop-shadow(0 0 10px rgba(44, 118, 195, .07)); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1120px); }
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 150px;
  }
  .hero-copy { max-width: 950px; }
  .hero-stage {
    width: min(990px, 100%);
    min-height: 680px;
    margin: 12px 0 0 auto;
  }
  .hero-window { width: 94%; }
  .platform-console { grid-template-columns: 245px minmax(0,1fr); }
  .console-tab { min-height: 68px; }
  .motion-stage { grid-template-columns: 1fr; }
  .motion-copy { max-width: 780px; }
  .motion-collage { width: min(960px,100%); margin-inline: auto; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 28px); --header-h: 66px; }
  .site-header {
    top: 7px;
    width: calc(100vw - 14px);
    grid-template-columns: 1fr auto;
    padding-inline: 13px;
    border-radius: 16px;
  }
  .header-actions { display: none; }
  .section-rail { display: none; }
  .hero {
    width: var(--shell);
    grid-template-columns: 1fr;
    padding: 126px 0 88px;
  }
  .hero-title { font-size: clamp(3.7rem, 10.8vw, 6rem); }
  .hero-stage {
    display: grid;
    width: 100%;
    min-height: 0;
    margin-top: 42px;
    perspective: none;
  }
  .hero-logo-ghost,
  .float-card { display: none; }
  .hero-window {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none !important;
    border-radius: 18px;
  }
  .platform-heading,
  .shift-heading,
  .principles-heading,
  .business-family-head { align-items: flex-start; flex-direction: column; display: flex; gap: 28px; }
  .platform-console {
    display: block;
    margin-top: 54px;
    border-radius: 22px;
    overflow: hidden;
  }
  .console-tabs {
    display: flex;
    gap: 8px;
    max-height: none;
    padding: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    border-bottom: 1px solid rgba(104,150,213,.14);
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
  }
  .console-tab {
    flex: 0 0 min(260px, 69vw);
    width: auto;
    min-height: 74px;
    margin: 0 !important;
    scroll-snap-align: center;
  }
  .console-view { min-height: 0; padding: 30px 20px 20px; }
  .console-copy { grid-template-columns: 1fr; }
  .console-tags { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .product-media { aspect-ratio: 16 / 10; }
  .shift-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .model-readout { grid-template-columns: auto minmax(0,1fr); }
  .model-readout-tags { grid-column: 1 / -1; align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .motion-collage {
    display: flex;
    gap: 14px;
    width: 100%;
    height: auto;
    padding: 6px 2px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    perspective: none;
  }
  .collage-card,
  .collage-one,
  .collage-two,
  .collage-three,
  .collage-four,
  .collage-five {
    position: relative;
    inset: auto;
    flex: 0 0 min(640px, 82vw);
    width: auto;
    height: auto;
    aspect-ratio: 16 / 10;
    transform: none !important;
    scroll-snap-align: center;
  }
  .business-family-map { grid-template-columns: 1fr; gap: 14px; }
  .business-unit,
  .business-unit-core {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
    margin-top: 0;
  }
  .family-map-line { display: none; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-spine { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 24px); }
  body { font-size: 15px; }
  .brand img { width: 43px; }
  .hero { padding: 116px 0 78px; }
  .hero-copy { padding-top: 0; }
  .hero-title {
    gap: .10em;
    font-size: clamp(2.7rem, 12.4vw, 3.85rem);
    line-height: .89;
    letter-spacing: -.066em;
  }
  .hero-title-line { white-space: nowrap; }
  .hero-lede { margin-top: 23px; font-size: .98rem; }
  .hero-actions { width: 100%; align-items: stretch; }
  .hero-actions .button-primary { width: 100%; }
  .hero-signals { margin-top: 29px; font-size: .63rem; }
  .hero-stage { margin-top: 30px; }
  .window-bar { min-width: 0; padding-inline: 10px; }
  .window-status { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .window-meta { display: none; }
  .window-media { aspect-ratio: 4 / 3; }
  .manifesto,
  .platform,
  .shift,
  .principles,
  .business-family { padding: 98px 0 108px; }
  .display-heading { font-size: clamp(2.65rem, 12.6vw, 4rem); }
  .platform-console { margin-top: 43px; border-radius: 18px; }
  .console-tabs { padding: 9px; }
  .console-tab { flex-basis: 78vw; min-height: 70px; }
  .console-view { padding: 25px 13px 13px; }
  .console-copy h3 { font-size: clamp(2rem, 9.8vw, 2.7rem); }
  .console-copy p:not(.console-kicker) { margin-top: 15px; font-size: .92rem; }
  .console-tags { display: flex; }
  .console-tags span { padding: 6px 8px; font-size: .54rem; }
  .product-window { margin-top: 24px; border-radius: 13px; }
  .product-window .window-bar { height: 42px; }
  .product-media { aspect-ratio: 4 / 3; }
  .shift-cards { grid-template-columns: 1fr; margin-top: 48px; }
  .shift-card { min-height: 360px; }
  .model-readout { grid-template-columns: 1fr; gap: 17px; padding: 20px; }
  .model-readout-tags { grid-column: auto; }
  .motion-stage { margin-top: 82px; padding-top: 64px; }
  .motion-collage { margin-inline: 0; }
  .collage-card,
  .collage-one,
  .collage-two,
  .collage-three,
  .collage-four,
  .collage-five { flex-basis: 84vw; }
  .business-family-map { margin-top: 45px; }
  .business-unit,
  .business-unit-core { min-height: 350px; padding: 23px; }
  .business-unit-mark { margin-top: 34px; }
  .business-unit-copy h3,
  .business-unit-core .business-unit-copy h3 { font-size: clamp(1.6rem, 8.4vw, 2.2rem); }
  .principles-title { font-size: clamp(3.75rem, 16vw, 5.5rem); }
  .principle { min-height: 410px; padding: 23px; }
  .principle-label { white-space: normal; }
  .contact { min-height: 680px; padding: 90px 0; }
  .contact-panel { padding: 62px 19px; border-radius: 21px; }
  .contact-panel h2 { font-size: clamp(2.65rem, 12vw, 3.6rem); }
  .contact-actions .button-primary { width: 100%; }
  .footer-wordmark img { width: 190px; }
  .media-dialog { width: calc(100vw - 18px); max-height: calc(100dvh - 18px); border-radius: 16px; }
  .dialog-frame { aspect-ratio: 4 / 3; border-radius: 16px 16px 0 0; }
}

@media (max-width: 430px) {
  .hero-title { font-size: clamp(2.55rem, 12vw, 3.25rem); }
  .hero-signals { display: grid; grid-template-columns: 1fr 1fr; }
  .console-tab { flex-basis: 82vw; }
  .collage-card,
  .collage-one,
  .collage-two,
  .collage-three,
  .collage-four,
  .collage-five { flex-basis: 86vw; }
}

@media (orientation: landscape) and (max-height: 560px) and (max-width: 960px) {
  .site-nav { justify-content: flex-start; padding-top: 88px; }
  .site-nav a { font-size: clamp(1.35rem, 5.2vh, 2.25rem); padding-block: 6px; }
  .hero { padding-top: 105px; }
  .hero-stage { max-width: 720px; margin-inline: auto; }
  .window-media,
  .product-media { aspect-ratio: 16 / 9; }
}

@media (hover: none), (pointer: coarse) {
  .pointer-glow { display: none; }
  .business-unit:hover,
  .shift-card:hover { transform: none; }
}


/* PCC v5.9.0 — PCC family spiderweb, explanation system, and company identity alignment */
.business-family-head { align-items: start; }
.business-family-intro p strong { color: #eef6ff; }
.business-family-intro p em { color: #b8d7ff; font-style: normal; font-weight: 760; }
.business-family-intro strong { line-height: 1.55; }

.pcc-family-web {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr) minmax(0, 1fr);
  grid-template-rows: minmax(220px, 1fr) minmax(235px, 1fr) minmax(220px, 1fr);
  gap: 22px 34px;
  min-height: 760px;
  margin-top: 76px;
  padding: 18px;
  isolation: isolate;
}
.pcc-family-web::before {
  content: "";
  position: absolute;
  inset: 10% 20%;
  z-index: -2;
  border: 1px solid rgba(65, 145, 255, .10);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(38, 113, 233, .018), 0 0 0 170px rgba(35, 230, 255, .008);
  pointer-events: none;
}
.pcc-web-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.pcc-web-lines path,
.pcc-web-lines circle {
  vector-effect: non-scaling-stroke;
}
.pcc-web-ring {
  fill: none;
  stroke: rgba(111, 155, 217, .18);
  stroke-width: 1.2;
  stroke-dasharray: 5 12;
}
.pcc-web-spoke { fill: none; stroke-width: 1.5; }
.pcc-web-spoke-blue { stroke: rgba(54, 200, 255, .58); filter: drop-shadow(0 0 7px rgba(54, 200, 255, .38)); }
.pcc-web-spoke-red { stroke: rgba(255, 55, 68, .64); filter: drop-shadow(0 0 7px rgba(255, 55, 68, .34)); }
.pcc-web-spoke-orange { stroke: rgba(255, 148, 31, .64); filter: drop-shadow(0 0 7px rgba(255, 148, 31, .32)); }
.pcc-web-spoke-white { stroke: rgba(235, 244, 255, .40); filter: drop-shadow(0 0 6px rgba(112, 173, 255, .20)); }
.pcc-web-cross { fill: none; stroke: rgba(93, 137, 198, .12); stroke-width: 1; stroke-dasharray: 3 14; }
.pcc-web-lines circle { fill: #07101d; stroke: #7db6ff; stroke-width: 1.5; }

.pcc-web-node,
.pcc-web-contact {
  --web-accent: #68a8ff;
  --web-rgb: 104, 168, 255;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 430px);
  min-height: 224px;
  padding: 24px;
  border: 1px solid rgba(var(--web-rgb), .28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(var(--web-rgb), .13), transparent 15rem),
    linear-gradient(145deg, rgba(12, 20, 34, .96), rgba(4, 8, 15, .95));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30), inset 0 1px rgba(255, 255, 255, .045);
  overflow: hidden;
  transition: transform .36s var(--ease-out), border-color .26s ease, box-shadow .26s ease;
}
.pcc-web-node::before,
.pcc-web-contact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--web-accent), transparent);
  box-shadow: 0 0 18px rgba(var(--web-rgb), .42);
}
.pcc-web-node::after,
.pcc-web-contact::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -112px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(var(--web-rgb), .10);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(var(--web-rgb), .016), 0 0 0 76px rgba(var(--web-rgb), .009);
  pointer-events: none;
}
.pcc-web-node:hover,
.pcc-web-contact:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--web-rgb), .52);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .38), 0 0 0 1px rgba(var(--web-rgb), .06) inset;
}
.pcc-web-node-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 21px;
}
.pcc-web-node-top span {
  color: var(--web-accent);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.pcc-web-node-top i {
  padding: 5px 8px;
  border: 1px solid rgba(var(--web-rgb), .26);
  border-radius: 999px;
  color: #a8b8cb;
  background: rgba(var(--web-rgb), .06);
  font-size: .50rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
}
.pcc-web-node > strong,
.pcc-web-contact > strong {
  position: relative;
  z-index: 1;
  color: #f7faff;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.pcc-web-node > small,
.pcc-web-contact > small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--web-accent);
  font-size: .67rem;
  font-weight: 770;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.pcc-web-node > p,
.pcc-web-contact > p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: #8f9eb2;
  font-size: .88rem;
}
.pcc-web-node-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
}
.pcc-web-node-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(var(--web-rgb), .18);
  border-radius: 999px;
  color: #a7b6ca;
  background: rgba(var(--web-rgb), .045);
  font-size: .51rem;
  font-weight: 820;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.pcc-web-commtech { --web-accent: #36c8ff; --web-rgb: 54, 200, 255; grid-column: 1; grid-row: 1; align-self: end; justify-self: start; }
.pcc-web-legacy { --web-accent: #ff3744; --web-rgb: 255, 55, 68; grid-column: 3; grid-row: 1; align-self: end; justify-self: end; }
.pcc-web-admin { --web-accent: #ff941f; --web-rgb: 255, 148, 31; grid-column: 3; grid-row: 3; align-self: start; justify-self: end; }
.pcc-web-contact { --web-accent: #f2f6fc; --web-rgb: 173, 198, 231; grid-column: 1; grid-row: 3; align-self: start; justify-self: start; }

.pcc-web-hub {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
  place-self: center;
  display: grid;
  place-items: center;
  align-content: center;
  width: min(100%, 285px);
  aspect-ratio: 1;
  padding: 28px;
  border: 1px solid rgba(76, 169, 255, .44);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(35, 230, 255, .14), transparent 48%),
    linear-gradient(145deg, rgba(9, 30, 56, .97), rgba(4, 9, 18, .98));
  box-shadow: 0 0 0 12px rgba(43, 116, 220, .05), 0 0 0 24px rgba(35, 230, 255, .025), 0 32px 90px rgba(0, 0, 0, .46), 0 0 52px rgba(35, 159, 255, .18);
}
.pcc-web-hub::before,
.pcc-web-hub::after {
  content: "";
  position: absolute;
  inset: -17px;
  border: 1px dashed rgba(100, 179, 255, .18);
  border-radius: 50%;
  animation: pccWebOrbit 26s linear infinite;
}
.pcc-web-hub::after { inset: -32px; border-style: solid; border-color: rgba(35, 230, 255, .07); animation-direction: reverse; animation-duration: 34s; }
@keyframes pccWebOrbit { to { transform: rotate(360deg); } }
.pcc-web-hub-kicker { color: #71dfff; font-size: .54rem; font-weight: 900; letter-spacing: .18em; }
.pcc-web-hub > strong { margin-top: 9px; color: #fff; font-size: clamp(3.4rem, 6vw, 5.7rem); line-height: .82; letter-spacing: -.07em; }
.pcc-web-hub > b { margin-top: 15px; color: #bad9ff; font-size: .72rem; letter-spacing: .035em; }
.pcc-web-hub > small { max-width: 190px; margin-top: 8px; color: #758aa5; font-size: .58rem; font-weight: 760; line-height: 1.45; text-transform: uppercase; }

.pcc-explanation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 72px;
}
.pcc-explanation {
  position: relative;
  min-height: 285px;
  padding: 26px;
  border: 1px solid rgba(117, 153, 207, .16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(12, 19, 31, .92), rgba(5, 9, 16, .94));
  box-shadow: 0 22px 58px rgba(0, 0, 0, .26), inset 0 1px rgba(255, 255, 255, .035);
  overflow: hidden;
}
.pcc-explanation::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, transparent, var(--explain-accent, #5da4ff), transparent); }
.pcc-explanation > span { color: var(--explain-accent, #5da4ff); font-size: .56rem; font-weight: 900; letter-spacing: .15em; }
.pcc-explanation h3 { margin: 42px 0 0; font-size: clamp(1.65rem, 2.2vw, 2.55rem); line-height: 1.02; letter-spacing: -.05em; }
.pcc-explanation p { margin: 18px 0 0; color: #91a0b5; font-size: .93rem; }
.pcc-explanation-quick { --explain-accent: #36c8ff; }
.pcc-explanation-full { --explain-accent: #ff941f; }
.pcc-explanation-paperwork { --explain-accent: #ff3744; }

.pcc-role-flow {
  margin-top: 18px;
  padding: 27px;
  border: 1px solid rgba(102, 145, 205, .18);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 0%, rgba(34, 117, 232, .08), transparent 27rem), rgba(5, 10, 18, .75);
  box-shadow: 0 26px 72px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .035);
}
.pcc-role-flow-head { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(116, 151, 201, .13); }
.pcc-role-flow-head span { color: #74b9ff; font-size: .57rem; font-weight: 900; letter-spacing: .15em; }
.pcc-role-flow-head strong { color: #d9e5f5; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; }
.pcc-role-flow-track { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr); align-items: stretch; gap: 10px; margin-top: 18px; }
.pcc-role-step {
  display: flex;
  flex-direction: column;
  min-height: 165px;
  padding: 17px;
  border: 1px solid rgba(126, 160, 210, .13);
  border-radius: 17px;
  background: rgba(10, 16, 27, .86);
  transition: border-color .25s ease, transform .3s var(--ease-out);
}
.pcc-role-step:hover { transform: translateY(-3px); border-color: rgba(104, 169, 255, .33); }
.pcc-role-step small { color: #70849f; font-size: .50rem; font-weight: 900; letter-spacing: .13em; }
.pcc-role-step b { margin-top: 18px; color: #eef5ff; font-size: .94rem; line-height: 1.15; }
.pcc-role-step span { margin-top: auto; padding-top: 16px; color: #7f90a6; font-size: .70rem; }
.pcc-role-step-sales { border-color: rgba(255, 55, 68, .22); }
.pcc-role-step-sales small { color: #ff5964; }
.pcc-role-step-core { border-color: rgba(54, 200, 255, .24); }
.pcc-role-step-core small { color: #49d2ff; }
.pcc-role-step-result { border-color: rgba(111, 166, 240, .20); }
.pcc-role-arrow { align-self: center; color: #5e7796; font-size: 1.25rem; font-style: normal; }
.pcc-role-support {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 11px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 148, 31, .24);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 148, 31, .10), rgba(255, 148, 31, .025));
}
.pcc-role-support small { color: #ffab49; font-size: .51rem; font-weight: 900; letter-spacing: .13em; }
.pcc-role-support strong { color: #fff3e4; font-size: .86rem; }
.pcc-role-support span { color: #9c8e7d; font-size: .72rem; text-align: right; }

@media (max-width: 1120px) {
  .pcc-family-web { grid-template-columns: minmax(0, 1fr) minmax(230px, .72fr) minmax(0, 1fr); gap-inline: 18px; min-height: 720px; padding-inline: 0; }
  .pcc-web-node, .pcc-web-contact { min-height: 235px; padding: 21px; }
  .pcc-role-flow-track { grid-template-columns: 1fr 1fr; }
  .pcc-role-arrow { display: none; }
}
@media (max-width: 880px) {
  .pcc-family-web {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    min-height: 0;
    margin-top: 54px;
    padding: 0;
  }
  .pcc-family-web::before, .pcc-web-lines { display: none; }
  .pcc-web-hub { grid-column: 1; grid-row: 1; width: min(270px, 82vw); margin: 20px auto 34px; }
  .pcc-web-commtech, .pcc-web-legacy, .pcc-web-admin, .pcc-web-contact { grid-column: 1; grid-row: auto; justify-self: stretch; align-self: auto; width: 100%; max-width: none; min-height: 0; }
  .pcc-web-commtech { order: 2; }
  .pcc-web-legacy { order: 3; }
  .pcc-web-admin { order: 4; }
  .pcc-web-contact { order: 5; }
  .pcc-explanation-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .pcc-explanation { min-height: 0; }
  .pcc-role-flow-head { align-items: flex-start; flex-direction: column; }
  .pcc-role-flow-track { grid-template-columns: 1fr; }
  .pcc-role-support { grid-template-columns: 1fr; gap: 7px; }
  .pcc-role-support span { text-align: left; }
}
@media (max-width: 560px) {
  .pcc-web-node, .pcc-web-contact { padding: 21px; border-radius: 20px; }
  .pcc-web-hub { width: min(250px, 78vw); }
  .pcc-explanation { padding: 22px; border-radius: 20px; }
  .pcc-explanation h3 { margin-top: 32px; }
  .pcc-role-flow { padding: 18px; border-radius: 22px; }
  .pcc-role-step { min-height: 145px; }
}
@media (prefers-reduced-motion: reduce) {
  .pcc-web-hub::before, .pcc-web-hub::after { animation: none; }
}

/* ======================================================================
   PCC 5.9.3 — final public homepage structure and presentation contract
   Three operating views · three-company spiderweb · coordinated workflow
   ====================================================================== */
.motion-collage.motion-collage--593 {
  height: 610px;
  isolation: isolate;
}
.motion-collage--593::before {
  content: "";
  position: absolute;
  inset: 8% 8% 10%;
  border: 1px solid rgba(75, 157, 255, .10);
  border-radius: 42%;
  background: radial-gradient(circle at 52% 43%, rgba(35, 230, 255, .075), transparent 44%);
  filter: blur(.2px);
}
.motion-collage--593 .collage-card {
  border-color: rgba(90, 159, 242, .29);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .52), inset 0 1px rgba(255, 255, 255, .04);
}
.motion-collage--593 .collage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 6, 13, .68));
}
.motion-collage--593 .collage-card figcaption { z-index: 2; }
.motion-collage--593 .collage-portfolio {
  width: 78%; height: 300px; top: 0; right: 0; z-index: 1;
  transform: perspective(1200px) rotateY(-5deg) rotateZ(.6deg);
}
.motion-collage--593 .collage-documents {
  width: 64%; height: 275px; left: 0; top: 36%; z-index: 3;
  transform: perspective(1200px) rotateY(5deg) rotateZ(-1.4deg);
}
.motion-collage--593 .collage-records {
  width: 60%; height: 245px; right: 2%; bottom: 0; z-index: 4;
  transform: perspective(1200px) rotateY(-4deg) rotateZ(1deg);
}

.pcc-family-web.pcc-family-web--593 {
  grid-template-columns: minmax(0, 1fr) minmax(290px, .82fr) minmax(0, 1fr);
  grid-template-rows: minmax(240px, auto) minmax(270px, auto) minmax(240px, auto);
  min-height: 850px;
  gap: 22px 30px;
  padding: 32px 0 0;
}
.pcc-family-web--593 .pcc-web-lines { inset: 0 1.5%; }
.pcc-family-web--593 .pcc-web-commtech {
  grid-column: 2; grid-row: 1; align-self: start; justify-self: center;
  width: min(100%, 540px); max-width: 540px;
}
.pcc-family-web--593 .pcc-web-legacy {
  grid-column: 1; grid-row: 3; align-self: end; justify-self: start;
  width: min(100%, 500px); max-width: 500px;
}
.pcc-family-web--593 .pcc-web-admin {
  grid-column: 3; grid-row: 3; align-self: end; justify-self: end;
  width: min(100%, 500px); max-width: 500px;
}
.pcc-family-web--593 .pcc-web-hub { grid-column: 2; grid-row: 2; }
.pcc-family-web--593 .pcc-web-cross--lower { stroke-dasharray: 5 15; }
.pcc-family-web--593 .pcc-web-node { min-height: 238px; }
.pcc-family-web--593 .pcc-web-node-top i { max-width: 112px; text-align: center; }

.pcc-explanation-grid.pcc-explanation-grid--593 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
}
.pcc-explanation-grid--593 .pcc-explanation { min-height: 260px; }
.pcc-explanation-grid--593 .pcc-explanation h3 { max-width: 760px; }

.pcc-role-flow.pcc-role-flow--593 { padding: clamp(22px, 3vw, 34px); }
.pcc-role-network {
  display: grid;
  grid-template-columns: minmax(210px, .78fr) minmax(0, 2.3fr) minmax(235px, .9fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
  position: relative;
}
.pcc-role-network::before,
.pcc-role-network::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(75, 159, 255, .05), rgba(75, 159, 255, .56), rgba(75, 159, 255, .05));
  pointer-events: none;
}
.pcc-role-network::before { left: calc(22% - 18px); width: 9%; }
.pcc-role-network::after { right: calc(20% - 18px); width: 9%; }
.pcc-role-origin,
.pcc-role-result,
.pcc-role-branch {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(113, 157, 218, .17);
  border-radius: 19px;
  background: linear-gradient(150deg, rgba(13, 22, 36, .94), rgba(5, 10, 18, .94));
  box-shadow: 0 17px 42px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .03);
}
.pcc-role-origin { justify-content: center; border-color: rgba(122, 179, 255, .25); }
.pcc-role-result { justify-content: center; border-color: rgba(91, 158, 255, .27); }
.pcc-role-origin::after,
.pcc-role-result::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 10px; height: 10px;
  border: 2px solid #55c9ff;
  border-radius: 50%;
  background: #06101e;
  box-shadow: 0 0 15px rgba(35, 230, 255, .42);
}
.pcc-role-origin::after { right: -6px; }
.pcc-role-result::before { left: -6px; }
.pcc-role-branches { display: grid; gap: 11px; }
.pcc-role-branch { min-height: 135px; transition: transform .3s var(--ease-out), border-color .25s ease; }
.pcc-role-branch:hover { transform: translateY(-3px); }
.pcc-role-branch::before,
.pcc-role-branch::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--role-accent, #5da4ff);
  box-shadow: 0 0 14px var(--role-accent, #5da4ff);
}
.pcc-role-branch::before { left: -5px; }
.pcc-role-branch::after { right: -5px; }
.pcc-role-branch small,
.pcc-role-origin small,
.pcc-role-result small { color: var(--role-accent, #74b9ff); font-size: .50rem; font-weight: 900; letter-spacing: .14em; }
.pcc-role-branch b,
.pcc-role-origin b,
.pcc-role-result b { margin-top: 14px; color: #f1f7ff; font-size: 1rem; line-height: 1.16; }
.pcc-role-branch span,
.pcc-role-origin span,
.pcc-role-result span { margin-top: auto; padding-top: 15px; color: #8495aa; font-size: .72rem; line-height: 1.55; }
.pcc-role-step-sales { --role-accent: #ff5360; border-color: rgba(255, 55, 68, .26); }
.pcc-role-step-core { --role-accent: #43d1ff; border-color: rgba(54, 200, 255, .27); }
.pcc-role-step-admin { --role-accent: #ffa43d; border-color: rgba(255, 148, 31, .28); }

/* PCC 5.9.3 professional system diagrams */
.principle-visual { width: min(46%, 250px); min-width: 190px; }
.principle-visual .visual-grid {
  position: absolute;
  inset: 10px;
  opacity: .20;
  background-image: linear-gradient(rgba(var(--accent-rgb), .13) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-rgb), .13) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(circle at 58% 50%, #000, transparent 70%);
}
.principle-visual svg { width: 100%; overflow: visible; }
.principle-visual svg path,
.principle-visual svg circle,
.principle-visual svg rect { vector-effect: non-scaling-stroke; }
.principle-visual .visual-rail,
.principle-visual .visual-ticks,
.principle-visual .visual-links,
.principle-visual .visual-branch { opacity: .58; }
.principle-visual .visual-milestones circle,
.principle-visual .visual-nodes circle,
.principle-visual .visual-source circle { fill: rgba(var(--accent-rgb), .10); stroke-width: 1.7; }
.principle-visual .visual-pulse,
.principle-visual .visual-arrow,
.principle-visual .visual-decision-mark { stroke-width: 2; }
.principle-visual .visual-sheet { fill: rgba(var(--accent-rgb), .045); }
.principle-visual .visual-sheet--back { opacity: .28; transform: translate(-8px, 7px); }
.principle-visual .visual-sheet--mid { opacity: .48; transform: translate(-4px, 3px); }
.principle-visual .visual-sheet--front { fill: rgba(var(--accent-rgb), .08); }
.principle-visual .visual-approval circle,
.principle-visual .visual-lock,
.principle-visual .visual-context,
.principle-visual .visual-shields path { fill: rgba(var(--accent-rgb), .06); }
.principle-visual .visual-audience-card rect { fill: rgba(var(--accent-rgb), .04); }

@media (max-width: 1120px) {
  .pcc-family-web.pcc-family-web--593 {
    grid-template-columns: minmax(0, 1fr) minmax(245px, .75fr) minmax(0, 1fr);
    min-height: 820px;
  }
  .pcc-role-network { grid-template-columns: 1fr; }
  .pcc-role-network::before, .pcc-role-network::after,
  .pcc-role-origin::after, .pcc-role-result::before,
  .pcc-role-branch::before, .pcc-role-branch::after { display: none; }
  .pcc-role-branches { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .motion-stage { grid-template-columns: 1fr; }
  .motion-collage.motion-collage--593 { height: 610px; margin-top: 22px; }
  .pcc-family-web.pcc-family-web--593 { display: flex; flex-direction: column; min-height: 0; }
  .pcc-family-web--593 .pcc-web-hub { order: 1; }
  .pcc-family-web--593 .pcc-web-commtech { order: 2; width: 100%; max-width: none; }
  .pcc-family-web--593 .pcc-web-legacy { order: 3; width: 100%; max-width: none; }
  .pcc-family-web--593 .pcc-web-admin { order: 4; width: 100%; max-width: none; }
  .pcc-explanation-grid.pcc-explanation-grid--593 { grid-template-columns: 1fr; }
  .pcc-role-branches { grid-template-columns: 1fr; }
  .principle-visual { width: min(48%, 220px); min-width: 160px; }
}
@media (max-width: 560px) {
  .motion-collage.motion-collage--593 { height: auto; display: grid; gap: 12px; perspective: none; }
  .motion-collage--593::before { display: none; }
  .motion-collage--593 .collage-card { position: relative; inset: auto; width: 100%; height: 205px; transform: none; }
  .pcc-role-flow-head strong { line-height: 1.5; }
  .pcc-role-origin, .pcc-role-result, .pcc-role-branch { padding: 18px; }
  .principle-visual { position: relative; width: 100%; min-width: 0; margin: 16px 0 0; }
}

/* ==========================================================================
   PCC 6.3.2 — TARGETED MAIN HOMEPAGE PATCH
   Scope: company switcher, revised holdings hub, legacy link, and concise
   Standard copy. All pre-existing homepage styling remains intact above.
   ========================================================================== */

.site-family-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(147, 177, 223, .14);
  border-radius: 999px;
  background: rgba(8, 14, 24, .68);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}
.site-family-switch a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 31px;
  padding: 0 9px;
  border-radius: 999px;
  color: #74849a;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.site-family-switch a:hover {
  color: #fff;
  background: rgba(54, 200, 255, .09);
  transform: translateY(-1px);
}
.site-family-switch a.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(32, 126, 255, .24), rgba(35, 230, 255, .13));
  box-shadow: inset 0 0 0 1px rgba(54, 200, 255, .24), 0 0 18px rgba(35, 230, 255, .07);
}

.nav-family-switch-mobile { display: none; }

.pcc-web-hub.pcc-web-hub-holdings {
  width: min(100%, 305px);
  padding: 23px 24px;
}
.pcc-web-hub-holdings > img {
  display: block;
  width: min(82%, 190px);
  height: auto;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28), 0 0 22px rgba(35, 230, 255, .12);
}
.pcc-web-hub-holdings > b {
  max-width: 225px;
  margin-top: 13px;
  color: #d8e9ff;
  font-size: .64rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.pcc-web-hub-holdings > small {
  max-width: 210px;
  margin-top: 7px;
  font-size: .54rem;
  line-height: 1.42;
}

.legacy-actions {
  flex-wrap: wrap;
  gap: 15px 22px;
}
.legacy-history-link {
  min-height: 52px;
  padding-inline: 10px;
}
.legacy-actions blockquote {
  flex: 1 1 240px;
}

.principle-copy p {
  max-width: none;
  line-height: 1.48;
}

@media (max-width: 1320px) and (min-width: 901px) {
  .site-family-switch { gap: 3px; padding: 4px; }
  .site-family-switch a {
    min-width: 31px;
    height: 29px;
    padding-inline: 7px;
    font-size: .52rem;
  }
}

@media (max-width: 900px) {
  .nav-family-switch-mobile {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 18px 0 10px;
    padding: 8px;
    border: 1px solid rgba(126, 178, 245, .14);
    border-radius: 17px;
    background: rgba(9, 17, 30, .72);
  }
  .site-nav .nav-family-switch-mobile a {
    width: auto;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 8px 6px !important;
    border: 1px solid rgba(126, 178, 245, .10);
    border-radius: 12px;
    color: #8799b0;
    background: rgba(255, 255, 255, .018);
    font-size: .60rem !important;
    font-weight: 900;
    line-height: 1.25 !important;
    letter-spacing: .06em !important;
    text-align: center;
    transform: none !important;
    opacity: 1 !important;
  }
  .site-nav .nav-family-switch-mobile a::after { display: none; }
  .site-nav .nav-family-switch-mobile a.is-active {
    color: #fff;
    border-color: rgba(54, 200, 255, .24);
    background: rgba(54, 200, 255, .11);
    box-shadow: inset 0 0 0 1px rgba(54, 200, 255, .08);
  }
  .pcc-web-hub.pcc-web-hub-holdings {
    width: min(275px, 82vw);
    padding: 22px;
  }
  .pcc-web-hub-holdings > img { width: min(80%, 178px); }
}

@media (max-width: 560px) {
  .site-nav .nav-family-switch-mobile a {
    min-height: 40px;
    font-size: .54rem !important;
  }
  .pcc-web-hub.pcc-web-hub-holdings {
    width: min(252px, 80vw);
    padding: 20px;
  }
  .pcc-web-hub-holdings > img { width: min(78%, 164px); }
  .pcc-web-hub-holdings > b { font-size: .58rem; }
}


/* ==========================================================================
   PCC 6.3.4 — TARGETED HOMEPAGE COLLAGE + FAMILY LOGO PATCH
   Scope: richer opening collage, lighter public-image treatment, operating-
   company logos, and Pyykkonen Corporation history-link placement only.
   ========================================================================== */

.hero-stage { isolation: isolate; }
.hero-window {
  z-index: 4;
  width: 84%;
  top: 18%;
  right: 3%;
}
.hero-preview {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(111, 169, 244, .25);
  border-radius: 17px;
  background: #050a12;
  box-shadow: 0 22px 62px rgba(0,0,0,.46), inset 0 1px rgba(255,255,255,.035);
  transform-style: preserve-3d;
  transition: border-color .3s ease, box-shadow .3s ease, transform .36s var(--ease-out);
}
.hero-preview:hover {
  z-index: 6;
  border-color: rgba(80, 190, 255, .48);
  box-shadow: 0 28px 76px rgba(0,0,0,.56), 0 0 28px rgba(41,132,255,.10);
}
.hero-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.91) contrast(.98) brightness(.96);
}
.hero-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,7,14,.01) 48%, rgba(2,6,13,.58));
}
.hero-preview figcaption {
  position: absolute;
  z-index: 2;
  left: 11px;
  bottom: 9px;
  padding: 6px 8px;
  border: 1px solid rgba(124, 180, 249, .16);
  border-radius: 8px;
  color: #d9eaff;
  background: rgba(3, 8, 16, .78);
  backdrop-filter: blur(8px);
  font-size: .50rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero-preview-customer {
  width: 43%;
  height: 31%;
  left: -2%;
  top: 5%;
  transform: rotateY(8deg) rotateZ(-2.6deg);
}
.hero-preview-command {
  width: 39%;
  height: 28%;
  left: 1%;
  bottom: 2%;
  transform: rotateY(7deg) rotateZ(2.1deg);
}
.hero-preview-documents {
  width: 35%;
  height: 25%;
  right: -1%;
  bottom: 1%;
  transform: rotateY(-7deg) rotateZ(-1.7deg);
}
.float-card-one { left: 3%; top: 1%; }
.float-card-two { right: -1%; bottom: 21%; }
.float-card-three { left: 27%; bottom: 1%; }

.pcc-family-web.pcc-family-web--593 {
  grid-template-rows: minmax(300px, auto) minmax(285px, auto) minmax(300px, auto);
  min-height: 970px;
}
.pcc-family-web--593 .pcc-web-node {
  min-height: 294px;
}
.pcc-web-company-logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 86px;
  margin: -5px 0 17px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid rgba(var(--web-rgb), .18);
  border-radius: 15px;
  background: rgba(1, 4, 9, .82);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.pcc-web-company-logo img {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
  object-position: center;
}
.pcc-web-company-logo-commtech {
  min-height: 108px;
  padding: 0;
  border-color: rgba(54, 200, 255, .25);
  background: #000;
}
.pcc-web-company-logo-commtech img {
  height: 106px;
  object-fit: contain;
}
.pcc-web-company-logo-legacy {
  border-color: rgba(255, 55, 68, .22);
}
.pcc-web-company-logo-admin {
  border-color: rgba(255, 148, 31, .23);
}

.pcc-history-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(118, 158, 216, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(69, 134, 229, .10), transparent 18rem),
    linear-gradient(145deg, rgba(10, 17, 29, .94), rgba(4, 8, 15, .95));
  box-shadow: 0 22px 64px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.035);
}
.pcc-history-bridge-copy { min-width: 0; }
.pcc-history-bridge-copy > span {
  display: block;
  color: #8cb9f4;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .17em;
}
.pcc-history-bridge-copy > strong {
  display: block;
  margin-top: 11px;
  color: #f4f8ff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -.035em;
}
.pcc-history-bridge-copy > p {
  max-width: 760px;
  margin: 9px 0 0;
  color: #8d9db2;
  font-size: .88rem;
  line-height: 1.62;
}
.pcc-history-bridge .button { white-space: nowrap; }

@media (max-width: 1180px) {
  .hero-window { width: 82%; right: 4%; }
  .hero-preview-customer { left: 1%; }
  .hero-preview-command { left: 4%; }
  .hero-preview-documents { right: 1%; }
}

@media (max-width: 900px) {
  .hero-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-window {
    grid-column: 1 / -1;
    position: relative;
    inset: auto;
    width: 100%;
    order: 1;
  }
  .hero-preview {
    position: relative;
    inset: auto;
    width: 100%;
    height: 145px;
    transform: none !important;
    order: 2;
  }
  .hero-preview img { object-position: center top; }
  .pcc-family-web.pcc-family-web--593 { min-height: 0; }
  .pcc-family-web--593 .pcc-web-node { min-height: 0; }
  .pcc-history-bridge { grid-template-columns: 1fr; }
  .pcc-history-bridge .button { justify-self: start; }
}

@media (max-width: 560px) {
  .hero-stage { grid-template-columns: 1fr 1fr; }
  .hero-preview { height: 132px; }
  .hero-preview-documents { grid-column: 1 / -1; height: 160px; }
  .pcc-web-company-logo { min-height: 74px; }
  .pcc-web-company-logo img { height: 65px; }
  .pcc-web-company-logo-commtech { min-height: 92px; }
  .pcc-web-company-logo-commtech img { height: 90px; }
  .pcc-history-bridge { padding: 20px; border-radius: 20px; }
  .pcc-history-bridge .button { width: 100%; }
}

/* ==========================================================================
   PCC 6.3.6 — FIRST-IMPRESSION HERO SHOWCASE
   Scope: replace only the opening visual collage with the approved new hero.
   ========================================================================== */
.hero {
  grid-template-columns: minmax(390px, .82fr) minmax(650px, 1.18fr);
  gap: clamp(0px, 1vw, 18px);
  overflow: visible;
}
.hero-stage-showcase {
  width: min(1160px, 78vw);
  min-height: clamp(610px, 48vw, 760px);
  margin-left: clamp(-250px, -15vw, -120px);
  perspective: none;
  isolation: isolate;
}
.hero-stage-showcase::before {
  content: "";
  position: absolute;
  inset: 12% 5% 5% 20%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 94, 215, .17), rgba(8, 33, 83, .07) 46%, transparent 72%);
  filter: blur(26px);
  pointer-events: none;
}
.hero-showcase {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.015) brightness(1.015) drop-shadow(0 38px 72px rgba(0, 0, 0, .48));
  transform: none;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-stage-showcase {
    width: min(1120px, 100%);
    min-height: 0;
    aspect-ratio: 1672 / 941;
    margin: 12px auto 0;
  }
}

@media (max-width: 900px) {
  .hero-stage-showcase {
    display: block;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 20px;
  }
  .hero-showcase {
    position: absolute;
    inset: 0;
  }
  .hero-showcase img {
    object-fit: cover;
    object-position: 67% center;
    filter: saturate(1.02) contrast(1.015) brightness(1.02) drop-shadow(0 24px 50px rgba(0, 0, 0, .42));
  }
}

@media (max-width: 560px) {
  .hero-stage-showcase {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
  .hero-showcase img {
    object-position: 69% center;
  }
}
