:root {
  --ink: #06192b;
  --ink-2: #0b2843;
  --ink-3: #173d5d;
  --blue: #0877d1;
  --blue-2: #08a9e6;
  --cyan: #69e5ff;
  --sky: #eaf7ff;
  --paper: #ffffff;
  --mist: #f3f8fc;
  --line: #dbe8f2;
  --text: #18354d;
  --muted: #60798e;
  --success: #0f9f6e;
  --warning: #d57b16;
  --shadow-sm: 0 10px 30px rgba(6, 38, 65, 0.08);
  --shadow-lg: 0 28px 80px rgba(3, 25, 46, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--cyan); color: var(--ink); }

a { color: var(--blue); text-decoration: none; }
a:hover { color: #0461ad; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: #dbeaf4; background: var(--ink); }
.section-mist { background: var(--mist); }
.section-gradient {
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 169, 230, .15), transparent 28%),
    linear-gradient(135deg, #06192b 0%, #0a3559 100%);
  color: #dcebf5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-dark .eyebrow,
.section-gradient .eyebrow,
.page-hero .eyebrow { color: var(--cyan); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 6.3vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.55rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.section-dark h2, .section-dark h3,
.section-gradient h2, .section-gradient h3,
.page-hero h1, .page-hero h2 { color: #fff; }

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
  text-wrap: pretty;
}
.section-dark .lead,
.section-gradient .lead,
.page-hero .lead { color: #b9cddd; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.section-head { margin-bottom: 48px; }
.section-head h2 { max-width: 820px; margin-bottom: 18px; }
.section-head.center h2 { margin-inline: auto; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue-2) 55%, var(--blue));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(8, 169, 230, .28);
}
.btn-primary:hover { color: var(--ink); box-shadow: 0 16px 36px rgba(8, 169, 230, .4); }
.btn-secondary { border-color: #b8ccdb; background: transparent; color: var(--ink); }
.btn-secondary:hover { border-color: var(--blue-2); color: var(--blue); }
.section-dark .btn-secondary,
.section-gradient .btn-secondary,
.page-hero .btn-secondary { border-color: rgba(202, 226, 242, .42); color: #fff; }
.section-dark .btn-secondary:hover,
.section-gradient .btn-secondary:hover,
.page-hero .btn-secondary:hover { border-color: var(--cyan); background: rgba(105, 229, 255, .08); color: #fff; }
.btn-small { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(188, 213, 231, .16);
  background: rgba(5, 25, 44, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 142px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 9px 11px;
  border-radius: 9px;
  color: #bed1df;
  font-size: .91rem;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: rgba(105, 229, 255, .09); color: #fff; }
.nav-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(105, 229, 255, .3);
  border-radius: 12px;
  background: rgba(105, 229, 255, .06);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after { content: ""; position: absolute; width: 21px; height: 2px; background: #fff; transition: transform .2s, opacity .2s; }
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 32%, rgba(6, 143, 220, .34), transparent 31%),
    radial-gradient(circle at 8% 80%, rgba(105, 229, 255, .10), transparent 26%),
    linear-gradient(135deg, #041525 0%, #062844 54%, #071d32 100%);
  color: #d7e6f0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(133, 202, 239, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(133, 202, 239, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}
.hero-inner {
  position: relative;
  min-height: 646px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .78fr);
  align-items: center;
  gap: 80px;
  padding: 86px 0 74px;
}
.hero-inner > * { min-width: 0; }
.hero-copy h1 { margin-bottom: 24px; color: #fff; }
.hero-copy h1 em { color: var(--cyan); font-style: normal; }
.hero-copy .lead { margin-bottom: 30px; color: #b9cddd; }
.hero .btn-secondary { border-color: rgba(202, 226, 242, .55); color: #fff; }
.hero .btn-secondary:hover { border-color: var(--cyan); background: rgba(105, 229, 255, .08); color: #fff; }
.hero-note { margin: 20px 0 0; color: #9fb9ca; font-size: .9rem; }
.hero-note strong { color: #dff7ff; }

.ops-panel {
  position: relative;
  border: 1px solid rgba(105, 229, 255, .27);
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(11, 54, 89, .72), rgba(3, 22, 39, .88));
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255,255,255,.05);
  isolation: isolate;
}
.ops-panel::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 169, 230, .24), transparent 66%);
  filter: blur(10px);
}
.ops-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 24px; }
.ops-kicker { color: #8db3ca; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.live { display: inline-flex; align-items: center; gap: 7px; color: #84f2c8; font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #32d296; box-shadow: 0 0 0 6px rgba(50,210,150,.1); }
.ops-score { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.ops-score strong { display: block; color: #fff; font-size: 2.75rem; letter-spacing: -.06em; line-height: 1; }
.ops-score span { color: #9fb9ca; font-size: .82rem; }
.ops-ring { position: relative; width: 86px; height: 86px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--cyan) 0 86%, rgba(255,255,255,.1) 86%); }
.ops-ring::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #08233b; }
.ops-ring b { position: relative; color: #fff; font-size: .9rem; }
.signal-list { display: grid; gap: 14px; }
.signal-row { display: grid; grid-template-columns: 110px 1fr 34px; align-items: center; gap: 10px; color: #b6cbd9; font-size: .78rem; }
.signal-track { height: 7px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.09); }
.signal-track i { display: block; width: var(--value); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-2), var(--cyan)); transform-origin: left; animation: load-bar 1.2s .3s both; }
.signal-row b { color: #fff; text-align: right; }
.ops-bottom { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(181, 215, 234, .14); display: flex; align-items: center; gap: 10px; color: #92afc1; font-size: .78rem; }
.ops-bottom strong { color: #c8f6ff; }
@keyframes load-bar { from { transform: scaleX(0); } }

.proof-strip { position: relative; z-index: 2; border-top: 1px solid rgba(159, 207, 235, .13); background: rgba(3, 18, 32, .6); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 22px 24px; border-left: 1px solid rgba(159, 207, 235, .13); }
.proof-item:last-child { border-right: 1px solid rgba(159, 207, 235, .13); }
.proof-item strong { display: block; color: #fff; font-size: 1.45rem; line-height: 1.2; }
.proof-item span { color: #91afc2; font-size: .78rem; font-weight: 700; letter-spacing: .04em; }

.logo-band { padding: 42px 0; border-bottom: 1px solid var(--line); background: #fff; }
.logo-band p { margin-bottom: 25px; color: #698197; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-align: center; text-transform: uppercase; }
.logo-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 12px; align-items: center; }
.logo-item { min-height: 72px; display: grid; place-items: center; padding: 13px; border: 1px solid #e6eef4; border-radius: 14px; background: #fff; filter: grayscale(1); opacity: .72; transition: filter .2s, opacity .2s, transform .2s; }
.logo-item:hover { filter: none; opacity: 1; transform: translateY(-3px); }
.logo-item img { max-width: 84px; max-height: 42px; object-fit: contain; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; background: var(--sky); color: var(--blue); font-weight: 900; }
.number-box { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid #b8def1; border-radius: 12px; background: #f1fbff; color: var(--blue); font-weight: 900; }
.card-list { margin: 18px 0 0; padding: 0; list-style: none; }
.card-list li { position: relative; padding: 9px 0 9px 23px; border-top: 1px solid #e7eef4; color: #4c687e; font-size: .94rem; }
.card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }

.solution-card { display: flex; min-height: 390px; flex-direction: column; overflow: hidden; padding: 0; }
.solution-card .solution-image { height: 168px; overflow: hidden; background: #0a3254; }
.solution-card .solution-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.solution-card:hover .solution-image img { transform: scale(1.045); }
.solution-card .solution-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.solution-card .text-link { margin-top: auto; padding-top: 18px; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(153, 201, 228, .24);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
}
.compare-col { padding: 36px; }
.compare-col + .compare-col { border-left: 1px solid rgba(153, 201, 228, .2); background: rgba(8, 169, 230, .08); }
.compare-label { margin-bottom: 24px; color: #88a5b9; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.compare-col + .compare-col .compare-label { color: var(--cyan); }
.compare ul { margin: 0; padding: 0; list-style: none; }
.compare li { position: relative; padding: 14px 0 14px 30px; border-top: 1px solid rgba(173, 209, 229, .12); color: #b3c8d7; }
.compare li::before { content: "×"; position: absolute; left: 0; color: #7893a6; font-weight: 900; }
.compare-col + .compare-col li { color: #edfaff; }
.compare-col + .compare-col li::before { content: "✓"; color: #64e6b7; }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.metric strong { display: block; color: var(--blue); font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.06em; line-height: 1.05; }
.metric span { color: var(--muted); font-size: .86rem; font-weight: 700; }
.section-dark .metric { border-color: rgba(156, 207, 234, .2); background: rgba(255,255,255,.045); }
.section-dark .metric strong { color: var(--cyan); }
.section-dark .metric span { color: #b1c6d5; }

.case-feature { display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow-lg); }
.case-feature-media { min-height: 430px; padding: 46px; display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, #184d75, #071c30 68%); }
.case-feature-media img { max-width: 280px; max-height: 220px; object-fit: contain; }
.case-feature-copy { padding: 52px; color: #b8cddd; }
.case-feature-copy h2 { color: #fff; }
.case-feature-copy .tag { color: var(--cyan); }
.case-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0 30px; }
.case-point { padding: 16px; border: 1px solid rgba(156, 207, 234, .18); border-radius: 14px; background: rgba(255,255,255,.04); }
.case-point strong { display: block; color: var(--cyan); font-size: 1.35rem; }
.case-point span { font-size: .82rem; }

.quote-card { padding: 32px; border-left: 4px solid var(--blue-2); border-radius: 0 var(--radius) var(--radius) 0; background: #fff; box-shadow: var(--shadow-sm); }
.quote-card blockquote { margin: 0; color: var(--ink-2); font-size: 1.17rem; font-weight: 650; line-height: 1.65; }
.quote-card cite { display: block; margin-top: 14px; color: var(--muted); font-size: .88rem; font-style: normal; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #06192b, #0b4773);
  color: #c1d5e3;
  box-shadow: var(--shadow-lg);
}
.cta-panel::after { content: ""; position: absolute; width: 360px; height: 360px; top: -180px; right: -90px; border-radius: 50%; background: rgba(105,229,255,.16); filter: blur(4px); }
.cta-panel-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.cta-panel h2 { max-width: 660px; margin-bottom: 12px; color: #fff; }
.cta-panel p { max-width: 620px; margin: 0; }
.cta-panel .btn-row { flex: 0 0 auto; }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.faq summary { position: relative; padding: 20px 54px 20px 22px; cursor: pointer; color: var(--ink); font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; color: var(--blue); font-size: 1.45rem; transform: translateY(-50%); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(8,169,230,.28), transparent 30%),
    linear-gradient(135deg, #041525, #092e4d);
  color: #d8e7f0;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(140,201,234,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(140,201,234,.04) 1px,transparent 1px); background-size: 68px 68px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; min-height: 480px; display: flex; flex-direction: column; justify-content: center; padding: 88px 0; }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; }
.page-hero .lead { margin-bottom: 30px; }
.page-hero.compact .page-hero-inner { min-height: 360px; }

.anchor-nav { position: sticky; top: 74px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
.anchor-nav .container { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.anchor-nav .container::-webkit-scrollbar { display: none; }
.anchor-nav a { flex: 0 0 auto; padding: 8px 13px; border-radius: 999px; color: #46647b; font-size: .84rem; font-weight: 800; }
.anchor-nav a:hover { background: var(--sky); color: var(--blue); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 76px; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.split-media { overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; min-height: 390px; object-fit: cover; }
.check-list { margin: 24px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 31px; color: #3f5d74; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 9px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: #e3f8f1; color: var(--success); font-size: .78rem; font-weight: 900; }

.tag { display: inline-flex; margin-bottom: 12px; color: var(--blue); font-size: .73rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.pill { padding: 8px 12px; border: 1px solid #cfe0ec; border-radius: 999px; background: #f8fbfd; color: #49657a; font-size: .82rem; font-weight: 750; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 22px; height: 2px; background: #c5e4f3; }
.timeline-item { position: relative; padding-top: 64px; }
.timeline-dot { position: absolute; top: 0; left: 0; width: 44px; height: 44px; display: grid; place-items: center; border: 6px solid #fff; border-radius: 50%; background: var(--blue); color: #fff; box-shadow: 0 0 0 1px #a9d7ee; font-weight: 850; }

.filter-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.filter-btn { padding: 9px 16px; border: 1px solid #c7dce9; border-radius: 999px; background: #fff; color: #506d83; cursor: pointer; font-size: .84rem; font-weight: 800; }
.filter-btn[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; }
.case-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.case-card[hidden] { display: none; }
.case-logo { min-height: 145px; display: grid; place-items: center; padding: 28px; background: linear-gradient(145deg, #082843, #0b446f); }
.case-logo img { max-width: 180px; max-height: 90px; object-fit: contain; }
.case-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.case-body h3 { margin-bottom: 10px; }
.case-body .card-list { margin-top: 14px; }
.case-metrics { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; }
.case-metrics span { flex: 1; padding: 11px; border-radius: 10px; background: var(--sky); color: #36586f; font-size: .76rem; }
.case-metrics strong { display: block; color: var(--blue); font-size: 1.05rem; }

.ai-orbit { position: relative; min-height: 430px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(105,229,255,.24); border-radius: var(--radius-lg); background: radial-gradient(circle, #0b4a75, #06192b 66%); }
.ai-core { position: relative; z-index: 2; width: 128px; height: 128px; display: grid; place-items: center; border: 1px solid rgba(105,229,255,.7); border-radius: 36px; background: rgba(4,27,47,.74); color: var(--cyan); font-size: 2rem; font-weight: 900; box-shadow: 0 0 55px rgba(8,169,230,.4); transform: rotate(45deg); }
.ai-core span { transform: rotate(-45deg); }
.orbit-ring { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(105,229,255,.22); border-radius: 50%; animation: orbit 18s linear infinite; }
.orbit-ring::before, .orbit-ring::after { content: ""; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.orbit-ring::before { top: 24px; left: 57px; }
.orbit-ring::after { right: 18px; bottom: 80px; }
.orbit-ring.r2 { width: 390px; height: 390px; animation-direction: reverse; animation-duration: 24s; }
@keyframes orbit { to { transform: rotate(360deg); } }

.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 116px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.legal-toc strong { display: block; margin-bottom: 10px; color: var(--ink); }
.legal-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .86rem; }
.legal-copy h2 { margin-top: 48px; margin-bottom: 14px; font-size: 1.8rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin-top: 30px; margin-bottom: 10px; font-size: 1.25rem; }
.legal-copy p, .legal-copy li { color: #49677e; }
.legal-copy li + li { margin-top: 8px; }
.legal-note { padding: 20px; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; background: var(--sky); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: start; }
.contact-aside { padding: 34px; border-radius: var(--radius); background: var(--ink); color: #b9cedc; }
.contact-aside h2, .contact-aside h3 { color: #fff; }
.contact-line { padding: 18px 0; border-top: 1px solid rgba(165,207,229,.16); }
.contact-line span { display: block; color: #87a7bb; font-size: .73rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-line a { color: var(--cyan); font-weight: 800; }

.form-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field-label { color: #36566e; font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #bfd3e1;
  border-radius: 11px;
  padding: 13px 14px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(8,169,230,.12); }
.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .82rem; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-help { color: var(--muted); font-size: .78rem; }
.form-status { display: none; grid-column: 1 / -1; padding: 13px 16px; border-radius: 10px; background: #e7f8f1; color: #087a55; font-weight: 700; }
.form-status.show { display: block; }

.address-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.address-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.address-card img { width: 100%; height: 150px; object-fit: cover; }
.address-body { padding: 20px; }
.address-body h3 { margin-bottom: 8px; font-size: 1.22rem; }
.address-body address { color: var(--muted); font-size: .88rem; font-style: normal; }

.portal-card { max-width: 760px; margin: 0 auto; padding: 46px; border: 1px solid #bfe1f2; border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #f1faff); box-shadow: var(--shadow-lg); text-align: center; }
.portal-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 22px; background: var(--ink); color: var(--cyan); font-size: 1.8rem; font-weight: 900; }
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; text-align: left; }
.info-row div { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.info-row strong { display: block; color: var(--ink); font-size: .85rem; }
.info-row span { color: var(--muted); font-size: .78rem; }

.site-footer { background: #041525; color: #9fb8ca; }
.footer-main { display: grid; grid-template-columns: 1.25fr .8fr .8fr 1fr; gap: 48px; padding: 70px 0 48px; }
.footer-brand img { width: 150px; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; color: #91aabd; font-size: .9rem; }
.footer-col h3 { margin-bottom: 18px; color: #fff; font-size: .92rem; letter-spacing: .02em; }
.footer-col a { display: block; padding: 5px 0; color: #a8bfd0; font-size: .88rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact { color: #d9edf8 !important; font-weight: 750; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(143,196,224,.24); border-radius: 50%; color: #d4e8f5; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(144,190,215,.14); color: #7896aa; font-size: .78rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: #8ba6b8; }

.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #b8d5e6; border-radius: 50%; background: #fff; color: var(--blue); cursor: pointer; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s, transform .2s; }
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1050px) {
  .main-nav a { padding-inline: 8px; font-size: .84rem; }
  .nav-cta { display: none; }
  .hero-inner { gap: 44px; }
  .logo-grid { grid-template-columns: repeat(5, 1fr); }
  .address-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 860px) {
  .section { padding: 78px 0; }
  .section-sm { padding: 56px 0; }
  .menu-toggle { position: relative; display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    max-height: calc(100vh - 74px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    padding: 20px;
    border-top: 1px solid rgba(185,217,234,.14);
    background: #05192b;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; font-size: 1rem; }
  .main-nav .nav-cta { display: inline-flex; margin: 10px 0 0; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; grid-template-columns: minmax(0, 1fr); padding: 76px 0 66px; }
  .hero-copy { max-width: 720px; }
  .ops-panel { max-width: 600px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3) { border-top: 1px solid rgba(159,207,235,.13); }
  .proof-item:nth-child(4) { border-top: 1px solid rgba(159,207,235,.13); }
  .grid-4, .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 .card { max-width: 680px; }
  .compare, .case-feature, .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; }
  .compare-col + .compare-col { border-left: 0; border-top: 1px solid rgba(153,201,228,.2); }
  .case-feature-media { min-height: 300px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  h1 { font-size: clamp(2.45rem, 13vw, 3.65rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 126px; }
  .main-nav { inset: 68px 0 auto; max-height: calc(100vh - 68px); }
  .hero-inner { padding-top: 64px; }
  .btn-row, .btn { width: 100%; }
  .hero-note { text-align: center; }
  .ops-panel { width: 100%; min-width: 0; padding: 19px; border-radius: 22px; }
  .ops-top { align-items: flex-start; flex-direction: column; }
  .ops-score strong { font-size: 2.25rem; }
  .signal-row { grid-template-columns: 86px 1fr 30px; font-size: .7rem; }
  .proof-item { padding: 18px 15px; }
  .proof-item strong { font-size: 1.2rem; }
  .proof-item span { font-size: .68rem; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-item { min-height: 62px; padding: 10px; }
  .grid-2, .grid-4, .metric-grid, .case-points, .timeline, .form-grid, .info-row, .address-grid { grid-template-columns: 1fr; }
  .card, .form-card, .contact-aside { padding: 24px; }
  .compare-col, .case-feature-copy, .cta-panel, .portal-card { padding: 30px 24px; }
  .case-feature-media { min-height: 240px; padding: 32px; }
  .page-hero-inner { min-height: 410px; padding: 68px 0; }
  .page-hero.compact .page-hero-inner { min-height: 320px; }
  .anchor-nav { top: 68px; }
  .split { gap: 34px; }
  .split-media img { min-height: 260px; }
  .cta-panel-inner { align-items: stretch; flex-direction: column; }
  .cta-panel .btn-row { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .back-top { right: 14px; bottom: 14px; }
}


