
.cap-bar__fill.w-96 { width: 96%; }
.cap-bar__fill.w-88 { width: 88%; }
.cap-bar__fill.w-92 { width: 92%; }
.cap-bar__fill.w-90 { width: 90%; }
.cap-bar__fill.w-85 { width: 85%; }

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

:root {
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --bg: #ffffff;
  --bg-off: #f7f8fc;
  --ink: #07080f;
  --ink-mid: #2a2d3d;
  --ink-muted: #6b6f85;
  --ink-faint: #a0a3b1;
  --border: #e2e4ee;
  --border-mid: #c8cbdb;
  --blue: #1a56f0;
  --violet: #6c3fcf;
  --magenta: #c026a0;
  --teal: #0891b2;
  --emerald: #059669;
  --orange: #ea580c;
  --accent-line: rgba(26,86,240,0.18);
}

.reveal { opacity: 1; transform: none; }
.js-loaded .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s cubic-bezier(.22,.68,0,1.1), transform 0.65s cubic-bezier(.22,.68,0,1.1); }
.js-loaded .reveal.in { opacity: 1; transform: translateY(0); }

.mono-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--blue); text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.mono-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--blue); flex-shrink: 0; }

.section-heading { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.06; color: var(--ink); margin-bottom: 1rem; }
.section-heading .hl { background: linear-gradient(120deg, var(--blue) 0%, var(--violet) 55%, var(--magenta) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; max-width: 52ch; }
.net-section-sub { margin-bottom: 3rem; }
.h-rule { width: 100%; height: 1px; background: var(--border); border: none; margin: 0; }

.hero { position: relative; min-height: 88vh !important; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 9rem 5vw 6rem; overflow: hidden; text-align: center; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 60% at 15% 50%, rgba(8,145,178,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 55% 65% at 85% 30%, rgba(108,63,207,0.24) 0%, transparent 65%),
      radial-gradient(ellipse 45% 50% at 55% 95%, rgba(5,150,105,0.12) 0%, transparent 60%),
      linear-gradient(160deg, #060d18 0%, #090e20 40%, #0c0d22 70%, #070a16 100%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(8,145,178,0.14), transparent 70%); top: -150px; left: -100px; animation: net-orb-float 14s ease-in-out infinite; }
.orb-2 { width: 700px; height: 500px; background: radial-gradient(circle, rgba(108,63,207,0.18), transparent 70%); top: -80px; right: -150px; animation: net-orb-float 17s ease-in-out infinite reverse; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(5,150,105,0.12), transparent 70%); bottom: -100px; left: 45%; animation: net-orb-float 11s ease-in-out infinite 3s; }
@keyframes net-orb-float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(25px,-20px) scale(1.04); } 66% { transform: translate(-18px,14px) scale(0.97); } }

.hero__canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.45; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, black 20%, transparent 100%); }

.hero__lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__lines::before, .hero__lines::after { content: ''; position: absolute; width: 1px; height: 220px; background: linear-gradient(to bottom, transparent, rgba(8,145,178,0.5), transparent); }
.hero__lines::before { left: 18%; top: 15%; animation: net-line-pulse 5s ease-in-out infinite; }
.hero__lines::after { right: 20%; top: 25%; animation: net-line-pulse 5s ease-in-out infinite 2.5s; }
@keyframes net-line-pulse { 0%,100% { opacity: 0.25; transform: scaleY(1); } 50% { opacity: 0.8; transform: scaleY(1.4); } }

