/* Clikin Tech production-ready static website. Responsive, accessible and Netlify-compatible. */

:root {
  --ink-950: #050b15;
  --ink-900: #071426;
  --ink-850: #0a1930;
  --ink-800: #0d203d;
  --ink-700: #173154;
  --blue-500: #4c8dff;
  --blue-400: #75a8ff;
  --cyan-400: #54e5ff;
  --cyan-300: #8ff0ff;
  --amber-400: #ffb95c;
  --amber-300: #ffcc86;
  --mint-400: #72e4b3;
  --red-400: #ff7d8f;
  --paper: #f4f7fb;
  --paper-2: #edf2f8;
  --white: #ffffff;
  --text: #10213b;
  --muted: #64748b;
  --line: rgba(11, 34, 66, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 12px 30px rgba(5, 15, 31, 0.08);
  --shadow-md: 0 28px 80px rgba(5, 15, 31, 0.16);
  --shadow-glow: 0 0 0 1px rgba(84, 229, 255, 0.16), 0 30px 90px rgba(38, 117, 255, 0.23);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --container: 1240px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Inter Display", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(84, 229, 255, 0.28); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-900);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 78px 0; position: relative; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 5%, rgba(76, 141, 255, .22), transparent 35%),
    radial-gradient(circle at 88% 42%, rgba(84, 229, 255, .12), transparent 34%),
    linear-gradient(135deg, var(--ink-950), var(--ink-850) 54%, #0b2345);
  overflow: hidden;
}
.section-dark::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}
.section-white { background: var(--white); }
.section-paper { background: var(--paper); }
.section-soft {
  background:
    radial-gradient(circle at 0 0, rgba(76, 141, 255, .09), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(255, 185, 92, .10), transparent 32%),
    var(--paper-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.section-dark .eyebrow { color: var(--cyan-300); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 50px;
}
.section-head h2,
.page-hero h1,
.hero h1 {
  margin: 0;
  letter-spacing: -.055em;
  line-height: .98;
  font-weight: 650;
}
.section-head h2 { font-size: clamp(42px, 5vw, 70px); }
.section-head p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
}
.section-dark .section-head p { color: rgba(255, 255, 255, .67); }

.display-line { display: block; }
.text-gradient {
  background: linear-gradient(100deg, var(--cyan-300), var(--blue-400) 46%, var(--amber-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.announcement {
  position: relative;
  z-index: 120;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: #d9e9ff;
  background: #05101f;
  font-size: 12px;
  letter-spacing: .02em;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.announcement strong { color: var(--cyan-300); }
.announcement a { margin-left: 10px; color: var(--white); font-weight: 700; }

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 110;
  transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}
.site-header.scrolled {
  background: rgba(5, 13, 26, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--white);
}
.brand img { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 20px; font-weight: 780; letter-spacing: -.035em; }
.brand-legal { margin-top: 5px; color: rgba(255, 255, 255, .48); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav > a,
.nav-dropdown > button {
  border: 0;
  padding: 10px 0;
  background: transparent;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 620;
  cursor: pointer;
  transition: color .2s ease;
}
.primary-nav > a:hover,
.primary-nav > a[aria-current="page"],
.nav-dropdown > button:hover { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > button::after { content: "⌄"; margin-left: 6px; font-size: 11px; opacity: .7; }
.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 510px;
  max-width: calc(100vw - 32px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(8, 22, 42, .97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
  backdrop-filter: blur(20px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}
.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-panel-grid > a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 13px;
  color: var(--white);
  transition: background .2s ease;
}
.nav-panel-grid > a:hover { background: rgba(255, 255, 255, .07); }
.nav-panel-all {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 13px;
  color: var(--white);
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  transition: background .2s ease, color .2s ease;
}
.nav-panel-all:hover { background: rgba(255, 255, 255, .07); }
.nav-panel-all > span:first-child { min-width: 0; }
.nav-panel-all > span[aria-hidden="true"] { flex: 0 0 auto; }
.nav-panel-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 229, 255, .18);
  border-radius: 11px;
  background: rgba(84, 229, 255, .08);
  color: var(--cyan-300);
  font-size: 13px;
  font-weight: 800;
}
.nav-panel strong { display: block; font-size: 13px; }
.nav-panel small { display: block; margin-top: 3px; color: rgba(255, 255, 255, .52); font-size: 11px; line-height: 1.4; }
.header-cta { margin-left: 4px; }
.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  padding: 128px 24px 32px;
  background: rgba(5, 12, 24, .98);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 630;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav .mobile-sub { padding-left: 16px; color: rgba(255,255,255,.66); font-size: 15px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--ink-950);
  background: linear-gradient(100deg, var(--cyan-300), #c8f9ff);
  box-shadow: 0 12px 34px rgba(84, 229, 255, .18);
}
.btn-primary:hover { box-shadow: 0 18px 48px rgba(84, 229, 255, .28); }
.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}
.btn-secondary:hover { border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .1); }
.btn-dark { color: var(--white); background: var(--ink-900); }
.btn-outline { color: var(--ink-900); border-color: rgba(10, 31, 57, .16); background: transparent; }
.btn-sm { min-height: 42px; padding: 0 17px; font-size: 13px; }
.btn-arrow::after { content: "↗"; font-size: 16px; }

.hero {
  position: relative;
  min-height: 880px;
  padding: 190px 0 100px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 35%, rgba(84, 229, 255, .12), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(76, 141, 255, .25), transparent 34%),
    linear-gradient(130deg, #040b16 0%, #07162b 48%, #0a2648 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -260px;
  bottom: -320px;
  border: 1px solid rgba(84, 229, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(84, 229, 255, .03), 0 0 0 140px rgba(76, 141, 255, .025);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(490px, .97fr);
  gap: 70px;
  align-items: center;
}
.hero-copy { max-width: 710px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 7px 12px;
  border: 1px solid rgba(84, 229, 255, .2);
  border-radius: 999px;
  background: rgba(84, 229, 255, .07);
  color: #c7f9ff;
  font-size: 12px;
  font-weight: 720;
}
.hero-kicker .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 0 rgba(114, 228, 179, .5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(114, 228, 179, 0); } 100% { box-shadow: 0 0 0 0 rgba(114, 228, 179, 0); } }
.hero h1 { font-size: clamp(58px, 6.6vw, 100px); max-width: 850px; }
.hero .lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  font-weight: 620;
}
.hero-flow span { display: inline-flex; align-items: center; gap: 14px; }
.hero-flow span:not(:last-child)::after { content: "→"; color: var(--cyan-400); }

.console-wrap { position: relative; perspective: 1000px; }
.console-glow {
  position: absolute;
  inset: 13% 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 141, 255, .27), transparent 65%);
  filter: blur(40px);
}
.blueprint-console {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background: linear-gradient(165deg, rgba(18, 42, 75, .9), rgba(6, 17, 34, .93));
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(18px);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
}
.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.console-title { font-size: 13px; font-weight: 750; }
.console-status { display: inline-flex; align-items: center; gap: 7px; color: var(--mint-400); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.console-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.console-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 14px 20px 0; }
.console-tab {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.console-tab.active {
  color: var(--white);
  border-color: rgba(84, 229, 255, .28);
  background: linear-gradient(90deg, rgba(76, 141, 255, .18), rgba(84, 229, 255, .10));
}
.console-map {
  position: relative;
  height: 255px;
  margin: 18px 20px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 48%, rgba(84, 229, 255, .12), transparent 38%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    #071a31;
  background-size: auto, 28px 28px, 28px 28px, auto;
}
.india-shape {
  position: absolute;
  inset: 20px 75px 20px 92px;
  opacity: .17;
  filter: drop-shadow(0 0 18px rgba(84, 229, 255, .4));
}
.city-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .78);
  font-size: 9px;
  font-weight: 720;
}
.city-node::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(84, 229, 255, .12), 0 0 18px rgba(84, 229, 255, .65);
}
.city-node.active::before { background: var(--amber-400); box-shadow: 0 0 0 4px rgba(255,185,92,.14),0 0 18px rgba(255,185,92,.7); }
.node-blr { left: 39%; top: 65%; }
.node-hyd { left: 47%; top: 50%; }
.node-pune { left: 31%; top: 47%; }
.node-che { left: 54%; top: 70%; }
.node-noi { left: 43%; top: 24%; }
.node-ind { left: 36%; top: 38%; }
.route-line { position: absolute; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(84,229,255,.1), rgba(84,229,255,.65), rgba(84,229,255,.1)); }
.route-1 { width: 115px; left: 43%; top: 56%; transform: rotate(49deg); }
.route-2 { width: 95px; left: 35%; top: 49%; transform: rotate(23deg); }
.route-3 { width: 125px; left: 43%; top: 54%; transform: rotate(-85deg); }
.map-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(4, 13, 27, .8);
  color: rgba(255,255,255,.55);
  font-size: 9px;
}
.console-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; background: rgba(255,255,255,.08); }
.metric { padding: 18px 17px; background: rgba(7, 20, 38, .96); }
.metric-label { color: rgba(255,255,255,.44); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.metric-value { display: block; margin-top: 7px; color: var(--white); font-size: 19px; font-weight: 720; letter-spacing: -.03em; }
.metric-value small { color: var(--cyan-300); font-size: 10px; font-weight: 700; }
.console-recommendation {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin: 14px 20px 20px;
  padding: 13px;
  border: 1px solid rgba(255, 185, 92, .2);
  border-radius: 14px;
  background: rgba(255, 185, 92, .07);
}
.console-recommendation-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,185,92,.13); color: var(--amber-400); font-weight: 900; }
.console-recommendation strong { display: block; font-size: 11px; }
.console-recommendation p { margin: 3px 0 0; color: rgba(255,255,255,.55); font-size: 9px; line-height: 1.45; }
.floating-chip {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(8, 22, 42, .9);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-size: 10px;
  font-weight: 720;
}
.floating-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-400); }
.floating-chip.one { right: -28px; top: 84px; }
.floating-chip.two { left: -32px; bottom: 88px; }

