:root {
  --ink: #071a35;
  --ink-soft: #24415f;
  --navy: #082451;
  --navy-deep: #061a36;
  --blue: #1457ff;
  --blue-bright: #2388ff;
  --cyan: #21c7d9;
  --lime: #b9ef53;
  --orange: #ff8a32;
  --paper: #f7f4ec;
  --paper-deep: #ede9df;
  --white: #fff;
  --line: rgba(7, 26, 53, .12);
  --shadow: 0 28px 80px rgba(6, 26, 54, .14);
  --display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
  --sans: "HarmonyOS Sans SC", MiSans, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.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; top: -80px; left: 20px; z-index: 1000; padding: 12px 18px; background: var(--ink); color: white; border-radius: 4px; }
.skip-link:focus { top: 16px; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.page-atmosphere { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.page-atmosphere::before { content: ""; position: absolute; inset: 0; opacity: .33; background-image: linear-gradient(rgba(7,26,53,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,26,53,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 65%); }
.orbit { position: absolute; border: 1px solid rgba(20,87,255,.12); border-radius: 50%; }
.orbit-one { width: 620px; height: 620px; top: 76px; right: -290px; }
.orbit-two { width: 420px; height: 420px; top: 176px; right: -190px; }
.grid-glow { position: absolute; width: 760px; height: 760px; top: -210px; right: -160px; background: radial-gradient(circle, rgba(35,136,255,.15), transparent 68%); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,244,236,.88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .25s, box-shadow .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 12px 36px rgba(7,26,53,.06); }
.header-inner { width: min(1240px, calc(100% - 48px)); height: 82px; margin: 0 auto; display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: white; box-shadow: 0 7px 22px rgba(7,26,53,.11); overflow: hidden; }
.brand-mark img { width: 41px; height: 41px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: var(--display); font-size: 18px; letter-spacing: .08em; }
.brand-copy small { margin-top: 6px; color: #65778b; font-size: 9px; letter-spacing: .16em; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a { position: relative; color: #344b65; font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--blue); transition: right .25s; }
.desktop-nav a:hover::after { right: 0; }
.header-action { padding: 11px 17px; border: 1px solid rgba(7,26,53,.2); border-radius: 3px; font-size: 13px; font-weight: 700; transition: .2s; }
.header-action:hover { background: var(--ink); color: white; border-color: var(--ink); }
.menu-button { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s; }
.mobile-nav { display: none; }

.hero { min-height: 720px; padding: 92px 0 96px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 66px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 25px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.eyebrow span { width: 31px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(46px, 4.6vw, 69px); font-weight: 800; line-height: 1.17; letter-spacing: -.045em; }
.hero h1 em { color: var(--blue); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 1px; right: 1px; bottom: -7px; height: 7px; background: linear-gradient(90deg, var(--lime), rgba(185,239,83,0)); transform: skewX(-22deg); z-index: -1; }
.hero-lead { max-width: 630px; margin: 30px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.95; }
.hero-actions { display: flex; gap: 14px; margin-top: 35px; }
.button { min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid transparent; border-radius: 3px; font-size: 14px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 15px 34px rgba(20,87,255,.24); }
.button-primary:hover { background: #0646df; box-shadow: 0 18px 38px rgba(20,87,255,.32); }
.button-ghost { border-color: rgba(7,26,53,.18); background: rgba(255,255,255,.45); }
.trust-strip { display: flex; align-items: center; gap: 12px; margin-top: 36px; color: #5e7185; font-size: 12px; font-weight: 700; }
.trust-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }

.hero-visual { position: relative; padding: 29px 0 0; }
.blueprint-label { position: absolute; top: 0; right: 2px; color: rgba(7,26,53,.28); font: 700 10px/1 var(--sans); letter-spacing: .28em; }
.command-center { position: relative; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: var(--navy-deep); box-shadow: 0 36px 90px rgba(6,26,54,.3); overflow: hidden; transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); transform-origin: left center; }
.command-center::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.08), transparent 25% 72%, rgba(33,199,217,.05)); }
.command-topbar { height: 44px; padding: 0 16px; display: flex; align-items: center; gap: 13px; color: #acc1dd; background: #06162e; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 10px; letter-spacing: .08em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #496078; }
.window-dots i:first-child { background: var(--orange); }
.window-dots i:nth-child(2) { background: var(--lime); }
.online-state { display: flex; align-items: center; gap: 6px; margin-left: auto; color: #9ee9d0; }
.online-state i { width: 6px; height: 6px; border-radius: 50%; background: #45e2aa; box-shadow: 0 0 10px #45e2aa; }
.command-layout { min-height: 440px; display: grid; grid-template-columns: 68px 1fr; }
.command-sidebar { padding: 15px 9px; display: flex; flex-direction: column; gap: 8px; background: #071b39; border-right: 1px solid rgba(255,255,255,.07); }
.mini-logo { width: 35px; height: 35px; margin: 0 auto 9px; padding: 3px; background: white; border-radius: 10px; }
.command-sidebar button { padding: 7px 2px; display: flex; flex-direction: column; align-items: center; gap: 4px; color: #7790ad; border: 0; border-radius: 7px; background: transparent; font-size: 8px; }
.command-sidebar button b { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #37516f; border-radius: 6px; font-size: 9px; }
.command-sidebar button.active { color: #c9dbf1; background: rgba(35,136,255,.13); }
.command-sidebar button.active b { color: white; background: var(--blue); border-color: var(--blue); }
.command-content { min-width: 0; padding: 22px 20px 14px; background-image: linear-gradient(rgba(73,110,153,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(73,110,153,.08) 1px, transparent 1px); background-size: 28px 28px; }
.command-heading { display: flex; align-items: center; justify-content: space-between; color: white; }
.command-heading div { display: flex; flex-direction: column; gap: 5px; }
.command-heading small { color: #7994b2; font-size: 8px; letter-spacing: .14em; }
.command-heading strong { font-size: 17px; letter-spacing: .04em; }
.date-chip { padding: 5px 8px; color: #6ee5d2; border: 1px solid rgba(110,229,210,.25); border-radius: 3px; background: rgba(110,229,210,.06); font-size: 8px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 16px; }
.metric-row article { padding: 12px; display: flex; align-items: center; gap: 9px; color: white; border: 1px solid rgba(255,255,255,.07); background: rgba(9,39,79,.86); }
.metric-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 7px; font-size: 10px; font-weight: 800; }
.metric-icon.blue { color: #75a1ff; background: rgba(20,87,255,.18); }
.metric-icon.cyan { color: #55e1e9; background: rgba(33,199,217,.14); }
.metric-icon.lime { color: var(--lime); background: rgba(185,239,83,.12); }
.metric-row article div { display: flex; flex-direction: column; }
.metric-row b { font-family: var(--display); font-size: 21px; line-height: 1; }
.metric-row small { margin-top: 4px; color: #7892af; font-size: 7px; }
.dashboard-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9px; margin-top: 9px; }
.dashboard-grid > article { min-width: 0; padding: 13px; border: 1px solid rgba(255,255,255,.07); background: rgba(7,30,63,.88); }
.panel-title { display: flex; align-items: center; justify-content: space-between; color: #e6effb; font-size: 9px; }
.panel-title span { color: #607d9c; font-size: 7px; }
.radar-body { height: 146px; display: flex; align-items: center; justify-content: space-around; gap: 10px; }
.radar-orbit { position: relative; width: 103px; height: 103px; display: grid; place-items: center; color: white; border: 1px solid rgba(35,136,255,.35); border-radius: 50%; box-shadow: inset 0 0 24px rgba(20,87,255,.08); }
.radar-orbit::before, .radar-orbit::after { content: ""; position: absolute; border: 1px solid rgba(33,199,217,.16); border-radius: 50%; }
.radar-orbit::before { inset: 12px; }
.radar-orbit::after { inset: 27px; background: radial-gradient(circle, rgba(20,87,255,.43), rgba(20,87,255,.07)); }
.radar-orbit b { position: relative; z-index: 2; text-align: center; font-size: 10px; line-height: 1.35; }
.radar-orbit i { position: absolute; width: 7px; height: 7px; border: 2px solid #071e3f; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.radar-orbit i:first-child { top: 12px; left: 22px; }
.radar-orbit i:nth-child(2) { right: 8px; top: 50px; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.radar-orbit i:nth-child(3) { left: 19px; bottom: 10px; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.radar-body ul { min-width: 104px; padding: 0; margin: 0; list-style: none; }
.radar-body li { padding: 7px 0; display: flex; align-items: center; gap: 6px; color: #94a9c1; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 7px; }
.radar-body li em { margin-left: auto; color: white; font-style: normal; }
.dot { width: 5px; height: 5px; border-radius: 50%; }
.dot.blue { background: var(--blue-bright); }.dot.orange { background: var(--orange); }.dot.green { background: var(--lime); }
.flow-list { margin-top: 13px; }
.flow-list > div { padding: 9px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.055); }
.flow-no { width: 24px; height: 24px; display: grid; place-items: center; color: #80a6d2; border: 1px solid rgba(128,166,210,.18); border-radius: 50%; font-size: 6px; font-style: normal; }
.flow-list span { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.flow-list b { color: #d8e6f7; font-size: 8px; }.flow-list small { color: #607c9b; font-size: 6px; }
.flow-list em { padding: 3px 5px; color: #60d9c6; background: rgba(96,217,198,.09); font-size: 6px; font-style: normal; }
.dashboard-footer { padding-top: 12px; display: flex; justify-content: space-around; color: #657f9c; font-size: 6px; }
.dashboard-footer span { display: flex; align-items: center; gap: 5px; }.dashboard-footer i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-bright); }

.platform-band { padding: 105px 0 112px; background: #fffdf7; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-intro { display: grid; grid-template-columns: 55px 1.05fr .95fr; gap: 28px; align-items: end; }
.section-index { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: var(--ink); font: 700 12px/1 var(--sans); }
.section-kicker { margin: 0 0 12px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.band-intro h2, .section-heading h2, .journey-head h2, .security-copy h2, .value-statement h2 { margin: 0; font-family: var(--display); font-size: clamp(32px, 3.6vw, 48px); line-height: 1.28; letter-spacing: -.025em; }
.band-intro > p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.9; }
.portal-grid { margin-top: 57px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portal-card { position: relative; min-height: 420px; padding: 35px 31px; border: 1px solid var(--line); background: var(--paper); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.portal-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.portal-card::before { content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 86px; background: var(--blue); }
.portal-card.government::before { background: var(--orange); }.portal-card.foundation::before { background: var(--cyan); }
.portal-number { position: absolute; top: 19px; right: 25px; color: rgba(7,26,53,.08); font: 800 64px/1 var(--display); }
.portal-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(20,87,255,.16); background: rgba(20,87,255,.06); transform: rotate(45deg); }
.portal-icon span { font-family: var(--display); font-size: 20px; font-weight: 800; transform: rotate(-45deg); }
.government .portal-icon { color: #db6515; border-color: rgba(255,138,50,.2); background: rgba(255,138,50,.08); }
.foundation .portal-icon { color: #008f9d; border-color: rgba(33,199,217,.22); background: rgba(33,199,217,.08); }
.card-kicker { margin: 34px 0 8px; color: #758395; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.portal-card h3 { margin: 0; font-family: var(--display); font-size: 26px; }
.portal-card > p:not(.card-kicker) { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.portal-card ul { padding: 0; margin: 25px 0 0; list-style: none; }
.portal-card li { position: relative; padding: 8px 0 8px 18px; color: #344a60; border-top: 1px dashed rgba(7,26,53,.1); font-size: 13px; }
.portal-card li::before { content: ""; position: absolute; left: 1px; top: 14px; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }

.services-section { padding: 116px 0 126px; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.section-heading > p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.9; }
.service-toolbar { margin-top: 43px; padding-bottom: 14px; display: flex; gap: 8px; border-bottom: 1px solid var(--line); }
.service-toolbar button { padding: 10px 16px; color: #53677c; border: 0; border-radius: 3px; background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }
.service-toolbar button span { margin-left: 5px; opacity: .56; font-size: 10px; }
.service-toolbar button.active { color: white; background: var(--ink); }
.service-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 335px; padding: 27px 26px 23px; border: 1px solid var(--line); background: rgba(255,253,247,.75); overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(20,87,255,.25); box-shadow: 0 25px 55px rgba(7,26,53,.1); }
.service-card.featured { background: var(--navy); color: white; border-color: var(--navy); }
.service-card.featured::after { content: ""; position: absolute; width: 180px; height: 180px; right: -105px; bottom: -105px; border: 26px solid rgba(35,136,255,.25); border-radius: 50%; }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-code { color: #8c9bac; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.featured .service-code { color: #829bbc; }
.audience { padding: 5px 8px; border-radius: 2px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.citizen-tag { color: #1150db; background: rgba(20,87,255,.09); }.featured .citizen-tag { color: #93b3ff; background: rgba(35,136,255,.18); }
.collaboration-tag { color: #bd580f; background: rgba(255,138,50,.13); }
.government-tag { color: #087982; background: rgba(33,199,217,.13); }
.service-symbol { width: 48px; height: 48px; margin-top: 24px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(20,87,255,.2); font: 800 21px/1 var(--display); }
.featured .service-symbol { color: white; border-color: rgba(255,255,255,.2); background: rgba(35,136,255,.16); }
.collaboration-card .service-symbol { color: #cf5b0c; border-color: rgba(255,138,50,.25); }
.government-card .service-symbol { color: #00828e; border-color: rgba(33,199,217,.25); }
.service-card h3 { margin: 20px 0 11px; font-family: var(--display); font-size: 21px; }
.service-card > p { min-height: 72px; margin: 0; color: #53687d; font-size: 13px; line-height: 1.75; }
.featured > p { color: #adc0d8; }
.service-points { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-points span { padding: 5px 7px; color: #62758a; border: 1px solid rgba(7,26,53,.1); background: rgba(255,255,255,.4); font-size: 9px; }
.featured .service-points span { color: #b9c9dd; border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.service-card[hidden] { display: none !important; }

.architecture-section { position: relative; padding: 116px 0 124px; color: white; background: var(--navy-deep); overflow: hidden; }
.architecture-section::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(80,135,194,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(80,135,194,.4) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.architecture-section::after { content: ""; position: absolute; width: 660px; height: 660px; right: -320px; top: 30px; border: 1px solid rgba(33,199,217,.16); border-radius: 50%; box-shadow: 0 0 0 95px rgba(20,87,255,.035), 0 0 0 190px rgba(20,87,255,.025); }
.architecture-section .section-shell { position: relative; z-index: 1; }
.section-heading.light > p { color: #9cb1c9; }.section-heading.light h2 { color: white; }
.architecture-map { margin-top: 55px; padding: 28px; border: 1px solid rgba(255,255,255,.12); background: rgba(4,21,45,.76); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.arch-label { margin: 2px 0 11px; color: #6884a5; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.arch-row { display: grid; gap: 8px; }
.channel-row { grid-template-columns: repeat(5, 1fr); }
.arch-row span { min-height: 44px; display: grid; place-items: center; color: #d8e6f7; border: 1px solid rgba(95,151,215,.19); background: rgba(14,52,94,.65); font-size: 11px; font-weight: 700; }
.connector-lines { height: 28px; padding: 0 9%; display: flex; justify-content: space-between; }
.connector-lines i { width: 1px; height: 100%; background: linear-gradient(to bottom, rgba(35,136,255,.72), rgba(35,136,255,.1)); position: relative; }
.connector-lines i::after { content: ""; position: absolute; bottom: 0; left: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-bright); }
.connector-lines.lower i { background: linear-gradient(to bottom, rgba(33,199,217,.1), rgba(33,199,217,.62)); }
.connector-lines.lower i::after { background: var(--cyan); }
.capability-core { padding: 15px; display: grid; grid-template-columns: 240px 1fr; gap: 16px; border: 1px solid rgba(35,136,255,.4); background: linear-gradient(125deg, rgba(20,87,255,.2), rgba(7,35,73,.75)); box-shadow: inset 0 0 50px rgba(20,87,255,.07); }
.core-brand { padding: 15px; display: flex; align-items: center; gap: 13px; border-right: 1px solid rgba(255,255,255,.1); }
.core-brand img { width: 48px; height: 48px; padding: 3px; border-radius: 11px; background: white; }
.core-brand span { display: flex; flex-direction: column; gap: 6px; }.core-brand small { color: #819cba; font-size: 8px; }.core-brand strong { font-size: 13px; }
.core-capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.core-capabilities span { min-height: 42px; padding: 0 8px; display: flex; align-items: center; gap: 7px; color: #b7c9dd; border: 1px solid rgba(255,255,255,.07); background: rgba(4,24,52,.44); font-size: 9px; }
.core-capabilities b { width: 22px; height: 22px; display: grid; place-items: center; color: #84dfea; border-radius: 50%; background: rgba(33,199,217,.11); font-size: 8px; }
.business-row { grid-template-columns: repeat(11, 1fr); }
.business-row span { min-height: 52px; padding: 5px; font-size: 8px; text-align: center; }
.arch-base { margin-top: 12px; padding: 10px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,.05); }
.arch-base span { padding: 8px; color: #6f89a7; background: rgba(4,20,42,.86); font-size: 8px; text-align: center; }

.journey-section { padding: 116px 0; }
.journey-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.journey-tabs { padding: 4px; display: flex; background: #e8e4db; }
.journey-tabs button { padding: 11px 17px; color: #637184; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.journey-tabs button.active { color: white; background: var(--ink); }
.journey-panel { margin-top: 43px; display: grid; grid-template-columns: .62fr 1.38fr; gap: 0; border: 1px solid var(--line); background: #fffdf8; }
.journey-panel[hidden] { display: none; }
.journey-copy { padding: 42px 38px; color: white; background: var(--blue); }
.journey-panel[data-panel="government"] .journey-copy { background: var(--navy); }
.journey-copy > span { font-size: 10px; font-weight: 800; letter-spacing: .15em; opacity: .7; }
.journey-copy h3 { margin: 19px 0 15px; font-family: var(--display); font-size: 28px; line-height: 1.45; }
.journey-copy p { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.85; }
.journey-steps { margin: 0; padding: 35px 29px; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; }
.journey-steps li { position: relative; padding: 0 10px; text-align: center; }
.journey-steps li:not(:last-child)::after { content: "→"; position: absolute; top: 16px; right: -5px; color: #a5b0bc; font-size: 13px; }
.journey-steps b { width: 38px; height: 38px; margin: 0 auto 17px; display: grid; place-items: center; color: var(--blue); border: 1px solid rgba(20,87,255,.25); border-radius: 50%; font-size: 10px; }
.journey-steps span { display: flex; flex-direction: column; gap: 8px; }.journey-steps strong { font-family: var(--display); font-size: 14px; }.journey-steps small { color: #718094; font-size: 10px; line-height: 1.55; }

.value-section { padding: 116px 0; background: #fffdf7; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.value-statement { position: sticky; top: 125px; align-self: start; }
.value-statement > p:not(.section-kicker) { max-width: 430px; color: var(--ink-soft); font-size: 15px; line-height: 1.9; }
.value-quote { margin-top: 38px; padding: 22px; display: flex; align-items: flex-start; gap: 12px; border-left: 4px solid var(--lime); background: var(--paper); }
.value-quote i { color: var(--blue); font: 800 35px/1 var(--display); }.value-quote span { color: #324a64; font-family: var(--display); font-size: 16px; line-height: 1.7; }
.value-list article { padding: 30px 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; border-top: 1px solid var(--line); }
.value-list article:last-child { border-bottom: 1px solid var(--line); }
.value-list article > span { color: var(--blue); font: 800 28px/1 var(--display); }
.value-list h3 { margin: 0 0 10px; font-family: var(--display); font-size: 23px; }.value-list p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }

.security-section { padding: 116px 0; }
.security-shell { padding: 50px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 55px; color: white; background: var(--ink); box-shadow: var(--shadow); }
.security-copy .section-kicker { color: var(--lime); }.security-copy h2 { font-size: clamp(31px, 3vw, 43px); }
.security-copy > p:not(.section-kicker) { color: #9eb1c7; font-size: 14px; line-height: 1.85; }
.security-copy a { display: inline-flex; gap: 25px; margin-top: 14px; color: var(--lime); font-size: 12px; font-weight: 800; }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.security-grid article { padding: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); }
.security-grid span { color: #627b99; font-size: 9px; font-weight: 800; }.security-grid h3 { margin: 17px 0 8px; font-family: var(--display); font-size: 17px; }.security-grid p { margin: 0; color: #91a7c0; font-size: 11px; line-height: 1.7; }

.closing-section { padding: 0 0 112px; }
.closing-card { position: relative; min-height: 270px; padding: 56px 62px; display: flex; align-items: center; justify-content: space-between; gap: 50px; color: white; background: linear-gradient(115deg, #0b54ed, #0a77dd 58%, #08a7bd); overflow: hidden; }
.closing-pattern { position: absolute; width: 440px; height: 440px; right: -130px; top: -120px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.05), 0 0 0 130px rgba(255,255,255,.03); }
.closing-card > div:not(.closing-pattern) { position: relative; z-index: 1; }
.closing-card p { margin: 0 0 12px; font-size: 11px; font-weight: 800; letter-spacing: .16em; opacity: .75; }
.closing-card h2 { max-width: 650px; margin: 0; font-family: var(--display); font-size: clamp(31px, 3.5vw, 46px); line-height: 1.35; }
.closing-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; flex: 0 0 auto; }
.button-light { color: var(--blue); background: white; box-shadow: 0 15px 36px rgba(0,0,0,.12); }.text-action { font-size: 11px; font-weight: 700; opacity: .8; }

.site-footer { padding: 39px 0; color: #9aabbd; background: #05142c; }
.footer-inner { display: flex; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }.footer-brand img { width: 40px; height: 40px; padding: 3px; border-radius: 10px; background: white; }.footer-brand span { display: flex; flex-direction: column; gap: 5px; }.footer-brand strong { color: white; font-family: var(--display); font-size: 15px; }.footer-brand small { font-size: 8px; letter-spacing: .1em; }
.footer-inner > p { margin: 0 auto; font-size: 11px; letter-spacing: .08em; }.footer-inner > small { font-size: 10px; }
.icp-link { color: #9aabbd; font-size: 10px; white-space: nowrap; transition: color .2s; }
.icp-link:hover { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-grid .reveal:nth-child(3n+2), .portal-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3n), .portal-grid .reveal:nth-child(3) { transition-delay: .16s; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }.desktop-nav a { font-size: 12px; }.header-action { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }.hero-copy { max-width: 790px; }.hero-visual { width: min(760px, 100%); margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid .reveal { transition-delay: 0s !important; }
  .business-row { grid-template-columns: repeat(6, 1fr); }.business-row span:last-child { grid-column: span 2; }
  .capability-core { grid-template-columns: 200px 1fr; }.core-capabilities { grid-template-columns: repeat(2, 1fr); }
  .journey-panel { grid-template-columns: 1fr; }.journey-steps { padding: 34px; }
}

@media (max-width: 780px) {
  .section-shell, .header-inner { width: min(100% - 30px, 1180px); }
  .header-inner { height: 70px; }.desktop-nav, .header-action { display: none; }.menu-button { display: block; }
  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; top: 70px; left: 0; right: 0; padding: 14px 22px 24px; display: flex; flex-direction: column; gap: 0; background: rgba(247,244,236,.98); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(7,26,53,.12); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .28s; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }.mobile-nav a { padding: 14px 3px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .brand-copy strong { font-size: 16px; }.brand-copy small { font-size: 7px; }
  .hero { min-height: 0; padding: 61px 0 76px; gap: 55px; }.hero h1 { font-size: clamp(39px, 11vw, 55px); line-height: 1.24; }.hero-lead { font-size: 15px; }.hero-actions { flex-direction: column; align-items: stretch; }.trust-strip { flex-wrap: wrap; }
  .command-center { transform: none; }.command-layout { grid-template-columns: 48px 1fr; min-height: 390px; }.command-sidebar { padding: 12px 5px; }.command-sidebar button span { display: none; }.mini-logo { width: 30px; height: 30px; }.command-content { padding: 17px 12px 10px; }.metric-row article { padding: 9px 6px; }.metric-icon { display: none; }.metric-row b { font-size: 18px; }.dashboard-grid { grid-template-columns: 1fr; }.service-radar { display: none; }.flow-list > div { padding: 8px 0; }.dashboard-footer { display: none; }
  .platform-band, .services-section, .architecture-section, .journey-section, .value-section, .security-section { padding: 82px 0; }
  .band-intro, .section-heading { grid-template-columns: 1fr; gap: 22px; }.section-index { display: none; }.portal-grid, .service-grid { grid-template-columns: 1fr; }.portal-card { min-height: 0; }
  .service-toolbar { overflow-x: auto; padding-bottom: 12px; }.service-toolbar button { flex: 0 0 auto; }
  .service-card { min-height: 0; }.service-card > p { min-height: 0; }
  .architecture-map { padding: 16px; overflow-x: auto; }.channel-row { min-width: 630px; }.capability-core { min-width: 720px; grid-template-columns: 210px 1fr; }.business-row { min-width: 760px; grid-template-columns: repeat(11, 1fr); }.business-row span:last-child { grid-column: auto; }.arch-base { min-width: 630px; }
  .journey-head { align-items: flex-start; flex-direction: column; }.journey-tabs { width: 100%; }.journey-tabs button { flex: 1; }.journey-panel { margin-top: 25px; }.journey-copy { padding: 32px 26px; }.journey-steps { grid-template-columns: 1fr; gap: 0; padding: 20px 25px; }.journey-steps li { padding: 13px 0; display: flex; align-items: center; gap: 16px; text-align: left; border-bottom: 1px solid var(--line); }.journey-steps li:not(:last-child)::after { content: "↓"; top: auto; right: 8px; bottom: -8px; background: #fffdf8; }.journey-steps b { margin: 0; flex: 0 0 38px; }.journey-steps span { gap: 3px; }
  .value-layout { grid-template-columns: 1fr; gap: 46px; }.value-statement { position: static; }.value-list article { grid-template-columns: 52px 1fr; }
  .security-shell { padding: 34px 24px; grid-template-columns: 1fr; }.security-grid { grid-template-columns: 1fr; }
  .closing-section { padding-bottom: 80px; }.closing-card { padding: 42px 28px; align-items: flex-start; flex-direction: column; }.closing-actions { width: 100%; align-items: stretch; text-align: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }.footer-inner > p { margin: 0; }
}

@media (max-width: 430px) {
  .brand-mark { width: 40px; height: 40px; }.brand-mark img { width: 36px; height: 36px; }.brand-copy strong { font-size: 14px; }
  .hero h1 { font-size: 36px; }.hero-lead { line-height: 1.8; }
  .command-topbar > span { display: none; }.command-heading strong { font-size: 14px; }.metric-row { gap: 5px; }.metric-row article { justify-content: center; text-align: center; }
  .band-intro h2, .section-heading h2, .journey-head h2, .security-copy h2, .value-statement h2 { font-size: 31px; }
  .portal-card, .service-card { padding-left: 23px; padding-right: 23px; }
}

@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; }
}