.hero__tokens { position: absolute; left: 2vw; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.45rem; z-index: 1; pointer-events: none; }
.hero__token { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.08em; color: rgba(8,145,178,0.5); padding: 0.15rem 0.5rem; border: 1px solid rgba(8,145,178,0.15); border-radius: 2px; background: rgba(8,145,178,0.05); animation: net-token-fade 4s ease-in-out infinite; white-space: nowrap; }
.hero__token:nth-child(1) { animation-delay: 0s; }
.hero__token:nth-child(2) { animation-delay: 0.4s; color: rgba(108,63,207,0.5); border-color: rgba(108,63,207,0.15); background: rgba(108,63,207,0.05); }
.hero__token:nth-child(3) { animation-delay: 0.8s; }
.hero__token:nth-child(4) { animation-delay: 1.2s; color: rgba(5,150,105,0.5); border-color: rgba(5,150,105,0.15); background: rgba(5,150,105,0.05); }
.hero__token:nth-child(5) { animation-delay: 1.6s; color: rgba(108,63,207,0.5); border-color: rgba(108,63,207,0.15); background: rgba(108,63,207,0.05); }
.hero__token:nth-child(6) { animation-delay: 2s; }
.hero__token:nth-child(7) { animation-delay: 2.4s; color: rgba(5,150,105,0.5); border-color: rgba(5,150,105,0.15); background: rgba(5,150,105,0.05); }
@keyframes net-token-fade { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero__metrics { position: absolute; right: 2vw; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.6rem; z-index: 1; pointer-events: none; align-items: flex-end; }
.hero__metric { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.07em; color: rgba(255,255,255,0.25); display: flex; align-items: center; gap: 0.5rem; animation: net-metric-pulse 5s ease-in-out infinite; white-space: nowrap; }
.hero__metric-val { color: rgba(5,150,105,0.7); font-size: 0.72rem; }
.hero__metric:nth-child(2) { animation-delay: 0.8s; }
.hero__metric:nth-child(3) { animation-delay: 1.6s; }
.hero__metric:nth-child(4) { animation-delay: 2.4s; }
.hero__metric:nth-child(5) { animation-delay: 3.2s; }
@keyframes net-metric-pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; max-width: 860px; }
.hero__icon { display: block; margin-bottom: 0.25rem; }
.hero__icon i { font-size: 2.5rem; color: rgba(255,255,255,0.6); }
@media (max-width: 767px) {
  .hero__icon i { font-size: 2rem; }
}
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); padding: 0.35rem 1rem; border-radius: 100px; background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); }
.hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--teal)); animation: net-eyebrow-blink 2s ease-in-out infinite; }
@keyframes net-eyebrow-blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero__title { font-family: var(--font-heading, 'Oswald', sans-serif); font-size: var(--h1-size, clamp(2.4rem, 5vw, 4.2rem)); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.06; color: #fff; }
.hero__title .g { background: linear-gradient(135deg, #93c5fd 0%, #a78bfa 50%, #67e8f9 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__sub { font-family: var(--font-body); font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 56ch; line-height: 1.8; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.proto-badge { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.09); padding: 0.22rem 0.65rem; border-radius: 2px; background: rgba(255,255,255,0.03); transition: color 0.2s, border-color 0.2s; }
.proto-badge:hover { color: rgba(147,197,253,0.85); border-color: rgba(26,86,240,0.35); }

.btn-grad, .btn-outline-dark { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; padding: 0.85rem 2rem; border-radius: 6px; transition: transform 0.15s; }
.btn-grad { color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); position: relative; overflow: hidden; }
.btn-grad::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--violet), var(--blue)); opacity: 0; transition: opacity 0.3s; }
.btn-grad span { position: relative; z-index: 1; }
.btn-grad:hover::before { opacity: 1; }
.btn-grad:hover { transform: translateY(-2px); }
.btn-outline-dark { color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.18); transition: border-color 0.2s, color 0.2s, transform 0.15s; }
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.38); color: #fff; transform: translateY(-2px); }