.trust-ribbon {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: rgba(255, 255, 255, .72);
  background: #06101f;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-ribbon .container { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 30px; min-height: 80px; }
.trust-ribbon-label { color: rgba(255,255,255,.42); font-size: 10px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.trust-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.trust-flow span { position: relative; padding: 12px 18px 12px 0; font-size: 11px; font-weight: 700; white-space: nowrap; }
.trust-flow span:not(:last-child)::after { content: "→"; position: absolute; right: 12px; color: var(--cyan-400); opacity: .7; }

.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.path-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
.path-card:hover { transform: translateY(-7px); border-color: rgba(76,141,255,.28); box-shadow: var(--shadow-md); }
.path-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,141,255,.13), transparent 68%);
}
.card-index { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 38px 0 22px;
  border-radius: 14px;
  color: var(--blue-500);
  background: rgba(76, 141, 255, .09);
}
.card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.path-card h3 { margin: 0; font-size: 24px; letter-spacing: -.035em; line-height: 1.1; }
.path-card p { margin: 14px 0 22px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-900); font-size: 13px; font-weight: 800; }
.text-link::after { content: "↗"; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(2px, -2px); }

.vendor-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vendor-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 38px;
}
.vendor-panel.old { background: #eef1f5; border: 1px solid rgba(16,33,59,.08); }
.vendor-panel.new {
  color: var(--white);
  background: linear-gradient(145deg, var(--ink-900), #102e53);
  box-shadow: var(--shadow-md);
}
.vendor-panel h3 { margin: 0; font-size: 32px; letter-spacing: -.045em; }
.vendor-panel > p { max-width: 520px; margin: 12px 0 0; color: var(--muted); }
.vendor-panel.new > p { color: rgba(255,255,255,.63); }
.sprawl-map { position: relative; height: 320px; margin-top: 30px; }
.sprawl-node {
  position: absolute;
  width: 112px;
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(16,33,59,.12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(5,15,31,.06);
  color: #40516b;
  text-align: center;
  font-size: 11px;
  font-weight: 760;
}
.sprawl-node:nth-child(1) { left: 2%; top: 8%; }
.sprawl-node:nth-child(2) { right: 1%; top: 2%; }
.sprawl-node:nth-child(3) { left: 36%; top: 38%; }
.sprawl-node:nth-child(4) { left: 4%; bottom: 5%; }
.sprawl-node:nth-child(5) { right: 5%; bottom: 12%; }
.sprawl-node:nth-child(6) { left: 38%; bottom: 0; }
.sprawl-line { position: absolute; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,125,143,.65), rgba(255,125,143,.65) 6px, transparent 6px, transparent 11px); transform-origin: left center; }
.sprawl-line.a { width: 210px; left: 19%; top: 26%; transform: rotate(14deg); }
.sprawl-line.b { width: 185px; left: 27%; top: 42%; transform: rotate(-34deg); }
.sprawl-line.c { width: 190px; left: 42%; top: 49%; transform: rotate(28deg); }
.sprawl-line.d { width: 155px; left: 19%; top: 68%; transform: rotate(-17deg); }
.sprawl-label { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); padding: 6px 10px; border-radius: 999px; background: #fff0f3; color: #c94359; font-size: 10px; font-weight: 800; }
.operating-layer {
  position: relative;
  height: 325px;
  margin-top: 28px;
  display: grid;
  place-items: center;
}
.layer-core {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84,229,255,.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84,229,255,.22), rgba(76,141,255,.11) 55%, rgba(7,20,38,.8));
  box-shadow: 0 0 50px rgba(84,229,255,.13);
  text-align: center;
}
.layer-core strong { font-size: 13px; line-height: 1.3; }
.layer-ring { position: absolute; border: 1px solid rgba(84,229,255,.15); border-radius: 50%; animation: rotate 28s linear infinite; }
.layer-ring.r1 { width: 245px; height: 245px; }
.layer-ring.r2 { width: 315px; height: 315px; animation-direction: reverse; animation-duration: 35s; }
@keyframes rotate { to { transform: rotate(360deg); } }
.layer-node {
  position: absolute;
  min-width: 85px;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  text-align: center;
  font-size: 10px;
  font-weight: 730;
}
.layer-node.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.layer-node.n2 { right: 0; top: 30%; }
.layer-node.n3 { right: 8%; bottom: 8%; }
.layer-node.n4 { left: 50%; bottom: -4px; transform: translateX(-50%); }
.layer-node.n5 { left: 7%; bottom: 9%; }
.layer-node.n6 { left: 0; top: 30%; }

