:root {
  --navy: #071b2d;
  --navy-2: #0c2d48;
  --blue: #164f78;
  --steel: #647684;
  --silver: #d7dde2;
  --mist: #eef2f4;
  --white: #ffffff;
  --ink: #101820;
  --muted: #5c6872;
  --line: #dfe5e8;
  --green: #88b5a2;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(7, 27, 45, .12);
  --heading-size: clamp(38px, 4.6vw, 58px);
  --title-size: clamp(48px, 6vw, 78px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

.site-header {
  min-height:85px;
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,27,45,.07);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 174px; height: 58px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; color: #344451; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--blue); transition: .2s ease; }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--navy); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; margin: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 94px;
  background:
    linear-gradient(180deg, rgba(238,242,244,.5), rgba(255,255,255,0) 55%),
    radial-gradient(circle at 80% 22%, rgba(22,79,120,.08), transparent 34%);
}
.hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(7,27,45,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,27,45,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 72%); pointer-events:none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 800; color: var(--blue); }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: #a9c6d9; }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; color: var(--navy); }
h1 { font-size: var(--title-size); line-height: 1.02; margin: 24px 0 26px; max-width: 760px; }
h1 em { font-style: normal; color: var(--blue); }
.hero-lead { font-size: 20px; line-height: 1.65; color: #465661; max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; padding: 15px 22px; border: 1px solid transparent; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 12px 28px rgba(7,27,45,.16); }
.button-primary:hover { background: var(--navy-2); }
.button-secondary { border-color: #cad4da; color: var(--navy); background: rgba(255,255,255,.75); }
.button-light { background: white; color: var(--navy); width: 100%; }
.hero-trust { display: flex; gap: 28px; border-top: 1px solid var(--line); padding-top: 24px; max-width: 650px; }
.hero-trust div { display:flex; flex-direction:column; gap:2px; }
.hero-trust strong { color: var(--navy); font-size: 14px; }
.hero-trust span { color: var(--muted); font-size: 12px; }

.data-visual { position:relative; padding: 25px; border-radius: 28px; background: rgba(255,255,255,.86); border: 1px solid #dae2e7; box-shadow: var(--shadow); }
.visual-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 16px; }
.source-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.source-card { border:1px solid #e2e8eb; border-radius:15px; padding:14px; display:grid; grid-template-columns:42px 1fr; column-gap:10px; background:white; }
.source-card .source-icon { grid-row:1/3; width:42px; height:42px; border-radius:10px; display:grid; place-items:center; background:#edf3f6; color:var(--navy); font-weight:900; font-size:11px; }
.source-card strong { font-size:14px; color:var(--navy); }
.source-card small { color:var(--muted); font-size:11px; }
.flow-lines { height:58px; position:relative; }
.system-connectors { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; overflow:visible; }
.system-connectors path { fill:none; stroke:#789eb7; stroke-width:1.5; stroke-linejoin:round; }
.source-card, .bi-hub { position:relative; z-index:1; }
.source-grid { padding:0 12px; }
.flow-lines span { position:absolute; height:1px; background:#a9bbc6; top:7px; }
.flow-lines span:nth-child(1) { left:24%; width:26%; transform:rotate(15deg); transform-origin:right; }
.flow-lines span:nth-child(2) { right:24%; width:26%; transform:rotate(-15deg); transform-origin:left; }
.flow-lines span:nth-child(3) { width:42%; left:29%; top:40px; }
.bi-hub { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:14px; padding:18px; border-radius:16px; background:var(--navy); color:white; }
.hub-mark { width:48px; height:48px; border-radius:12px; display:grid; place-items:center; background:linear-gradient(145deg,#47789b,#173b55); font-family:Georgia,serif; font-weight:700; }
.bi-hub small { display:block; color:#8eacbf; margin-bottom:2px; }
.bi-hub strong { font-size:14px; }
.pulse { width:10px;height:10px;border-radius:50%;background:#8fd0b3; box-shadow:0 0 0 7px rgba(143,208,179,.13); }
.outcome-strip { display:flex; justify-content:space-between; gap:8px; margin-top:14px; }
.outcome-strip span { flex:1; text-align:center; padding:8px 6px; border-radius:8px; background:#edf2f4; color:#4f5e68; font-size:10px; font-weight:800; }

.section-heading { max-width: 850px; margin-bottom: 54px; }
.section-heading.compact { max-width: 720px; }
.section-heading h2, .fractional-copy h2, .infra-copy h2, .cta-box h2 { font-size: var(--heading-size); line-height:1.08; margin:18px 0 20px; }
.section-heading p, .fractional-copy > p, .infra-copy > p, .cta-box > div > p { color:var(--muted); font-size:18px; max-width:780px; }
.problem-section { background:#f7f9fa; }
.problem-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.problem-card { background:white; border:1px solid #e0e6e9; padding:30px 24px; border-radius:18px; min-height:270px; transition:.2s ease; }
.problem-card:hover { transform:translateY(-5px); box-shadow:0 18px 40px rgba(7,27,45,.08); }
.card-number { font-size:12px; font-weight:900; letter-spacing:.12em; color:var(--muted); margin-bottom:62px; }
.problem-card h3 { color:var(--navy); font-size:19px; margin-bottom:12px; }
.problem-card p { color:#66747e; font-size:14px; }

.fractional-section { background:var(--navy); color:white; position:relative; overflow:hidden; }
.fractional-section::after { content:""; position:absolute; width:520px; height:520px; border:1px solid rgba(255,255,255,.06); border-radius:50%; right:-190px; top:-200px; box-shadow:0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.fractional-grid { position:relative; z-index:1; display:grid; grid-template-columns:.9fr 1.1fr; gap:86px; }
.fractional-copy h2 { color:white; }
.fractional-copy > p { color:#aec0cc; }
.text-link { display:inline-flex; align-items:center; gap:10px; margin-top:20px; color:white; font-weight:800; }
.text-link span { transition:transform .2s ease; }
.text-link:hover span { transform:translateX(5px); }
.fractional-list { display:flex; flex-direction:column; }
.list-item { display:grid; grid-template-columns:58px 1fr; gap:16px; padding:22px 0; border-top:1px solid rgba(255,255,255,.13); }
.list-item:last-child { border-bottom:1px solid rgba(255,255,255,.13); }
.list-item > span { font-family:Georgia,serif; color:#6e93ab; font-size:18px; }
.list-item strong { display:block; font-size:18px; margin-bottom:4px; }
.list-item p { margin:0; color:#a9bac5; font-size:14px; }

.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.service-card { border:1px solid var(--line); border-radius:18px; padding:30px; min-height:250px; background:white; }
.service-icon { width:44px; height:44px; display:grid; place-items:center; border-radius:12px; background:#eef3f6; color:var(--blue); font-weight:900; margin-bottom:42px; }
.service-card h3 { color:var(--navy); margin-bottom:10px; }
.service-card p { color:var(--muted); font-size:14px; }

.infrastructure { background:#edf2f4; }
.infrastructure-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:center; }
.infra-visual { min-height:520px; position:relative; isolation:isolate; display:grid; place-items:center; }
.server-rack { width:240px; padding:16px; background:linear-gradient(145deg,#122d42,#061927); border-radius:22px; box-shadow:0 28px 60px rgba(7,27,45,.24); position:relative; z-index:2; }
.rack-header { display:flex; gap:6px; margin-bottom:12px; }
.rack-header span { width:7px; height:7px; background:#7e9aac; border-radius:50%; }
.server-unit { height:78px; border:1px solid rgba(255,255,255,.12); background:#0b2436; margin:9px 0; border-radius:9px; display:flex; align-items:center; gap:9px; padding:12px; }
.server-unit i { width:9px;height:9px;border-radius:50%;background:#8fd0b3; box-shadow:0 0 12px #8fd0b3; }
.server-unit b { width:6px;height:6px;border-radius:50%;background:#58778d; }
.server-unit em { height:5px; border-radius:10px; background:#19384e; flex:1; margin-left:8px; }
.infra-orbit { position:absolute; z-index:3; padding:10px 14px; border-radius:999px; background:white; border:1px solid #d7e0e5; box-shadow:0 12px 28px rgba(7,27,45,.09); color:var(--navy); font-size:12px; font-weight:800; }
.orbit-one { top:70px; left:25px; }
.orbit-two { right:10px; top:180px; }
.orbit-three { left:5px; bottom:80px; }
.infra-options { margin:28px 0; display:flex; flex-direction:column; }
.infra-options div { padding:18px 0; border-top:1px solid #ccd8de; display:grid; grid-template-columns:210px 1fr; gap:22px; }
.infra-options div:last-child { border-bottom:1px solid #ccd8de; }
.infra-options strong { color:var(--navy); font-size:14px; }
.infra-options span { color:var(--muted); font-size:14px; }
.security-note { font-size:12px !important; padding-left:13px; border-left:3px solid #789eb7; }

.toolkit { padding:0; background:#edf2f4; }
.toolkit-bar { border-top:1px solid #d5dfe4; padding:28px 0 42px; display:flex; align-items:center; gap:30px; justify-content:space-between; }
.toolkit-bar > span { color:var(--muted); font-size:13px; font-weight:700; white-space:nowrap; }
.tool-chips { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; }
.tool-chips span { padding:8px 12px; border-radius:999px; background:rgba(255,255,255,.6); border:1px solid #d9e2e7; color:#4d5f6b; font-size:11px; font-weight:800; }

.process-track { display:grid; grid-template-columns:repeat(4,1fr); position:relative; gap:22px; }
.process-track::before { content:""; position:absolute; top:22px; left:22px; right:calc((100% - 66px) / 4 - 22px); height:1px; background:#cfd9de; }
.process-step { position:relative; }
.process-step > span { position:relative; z-index:1; display:grid; place-items:center; width:44px; height:44px; border-radius:50%; background:white; border:1px solid #bdcbd3; color:var(--blue); font-weight:900; margin-bottom:24px; }
.process-step strong { display:block; color:var(--navy); margin-bottom:8px; }
.process-step p { color:var(--muted); font-size:14px; }

.cta-section { padding-top:80px; }
.cta-box { border-radius:30px; background:linear-gradient(135deg,#0a2134,#103c5a); color:white; padding:58px; display:grid; grid-template-columns:1.05fr .95fr; gap:70px; box-shadow:var(--shadow); }
.cta-box h2 { color:white; }
.cta-box > div > p { color:#b8c8d2; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.contact-form label { display:flex; flex-direction:column; gap:7px; color:#d6e0e6; font-size:12px; font-weight:700; }
.contact-form input, .contact-form textarea { width:100%; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.07); border-radius:10px; color:white; padding:12px 13px; outline:none; resize:vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color:#7eabbf; box-shadow:0 0 0 3px rgba(126,171,191,.12); }
.contact-form textarea::placeholder { color:#8296a3; }
.form-note { margin:0; text-align:center; font-size:12px; color:#b8c8d2; }

.site-footer { padding:64px 0 34px; background:var(--white); color:var(--ink); border-top:1px solid var(--line); }
.nav-links > a[aria-current="page"] { color:var(--blue); }
.nav-links > a[aria-current="page"]::after { right:0; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .8fr; gap:50px; align-items:start; }
.footer-brand img { width:185px; margin-bottom:14px; }
.footer-brand p { color:var(--muted); font-size:13px; max-width:410px; }
.footer-links { display:flex; flex-direction:column; gap:10px; font-size:13px; font-weight:700; color:#43545f; }
.footer-meta { display:flex; flex-direction:column; align-items:flex-end; gap:8px; font-size:12px; color:var(--muted); }

.reveal { opacity:1; transform:none; transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .hero-grid, .fractional-grid, .infrastructure-grid, .cta-box { grid-template-columns:1fr; }
  .hero-grid { gap:50px; }
  .problem-grid, .process-track { grid-template-columns:1fr 1fr; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .process-track::before { display:none; }
  .fractional-grid, .infrastructure-grid { gap:54px; }
  .infra-visual { min-height:430px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-meta { align-items:flex-start; }
}

@media (max-width: 760px) {
  .site-header { min-height:75px; }
  .section { padding:80px 0; }
  .nav { height:74px; }
  .brand { width:150px; }
  .nav-toggle { display:block; }
  .nav-links { position:absolute; top:74px; left:0; right:0; background:white; padding:22px 20px 28px; border-bottom:1px solid var(--line); flex-direction:column; align-items:stretch; gap:18px; display:none; }
  .nav-links.open { display:flex; }
  .nav-cta { text-align:center; }
  .hero { padding-top:76px; }
  .hero-trust { gap:18px; flex-wrap:wrap; }
  .problem-grid, .services-grid, .process-track { grid-template-columns:1fr; }
  .problem-card { min-height:auto; }
  .card-number { margin-bottom:34px; }
  .source-grid { grid-template-columns:1fr; }
  .outcome-strip { flex-direction:column; }
  .infra-options div { grid-template-columns:1fr; gap:6px; }
  .toolkit-bar { flex-direction:column; align-items:flex-start; }
  .tool-chips { justify-content:flex-start; }
  .cta-box { padding:34px 24px; gap:38px; }
  .field-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
}

[id] { scroll-margin-top:100px; }
.hero-fit { color:var(--muted); font-size:14px; max-width:600px; }
.experience-section { padding-top:0; }
.experience-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; padding-top:60px; border-top:1px solid var(--line); }
.experience-grid .section-heading { margin-bottom:0; }
.experience-copy { font-size:18px; color:var(--muted); }
@media (max-width:980px) { .experience-grid { grid-template-columns:1fr; gap:20px; } }
.faq-section { background:#f7f9fa; }
.faq-list { max-width:850px; }
.faq-list details { padding:22px 0; border-top:1px solid var(--line); }
.faq-list details:last-child { border-bottom:1px solid var(--line); }
.faq-list summary { cursor:pointer; color:var(--navy); font-weight:700; padding-right:12px; }
.faq-list p { color:var(--muted); margin:16px 0 0; }
.contact-direct a { text-decoration:underline; text-underline-offset:4px; overflow-wrap:anywhere; color:white; }
.skip-link { position:fixed; top:10px; left:20px; z-index:100; padding:12px 18px; background:var(--navy); color:white; border-radius:8px; transform:translateY(-160%); }
.skip-link:focus { transform:none; }
summary:focus-visible { outline:3px solid #528aab; outline-offset:5px; }
.button:disabled { cursor:default; opacity:.65; }
a:focus-visible, button:focus-visible { outline:3px solid #528aab; outline-offset:5px; }
.hero-grid > *, .source-card > *, .cta-box > * { min-width:0; }
@media (min-width:761px) and (max-width:1100px) { .nav { gap:16px; } .nav-links { gap:16px; font-size:12px; } }
@media (max-width:380px) { .data-visual { padding:18px; } .bi-hub { padding:14px; gap:10px; } .hub-mark { width:36px; height:40px; } .toolkit-bar > span { white-space:normal; } }

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