.hero__breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.hero__breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.hero__breadcrumb a:hover { color: rgba(255,255,255,0.65); }
.bc-sep { opacity: 0.3; }
.bc-cur { color: rgba(255,255,255,0.65); font-weight: 500; }
.hero__fade { position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
@keyframes net-fiu { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.stat-item { padding: 2rem; text-align: center; border-right: 1px solid var(--border); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-item::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 36px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.stat-num { font-size: 2.4rem; font-weight: 700; line-height: 1; margin-bottom: 0.3rem; color: var(--ink); }
.stat-num sup { font-size: 1.1rem; background: linear-gradient(135deg, var(--blue), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-family: var(--font-body); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }

.section-row { display: grid; grid-template-columns: 88px 1fr; min-height: 0; }
.section-gutter { border-right: 1px solid var(--border); padding: 4.5rem 0; display: flex; flex-direction: column; align-items: center; }
.section-num { font-family: var(--font-mono); font-size: 0.58rem; color: var(--ink-faint); letter-spacing: 0.14em; writing-mode: vertical-lr; transform: rotate(180deg); }
.section-body { padding: 4.5rem 5vw 4.5rem 3.5rem; }
.section-row.bg-off { background: var(--bg-off); }
.section-row.bg-off .section-gutter { background: var(--bg-off); }

.overview-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start; }
.overview-text p { font-size: 0.93rem; color: var(--ink-mid); line-height: 1.95; margin-bottom: 1.2rem; }
.overview-text p strong { color: var(--ink); font-weight: 500; }
.spec-list { margin-top: 2.2rem; }
.spec-item { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.2rem; padding: 1.4rem 0; border-top: 1px solid var(--border); transition: border-color 0.2s; }
.spec-item:last-child { border-bottom: 1px solid var(--border); }
.spec-item:hover { border-color: var(--accent-line); }
.spec-item__id { font-family: var(--font-mono); font-size: 0.6rem; color: var(--blue); letter-spacing: 0.1em; padding-top: 0.15rem; }
.spec-item h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 0.3rem; }
.spec-item p { font-size: 0.81rem; color: var(--ink-muted); line-height: 1.6; }

.topo-visual { display: flex; flex-direction: column; gap: 0.75rem; }
.ai-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--bg); }
.ai-card__header { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); background: var(--bg-off); }
.ai-card__title { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }
.ai-card__status { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.56rem; color: var(--emerald); letter-spacing: 0.06em; }
.ai-card__status.warn { color: var(--orange); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); animation: net-pulse-dot 2s ease-in-out infinite; }
.status-dot.warn { background: var(--orange); animation: net-pulse-dot-warn 2s ease-in-out infinite; }
@keyframes net-pulse-dot { 0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(5,150,105,0.4); } 50% { opacity:0.6; box-shadow: 0 0 0 4px rgba(5,150,105,0); } }
@keyframes net-pulse-dot-warn { 0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(234,88,12,0.4); } 50% { opacity:0.6; box-shadow: 0 0 0 4px rgba(234,88,12,0); } }
.ai-card__body { padding: 1.1rem; }
.ai-card__body--no-pad { padding: 0; }

.topo-layers { display: flex; flex-direction: column; gap: 0; }
.topo-layer { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); position: relative; }
.topo-layer:last-child { border-bottom: none; }
.topo-icon { width: 34px; height: 34px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; border: 1px solid var(--border); background: var(--bg-off) !important; color: var(--ink-mid); }
.topo-icon.edge { color: var(--blue) !important; }
.topo-icon.core { color: var(--violet) !important; }
.topo-icon.dc { color: var(--teal) !important; }
.topo-icon.cloud { color: var(--emerald) !important; }
.topo-icon.sec { color: var(--magenta) !important; }
.topo-label { flex: 1; }
.topo-label__name { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 0.15rem; }
.topo-label__desc { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.06em; color: var(--ink-muted); }
.topo-badge { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.06em; padding: 0.2rem 0.55rem; border-radius: 3px; }
.topo-badge.live { background: rgba(5,150,105,0.08); color: var(--emerald); border: 1px solid rgba(5,150,105,0.2); }
.topo-badge.managed { background: rgba(26,86,240,0.08); color: var(--blue); border: 1px solid rgba(26,86,240,0.2); }
.topo-badge.redundant { background: rgba(8,145,178,0.08); color: var(--teal); border: 1px solid rgba(8,145,178,0.2); }

