:root {
  --navy-950: #040d19;
  --navy-900: #071426;
  --navy-850: #0a1a2f;
  --navy-800: #10233b;
  --cyan: #32e6ed;
  --cyan-deep: #0bc7d1;
  --mist: #eef3f5;
  --mist-2: #e4ebee;
  --ink: #0c1928;
  --muted: #5e6b76;
  --white: #ffffff;
  --line: rgba(12, 25, 40, 0.12);
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", "Noto Sans Mono CJK SC", "Microsoft YaHei", monospace;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --shadow: 0 24px 70px rgba(4, 13, 25, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, blockquote { margin-top: 0; }
.page-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: 12px; background: var(--cyan); color: var(--navy-950); padding: 10px 16px; border-radius: 8px; transform: translateY(-140%); transition: transform .2s ease; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 18px 0; transition: padding .25s ease, background .25s ease, border-color .25s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { padding: 10px 0; background: rgba(7, 20, 38, .88); border-color: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.nav-shell { width: min(1280px, calc(100% - 48px)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; color: var(--white); }
.brand-mark { width: 45px; aspect-ratio: 1; border: 1px solid rgba(50, 230, 237, .48); border-radius: 14px 9px 14px 9px; display: grid; place-items: center; color: var(--cyan); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: -.06em; background: rgba(50, 230, 237, .06); }
.brand-name { font-size: 14px; font-weight: 650; letter-spacing: .03em; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.74); font-size: 14px; }
.site-nav > a { position: relative; transition: color .2s ease; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -7px; background: var(--cyan); transition: right .25s ease; }
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--white); }
.site-nav > a:hover::after { right: 0; }
.site-nav .nav-cta { display: inline-flex; align-items: center; gap: 18px; padding: 11px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; color: var(--white); background: rgba(255,255,255,.05); }
.site-nav .nav-cta:hover { border-color: var(--cyan); background: rgba(50,230,237,.09); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 6px auto; background: var(--white); transition: transform .2s ease; }

