:root {
  --navy-950: #031126;
  --navy-900: #061b3a;
  --navy-800: #0a2b58;
  --blue-700: #0758bd;
  --blue-600: #0874d8;
  --blue-500: #2698e1;
  --blue-300: #78c9f4;
  --blue-100: #dff3ff;
  --blue-050: #f1f9ff;
  --ink: #10223d;
  --muted: #5c6d82;
  --line: #dce6f0;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --success: #4de1ae;
  --shadow-sm: 0 10px 30px rgba(9, 35, 73, .08);
  --shadow-lg: 0 28px 70px rgba(3, 24, 53, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--navy-900);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.utility-bar { color: #d8e9fb; background: var(--navy-950); font-size: .77rem; letter-spacing: .06em; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner > span { text-transform: uppercase; font-weight: 700; }
.utility-inner > span i { display: inline-block; width: 3px; height: 3px; margin: 0 9px 3px; border-radius: 50%; background: var(--blue-500); }
.utility-actions { display: flex; align-items: center; gap: 13px; }
.utility-actions a { display: inline-flex; align-items: center; gap: 8px; color: white; font-weight: 700; }
.utility-actions a:hover { color: var(--blue-300); }
.utility-actions .utility-help { color: #8ed7ff; }
.utility-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, .3); }
.utility-current { color: #8ed7ff; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.utility-inner svg { width: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 230, 240, .8);
  transition: box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 10px 26px rgba(7, 29, 61, .07); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; width: 270px; }
.brand img { width: 100%; height: auto; }

.primary-nav { display: flex; align-items: center; gap: 30px; font-size: .94rem; font-weight: 650; }
.primary-nav > a { position: relative; color: #263a55; }
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.primary-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 17px; border-radius: 10px; color: white !important; background: var(--navy-900); box-shadow: 0 8px 18px rgba(6, 27, 58, .16); }
.nav-cta:hover { background: var(--blue-700); }
.nav-cta svg { width: 16px; margin: 0 7px -3px 0; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 9px; background: var(--blue-050); cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 82px;
  background:
    radial-gradient(circle at 83% 24%, rgba(38, 152, 225, .14), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #fff 72%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -9vw;
  bottom: -260px;
  width: 700px;
  height: 420px;
  border: 90px solid rgba(8, 116, 216, .035);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto 53%;
  height: 100%;
  opacity: .45;
  background-image: linear-gradient(rgba(6, 43, 88, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 43, 88, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, black 28%, black 75%, transparent);
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(470px, .98fr); align-items: center; gap: clamp(48px, 7vw, 92px); }
.hero-copy { padding-bottom: 8px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 19px; color: var(--blue-700); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 28px; height: 2px; background: var(--blue-500); }
.eyebrow-light { color: #8ed7ff; }
.eyebrow-light > span { background: #56c0f5; }
h1, h2, h3 { margin-top: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.08; letter-spacing: -.035em; }
.hero h1 { max-width: 660px; margin-bottom: 25px; color: var(--navy-900); font-size: clamp(3.3rem, 5.7vw, 5.25rem); font-weight: 780; }
.hero h1 em { display: block; color: var(--blue-600); font-style: normal; }
.hero-lede { max-width: 650px; margin: 0 0 34px; color: #50647d; font-size: clamp(1.06rem, 1.5vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 13px 21px; border: 1px solid transparent; border-radius: 11px; font-size: .96rem; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); box-shadow: 0 12px 26px rgba(7, 88, 189, .24); }
.button-primary:hover { box-shadow: 0 16px 30px rgba(7, 88, 189, .3); }
.button-primary span { font-size: 1.15em; transition: transform .2s ease; }
.button-primary:hover span { transform: translateX(3px); }
.button-secondary { color: var(--navy-900); background: white; border-color: #cbd9e7; }
.button-secondary:hover { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.button-small { min-height: 44px; padding: 9px 16px; }
.hero-support-link { display: grid; max-width: 610px; grid-template-columns: 28px 1fr 22px; align-items: center; gap: 12px; margin-top: 28px; padding: 12px 14px; border: 1px solid #cfe4f3; border-radius: 12px; color: #3c536d; background: rgba(241, 249, 255, .8); font-size: .87rem; line-height: 1.45; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.hero-support-link:hover { transform: translateY(-2px); border-color: var(--blue-500); background: white; }
.hero-support-link strong { color: var(--navy-900); }
.hero-support-link b { color: var(--blue-700); font-size: 1.1rem; text-align: right; }
.support-signal { position: relative; display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: var(--blue-100); }
.support-signal i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-600); }
.support-signal::after { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(8, 116, 216, .28); border-radius: inherit; animation: signal-pulse 2s ease-out infinite; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 13px 24px; margin: 22px 0 0; padding: 23px 0 0; border-top: 1px solid var(--line); color: #41566f; font-size: .9rem; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.check { display: inline-grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: .7rem; font-weight: 900; }

.operations-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 29px;
  color: white;
  background:
    radial-gradient(circle at 77% 18%, rgba(40, 157, 225, .36), transparent 31%),
    linear-gradient(145deg, #082c5a 0%, #051a37 54%, #030f24 100%);
  border: 1px solid rgba(133, 206, 248, .24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.operations-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.ops-orbit { position: absolute; border: 1px solid rgba(106, 201, 249, .15); border-radius: 50%; transform: rotate(-16deg); }
.ops-orbit-one { right: -160px; top: 75px; width: 630px; height: 285px; }
.ops-orbit-two { right: -90px; top: 117px; width: 460px; height: 205px; border-color: rgba(106, 201, 249, .11); }
.pixel-field { position: absolute; right: 29px; top: 32px; width: 78px; height: 50px; opacity: .85; }
.pixel-field i { position: absolute; display: block; background: var(--blue-500); box-shadow: 0 0 16px rgba(38,152,225,.5); }
.pixel-field i:nth-child(1) { right: 0; top: 0; width: 12px; height: 12px; }
.pixel-field i:nth-child(2) { right: 22px; top: 17px; width: 8px; height: 8px; background: var(--blue-300); }
.pixel-field i:nth-child(3) { right: 39px; top: 4px; width: 15px; height: 15px; }
.pixel-field i:nth-child(4) { right: 58px; top: 26px; width: 10px; height: 10px; background: #0c67c8; }
.pixel-field i:nth-child(5) { right: 12px; top: 32px; width: 17px; height: 17px; background: #0863c4; }
.ops-head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.ops-kicker { display: block; margin-bottom: 6px; color: #8bcbed; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ops-head strong { display: block; max-width: 260px; font-size: 1.15rem; line-height: 1.35; }
.live-status { display: inline-flex; align-items: center; gap: 7px; margin-top: 68px; padding: 6px 9px; border: 1px solid rgba(120, 201, 244, .2); border-radius: 99px; color: #c8e9f9; background: rgba(5, 25, 52, .62); font-size: .69rem; font-weight: 750; letter-spacing: .04em; }
.live-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(77,225,174,.11); }
.ops-center { position: relative; z-index: 1; display: flex; min-height: 168px; flex-direction: column; align-items: center; justify-content: center; }
.core-mark { position: relative; display: grid; width: 92px; height: 92px; place-items: center; border: 1px solid rgba(120, 201, 244, .38); border-radius: 50%; background: rgba(5, 30, 63, .72); box-shadow: 0 0 0 14px rgba(38,152,225,.06), 0 0 50px rgba(38,152,225,.25); }
.core-mark::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(120,201,244,.28); border-radius: inherit; }
.core-mark span { font-size: 1.35rem; font-weight: 850; letter-spacing: -.04em; }
.ops-center p { margin: 16px 0 0; color: #b9d8e9; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.ops-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ops-grid > div { min-height: 76px; padding: 14px 15px; border: 1px solid rgba(122, 192, 230, .16); border-radius: 11px; background: rgba(9, 45, 84, .56); backdrop-filter: blur(6px); }
.ops-grid span, .ops-grid strong { display: block; }
.ops-grid span { margin-bottom: 5px; color: #8ebed9; font-size: .67rem; letter-spacing: .04em; text-transform: uppercase; }
.ops-grid strong { color: #f7fcff; font-size: .94rem; }
.ops-foot { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 10px; margin-top: 17px; color: #83b9d6; font-size: .7rem; }

.quick-support { padding: 30px 0; border-top: 1px solid #d7e7f2; border-bottom: 1px solid #d7e7f2; background: linear-gradient(90deg, #eef8ff, #f9fcff 55%, #edf7ff); }
.quick-support-layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 44px; }
.quick-support-copy { display: flex; align-items: center; gap: 24px; }
.support-label { flex: 0 0 auto; padding: 7px 10px; border-radius: 7px; color: var(--blue-700); background: white; box-shadow: 0 5px 14px rgba(7, 88, 189, .1); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.quick-support-copy h2 { margin: 0 0 3px; color: var(--navy-900); font-size: 1.22rem; letter-spacing: -.02em; }
.quick-support-copy p { margin: 0; color: var(--muted); font-size: .88rem; }

.remote-download { position: relative; display: grid; min-width: 332px; grid-template-columns: 64px 1fr 26px; align-items: center; gap: 15px; padding: 9px 15px 9px 10px; overflow: visible; border: 1px solid #bcd9ed; border-radius: 16px; color: var(--navy-900); background: white; box-shadow: 0 12px 27px rgba(7, 70, 136, .12); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.remote-download:hover { transform: translateY(-3px); border-color: var(--blue-500); box-shadow: 0 17px 35px rgba(7, 70, 136, .18); }
.remote-download > svg { width: 23px; fill: none; stroke: var(--blue-700); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.remote-orb { position: relative; display: grid; width: 64px; height: 64px; place-items: center; border: 4px solid #dbeaf5; border-radius: 50%; color: var(--blue-700); background: radial-gradient(circle at 35% 30%, white, #e7f4fc); box-shadow: inset 0 0 0 2px #6da4cc, 0 6px 15px rgba(7, 88, 189, .15); }
.remote-orb::before { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(38, 152, 225, .28); border-radius: inherit; animation: remote-pulse 2.2s ease-out infinite; }
.remote-orb i { position: absolute; font-style: normal; font-size: .72rem; font-weight: 900; letter-spacing: -.04em; }
.word-click { animation: word-click 3.2s ease-in-out infinite; }
.word-here { animation: word-here 3.2s ease-in-out infinite; }
.remote-button-copy { display: block; line-height: 1.25; }
.remote-button-copy strong, .remote-button-copy small { display: block; }
.remote-button-copy strong { margin-bottom: 3px; color: var(--navy-900); font-size: .98rem; }
.remote-button-copy small { color: var(--muted); font-size: .72rem; }

@keyframes signal-pulse {
  0% { transform: scale(.65); opacity: 1; }
  75%, 100% { transform: scale(1.45); opacity: 0; }
}
@keyframes remote-pulse {
  0% { transform: scale(.88); opacity: .85; }
  75%, 100% { transform: scale(1.18); opacity: 0; }
}
@keyframes word-click {
  0%, 42% { opacity: 1; transform: translateY(0) scale(1); }
  48%, 92% { opacity: 0; transform: translateY(-4px) scale(.88); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes word-here {
  0%, 42% { opacity: 0; transform: translateY(4px) scale(.88); }
  50%, 92% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(4px) scale(.88); }
}

.section { padding: clamp(82px, 9vw, 126px) 0; }
.section-heading { margin-bottom: 52px; }
.heading-split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); align-items: end; gap: 70px; }
.section-heading h2, .outcomes h2, .about h2, .contact-section h2, .model-heading h2 { margin-bottom: 0; color: var(--navy-900); font-size: clamp(2.25rem, 4vw, 3.65rem); font-weight: 760; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 385px; padding: 34px 31px 31px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--blue-600), var(--blue-300)); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.service-card:hover { z-index: 2; transform: translateY(-7px); border-color: transparent; box-shadow: 0 24px 55px rgba(7, 39, 79, .13); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 28px; border-radius: 13px; color: var(--blue-700); background: var(--blue-050); }
.service-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; right: 25px; top: 30px; color: #acbdce; font-size: .73rem; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { margin-bottom: 14px; color: var(--navy-900); font-size: 1.31rem; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: .94rem; }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 7px 0; padding-left: 17px; color: #334b68; font-size: .86rem; font-weight: 600; }
.service-card li::before { content: ""; position: absolute; left: 1px; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); }

.operating-model { position: relative; overflow: hidden; padding: clamp(84px, 9vw, 124px) 0; color: white; background: linear-gradient(135deg, var(--navy-950), #082e5d); }
.operating-model::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(120,201,244,.6), transparent); }
.model-glow { position: absolute; right: -210px; top: -260px; width: 670px; height: 670px; border: 100px solid rgba(38,152,225,.07); border-radius: 50%; }
.model-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.model-heading h2 { color: white; }
.model-heading > p { margin: 0 0 6px; color: #aec8db; font-size: 1.03rem; }
.model-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.model-steps::before { content: ""; position: absolute; left: 0; right: 0; top: 45px; height: 1px; background: rgba(120, 201, 244, .2); }
.model-steps li { position: relative; padding: 0 29px 0 0; }
.model-steps li:not(:first-child) { padding-left: 29px; border-left: 1px solid rgba(120, 201, 244, .13); }
.step-number { position: absolute; right: 26px; top: 13px; color: #668daa; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.step-icon { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 37px; border: 1px solid rgba(119, 200, 245, .28); border-radius: 50%; color: #8bd7ff; background: #08284f; box-shadow: 0 0 0 8px #061d3c; }
.step-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.model-steps h3 { margin-bottom: 14px; color: white; font-size: 1.32rem; }
.model-steps p { margin: 0; color: #a9c1d3; font-size: .92rem; }

.outcomes { background: var(--soft); }
.outcomes-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: clamp(70px, 9vw, 130px); }
.outcomes-intro { position: sticky; top: 130px; align-self: start; }
.outcomes-intro > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); font-size: 1.05rem; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--blue-700); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.outcome-list { border-top: 1px solid #cddae6; }
.outcome-list article { display: grid; grid-template-columns: 58px 1fr; gap: 21px; padding: 32px 0; border-bottom: 1px solid #cddae6; }
.outcome-mark { display: grid; width: 47px; height: 47px; place-items: center; border: 1px solid #cad9e7; border-radius: 50%; color: var(--blue-700); background: white; font-size: .77rem; font-weight: 850; }
.outcome-list h3 { margin-bottom: 10px; color: var(--navy-900); font-size: 1.35rem; }
.outcome-list p { margin: 0; color: var(--muted); }

.about { background: white; }
.about-card { position: relative; display: grid; grid-template-columns: 1.07fr .93fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.about-card::before { content: ""; position: absolute; left: 0; top: 0; width: 6px; height: 100%; background: linear-gradient(var(--blue-600), var(--blue-300)); }
.about-copy { padding: clamp(42px, 6vw, 72px); }
.about-copy h2 { font-size: clamp(2.1rem, 3.6vw, 3.15rem); }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.about-copy > p:last-child { margin-bottom: 0; }
.about-card blockquote { position: relative; display: flex; min-height: 100%; flex-direction: column; justify-content: center; margin: 0; padding: clamp(42px, 6vw, 72px); color: white; background: linear-gradient(145deg, #092c57, var(--navy-950)); }
.about-card blockquote::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 320px; height: 220px; border: 55px solid rgba(38,152,225,.09); border-radius: 50%; transform: rotate(-18deg); }
.quote-mark { display: block; height: 46px; color: var(--blue-300); font-family: Georgia, serif; font-size: 5rem; line-height: .95; }
.about-card blockquote p { position: relative; z-index: 1; margin: 22px 0; font-size: clamp(1.55rem, 2.5vw, 2.15rem); font-weight: 650; line-height: 1.35; letter-spacing: -.025em; }
.about-card blockquote footer { position: relative; z-index: 1; color: #98bad0; font-size: .9rem; }

.contact-section { position: relative; overflow: hidden; padding: clamp(76px, 8vw, 108px) 0; color: white; background: linear-gradient(120deg, #0758bd, #0a78d5 70%, #259be3); }
.contact-section::before { content: ""; position: absolute; left: -180px; top: -150px; width: 590px; height: 310px; border: 75px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-14deg); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 80px; }
.contact-section h2 { max-width: 690px; margin-bottom: 19px; color: white; }
.contact-section p:not(.eyebrow) { max-width: 700px; margin: 0; color: #deeffb; font-size: 1.07rem; }
.contact-details { padding: 16px 0 16px 43px; border-left: 1px solid rgba(255,255,255,.35); }
.contact-action { padding: 0; }
.contact-action span, .contact-action small { display: block; color: #d6edfc; }
.contact-action span { margin-bottom: 2px; font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-action a { display: inline-block; margin: 3px 0; font-size: clamp(1.75rem, 3vw, 2.45rem); font-weight: 800; letter-spacing: -.035em; }
.contact-action a:hover { text-decoration: underline; text-underline-offset: 5px; }
.contact-action small { font-size: .82rem; }
.contact-meta { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px 34px; margin-top: 21px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.23); color: #e4f3fd; font-size: .83rem; }
.contact-meta > a { font-weight: 750; }
.contact-meta > a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-meta address { font-style: normal; line-height: 1.5; }
.contact-pixels { position: absolute; right: 4%; top: 19px; width: 130px; height: 94px; opacity: .2; }
.contact-pixels i { position: absolute; display: block; background: white; }
.contact-pixels i:nth-child(1) { right: 0; top: 0; width: 24px; height: 24px; }
.contact-pixels i:nth-child(2) { right: 35px; top: 28px; width: 17px; height: 17px; }
.contact-pixels i:nth-child(3) { right: 68px; top: 8px; width: 29px; height: 29px; }
.contact-pixels i:nth-child(4) { right: 90px; top: 52px; width: 13px; height: 13px; }
.contact-pixels i:nth-child(5) { right: 17px; top: 60px; width: 30px; height: 30px; }
.contact-pixels i:nth-child(6) { right: 61px; top: 57px; width: 12px; height: 12px; }

.site-footer { color: #abc1d6; background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; padding: 72px 0 58px; }
.footer-brand img { width: 265px; height: auto; padding: 10px; border-radius: 8px; background: white; }
.footer-brand p { max-width: 380px; margin: 22px 0 0; color: #8da9c0; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav > div { display: flex; flex-direction: column; gap: 8px; }
.footer-nav strong { margin-bottom: 8px; color: white; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a { font-size: .9rem; }
.footer-nav a:hover { color: white; }
.footer-nav span { color: #8da9c0; font-size: .85rem; line-height: 1.55; }
.footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(150, 188, 218, .14); font-size: .78rem; }
.footer-bottom a:hover { color: white; }

.legal-main { padding: 82px 0 110px; background: linear-gradient(180deg, var(--blue-050), white 260px); }
.legal-layout { max-width: 850px; }
.legal-layout h1 { margin-bottom: 8px; color: var(--navy-900); font-size: clamp(3rem, 6vw, 5rem); }
.legal-updated { margin-top: 0; color: var(--muted); }
.legal-layout section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-layout section:first-of-type { margin-top: 48px; }
.legal-layout h2 { margin-bottom: 12px; color: var(--navy-900); font-size: 1.42rem; letter-spacing: -.02em; }
.legal-layout p { margin: 0; color: var(--muted); }
.legal-layout p a { color: var(--blue-700); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-footer .footer-bottom { border-top: 0; }

.support-header-actions { display: flex; align-items: center; gap: 24px; color: #263a55; font-size: .91rem; font-weight: 650; }
.support-header-actions > a:not(.button):hover { color: var(--blue-700); }
.support-hero { position: relative; overflow: hidden; padding: clamp(72px, 8vw, 110px) 0; color: white; background: radial-gradient(circle at 80% 20%, rgba(38,152,225,.35), transparent 28%), linear-gradient(135deg, var(--navy-950), #082f5e); }
.support-hero::before { content: ""; position: absolute; left: -160px; bottom: -210px; width: 650px; height: 360px; border: 80px solid rgba(38,152,225,.08); border-radius: 50%; transform: rotate(-14deg); }
.support-grid { position: absolute; inset: 0 0 0 48%; opacity: .28; background-image: linear-gradient(rgba(120,201,244,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(120,201,244,.11) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, transparent, black 25%, transparent 90%); }
.support-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(390px, .82fr); align-items: center; gap: clamp(60px, 9vw, 120px); }
.support-intro h1 { max-width: 660px; margin-bottom: 24px; color: white; font-size: clamp(3.1rem, 6vw, 5.4rem); }
.support-intro > p:not(.eyebrow) { max-width: 650px; margin: 0; color: #bfd8e9; font-size: 1.08rem; }
.support-intro > p strong { color: white; }
.support-safety { display: flex; max-width: 620px; align-items: center; gap: 13px; margin-top: 28px; padding-top: 23px; border-top: 1px solid rgba(120,201,244,.19); color: #a8cadf; font-size: .84rem; }
.support-safety svg { flex: 0 0 auto; width: 24px; fill: none; stroke: var(--success); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.support-download-card { position: relative; padding: 29px; border: 1px solid rgba(125,202,244,.24); border-radius: 25px; background: rgba(4, 22, 47, .65); box-shadow: 0 28px 60px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.download-kicker { display: block; margin-bottom: 18px; color: #8cd8ff; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.remote-download-large { min-width: 0; width: 100%; grid-template-columns: 86px 1fr 28px; gap: 18px; padding: 14px 18px 14px 13px; border-radius: 20px; }
.remote-download-large .remote-orb { width: 86px; height: 86px; border-width: 5px; }
.remote-download-large .remote-orb i { font-size: .88rem; }
.remote-download-large .remote-button-copy strong { font-size: 1.08rem; }
.remote-download-large .remote-button-copy small { font-size: .77rem; }
.download-note { margin: 18px 0 0; color: #86a8c0; font-size: .72rem; text-align: center; }
.support-heading { max-width: 720px; }
.support-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.support-contact-card { position: relative; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.support-contact-primary { border-color: #aed8f2; background: linear-gradient(145deg, #f7fcff, white); }
.support-contact-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 27px; border-radius: 14px; color: var(--blue-700); background: var(--blue-100); }
.support-contact-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.support-contact-card > span { display: block; margin-bottom: 8px; color: var(--blue-700); font-size: .71rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.support-contact-card h3 { margin-bottom: 25px; color: var(--navy-900); font-size: 1.45rem; }
.support-phone, .support-email { display: block; width: fit-content; }
.support-phone { margin-bottom: 7px; color: var(--navy-900); font-size: clamp(1.35rem, 2.7vw, 2rem); font-weight: 800; letter-spacing: -.03em; }
.support-phone small { color: var(--blue-700); font-size: .58em; letter-spacing: 0; }
.support-email { color: var(--blue-700); font-weight: 700; }
.support-phone:hover, .support-email:hover { text-decoration: underline; text-underline-offset: 4px; }
.support-location { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 25px 29px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: var(--soft); }
.support-location span { display: block; margin-bottom: 2px; color: var(--navy-900); font-weight: 800; }
.support-location address { font-style: normal; }
.support-location > a { color: var(--blue-700); font-weight: 750; }
.support-footer > div { display: flex; gap: 24px; }
.support-footer a:hover { color: white; }

.error-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: radial-gradient(circle at 70% 10%, rgba(38,152,225,.15), transparent 35%), var(--soft); }
.error-card { width: min(100%, 680px); padding: clamp(40px, 7vw, 72px); text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); }
.error-card img { width: 280px; height: auto; margin: 0 auto 35px; }
.error-card > span { color: var(--blue-600); font-size: .78rem; font-weight: 850; letter-spacing: .14em; }
.error-card h1 { margin: 12px 0 15px; color: var(--navy-900); font-size: clamp(2.1rem, 5vw, 3.3rem); }
.error-card p { margin: 0 0 27px; color: var(--muted); }

@media (max-width: 1060px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .operations-card { width: min(100%, 690px); min-height: 505px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .model-steps { grid-template-columns: repeat(2, 1fr); row-gap: 52px; }
  .model-steps::before { display: none; }
  .model-steps li:nth-child(3) { padding-left: 0; border-left: 0; }
  .outcomes-layout { gap: 70px; }
  .footer-top { gap: 50px; }
  .quick-support-layout { grid-template-columns: 1fr; gap: 22px; }
  .remote-download { width: min(100%, 440px); }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: flex-end; }
  .header-inner { min-height: 76px; }
  .brand { width: 225px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; display: flex; max-height: 0; overflow: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 0 18px; opacity: 0; background: white; box-shadow: 0 22px 30px rgba(6,27,58,.12); transition: max-height .3s ease, padding .3s ease, opacity .2s ease; }
  .primary-nav.is-open { max-height: 430px; padding: 12px 18px 22px; opacity: 1; }
  .primary-nav > a { padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .primary-nav > a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 12px; padding: 14px 17px; text-align: center; border-bottom: 0; }
  .heading-split, .model-heading, .outcomes-layout, .about-card, .contact-layout, .footer-top { grid-template-columns: 1fr; }
  .heading-split, .model-heading { gap: 26px; }
  .outcomes-layout { gap: 54px; }
  .outcomes-intro { position: static; }
  .about-card blockquote { min-height: 390px; }
  .contact-layout { gap: 46px; }
  .contact-details { padding: 26px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.35); }
  .footer-top { gap: 50px; }
  .support-hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .support-download-card { max-width: 590px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 95px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .utility-bar { font-size: .72rem; }
  .brand { width: 205px; }
  .hero { padding-top: 60px; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.1rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-direction: column; gap: 10px; }
  .hero-support-link { grid-template-columns: 26px 1fr; }
  .hero-support-link b { display: none; }
  .operations-card { min-height: 520px; padding: 22px; border-radius: 23px; }
  .pixel-field { right: 20px; top: 23px; transform: scale(.8); transform-origin: top right; }
  .ops-head strong { max-width: 200px; font-size: 1rem; }
  .live-status { margin-top: 62px; }
  .ops-center { min-height: 175px; }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-grid > div { min-height: 59px; padding: 10px 13px; }
  .ops-grid span { margin-bottom: 1px; }
  .ops-foot { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .model-steps { grid-template-columns: 1fr; row-gap: 0; }
  .model-steps li, .model-steps li:not(:first-child) { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(120,201,244,.15); }
  .model-steps li:first-child { padding-top: 0; }
  .step-number { top: 42px; }
  .model-steps li:first-child .step-number { top: 14px; }
  .step-icon { margin-bottom: 23px; }
  .outcome-list article { grid-template-columns: 46px 1fr; gap: 15px; }
  .outcome-mark { width: 40px; height: 40px; }
  .about-copy, .about-card blockquote { padding: 40px 27px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px 0; }
  .legal-page .header-inner .brand { width: 190px; }
  .legal-page .header-inner .button { min-height: 40px; padding: 8px 12px; font-size: .8rem; }
  .quick-support-copy { align-items: flex-start; flex-direction: column; gap: 12px; }
  .remote-download { min-width: 0; width: 100%; grid-template-columns: 58px 1fr 22px; gap: 12px; }
  .remote-orb { width: 58px; height: 58px; }
  .support-header-actions > a:not(.button) { display: none; }
  .support-header-actions .button { min-height: 40px; padding: 8px 11px; font-size: .78rem; }
  .support-contact-grid { grid-template-columns: 1fr; }
  .support-contact-card { padding: 29px 24px; }
  .support-location { align-items: flex-start; flex-direction: column; gap: 13px; }
  .support-download-card { padding: 22px 16px; }
  .remote-download-large { grid-template-columns: 68px 1fr 22px; gap: 12px; padding: 12px 12px 12px 9px; }
  .remote-download-large .remote-orb { width: 68px; height: 68px; }
  .remote-download-large .remote-button-copy strong { font-size: .94rem; }
  .remote-download-large .remote-button-copy small { font-size: .66rem; }
  .support-footer > div { flex-wrap: wrap; gap: 9px 18px; }
}

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