.net-uptime-wrap { margin-top: 1rem; }
.net-uptime-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.net-uptime-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.08em; color: var(--ink-faint); text-transform: uppercase; }
.net-uptime-pct { font-family: var(--font-mono); font-size: 0.6rem; color: var(--emerald); }
.uptime-bar { background: rgba(0,0,0,0.03); border-radius: 2px; height: 5px; margin-top: 0.8rem; overflow: hidden; }
.uptime-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--emerald), var(--teal)); animation: net-uptime-anim 2s ease-out forwards; }
.net-uptime-fill { width: 99.997%; }
@keyframes net-uptime-anim { from { width: 0; } }

.net-bw-wrap { margin-top: 1rem; }
.net-bw-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.08em; color: var(--ink-faint); text-transform: uppercase; margin-bottom: 0.5rem; }
.bw-chart { margin-top: 0.8rem; display: flex; align-items: flex-end; gap: 2px; height: 40px; }
.bw-bar { flex: 1; background: linear-gradient(to top, rgba(26,86,240,0.35), rgba(8,145,178,0.25)); border-radius: 1px 1px 0 0; animation: net-bw-rise 0.8s ease-out forwards; }
.bw-bar--55 { height: 55%; animation-delay: 0.05s; }
.bw-bar--62 { height: 62%; animation-delay: 0.15s; }
.bw-bar--68 { height: 68%; animation-delay: 0.4s; }
.bw-bar--70 { height: 70%; animation-delay: 0.1s; }
.bw-bar--74 { height: 74%; animation-delay: 0.25s; }
.bw-bar--76 { height: 76%; animation-delay: 0.45s; }
.bw-bar--78 { height: 78%; animation-delay: 0.6s; }
.bw-bar--80 { height: 80%; animation-delay: 0.2s; }
.bw-bar--83 { height: 83%; animation-delay: 0.35s; }
.bw-bar--85 { height: 85%; animation-delay: 0.5s; }
.bw-bar--88 { height: 88%; animation-delay: 0.65s; }
.bw-bar--90 { height: 90%; animation-delay: 0.3s; }
.bw-bar--92 { height: 92%; animation-delay: 0.55s; }
.bw-bar--95 { height: 95%; animation-delay: 0.7s; }
@keyframes net-bw-rise { from { height: 0 !important; } }

.throughput-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }
.throughput-table th { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 400; padding: 0.5rem 0.7rem; border-bottom: 1px solid var(--border); text-align: left; }
.throughput-table td { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--ink-mid); padding: 0.5rem 0.7rem; border-bottom: 1px solid rgba(226,228,238,0.5); }
.throughput-table tr:last-child td { border-bottom: none; }
.td-val { color: var(--blue); font-weight: 600; }
.td-ok { color: var(--emerald); }
.td-warn { color: var(--orange); }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.service-card { padding: 1.9rem 1.6rem; border: 1px solid var(--border); border-radius: 4px; background: var(--bg); transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.service-card:hover { border-color: var(--border-mid); box-shadow: 0 10px 28px rgba(10,19,36,0.08); transform: translateY(-2px); }
.service-icon { --service-icon-accent: var(--blue); width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; background: var(--bg-off) !important; border: 1px solid var(--border); color: var(--service-icon-accent) !important; transition: color 0.2s, border-color 0.2s; }
.service-card:hover .service-icon { background: rgba(26,86,240,0.06); border-color: rgba(26,86,240,0.25); color: var(--service-icon-accent); }
.service-icon.blue { --service-icon-accent: var(--blue); }
.service-icon.violet { --service-icon-accent: var(--violet); }
.service-icon.teal { --service-icon-accent: var(--teal); }
.service-icon.emerald { --service-icon-accent: var(--emerald); }
.service-icon.magenta { --service-icon-accent: var(--magenta); }
.service-icon.orange { --service-icon-accent: var(--orange); }
.service-card h3 { font-size: 0.92rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.55rem; line-height: 1.25; }
.service-card p { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.65; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.s-tag { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.07em; color: var(--ink-muted); border: 1px solid var(--border-mid); background: var(--bg-off); padding: 0.18rem 0.52rem; border-radius: 2px; }

.capabilities-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.cap-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.cap-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--border); cursor: default; transition: background 0.2s; }
.cap-item:last-child { border-bottom: 1px solid var(--border); }
.cap-item.active { background: var(--bg-off); margin: 0 -2rem; padding: 1.5rem 2rem; border-color: transparent; }
.cap-num { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; color: var(--ink-faint); padding-top: 0.2rem; width: 2.5rem; flex-shrink: 0; }
.cap-item.active .cap-num { color: var(--blue); }
.cap-content h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.5rem; }
.cap-content p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.7; }
.cap-bar { height: 2px; margin-top: 0.9rem; background: var(--border); border-radius: 2px; overflow: hidden; }
.cap-bar__fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); }