.hero { position: relative; min-height: 900px; padding: 170px 0 40px; color: var(--white); background: var(--navy-900); overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black 0, transparent 78%); }
.hero::after { content: ""; position: absolute; z-index: -1; width: 720px; height: 300px; left: -100px; bottom: -200px; background: var(--cyan); filter: blur(140px); opacity: .08; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; right: -120px; top: -140px; background: rgba(50,230,237,.11); filter: blur(70px); }
.hero-glow-two { width: 260px; height: 260px; right: 38%; top: 280px; border: 1px solid rgba(50,230,237,.08); box-shadow: 0 0 100px rgba(50,230,237,.05) inset; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); gap: 74px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; color: var(--cyan); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #087c84; }
.hero h1 { margin: 0 0 28px; font-family: var(--mono); font-size: clamp(43px, 4.4vw, 69px); font-weight: 650; line-height: 1.17; letter-spacing: -.065em; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 580px; margin-bottom: 32px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 54px; padding: 0 22px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--cyan); box-shadow: 0 14px 34px rgba(50,230,237,.16); }
.button-primary:hover { background: #69f8fc; box-shadow: 0 18px 40px rgba(50,230,237,.25); }
.button-ghost { border: 1px solid rgba(255,255,255,.16); color: var(--white); background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.07); }
.play-dot { width: 9px; height: 9px; border: 2px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 0 4px rgba(50,230,237,.08); }
.hero-points { list-style: none; padding: 0; margin: 31px 0 0; display: flex; gap: 26px; color: rgba(255,255,255,.52); font-size: 12px; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points li span { color: var(--cyan); }

.hero-board { position: relative; padding: 24px; min-height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 38px 18px 38px 18px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 30px 90px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.hero-board::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; opacity: .45; background: linear-gradient(140deg, rgba(50,230,237,.38), transparent 35%, transparent 70%, rgba(50,230,237,.13)); }
.board-top { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding: 4px 5px 22px; }
.micro-label { margin: 0 0 7px; color: #73808b; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.board-top .micro-label { color: rgba(255,255,255,.38); }
.board-top h2 { margin: 0; font-family: var(--mono); font-size: 18px; letter-spacing: -.03em; }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(50,230,237,.16); border-radius: 99px; background: rgba(50,230,237,.07); color: var(--cyan); font-size: 10px; white-space: nowrap; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.board-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.metric-card { padding: 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(4,13,25,.58); }
.metric-main { min-height: 220px; }
.metric-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: rgba(255,255,255,.46); font-size: 10px; }
.mini-chip { padding: 4px 8px; border-radius: 99px; background: rgba(255,255,255,.05); }
.metric-main > strong { display: block; margin-top: 16px; font-family: var(--mono); color: var(--white); font-size: 17px; letter-spacing: -.04em; }
.signal-chart { height: 91px; display: flex; gap: 7px; align-items: end; padding-top: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.signal-chart span { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(to top, rgba(50,230,237,.18), var(--cyan)); opacity: .8; }
.metric-main > p { margin: 14px 0 0; color: rgba(255,255,255,.43); font-size: 10px; display: flex; gap: 8px; align-items: center; }
.trend-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.rhythm-card { position: relative; overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: end; }
.orbit { position: absolute; width: 160px; height: 160px; border: 1px solid rgba(50,230,237,.16); border-radius: 48% 52% 62% 38%; right: -30px; top: -46px; transform: rotate(-18deg); }
.orbit::before, .orbit::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(50,230,237,.11); border-radius: 52% 48% 38% 62%; }
.orbit::after { inset: 43px; background: rgba(50,230,237,.08); }
.orbit span { position: absolute; top: 35px; left: 2px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.rhythm-card p { margin: 0 0 6px; color: rgba(255,255,255,.42); font-size: 10px; }
.rhythm-card strong { font-family: var(--mono); font-size: 16px; }
.rhythm-card small { margin-top: 7px; color: rgba(255,255,255,.36); font-size: 10px; }
.task-card { grid-column: 1 / -1; }
.task-card ul { list-style: none; margin: 15px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.task-card li { min-height: 50px; display: flex; align-items: center; gap: 9px; padding: 9px; border-radius: 10px; background: rgba(255,255,255,.03); color: rgba(255,255,255,.58); font-size: 9px; }
.check-box { flex: 0 0 18px; height: 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 5px; color: transparent; }
.check-box.is-done { color: var(--navy-950); border-color: var(--cyan); background: var(--cyan); font-size: 10px; font-weight: 900; }
.float-tag { position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(50,230,237,.18); border-radius: 12px; background: rgba(8,25,43,.9); box-shadow: 0 12px 32px rgba(0,0,0,.25); color: rgba(255,255,255,.75); font-size: 10px; backdrop-filter: blur(12px); }
.float-tag span { color: var(--cyan); font-size: 15px; }
.float-tag-one { left: -34px; top: 126px; }
.float-tag-two { right: -24px; bottom: 90px; }
.capability-strip { margin-top: 90px; min-height: 80px; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.58); font-size: 12px; }
.capability-strip > div { display: flex; justify-content: center; align-items: center; gap: 10px; border-left: 1px solid rgba(255,255,255,.08); }
.capability-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.strip-label { color: rgba(255,255,255,.28); font-family: var(--mono); font-size: 9px; letter-spacing: .18em; }

.section { padding: 130px 0; }
.services { position: relative; background: var(--mist); }
.section-heading { margin-bottom: 64px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 80px; align-items: end; }
.section-heading h2, .about h2, .contact-card h2 { margin: 0; font-family: var(--mono); font-size: clamp(34px, 4vw, 55px); line-height: 1.28; letter-spacing: -.065em; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.service-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { min-height: 410px; padding: 32px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 18px 32px 18px 32px; background: rgba(255,255,255,.65); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(11,199,209,.3); }
.service-feature { grid-row: span 2; min-height: 840px; display: flex; flex-direction: column; justify-content: space-between; background: var(--navy-900); color: var(--white); border: 0; }
.service-feature::after { content: ""; position: absolute; width: 300px; height: 300px; left: -100px; bottom: -120px; background: var(--cyan); border-radius: 50%; filter: blur(100px); opacity: .12; }
.card-index { font-family: var(--mono); color: #83909a; font-size: 11px; }
.service-feature .card-index { color: rgba(255,255,255,.35); }
.feature-visual { width: 390px; max-width: 90%; aspect-ratio: 1; margin: 20px auto; position: relative; display: grid; place-items: center; }
.radar-grid { position: absolute; inset: 0; border-radius: 50%; opacity: .38; background-image: linear-gradient(rgba(50,230,237,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(50,230,237,.08) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(circle, black, transparent 70%); }
.radar-ring { position: absolute; border: 1px solid rgba(50,230,237,.16); border-radius: 50%; }
.ring-one { inset: 13%; }
.ring-two { inset: 28%; border-style: dashed; }
.radar-ring::before, .radar-ring::after { content: ""; position: absolute; background: rgba(50,230,237,.1); }
.radar-ring::before { width: 1px; height: 120%; left: 50%; top: -10%; }
.radar-ring::after { height: 1px; width: 120%; left: -10%; top: 50%; }
.radar-core { position: relative; z-index: 2; width: 88px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(50,230,237,.35); border-radius: 48% 52% 42% 58%; background: rgba(50,230,237,.1); box-shadow: 0 0 60px rgba(50,230,237,.15); color: var(--cyan); font-family: var(--mono); font-size: 24px; }
.radar-node { position: absolute; width: 9px; height: 9px; border: 2px solid var(--navy-900); border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.node-one { left: 15%; top: 34%; }.node-two { right: 22%; top: 18%; }.node-three { right: 11%; bottom: 30%; }
.service-content { position: relative; z-index: 2; }
.service-content .micro-label { color: var(--cyan); }
.service-card h3 { margin: 0 0 16px; font-family: var(--mono); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.45; letter-spacing: -.055em; }
.service-card p:not(.micro-label) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.service-feature p:not(.micro-label) { max-width: 520px; color: rgba(255,255,255,.55); }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 24px 0 0; }
.tag-list li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 99px; color: rgba(255,255,255,.5); font-size: 10px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; }
.line-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #70808a; transition: transform .25s ease, background .25s ease; }
.service-card:hover .line-icon { transform: rotate(45deg); background: var(--cyan); color: var(--navy-950); }
.icon-box { width: 58px; height: 58px; display: grid; place-items: center; margin: 54px 0 28px; border-radius: 18px 10px 18px 10px; background: rgba(11,199,209,.1); color: #0b9199; }
.icon-box svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-wide { grid-column: 1 / -1; min-height: 390px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.service-wide .card-topline { margin-bottom: 40px; }
.data-visual { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #f8fbfc; box-shadow: 0 20px 50px rgba(13,37,54,.08); }
.data-toolbar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid var(--line); }
.data-toolbar i { width: 6px; height: 6px; border-radius: 50%; background: #cad3d7; }
.data-toolbar span { width: 90px; height: 6px; margin-left: 8px; border-radius: 9px; background: #e7edef; }
.data-chart { height: 180px; position: relative; overflow: hidden; }
.data-chart svg { position: absolute; inset: 24px 0 0; width: 100%; height: calc(100% - 24px); }
.data-chart .area { fill: rgba(50,230,237,.14); }
.data-chart .stroke { fill: none; stroke: #09bfc9; stroke-width: 3; vector-effect: non-scaling-stroke; }
.grid-line { position: absolute; left: 0; right: 0; height: 1px; background: #ebf0f2; }
.line-a { top: 25%; }.line-b { top: 50%; }.line-c { top: 75%; }
.chart-pin { position: absolute; right: 24%; top: 31%; width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; background: var(--cyan-deep); box-shadow: 0 0 0 5px rgba(50,230,237,.16); }
.data-legend { display: flex; justify-content: space-between; padding: 12px 15px; border-top: 1px solid var(--line); color: #7d8992; font-size: 9px; }
.data-legend span { display: flex; align-items: center; gap: 6px; }
.data-legend i { width: 8px; height: 3px; background: var(--cyan-deep); }

.solutions { color: var(--white); background: var(--navy-900); position: relative; overflow: hidden; }
.solutions::before { content: ""; position: absolute; width: 650px; height: 650px; border: 1px solid rgba(50,230,237,.06); border-radius: 50%; left: -350px; top: 50px; box-shadow: 0 0 0 70px rgba(50,230,237,.015), 0 0 0 140px rgba(50,230,237,.012); }
.section-heading.light > p { color: rgba(255,255,255,.48); }
.stage-tabs { position: relative; }
.tab-list { display: flex; padding: 5px; width: fit-content; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.035); }
.tab-list button { min-width: 110px; padding: 10px 18px; border: 0; border-radius: 10px; background: transparent; color: rgba(255,255,255,.48); cursor: pointer; font-size: 13px; transition: color .2s ease, background .2s ease; }
.tab-list button[aria-selected="true"] { color: var(--navy-950); background: var(--cyan); font-weight: 700; }
.stage-panel { min-height: 480px; padding: 58px 60px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px 40px 18px 40px; background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; }
.stage-panel[hidden] { display: none; }
.stage-number { display: inline-block; margin-bottom: 18px; color: var(--cyan); font-family: var(--mono); font-size: 10px; letter-spacing: .15em; }
.stage-copy h3 { margin: 0 0 18px; font-family: var(--mono); font-size: clamp(28px, 3vw, 39px); line-height: 1.4; letter-spacing: -.055em; }
.stage-copy > p { max-width: 520px; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.9; }
.stage-copy ul { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 11px; }
.stage-copy li { color: rgba(255,255,255,.7); font-size: 12px; }
.stage-copy li::before { content: "↗"; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 9px; border: 1px solid rgba(50,230,237,.25); border-radius: 5px; color: var(--cyan); font-size: 9px; }
.stage-map { height: 330px; position: relative; }
.stage-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(50,230,237,.17); stroke-width: 1; stroke-dasharray: 5 5; }
.map-center { position: absolute; z-index: 2; left: 50%; top: 50%; width: 116px; aspect-ratio: 1; transform: translate(-50%,-50%); display: grid; place-content: center; text-align: center; border: 1px solid rgba(50,230,237,.33); border-radius: 46% 54% 42% 58%; background: rgba(50,230,237,.08); box-shadow: 0 0 60px rgba(50,230,237,.07); }
.map-center span { color: rgba(255,255,255,.37); font-size: 9px; }.map-center strong { color: var(--cyan); font-family: var(--mono); font-size: 20px; }
.map-item { position: absolute; z-index: 2; min-width: 92px; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #0c2137; color: rgba(255,255,255,.72); font-size: 11px; box-shadow: 0 12px 26px rgba(0,0,0,.15); }
.map-item i { display: block; margin-bottom: 4px; color: var(--cyan); font-style: normal; font-size: 8px; }.map-one { left: 0; top: 32px; }.map-two { right: 0; top: 58px; }.map-three { right: 11%; bottom: 5px; }
.stage-map-growth { display: grid; place-items: center; }
.growth-ring { position: absolute; border: 1px solid rgba(50,230,237,.13); border-radius: 50%; }
.growth-ring.ring-a { width: 105px; height: 105px; }.growth-ring.ring-b { width: 200px; height: 200px; border-style: dashed; }.growth-ring.ring-c { width: 295px; height: 295px; }
.growth-core { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--cyan); font-family: var(--mono); font-weight: 800; box-shadow: 0 0 55px rgba(50,230,237,.25); }
.growth-dot { position: absolute; width: 12px; height: 12px; border: 3px solid var(--navy-800); border-radius: 50%; background: var(--cyan); }.dot-a { left: 17%; top: 25%; }.dot-b { right: 10%; top: 51%; }.dot-c { left: 32%; bottom: 5%; }
.optimize-map { padding: 30px 0; display: grid; align-content: center; gap: 14px; }
.opt-row { display: grid; grid-template-columns: 70px 1fr 42px; align-items: center; gap: 14px; color: rgba(255,255,255,.65); font-size: 11px; }
.opt-row i { height: 1px; position: relative; background: linear-gradient(to right, rgba(50,230,237,.15), var(--cyan)); }.opt-row i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.opt-row b { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: var(--cyan); font-family: var(--mono); font-size: 9px; }

.process { background: #f7f9fa; }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 70px 80px 1fr; gap: 28px; align-items: center; min-height: 170px; padding: 26px 12px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.process-item:hover { padding-inline: 28px; background: var(--white); }
.process-num { color: #8a969f; font-family: var(--mono); font-size: 11px; }
.process-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 20px 12px 20px 12px; color: #128d94; transition: background .25s ease, color .25s ease; }
.process-item:hover .process-icon { color: var(--navy-950); background: var(--cyan); }
.process-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.process-item > div:last-child { display: grid; grid-template-columns: .55fr 1fr; gap: 70px; align-items: center; }
.process-item h3 { margin: 0; font-family: var(--mono); font-size: 21px; letter-spacing: -.04em; }
.process-item p { margin: 0; max-width: 550px; color: var(--muted); font-size: 13px; }

.about { background: var(--mist-2); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.about-lead { max-width: 620px; margin: 30px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 45px; }
.value-row div { min-height: 110px; padding: 19px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.4); }
.value-row strong { display: block; margin-bottom: 9px; color: #087c84; font-family: var(--mono); font-size: 16px; }
.value-row span { color: var(--muted); font-size: 10px; }
.about-panel { min-height: 530px; padding: 46px; position: relative; overflow: hidden; border-radius: 38px 18px 38px 18px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.about-panel::after { content: ""; position: absolute; width: 260px; height: 260px; right: -60px; top: -70px; border: 1px solid rgba(50,230,237,.12); border-radius: 48% 52% 38% 62%; box-shadow: 0 0 0 38px rgba(50,230,237,.025), 0 0 0 75px rgba(50,230,237,.018); transform: rotate(25deg); }
.quote-mark { color: var(--cyan); font-family: Georgia, serif; font-size: 74px; line-height: 1; }
.about-panel blockquote { margin: -8px 0 48px; position: relative; z-index: 2; font-family: var(--mono); font-size: clamp(24px, 2.7vw, 34px); line-height: 1.55; letter-spacing: -.05em; }
.principle-list { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.1); }
.principle-list > div { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.principle-list span { color: var(--cyan); font-family: var(--mono); font-size: 9px; }
.principle-list p { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; }
.principle-list strong { display: block; margin-bottom: 3px; color: rgba(255,255,255,.82); font-size: 12px; }

.contact-section { padding: 20px 0 30px; background: var(--mist-2); }
.contact-card { min-height: 400px; padding: 64px 68px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; border-radius: 22px 52px 22px 52px; color: var(--white); background: linear-gradient(135deg, #0a2037, #061426); }
.contact-card::before { content: ""; position: absolute; inset: 0; opacity: .35; 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: 48px 48px; mask-image: linear-gradient(90deg, transparent 35%, black); }
.contact-copy { position: relative; z-index: 2; }
.contact-copy > p:last-child { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.5); font-size: 13px; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 17px; }
.button-white { min-width: 185px; color: var(--navy-950); background: var(--white); }
.button-white:hover { background: var(--cyan); box-shadow: 0 14px 38px rgba(50,230,237,.15); }
.text-link { color: rgba(255,255,255,.55); font-size: 11px; }
.text-link span { margin-left: 8px; color: var(--cyan); }
.contact-orb { position: absolute; width: 360px; height: 360px; right: 9%; top: 50%; transform: translateY(-50%); border: 1px solid rgba(50,230,237,.1); border-radius: 56% 44% 51% 49%; }
.contact-orb::before, .contact-orb::after { content: ""; position: absolute; border: 1px solid rgba(50,230,237,.07); border-radius: inherit; }.contact-orb::before { inset: 35px; transform: rotate(20deg); }.contact-orb::after { inset: 80px; transform: rotate(-20deg); background: rgba(50,230,237,.025); }
.contact-orb span { position: absolute; left: 28px; top: 80px; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }.contact-orb i { position: absolute; right: 15px; bottom: 105px; width: 5px; height: 5px; border-radius: 50%; background: rgba(50,230,237,.7); }
.bottom-nav { min-height: 125px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: #61707a; font-size: 11px; }
.bottom-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 650; }
.bottom-brand span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(12,25,40,.16); border-radius: 10px 7px 10px 7px; color: #087c84; font-family: var(--mono); font-size: 9px; }
.bottom-nav > div { display: flex; gap: 24px; }.bottom-nav > div a { transition: color .2s ease; }.bottom-nav > div a:hover { color: #087c84; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.reveal-delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .hero { padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-board { width: min(650px, 94%); margin-inline: auto; }
  .capability-strip { margin-top: 75px; }
  .service-feature { min-height: 760px; }
  .service-wide { gap: 30px; }
  .stage-panel { grid-template-columns: .9fr 1.1fr; padding: 46px; }
  .about-grid { gap: 40px; }
  .value-row { grid-template-columns: 1fr; }
  .value-row div { min-height: auto; }
}

@media (max-width: 820px) {
  .page-shell, .nav-shell { width: min(100% - 32px, 680px); }
  .site-header { padding: 12px 0; }
  .brand-name { font-size: 12px; }
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; padding: 110px 24px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(4,13,25,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a { width: min(100%, 560px); margin-inline: auto; padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--mono); font-size: 18px; }
  .site-nav .nav-cta { margin-top: 24px; justify-content: center; border: 1px solid rgba(50,230,237,.35); }
  .hero { min-height: auto; padding-top: 136px; }
  .hero h1 { font-size: clamp(39px, 9vw, 57px); }
  .hero-grid { gap: 60px; }
  .hero-board { width: 100%; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
  .capability-strip .strip-label { display: none; }
  .capability-strip > div { min-height: 45px; border-left: 0; }
  .section { padding: 96px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 48px; }
  .section-heading > p { max-width: 590px; }
  .service-bento { grid-template-columns: 1fr; }
  .service-feature { grid-row: auto; min-height: 700px; }
  .service-wide { grid-column: auto; grid-template-columns: 1fr; }
  .stage-panel { grid-template-columns: 1fr; gap: 30px; }
  .stage-map { height: 310px; }
  .process-item > div:last-child { grid-template-columns: 1fr; gap: 8px; }
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .value-row { grid-template-columns: repeat(3, 1fr); }
  .contact-card { grid-template-columns: 1fr; gap: 40px; }
  .contact-actions { align-items: flex-start; }
}

@media (max-width: 560px) {
  .page-shell, .nav-shell { width: calc(100% - 28px); }
  .brand-mark { width: 40px; }
  .brand-name { max-width: 205px; overflow: hidden; text-overflow: ellipsis; }
  .hero { padding: 122px 0 24px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(35px, 10.5vw, 48px); line-height: 1.25; }
  .hero-lead { font-size: 15px; line-height: 1.85; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-points { justify-content: space-between; gap: 8px; font-size: 10px; }
  .hero-board { padding: 16px; min-height: auto; border-radius: 28px 15px 28px 15px; }
  .board-top { padding-bottom: 16px; }.board-top h2 { font-size: 15px; }
  .board-grid { grid-template-columns: 1fr; }
  .metric-main, .rhythm-card { min-height: 190px; }
  .task-card { grid-column: auto; }
  .task-card ul { grid-template-columns: 1fr; }
  .float-tag { display: none; }
  .capability-strip { margin-top: 60px; font-size: 11px; }
  .section { padding: 78px 0; }
  .section-heading h2, .about h2, .contact-card h2 { font-size: clamp(30px, 9.3vw, 41px); }
  .service-card { min-height: 385px; padding: 24px; }
  .service-feature { min-height: 650px; }
  .feature-visual { margin: 10px auto; max-width: 100%; }
  .service-card h3 { font-size: 24px; }
  .service-wide { gap: 38px; }
  .data-chart { height: 140px; }
  .tab-list { width: 100%; }
  .tab-list button { flex: 1; min-width: 0; padding-inline: 8px; }
  .stage-panel { min-height: 0; padding: 31px 22px; border-radius: 16px 30px 16px 30px; }
  .stage-copy h3 { font-size: 26px; }
  .stage-map { height: 270px; transform: scale(.92); }
  .map-item { min-width: 76px; padding: 9px; }
  .process-item { grid-template-columns: 38px 1fr; gap: 15px; padding: 24px 4px; }
  .process-icon { width: 54px; height: 54px; grid-column: 2; grid-row: 1; }
  .process-item > div:last-child { grid-column: 2; grid-row: 2; }
  .process-item:hover { padding-inline: 4px; }
  .value-row { grid-template-columns: 1fr; }
  .about-panel { min-height: 500px; padding: 31px 25px; }
  .contact-section { padding-top: 0; }
  .contact-card { min-height: 520px; padding: 43px 24px; border-radius: 18px 34px 18px 34px; }
  .contact-actions { width: 100%; }
  .contact-orb { right: -180px; }
  .bottom-nav { min-height: 170px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .bottom-nav > div { flex-wrap: wrap; gap: 14px 22px; }
}

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