.control-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
}
.control-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}
.orbit {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orbit::before,
.orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(84,229,255,.17); }
.orbit::before { inset: 6%; }
.orbit::after { inset: 19%; border-style: dashed; animation: rotate 28s linear infinite; }
.orbit-core {
  position: relative;
  z-index: 2;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(84,229,255,.28);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 25%, rgba(84,229,255,.24), rgba(76,141,255,.12) 48%, rgba(5,15,31,.9));
  box-shadow: 0 0 70px rgba(76,141,255,.2);
  text-align: center;
}
.orbit-core span { display: block; color: var(--cyan-300); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.orbit-core strong { display: block; margin-top: 8px; font-size: 20px; line-height: 1.12; }
.orbit-pillar {
  position: absolute;
  z-index: 3;
  width: 150px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.orbit-pillar strong { display: block; font-size: 13px; }
.orbit-pillar small { display: block; margin-top: 6px; color: rgba(255,255,255,.54); font-size: 10px; line-height: 1.4; }
.orbit-pillar .m { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-bottom: 10px; border-radius: 9px; color: var(--ink-900); background: var(--cyan-300); font-size: 11px; font-weight: 900; }
.orbit-pillar.p1 { left: 0; top: 15%; }
.orbit-pillar.p2 { right: -1%; top: 29%; }
.orbit-pillar.p3 { left: 12%; bottom: 5%; }
.control-content h2 { margin: 0; font-size: clamp(46px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; }
.control-content > p { max-width: 570px; margin: 24px 0 30px; color: rgba(255,255,255,.66); font-size: 17px; }
.control-list { display: grid; gap: 12px; }
.control-list-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.control-list-item .num { color: var(--cyan-300); font-size: 11px; font-weight: 850; }
.control-list-item strong { display: block; font-size: 15px; }
.control-list-item p { margin: 4px 0 0; color: rgba(255,255,255,.52); font-size: 12px; }

.lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 42px;
}
.lifecycle::before { content: ""; position: absolute; left: 6%; right: 6%; top: 30px; height: 1px; background: linear-gradient(90deg, transparent, rgba(76,141,255,.4), rgba(84,229,255,.6), rgba(255,185,92,.5), transparent); }
.stage {
  position: relative;
  z-index: 2;
  min-height: 205px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.stage:hover { transform: translateY(-4px); background: var(--white); box-shadow: var(--shadow-sm); }
.stage-no { width: 28px; height: 28px; display: grid; place-items: center; margin: 0 auto 44px; border: 1px solid rgba(76,141,255,.25); border-radius: 50%; background: var(--white); color: var(--blue-500); font-size: 10px; font-weight: 900; }
.stage strong { display: block; font-size: 13px; letter-spacing: -.02em; }
.stage p { margin: 8px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.stage.active { color: var(--white); border-color: transparent; background: linear-gradient(145deg, var(--ink-800), var(--ink-700)); box-shadow: var(--shadow-sm); }
.stage.active .stage-no { color: var(--ink-900); border-color: transparent; background: var(--cyan-300); }
.stage.active p { color: rgba(255,255,255,.58); }

.solution-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(225px, auto);
  gap: 16px;
}
.solution-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.solution-card.dark { color: var(--white); border-color: rgba(255,255,255,.1); background: linear-gradient(145deg, var(--ink-900), #0d2b50); }
.solution-card.accent { background: linear-gradient(135deg, #dffaff, #ecf2ff 55%, #fff2df); }
.solution-card.span-7 { grid-column: span 7; }
.solution-card.span-5 { grid-column: span 5; }
.solution-card.span-4 { grid-column: span 4; }
.solution-card.span-8 { grid-column: span 8; }
.solution-card h3 { margin: 0; font-size: 28px; letter-spacing: -.04em; line-height: 1.05; }
.solution-card p { max-width: 500px; margin: 13px 0 20px; color: var(--muted); font-size: 14px; }
.solution-card.dark p { color: rgba(255,255,255,.6); }
.solution-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 0 10px; border: 1px solid rgba(11,34,66,.1); border-radius: 999px; background: rgba(255,255,255,.55); color: #475a75; font-size: 10px; font-weight: 720; }
.dark .tag { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.06); }
.solution-number { position: absolute; right: 22px; top: 18px; color: rgba(11,34,66,.08); font-size: 70px; font-weight: 850; line-height: 1; }
.dark .solution-number { color: rgba(255,255,255,.06); }
.solution-mini-diagram { position: absolute; right: 24px; bottom: 20px; width: 190px; height: 110px; opacity: .72; }

.compare-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.compare-head { display: grid; grid-template-columns: 1fr 1fr; }
.compare-head > div { padding: 30px; }
.compare-head .gcc { color: var(--white); background: linear-gradient(135deg, var(--ink-900), var(--ink-700)); }
.compare-head .odc { background: linear-gradient(135deg, #e3fbff, #edf2ff); }
.compare-head span { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.compare-head h3 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
.compare-rows { display: grid; }
.compare-row { display: grid; grid-template-columns: 190px 1fr 1fr; border-top: 1px solid var(--line); }
.compare-row > div { padding: 20px 24px; }
.compare-row .label { color: var(--muted); font-size: 11px; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; background: #f7f9fc; }
.compare-row .value { font-size: 13px; }
.compare-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 30px; border-top: 1px solid var(--line); background: #f8fafc; }
.compare-footer p { margin: 0; color: var(--muted); font-size: 13px; }

.location-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 22px; align-items: stretch; }
.location-map-card,
.location-list-card { border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); }
.location-map-card { position: relative; min-height: 570px; overflow: hidden; padding: 30px; }
.location-map-card h3 { margin: 0; font-size: 27px; }
.location-map-card > p { margin: 9px 0 0; color: rgba(255,255,255,.56); font-size: 13px; }
.india-visual { position: relative; height: 430px; margin-top: 14px; }
.india-visual svg { position: absolute; inset: 10px 18%; width: 64%; height: 95%; opacity: .18; }
.city-pin { position: absolute; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(4,13,27,.78); color: rgba(255,255,255,.82); font-size: 10px; font-weight: 740; backdrop-filter: blur(8px); }
.city-pin::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 12px rgba(84,229,255,.6); }
.city-pin.t2::before { background: var(--amber-400); box-shadow: 0 0 12px rgba(255,185,92,.6); }
.city-pin.t3::before { background: var(--mint-400); box-shadow: 0 0 12px rgba(114,228,179,.6); }
.pin-blr { left: 39%; top: 66%; }
.pin-hyd { left: 47%; top: 51%; }
.pin-che { left: 55%; top: 70%; }
.pin-pune { left: 29%; top: 49%; }
.pin-noi { left: 43%; top: 21%; }
.pin-ind { left: 35%; top: 37%; }
.pin-coi { left: 42%; top: 79%; }
.pin-koc { left: 31%; top: 82%; }
.location-legend { position: absolute; left: 30px; bottom: 26px; display: flex; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.55); font-size: 9px; }
.legend-dot { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-400); }
.legend-dot:nth-child(2) i { background: var(--amber-400); }
.legend-dot:nth-child(3) i { background: var(--mint-400); }
.location-list-card { padding: 28px; }
.location-list-card h3 { margin: 0 0 18px; font-size: 26px; }
.tier-card { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
.tier-card:first-of-type { border-top: 0; }
.tier-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tier-label strong { font-size: 13px; }
.tier-label span { color: var(--cyan-300); font-size: 9px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.tier-card:nth-of-type(3) .tier-label span { color: var(--amber-300); }
.tier-card:nth-of-type(4) .tier-label span { color: var(--mint-400); }
.tier-card p { margin: 8px 0 0; color: rgba(255,255,255,.52); font-size: 11px; }
.factor-bars { display: grid; gap: 12px; margin-top: 24px; }
.factor { display: grid; grid-template-columns: 130px 1fr 34px; gap: 12px; align-items: center; font-size: 10px; color: rgba(255,255,255,.6); }
.factor-track { height: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.factor-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-500), var(--cyan-400)); }
.factor b { color: rgba(255,255,255,.78); font-size: 10px; }

.lab-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.lab-copy { padding: 48px; background: linear-gradient(145deg, var(--ink-900), #0b2c50); color: var(--white); }
.lab-copy h3 { margin: 0; font-size: 46px; line-height: 1; letter-spacing: -.05em; }
.lab-copy p { margin: 18px 0 26px; color: rgba(255,255,255,.62); font-size: 15px; }
.lab-steps { display: grid; gap: 11px; margin-top: 32px; }
.lab-step { display: grid; grid-template-columns: 28px 1fr; gap: 11px; align-items: start; color: rgba(255,255,255,.65); font-size: 11px; }
.lab-step span { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(84,229,255,.22); border-radius: 8px; color: var(--cyan-300); background: rgba(84,229,255,.07); font-weight: 850; }
.lab-ui { padding: 42px; background: #f9fbfd; }
.lab-ui h4 { margin: 0 0 22px; font-size: 21px; letter-spacing: -.03em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #52637c; font-size: 10px; font-weight: 790; letter-spacing: .07em; text-transform: uppercase; }
.field select,
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(11,34,66,.13);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 125px; padding-top: 13px; resize: vertical; }
.field select:focus,
.field input:focus,
.field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(76,141,255,.12); }
.range-row { display: grid; grid-template-columns: 1fr 50px; gap: 12px; align-items: center; }
input[type="range"] { width: 100%; accent-color: var(--blue-500); }
.range-value { min-height: 34px; display: grid; place-items: center; border-radius: 9px; background: #eef3fa; color: var(--ink-900); font-size: 11px; font-weight: 820; }
.lab-output { display: grid; grid-template-columns: 100px 1fr; gap: 16px; align-items: center; margin-top: 22px; padding: 18px; border: 1px solid rgba(76,141,255,.17); border-radius: 16px; background: #edf5ff; }
.lab-output strong { display: block; font-size: 13px; }
.lab-output p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.lab-note { margin-top: 12px; color: #8290a3; font-size: 9px; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.principle-no { color: var(--blue-500); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.principle h3 { margin: 32px 0 0; font-size: 22px; letter-spacing: -.035em; }
.principle p { margin: 11px 0 0; color: var(--muted); font-size: 13px; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.insight-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.insight-visual { height: 190px; position: relative; overflow: hidden; background: linear-gradient(135deg, #0b1f3b, #184a79); }
.insight-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 28px 28px; }
.insight-visual .visual-circle { position: absolute; width: 170px; height: 170px; right: -20px; bottom: -50px; border: 1px solid rgba(84,229,255,.32); border-radius: 50%; box-shadow: 0 0 0 32px rgba(84,229,255,.05), 0 0 0 65px rgba(84,229,255,.025); }
.insight-visual .visual-label { position: absolute; left: 22px; top: 20px; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.insight-body { padding: 24px; }
.insight-meta { color: var(--blue-500); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.insight-card h3 { margin: 12px 0 16px; font-size: 21px; line-height: 1.2; letter-spacing: -.035em; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--white);
  background: linear-gradient(120deg, #06101f, #0b2850 55%, #0e4161);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(84,229,255,.22), transparent 35%); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { max-width: 850px; margin: 0; font-size: clamp(42px,5vw,72px); line-height: .98; letter-spacing: -.055em; }
.cta-band p { max-width: 650px; margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: 16px; }
.cta-actions { display: flex; flex-direction: column; gap: 11px; }

.site-footer { color: rgba(255,255,255,.7); background: #040a13; }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 50px; padding: 70px 0 48px; }
.footer-brand p { max-width: 410px; margin: 18px 0 0; color: rgba(255,255,255,.46); font-size: 13px; }
.footer-positioning { margin-top: 24px; color: var(--cyan-300); font-size: 12px; font-weight: 760; }
.footer-col h3 { margin: 0 0 18px; color: var(--white); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.5); font-size: 12px; transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0 30px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); font-size: 10px; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; }

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 690px;
  padding: 190px 0 90px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(84,229,255,.16), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(76,141,255,.25), transparent 34%),
    linear-gradient(130deg, #040b16, #07162b 50%, #0a2648);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom,black,transparent); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; }
.page-hero h1 { font-size: clamp(56px, 6vw, 90px); }
.page-hero .lead { max-width: 700px; margin: 26px 0 0; color: rgba(255,255,255,.66); font-size: 20px; }
.page-hero-card { position: relative; min-height: 380px; padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.055); box-shadow: var(--shadow-glow); backdrop-filter: blur(14px); }
.page-hero-card h3 { margin: 0; font-size: 17px; }
.page-hero-card > p { color: rgba(255,255,255,.55); font-size: 12px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.hero-stat { padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.045); }
.hero-stat span { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-stat strong { display: block; margin-top: 7px; font-size: 15px; }
.hero-model-flow { display: flex; align-items: center; gap: 7px; margin-top: 30px; }
.hero-model-flow div { flex: 1; min-height: 82px; display: grid; place-items: center; padding: 10px; border: 1px solid rgba(84,229,255,.15); border-radius: 14px; background: rgba(84,229,255,.055); text-align: center; font-size: 11px; font-weight: 760; }
.hero-model-flow span { color: var(--cyan-300); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-card .card-icon { margin: 0 0 26px; }
.feature-card h3 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.feature-card p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.feature-card ul { margin: 18px 0 0; padding: 0; list-style: none; }
.feature-card li { position: relative; padding: 8px 0 8px 18px; border-top: 1px solid var(--line); color: #52637b; font-size: 11px; }
.feature-card li::before { content: ""; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.model-card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.model-card.recommended { color: var(--white); background: linear-gradient(145deg,var(--ink-900),#10365e); box-shadow: var(--shadow-md); }
.model-badge { display: inline-flex; min-height: 28px; align-items: center; padding: 0 10px; border-radius: 999px; color: var(--blue-500); background: rgba(76,141,255,.08); font-size: 9px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.recommended .model-badge { color: var(--ink-900); background: var(--cyan-300); }
.model-card h3 { margin: 24px 0 0; font-size: 27px; letter-spacing: -.04em; }
.model-card p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.recommended p { color: rgba(255,255,255,.58); }
.model-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.model-card li { padding: 9px 0; border-top: 1px solid var(--line); color: #55667d; font-size: 11px; }
.recommended li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.64); }

.deliverable-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.deliverable { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.deliverable span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: rgba(76,141,255,.09); color: var(--blue-500); font-size: 11px; font-weight: 850; }
.deliverable strong { display: block; font-size: 13px; }
.deliverable p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }

.process-vertical { display: grid; gap: 0; }
.process-row { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 28px; padding: 30px 0; border-top: 1px solid var(--line); }
.process-row:first-child { border-top: 0; }
.process-no { color: var(--blue-500); font-size: 12px; font-weight: 850; }
.process-row h3 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.process-row p { margin: 0; color: var(--muted); font-size: 13px; }

.pod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pod-card { min-height: 255px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.pod-card h3 { margin: 38px 0 0; font-size: 20px; letter-spacing: -.03em; }
.pod-card p { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.pod-card .card-icon { margin: 0; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.value-card .value-symbol { color: var(--blue-500); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.value-card h3 { margin: 52px 0 0; font-size: 23px; letter-spacing: -.04em; }
.value-card p { margin: 11px 0 0; color: var(--muted); font-size: 12px; }

.leadership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.leader-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.leader-portrait { position: relative; height: 270px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #e5f7ff, #edf1ff 58%, #fff1dc); }
.leader-portrait::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid rgba(76,141,255,.18); border-radius: 50%; box-shadow: 0 0 0 35px rgba(76,141,255,.05),0 0 0 70px rgba(255,185,92,.04); }
.leader-initials { position: relative; z-index: 2; width: 118px; height: 118px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: linear-gradient(135deg,var(--ink-900),#1d5a8d); font-size: 36px; font-weight: 700; letter-spacing: -.04em; box-shadow: 0 20px 50px rgba(5,15,31,.2); }
.leader-body { padding: 24px; }
.leader-role { color: var(--blue-500); font-size: 9px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.leader-card h3 { margin: 9px 0 0; font-size: 23px; letter-spacing: -.035em; }
.leader-card p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.leader-focus { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 22px; align-items: start; }
.contact-info { position: sticky; top: 130px; padding: 36px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg,var(--ink-900),#0e3459); }
.contact-info h2 { margin: 0; font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.contact-info > p { margin: 18px 0 26px; color: rgba(255,255,255,.58); }
.contact-item { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
.contact-item span { display: block; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: 8px; font-size: 13px; line-height: 1.5; }
.contact-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-form h3 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.04em; }
.contact-form > p { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-option { display: flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; color: #4d5f78; font-size: 11px; cursor: pointer; }
.check-option input { accent-color: var(--blue-500); }
.next-steps { display: grid; gap: 10px; margin-top: 24px; }
.next-step { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; color: rgba(255,255,255,.62); font-size: 10px; }
.next-step span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: rgba(84,229,255,.09); color: var(--cyan-300); font-weight: 850; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; background: transparent; color: var(--text); text-align: left; font-size: 16px; font-weight: 700; cursor: pointer; }
.faq-question::after { content: "+"; color: var(--blue-500); font-size: 22px; font-weight: 400; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { max-width: 850px; margin: 0 0 24px; color: var(--muted); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a, .nav-dropdown > button { font-size: 12px; }
  .brand { min-width: 190px; }
  .hero-grid { grid-template-columns: 1fr 460px; gap: 40px; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .lifecycle { grid-template-columns: repeat(4,1fr); }
  .lifecycle::before { display: none; }
  .stage-no { margin-bottom: 24px; }
  .solution-card.span-7, .solution-card.span-5, .solution-card.span-4, .solution-card.span-8 { grid-column: span 6; }
  .pod-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .site-header { top: 34px; }
  .nav-shell { min-height: 70px; }
  .primary-nav, .header-cta { display: none; }
  .mobile-menu-button { display: grid; place-items: center; }
  .hero { min-height: auto; padding-top: 155px; }
  .hero-grid, .page-hero-grid, .control-grid, .location-grid, .lab-shell, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-copy { max-width: 820px; }
  .console-wrap { max-width: 650px; margin: 0 auto; }
  .blueprint-console { transform: none; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .vendor-contrast { grid-template-columns: 1fr; }
  .control-visual { order: 2; }
  .compare-row { grid-template-columns: 150px 1fr 1fr; }
  .principles-grid, .insight-grid, .feature-grid, .model-grid, .value-grid, .leadership-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top .footer-col:last-child { grid-column: 2 / -1; }
  .page-hero { padding-top: 155px; }
  .page-hero-card { max-width: 620px; }
  .contact-info { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 58px 0; }
  .announcement { min-height: 34px; padding-inline: 12px; font-size: 10px; }
  .announcement a { display: none; }
  .site-header { top: 34px; }
  .brand { min-width: 0; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: 17px; }
  .brand-legal { display: none; }
  .hero { padding: 134px 0 70px; }
  .hero h1 { font-size: clamp(49px, 15vw, 67px); }
  .hero .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-flow { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-flow span::after { display: none; }
  .console-map { height: 220px; margin-inline: 12px; }
  .console-tabs { padding-inline: 12px; }
  .console-metrics { grid-template-columns: 1fr; }
  .console-recommendation { margin-inline: 12px; }
  .floating-chip { display: none; }
  .trust-ribbon .container { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
  .trust-flow { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .trust-flow span { padding: 7px 4px; font-size: 9px; }
  .trust-flow span::after { display: none; }
  .section-head h2 { font-size: 42px; }
  .path-grid, .principles-grid, .insight-grid, .feature-grid, .model-grid, .value-grid, .leadership-grid, .pod-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 280px; }
  .vendor-panel { padding: 25px; min-height: 500px; }
  .orbit-pillar { width: 128px; padding: 12px; }
  .orbit-core { width: 145px; height: 145px; }
  .control-visual { min-height: 500px; }
  .lifecycle { grid-template-columns: 1fr 1fr; }
  .stage { min-height: 185px; }
  .solution-bento { grid-template-columns: 1fr; }
  .solution-card.span-7, .solution-card.span-5, .solution-card.span-4, .solution-card.span-8 { grid-column: auto; }
  .solution-card { min-height: 270px; }
  .compare-head { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .label { padding-bottom: 8px; }
  .compare-row .value { padding-top: 12px; border-top: 1px dashed var(--line); }
  .compare-footer { align-items: flex-start; flex-direction: column; }
  .location-map-card { min-height: 520px; padding: 22px; }
  .city-pin { font-size: 8px; padding: 6px 8px; }
  .factor { grid-template-columns: 105px 1fr 28px; }
  .lab-copy, .lab-ui { padding: 30px 22px; }
  .lab-copy h3 { font-size: 38px; }
  .form-grid, .deliverable-list { grid-template-columns: 1fr; }
  .lab-output { grid-template-columns: 80px 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top .footer-col:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: auto; padding: 140px 0 70px; }
  .page-hero h1 { font-size: clamp(48px,14vw,66px); }
  .page-hero .lead { font-size: 17px; }
  .page-hero-card { min-height: auto; }
  .process-row { grid-template-columns: 46px 1fr; gap: 15px; }
  .process-row p { grid-column: 2; }
  .contact-form { padding: 26px 20px; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

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

/* --------------------------------------------------------------------------
   Production site additions and white-header brand treatment
   -------------------------------------------------------------------------- */

html { scroll-padding-top: 128px; }
body { overflow-x: hidden; }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(10,31,57,.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(5,15,31,.07);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(10,31,57,.12);
  box-shadow: 0 12px 40px rgba(5,15,31,.11);
}
.nav-shell { min-height: 82px; gap: 24px; }
.brand-image { min-width: 236px; color: var(--ink-900); }
.brand-image img { width: 236px; height: auto; max-height: 64px; object-fit: contain; }
.primary-nav { gap: 20px; }
.primary-nav > a,
.nav-dropdown > button { color: #263b59; font-size: 13px; }
.primary-nav > a:hover,
.primary-nav > a[aria-current="page"],
.nav-dropdown > button:hover,
.nav-dropdown > button.active { color: #006fa3; }
.nav-dropdown > button.active::before { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 2px; border-radius: 999px; background: var(--blue-500); }
.nav-panel { width: 620px; background: rgba(7,20,38,.98); }
.nav-panel-grid { grid-template-columns: repeat(2,1fr); }
.nav-panel-icon { font-size: 10px; }
.header-cta { margin-left: 0; white-space: nowrap; }
.mobile-menu-button { border-color: rgba(10,31,57,.14); background: #f2f6fb; color: var(--ink-900); }

.hero, .page-hero { padding-top: 188px; }
.page-hero { min-height: 700px; }
.page-hero h1 { max-width: 900px; }

.brand-image-footer { min-width: 0; }
.brand-image-footer img { width: min(280px,100%); max-height: none; }
.footer-contact address { margin: 2px 0 10px; color: rgba(255,255,255,.55); font-style: normal; font-size: 11px; line-height: 1.65; }
.footer-col a { overflow-wrap: anywhere; }

.section-inline-cta { display: flex; justify-content: flex-start; margin-top: 30px; }
.mini-cta { display: flex; align-items: center; justify-content: space-between; gap: 38px; padding: 34px 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.mini-cta h2 { margin: 0; font-size: clamp(30px,3vw,46px); line-height: 1.04; letter-spacing: -.045em; }
.mini-cta p { margin: 13px 0 0; color: var(--muted); }

/* Service detail pages */
.service-detail-hero::after { content: ""; position: absolute; right: -130px; top: 150px; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(84,229,255,.13); box-shadow: 0 0 0 64px rgba(84,229,255,.025), 0 0 0 128px rgba(76,141,255,.018); }
.service-summary-card { display: flex; flex-direction: column; justify-content: center; }
.service-hero-icon { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 25px; border: 1px solid rgba(84,229,255,.22); border-radius: 20px; color: var(--cyan-300); background: rgba(84,229,255,.08); }
.service-hero-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-capability-grid { grid-template-columns: repeat(3,1fr); }
.process-dark .process-row { border-color: rgba(255,255,255,.11); }
.process-dark .process-no { color: var(--cyan-300); }
.process-dark h3 { color: var(--white); }
.process-dark p { color: rgba(255,255,255,.57); }
.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.outcome-card { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.outcome-card > span { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: var(--blue-500); background: rgba(76,141,255,.09); font-size: 10px; font-weight: 900; }
.outcome-card h3 { margin: 58px 0 0; font-size: 22px; line-height: 1.08; letter-spacing: -.035em; }
.outcome-card p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.detail-panel { min-height: 520px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.detail-panel h2 { margin: 0; font-size: clamp(39px,4vw,58px); line-height: 1; letter-spacing: -.052em; }
.detail-panel > p { margin: 20px 0 28px; color: var(--muted); font-size: 15px; }
.detail-panel-dark { color: var(--white); border-color: rgba(255,255,255,.1); background: linear-gradient(145deg,var(--ink-900),#0d3157); }
.detail-panel-dark > p { color: rgba(255,255,255,.58); }
.detail-panel-transparent { color: var(--white); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.055); box-shadow: none; }
.detail-panel-transparent > p { color: rgba(255,255,255,.62); }
.stack-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.stack-cloud .tag { min-height: 36px; padding: 0 13px; background: #f7f9fc; }
.check-list { margin: 30px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 31px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.72); font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 13px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: var(--ink-900); background: var(--cyan-300); font-size: 11px; font-weight: 900; }
.check-list.light li { color: #4b5f79; border-color: var(--line); }
.check-list.light li::before { color: var(--white); background: var(--blue-500); }

/* Platform */
.formula-stack { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 28px; }
.formula-stack span { display: inline-flex; align-items: center; min-height: 40px; padding: 0 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.79); font-size: 11px; font-weight: 740; }
.formula-stack b { color: var(--cyan-300); }
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pillar-card { min-height: 350px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.pillar-card > span { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: var(--ink-900); background: linear-gradient(135deg,var(--cyan-300),#dffcff); font-size: 15px; font-weight: 900; }
.pillar-card h3 { margin: 46px 0 0; font-size: 27px; letter-spacing: -.04em; }
.pillar-card strong { display: block; margin-top: 14px; color: var(--blue-500); font-size: 13px; }
.pillar-card p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.data-workflow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #f8fbfe; }
.data-workflow span { padding: 9px 12px; border-radius: 10px; background: var(--white); color: #334b69; font-size: 11px; font-weight: 760; box-shadow: 0 5px 18px rgba(5,15,31,.06); }
.data-workflow i { color: var(--blue-500); font-style: normal; font-weight: 900; }
.finder-list { border-top: 1px solid var(--line); }
.finder-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding .2s ease, color .2s ease; }
.finder-row:hover { padding-left: 10px; color: var(--blue-500); }
.finder-row span { font-size: 19px; font-weight: 620; letter-spacing: -.02em; }
.finder-row strong { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.platform-links { display: grid; margin-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.platform-links a { display: grid; grid-template-columns: 150px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.platform-links strong { color: var(--cyan-300); font-size: 13px; }
.platform-links span { color: rgba(255,255,255,.57); font-size: 12px; }

/* Location strategy */
.tier-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tier-detail-card { min-height: 390px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.tier-detail-card > span { display: inline-flex; min-height: 30px; align-items: center; padding: 0 10px; border-radius: 999px; color: var(--blue-500); background: rgba(76,141,255,.09); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.tier-detail-card h3 { margin: 38px 0 0; font-size: 27px; line-height: 1.08; letter-spacing: -.04em; }
.tier-detail-card strong { display: block; margin-top: 22px; color: var(--blue-500); font-size: 12px; line-height: 1.6; }
.tier-detail-card p { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.muted-on-dark { color: rgba(255,255,255,.55); font-size: 12px; }
.weight-list { display: grid; gap: 16px; margin-top: 28px; }
.weight-row { display: grid; grid-template-columns: 165px 1fr 40px; gap: 12px; align-items: center; color: rgba(255,255,255,.66); font-size: 10px; }
.weight-row > div { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.weight-row i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue-500),var(--cyan-400)); }
.weight-row strong { color: var(--white); font-size: 10px; }
.responsive-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.responsive-table table { width: 100%; min-width: 760px; border-collapse: collapse; }
.responsive-table th, .responsive-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); text-align: left; font-size: 12px; }
.responsive-table th { color: var(--ink-900); background: #f3f7fb; font-weight: 800; }
.responsive-table thead th { color: var(--white); background: var(--ink-900); }
.responsive-table tr:last-child th, .responsive-table tr:last-child td { border-bottom: 0; }
.responsive-table th:last-child, .responsive-table td:last-child { border-right: 0; }

/* Full GCC Lab */
.lab-shell-full { grid-template-columns: .68fr 1.32fr; }
.lab-shell-full .lab-copy { padding: 42px 36px; }
.lab-shell-full .lab-copy h3 { font-size: 40px; }
.lab-disclaimer { margin-top: 28px; padding: 14px; border: 1px solid rgba(255,185,92,.23); border-radius: 13px; background: rgba(255,185,92,.08); color: rgba(255,255,255,.68); font-size: 10px; }
.lab-form { display: grid; gap: 10px; }
.lab-form-section { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: end; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.lab-form-section.lab-form-double { grid-template-columns: 42px 1fr 1fr; }
.lab-form-step { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--blue-500); background: rgba(76,141,255,.08); font-size: 10px; font-weight: 900; }
.lab-priorities { align-items: start; }
.priority-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 12px; }
.priority-heading strong { font-size: 12px; }
.priority-heading span { color: var(--blue-500); font-size: 11px; font-weight: 850; }
.priority-heading span.invalid { color: #d2465d; }
.priority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.priority-grid label { display: grid; grid-template-columns: 140px 1fr 32px; gap: 10px; align-items: center; color: #52637c; font-size: 10px; font-weight: 720; }
.priority-grid input { width: 100%; accent-color: var(--blue-500); }
.priority-grid output { color: var(--ink-900); font-weight: 850; text-align: right; }
.lab-output-full { margin-top: 18px; }
.output-kicker { display: block; margin-bottom: 4px; color: var(--blue-500); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.output-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.output-tags span { display: inline-flex; padding: 5px 8px; border-radius: 999px; background: rgba(76,141,255,.08); color: #405875; font-size: 9px; font-weight: 700; }
.next-actions { margin: 18px 0; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.next-actions h4 { margin: 0; font-size: 14px; }
.next-actions ol { margin: 12px 0 0; padding-left: 20px; color: var(--muted); font-size: 11px; }
.next-actions li { padding: 4px 0; }

/* Insights and article pages */
.insight-grid-large { grid-template-columns: repeat(3,1fr); }
.insight-grid-large .insight-card:nth-child(4), .insight-grid-large .insight-card:nth-child(5) { grid-column: span 1; }
.insight-body > p { margin: 10px 0 18px; color: var(--muted); font-size: 12px; }
.article-hero, .legal-hero { position: relative; padding: 190px 0 90px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 80% 20%,rgba(84,229,255,.13),transparent 32%),linear-gradient(135deg,#04101f,#0a2546); }
.article-hero::before, .legal-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom,black,transparent); }
.article-hero-inner, .legal-hero .container { position: relative; z-index: 2; max-width: 990px; }
.article-back { display: inline-flex; margin-bottom: 30px; color: rgba(255,255,255,.66); font-size: 12px; font-weight: 720; }
.article-category { display: block; color: var(--cyan-300); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-hero h1, .legal-hero h1 { max-width: 950px; margin: 18px 0 0; font-size: clamp(52px,7vw,92px); line-height: .98; letter-spacing: -.058em; }
.article-hero > .container > p, .article-hero-inner > p, .legal-hero p { max-width: 780px; margin: 26px 0 0; color: rgba(255,255,255,.67); font-size: 19px; }
.article-meta { margin-top: 26px; color: rgba(255,255,255,.42); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.article-layout { display: grid; grid-template-columns: 260px 1fr; gap: 70px; align-items: start; }
.article-toc { position: sticky; top: 140px; display: grid; gap: 0; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #f8fbfe; }
.article-toc > strong { margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.article-toc > a { padding: 10px 0; border-top: 1px solid var(--line); color: #52637c; font-size: 11px; }
.article-toc > a:hover { color: var(--blue-500); }
.article-note { margin-top: 18px; padding: 14px; border-radius: 12px; background: #edf3fa; color: #66778d; font-size: 9px; }
.article-body { max-width: 820px; }
.article-section { scroll-margin-top: 150px; padding: 0 0 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); }
.article-section > span { color: var(--blue-500); font-size: 11px; font-weight: 900; }
.article-section h2 { margin: 12px 0 23px; font-size: clamp(35px,4vw,54px); line-height: 1.03; letter-spacing: -.05em; }
.article-section p { margin: 0 0 19px; color: #4e6078; font-size: 17px; line-height: 1.75; }
.article-cta { padding: 38px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg,var(--ink-900),#0e3459); }
.article-cta h2 { margin: 0; font-size: 34px; letter-spacing: -.04em; }
.article-cta p { margin: 12px 0 24px; color: rgba(255,255,255,.61); }
.article-cta .btn-dark { color: var(--ink-900); background: var(--cyan-300); }

/* Legal, utility and forms */
.legal-shell { max-width: 880px; }
.legal-effective { padding: 14px 17px; border-radius: 12px; background: #edf4fb; color: #405875; }
.legal-intro { margin: 26px 0 44px; color: #52637c; font-size: 16px; }
.legal-section { padding: 36px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 17px; font-size: 28px; letter-spacing: -.04em; }
.legal-section p, .legal-section li { color: #52637c; font-size: 14px; line-height: 1.75; }
.legal-section ul { margin: 0; padding-left: 20px; }
.legal-contact { margin-top: 30px; padding: 28px; border-radius: 18px; background: var(--paper-2); }
.legal-contact h2 { margin: 0; }
.legal-contact a { color: var(--blue-500); font-weight: 750; }
.hidden-field { position: absolute !important; left: -9999px !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: #52637c; font-size: 11px; text-transform: none !important; letter-spacing: 0 !important; }
.consent input { margin-top: 3px; accent-color: var(--blue-500); }
.consent a { color: var(--blue-500); text-decoration: underline; }
.contact-info a { color: inherit; }
.contact-form textarea { min-height: 150px; padding-top: 13px; resize: vertical; }
.narrow-center { position: relative; z-index: 2; max-width: 930px; text-align: center; }
.narrow-center .lead { margin-inline: auto; }
.center-actions { justify-content: center; }
.error-code { display: block; color: rgba(255,255,255,.11); font-size: clamp(110px,19vw,230px); font-weight: 900; line-height: .75; letter-spacing: -.08em; }
.thank-you-hero, .not-found-hero { min-height: 760px; display: grid; align-items: center; }

/* Make all interactive controls accessible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(84,229,255,.65); outline-offset: 3px; }

@media (max-width: 1180px) {
  .brand-image { min-width: 205px; }
  .brand-image img { width: 205px; }
  .primary-nav { gap: 14px; }
  .primary-nav > a, .nav-dropdown > button { font-size: 11px; }
}

@media (max-width: 1100px) {
  .service-capability-grid, .outcome-grid, .pillar-grid, .tier-detail-grid, .insight-grid-large { grid-template-columns: repeat(2,1fr); }
  .insight-grid-large .insight-card:nth-child(4), .insight-grid-large .insight-card:nth-child(5) { grid-column: auto; }
  .article-layout { grid-template-columns: 220px 1fr; gap: 42px; }
}

@media (max-width: 920px) {
  .site-header { top: 34px; }
  .brand-image img { width: 224px; }
  .hero, .page-hero { padding-top: 164px; }
  .detail-split, .article-layout { grid-template-columns: 1fr; }
  .detail-panel { min-height: auto; }
  .article-toc { position: static; }
  .lab-shell-full { grid-template-columns: 1fr; }
  .priority-grid { grid-template-columns: 1fr; }
  .mini-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 108px; }
  .brand-image img { width: 195px; }
  .site-header { top: 34px; }
  .nav-shell { min-height: 70px; }
  .mobile-nav { padding-top: 118px; overflow-y: auto; }
  .hero, .page-hero { padding-top: 142px; }
  .page-hero { min-height: auto; }
  .service-capability-grid, .outcome-grid, .pillar-grid, .tier-detail-grid, .insight-grid-large { grid-template-columns: 1fr; }
  .outcome-card, .pillar-card, .tier-detail-card { min-height: auto; }
  .outcome-card h3, .pillar-card h3, .tier-detail-card h3 { margin-top: 32px; }
  .detail-panel { padding: 29px 22px; }
  .detail-panel h2 { font-size: 40px; }
  .platform-links a { grid-template-columns: 1fr; gap: 5px; }
  .finder-row { grid-template-columns: 1fr; gap: 8px; }
  .finder-row span { font-size: 17px; }
  .weight-row { grid-template-columns: 115px 1fr 34px; }
  .lab-form-section, .lab-form-section.lab-form-double { grid-template-columns: 34px 1fr; }
  .lab-form-section.lab-form-double .field:last-child { grid-column: 2; }
  .priority-grid label { grid-template-columns: 110px 1fr 28px; }
  .lab-output-full { grid-template-columns: 74px 1fr; }
  .article-hero, .legal-hero { padding: 150px 0 70px; }
  .article-hero h1, .legal-hero h1 { font-size: 50px; }
  .article-hero-inner > p, .legal-hero p { font-size: 17px; }
  .article-section p { font-size: 16px; }
  .article-cta { padding: 28px 22px; }
  .mini-cta { padding: 26px 22px; }
  .contact-info { padding: 28px 22px; }
}