.net-diagram-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--bg); position: sticky; top: 100px; }
.net-diagram-card__header { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); background: var(--bg-off); }
.net-diagram-card__title { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }
.net-diagram-card__body { padding: 1.5rem; }
.net-diagram { width: 100%; height: 260px; position: relative; }
.net-diagram canvas { width: 100%; height: 100%; display: block; }

.net-cert-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.net-cert-badge { border: 1px solid var(--border); border-radius: 3px; padding: 0.5rem 0.8rem; display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 120px; }
.net-cert-icon { font-size: 1rem; }
.net-cert-icon--blue { color: var(--blue); }
.net-cert-icon--violet { color: var(--violet); }
.net-cert-icon--magenta { color: var(--magenta); }
.net-cert-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.net-cert-name { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--ink); }

.process-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-step {
  padding: 1.7rem 1.45rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.process-step__n { font-size: 2.4rem; font-weight: 700; line-height: 1; color: rgba(26,86,240,0.14); letter-spacing: -0.02em; }
.process-step h4 { font-size: 0.86rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin: 0; }
.process-step p { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.6; margin: 0; }
.process-step__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(26,86,240,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-top: auto;
  align-self: flex-start;
}

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.case-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.case-card:hover { box-shadow: 0 8px 40px rgba(26,86,240,0.1); transform: translateY(-3px); }
.case-card__top { padding: 1.8rem 1.6rem 1.4rem; border-bottom: 1px solid var(--border); }
.case-tag { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.case-tag::before { content: ''; width: 16px; height: 1px; background: var(--blue); flex-shrink: 0; }
.case-card__top h3 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); margin-bottom: 0.7rem; line-height: 1.2; }
.case-card__top p { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.7; }
.case-card__metrics { padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.case-metric { display: flex; justify-content: space-between; align-items: center; }
.case-metric__label { font-family: var(--font-body); font-size: 0.72rem; color: var(--ink-muted); }
.case-metric__val { font-size: 1.1rem; font-weight: 700; }
.val-blue { background: linear-gradient(135deg, var(--blue), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.val-violet { background: linear-gradient(135deg, var(--violet), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.val-teal { background: linear-gradient(135deg, var(--teal), var(--emerald)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.testimonials-bg { background: var(--bg-off); }
.testimonials-header { margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.testimonial-text { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.85; font-style: italic; margin-bottom: 1.6rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }
.testimonial-role { font-family: var(--font-body); font-size: 0.7rem; color: var(--ink-muted); margin-top: 0.1rem; }

@media (max-width: 1024px) {
  .overview-grid, .capabilities-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
}

@media (max-width: 640px) {
.stat-item:nth-child(2) { border-right: none; }
  .section-row { grid-template-columns: 1fr; }
  .section-gutter { display: none; }
  .services-grid, .process-track { grid-template-columns: 1fr; gap: 0.85rem; }
  .hero__tokens, .hero__metrics { display: none; }
}
