:root {
  --navy: #0b1f3a;
  --navy-deep: #07182f;
  --blue: #2e6ff2;
  --blue-bright: #4d86ff;
  --cyan: #16c4d9;
  --bg: #f5f8fc;
  --bg-alt: #edf2fa;
  --white: #fff;
  --text: #1a2233;
  --text-muted: #55617a;
  --border: #dbe4f2;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(11, 31, 58, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3, strong { font-family: "Manrope", sans-serif; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.12; }
h1 { font-size: clamp(3.3rem, 6.5vw, 6.6rem); margin-bottom: 28px; }
h2 { color: var(--navy); font-size: clamp(2.25rem, 4.4vw, 4.4rem); margin-bottom: 24px; }
h2 em, h1 em { color: var(--blue); font-style: normal; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 124px 0; }
.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; left: 12px; top: -100px; z-index: 1000; padding: 10px 16px; background: var(--white); color: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 23px;
  color: #b9cae5; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--cyan); }
.eyebrow-dark { color: #64738a; }
.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 12px;
  min-height: 54px; padding: 0 24px; border: 0; border-radius: 10px;
  font-weight: 700; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #1758dd); box-shadow: 0 12px 30px rgba(46, 111, 242, .28); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(46, 111, 242, .38); }
.button-light { color: var(--navy); background: var(--white); }

.site-header {
  position: fixed; z-index: 100; width: 100%; top: 0; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(7,24,47,.72);
  backdrop-filter: blur(18px); transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { background: rgba(7,24,47,.94); box-shadow: 0 10px 35px rgba(0,0,0,.16); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { width: 43px; height: auto; flex: 0 0 43px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1.04rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: #9fb2cf; font-size: .59rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav a { color: #dce7f8; font-size: .86rem; font-weight: 600; transition: color .2s ease; }
.primary-nav a:hover { color: var(--white); }
.primary-nav .nav-cta { padding: 11px 17px; color: var(--white); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; }
.primary-nav .nav-cta:hover { background: rgba(255,255,255,.08); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--white); transition: .2s ease; }

.hero {
  position: relative; overflow: hidden; min-height: 820px; padding: 178px 0 0;
  color: var(--white); background:
    radial-gradient(circle at 76% 35%, rgba(46,111,242,.17), transparent 34%),
    linear-gradient(135deg, #07182f 0%, #0a2242 58%, #071a34 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .18;
  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: 54px 54px; mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 430px; height: 430px; right: 2%; top: 150px; border: 1px solid rgba(22,196,217,.22); }
.hero-glow-two { width: 680px; height: 680px; right: -9%; top: 26px; border: 1px solid rgba(46,111,242,.17); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-copy { padding-bottom: 70px; }
.hero h1 { max-width: 720px; color: var(--white); }
.hero h1 em { background: linear-gradient(90deg, #5f91ff, var(--cyan)); -webkit-background-clip: text; color: transparent; }
.hero-lead { max-width: 630px; color: #b9c8dc; font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.text-link { color: #dce7f8; font-size: .9rem; font-weight: 700; }
.text-link span { color: var(--cyan); margin-left: 7px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 35px 0 0; list-style: none; color: #8fa5c3; font-size: .78rem; }
.hero-notes span { display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 5px; border: 1px solid rgba(22,196,217,.4); border-radius: 50%; color: var(--cyan); font-size: .62rem; }
.hero-visual { position: relative; min-height: 520px; }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(113,153,216,.25); }
.orbit-one { width: 460px; height: 460px; left: 30px; top: 16px; }
.orbit-two { width: 300px; height: 300px; left: 110px; top: 95px; }
.system-card {
  position: absolute; z-index: 3; width: 410px; top: 106px; left: 70px; overflow: hidden;
  border: 1px solid rgba(138,170,221,.24); border-radius: 14px; background: rgba(8,28,55,.88);
  box-shadow: 0 30px 70px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(12px);
}
.window-bar { display: flex; align-items: center; gap: 6px; height: 42px; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.08); color: #7089ad; font: 500 .67rem "Inter"; }
.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #375173; }
.window-bar i:first-child { background: var(--cyan); }
.window-bar span { margin-left: auto; }
.code-line { display: flex; gap: 13px; padding: 5px 24px; color: #b2c5e0; font: 500 .81rem/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; }
.code-line:first-of-type { padding-top: 27px; }
.code-line b { color: #425d80; font-weight: 400; }
.code-line .indent { padding-left: 16px; }
.code-blue { color: #71a0ff; }
.code-cyan { color: var(--cyan); }
.build-status { display: flex; justify-content: space-between; margin-top: 22px; padding: 14px 24px; border-top: 1px solid rgba(255,255,255,.07); color: #7891b2; font-size: .69rem; }
.build-status span i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #4ad899; box-shadow: 0 0 10px #4ad899; }
.build-status strong { color: #4ad899; font-size: .69rem; }
.float-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 14px 17px; border: 1px solid rgba(137,170,222,.2); border-radius: 11px; background: rgba(12,34,66,.9); box-shadow: 0 16px 35px rgba(0,0,0,.25); }
.float-card small, .float-card strong { display: block; }
.float-card small { margin-bottom: 2px; color: #728bac; font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; }
.float-card strong { color: #dce9fa; font-size: .76rem; }
.float-card-ai { top: 48px; right: 0; }
.float-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; color: var(--cyan); background: rgba(22,196,217,.12); font-size: 1.2rem; }
.float-card-data { bottom: 70px; left: 7px; }
.data-bars { display: flex; align-items: end; gap: 3px; width: 32px; height: 28px; }
.data-bars i { width: 5px; border-radius: 2px; background: var(--blue-bright); }
.data-bars i:nth-child(1) { height: 30%; }.data-bars i:nth-child(2) { height: 55%; }.data-bars i:nth-child(3) { height: 42%; }.data-bars i:nth-child(4) { height: 90%; background: var(--cyan); }
.connector-lines { position: absolute; inset: 0; width: 100%; height: 100%; fill: var(--cyan); stroke: rgba(22,196,217,.4); stroke-width: 1; stroke-dasharray: 4 6; }
.trust-row { position: relative; z-index: 2; min-height: 100px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); }
.trust-row p { margin: 0; color: #7189a9; font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }
.trust-row div { display: flex; align-items: center; gap: 26px; color: #95a9c6; font-size: .73rem; font-weight: 600; }
.trust-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); opacity: .6; }

.about { background: var(--white); }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; margin-bottom: 70px; }
.split-heading h2 { margin-bottom: 0; }
.heading-copy .lead, .team-copy .lead { color: var(--navy); font-size: 1.18rem; font-weight: 600; line-height: 1.65; }
.heading-copy p:last-child { margin-bottom: 0; color: var(--text-muted); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card {
  position: relative; isolation: isolate; display: flex; flex-direction: column; min-height: 390px; overflow: hidden; padding: 34px;
  border: 1px solid #dce6f4; border-radius: var(--radius); background: linear-gradient(145deg, #f9fbff 0%, #f1f6ff 100%);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.value-card::before {
  content: ""; position: absolute; z-index: -1; width: 190px; height: 190px; right: -75px; top: -90px;
  border-radius: 50%; background: rgba(46,111,242,.08);
}
.value-card::after {
  content: ""; position: absolute; left: 34px; right: 34px; bottom: 0; height: 3px;
  border-radius: 3px 3px 0 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(.22); transform-origin: left;
  transition: transform .3s ease;
}
.value-card:nth-child(2) { background: linear-gradient(145deg, #f8fcff 0%, #eff9fb 100%); }
.value-card:nth-child(2)::before { background: rgba(22,196,217,.09); }
.value-card:nth-child(3) { background: linear-gradient(145deg, #fbfaff 0%, #f2f1ff 100%); }
.value-card:nth-child(3)::before { background: rgba(98,87,217,.08); }
.value-card:hover { transform: translateY(-6px); border-color: #c8d8ef; box-shadow: 0 20px 45px rgba(26,67,128,.11); }
.value-card:hover::after { transform: scaleX(1); }
.value-number { position: absolute; right: 28px; top: 27px; color: #91a3bc; font: 700 .67rem "Manrope"; letter-spacing: .08em; }
.line-icon {
  display: grid; place-items: center; width: 62px; height: 62px; padding: 12px; margin-bottom: 25px;
  border: 1px solid #d4e2f8; border-radius: 14px; color: var(--blue); background: rgba(255,255,255,.75);
  box-shadow: 0 10px 25px rgba(46,111,242,.09);
}
.line-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.value-card:nth-child(2) .line-icon { border-color: #ccecef; color: #108eaa; }
.value-card:nth-child(3) .line-icon { border-color: #ddd9fa; color: #6257d9; }
.value-label { display: block; margin-bottom: 8px; color: #71839d; font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.value-card h3 { margin-bottom: 14px; color: var(--navy); font-size: 1.32rem; }
.value-card p { margin: 0; color: var(--text-muted); font-size: .88rem; }
.value-outcome { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 27px; }
.value-outcome span {
  position: relative; padding: 7px 10px 7px 23px; border: 1px solid rgba(169,188,216,.5); border-radius: 20px;
  color: #536681; background: rgba(255,255,255,.7); font-size: .66rem; font-weight: 600;
}
.value-outcome span::before { content: ""; position: absolute; left: 10px; top: 50%; width: 5px; height: 5px; transform: translateY(-50%); border-radius: 50%; background: var(--cyan); }

.services { background: var(--bg-alt); }
.section-heading.centered { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { max-width: 650px; margin: -4px auto 0; color: var(--text-muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  display: flex; flex-direction: column; padding: 35px; min-height: 590px;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-featured { border-top: 3px solid var(--blue); }
.service-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 42px; }
.service-index { color: #8c9bb0; font: 700 .67rem "Manrope"; }
.service-icon { width: 60px; height: 60px; padding: 11px; border-radius: 13px; color: var(--blue); background: #edf3ff; }
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card:nth-child(2) .service-icon { color: #118eac; background: #e8f9fb; }
.service-card:nth-child(3) .service-icon { color: #6257d9; background: #f0efff; }
.service-card h3 { color: var(--navy); font-size: 1.5rem; }
.service-card > p { min-height: 113px; color: var(--text-muted); font-size: .9rem; }
.service-card ul { padding: 22px 0; margin: 0 0 24px; border-top: 1px solid var(--border); list-style: none; }
.service-card li { position: relative; padding: 6px 0 6px 20px; color: #46536a; font-size: .82rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.service-card > a { display: flex; justify-content: space-between; margin-top: auto; color: var(--blue); font-size: .79rem; font-weight: 700; }

.process { color: var(--white); background: var(--navy-deep); }
.process .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.process h2 { color: var(--white); }
.process h2 em { color: var(--cyan); }
.process-intro > p:not(.eyebrow) { max-width: 470px; color: #a3b4ce; }
.process-intro .button { margin-top: 18px; }
.process-list { padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.12); list-style: none; }
.process-list li { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list > li > span { display: grid; place-items: center; align-self: start; width: 46px; height: 46px; border: 1px solid rgba(22,196,217,.4); border-radius: 50%; color: var(--cyan); font: 700 .69rem "Manrope"; }
.process-list h3 { margin-bottom: 7px; color: var(--white); font-size: 1.2rem; }
.process-list p { margin: 0; color: #9bacc5; font-size: .86rem; }

.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.team-visual {
  position: relative; min-height: 520px; overflow: hidden; border: 1px solid rgba(100,143,207,.22);
  border-radius: var(--radius-lg); background:
    radial-gradient(circle at 50% 50%, rgba(46,111,242,.22), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(22,196,217,.12), transparent 28%),
    linear-gradient(145deg, #081b36 0%, #0b2649 55%, #081d3b 100%);
  box-shadow: 0 26px 60px rgba(11,31,58,.18);
}
.team-visual::before {
  content: ""; position: absolute; width: 280px; height: 280px; right: -155px; bottom: -135px;
  border: 1px solid rgba(22,196,217,.18); border-radius: 50%; box-shadow: 0 0 70px rgba(22,196,217,.08);
}
.team-mesh {
  position: absolute; inset: 0; background-image: radial-gradient(rgba(141,177,229,.46) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .24; mask-image: radial-gradient(circle at center, black 10%, transparent 76%);
}
.team-visual-label {
  position: absolute; z-index: 3; left: 24px; top: 22px; display: flex; align-items: center; gap: 8px;
  color: #89a4c8; font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
}
.team-visual-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.team-orbits { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; fill: none; }
.orbit-ring { stroke: rgba(108,154,224,.25); stroke-width: 1; }
.orbit-ring-inner { stroke-dasharray: 3 7; }
.orbit-ring-outer { stroke: rgba(22,196,217,.2); stroke-dasharray: 2 8; }
.orbit-path { stroke: rgba(118,162,227,.34); stroke-width: 1; stroke-dasharray: 4 5; }
.orbit-dot { fill: var(--cyan); stroke: rgba(22,196,217,.25); stroke-width: 7; }
.team-core {
  position: absolute; z-index: 3; left: 50%; top: 51.5%; width: 132px; height: 132px;
  transform: translate(-50%,-50%); overflow: visible; border: 1px solid rgba(89,145,227,.72);
  border-radius: 50%; background: radial-gradient(circle at 50% 30%, #173a66 0%, #0b2444 58%, #07192f 100%);
  box-shadow: 0 22px 55px rgba(0,0,0,.38), 0 0 0 9px rgba(46,111,242,.08), inset 0 1px rgba(255,255,255,.1);
}
.core-glow {
  position: absolute; inset: -23px; z-index: -1; border: 1px solid rgba(22,196,217,.28);
  border-radius: 50%; box-shadow: 0 0 38px rgba(22,196,217,.11), inset 0 0 28px rgba(46,111,242,.08);
}
.team-core img {
  position: absolute; width: 72px; height: auto; left: 50%; top: 16px;
  transform: translateX(-50%); filter: drop-shadow(0 5px 10px rgba(0,0,0,.22));
}
.team-core small {
  position: absolute; left: 50%; bottom: 14px; width: max-content; transform: translateX(-50%);
  color: #a8bad2; font-size: .55rem; font-weight: 700; line-height: 1; text-transform: uppercase; letter-spacing: .18em;
}
.team-node {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 140px; padding: 11px 13px;
  border: 1px solid rgba(155,184,226,.22); border-radius: 11px; color: #d8e5f6;
  background: rgba(8,28,55,.82); box-shadow: 0 13px 28px rgba(0,0,0,.22); backdrop-filter: blur(10px);
}
.team-node > i { width: 9px; height: 9px; flex: 0 0 9px; border: 2px solid var(--blue-bright); border-radius: 3px; transform: rotate(45deg); box-shadow: 0 0 12px rgba(77,134,255,.5); }
.node-two > i { border-color: var(--cyan); }
.node-three > i { border-color: #7dcd29; }
.node-four > i { border-color: #ffd900; }
.team-node strong, .team-node small { display: block; letter-spacing: 0; }
.team-node strong { color: #eaf2fd; font-size: .68rem; }
.team-node small { margin-top: 1px; color: #7189aa; font-size: .54rem; font-weight: 500; }
.node-one { left: 6%; top: 25%; }
.node-two { right: 6%; top: 26%; }
.node-three { left: 6%; bottom: 21%; }
.node-four { right: 6%; bottom: 20%; }
.team-copy > p:not(.eyebrow) { color: var(--text-muted); }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.expertise-tags span { padding: 7px 12px; border: 1px solid #d9e3f0; border-radius: 5px; color: #50617b; background: #f9fbfe; font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.work { background: var(--bg); }
.split-heading.compact { align-items: center; margin-bottom: 55px; }
.split-heading.compact .heading-copy { max-width: 470px; justify-self: end; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-art { position: relative; height: 250px; overflow: hidden; }
.art-one { background: linear-gradient(145deg, #0a2040, #12386d); }
.art-one::before { content: ""; position: absolute; left: 16%; top: 22%; width: 68%; height: 56%; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: rgba(255,255,255,.04); }
.art-one i { position: absolute; left: 27%; height: 8px; border-radius: 5px; background: rgba(99,151,255,.42); }
.art-one i:nth-of-type(1) { width: 46%; top: 39%; }.art-one i:nth-of-type(2) { width: 32%; top: 50%; background: rgba(22,196,217,.48); }.art-one i:nth-of-type(3) { width: 40%; top: 61%; }
.work-signal { position: absolute; z-index: 2; right: 12%; top: 18%; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 10px rgba(22,196,217,.11); }
.art-two { display: grid; place-items: center; background: linear-gradient(145deg, #e8f2ff, #dcecff); }
.ai-glyph { z-index: 2; color: var(--blue); font-size: 4.5rem; text-shadow: 0 10px 25px rgba(46,111,242,.25); }
.ai-ring { position: absolute; width: 155px; height: 155px; border: 1px dashed rgba(46,111,242,.42); border-radius: 50%; animation: rotate 18s linear infinite; }
.ai-ring::before, .ai-ring::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); }
.ai-ring::before { left: 12px; top: 24px; }.ai-ring::after { right: 8px; bottom: 33px; }
@keyframes rotate { to { transform: rotate(360deg); } }
.art-three { display: grid; grid-template-columns: repeat(2, 64px); justify-content: center; align-content: center; gap: 10px; background: linear-gradient(145deg, #122a50, #0c1e3b); }
.art-three span { height: 55px; border: 1px solid rgba(93,139,217,.4); border-radius: 8px; background: linear-gradient(145deg, rgba(46,111,242,.22), rgba(22,196,217,.05)); }
.art-three span:nth-child(2), .art-three span:nth-child(3) { border-color: rgba(22,196,217,.35); transform: translateY(8px); }
.work-content { padding: 25px 27px 29px; }
.work-content > span { color: #708099; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.work-content h3 { margin: 10px 0 7px; color: var(--navy); font-size: 1.22rem; }
.work-content p { margin: 0; color: var(--text-muted); font-size: .82rem; }
.contact { color: var(--white); background: var(--navy-deep); }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact h2 { color: var(--white); }
.contact h2 em { color: var(--cyan); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #a4b4cb; }
.contact-details { display: grid; gap: 8px; margin-top: 42px; }
.contact-details > * { display: flex; align-items: center; gap: 15px; padding: 13px 0; color: #e2eaf6; }
.contact-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid rgba(22,196,217,.3); border-radius: 9px; color: var(--cyan); background: rgba(22,196,217,.06); }
.contact-details small { display: block; margin-bottom: 1px; color: #7288a8; font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-form { padding: 42px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); box-shadow: 0 30px 70px rgba(0,0,0,.2); }
.form-heading { margin-bottom: 28px; }
.form-heading h3 { margin-bottom: 8px; color: var(--white); font-size: 1.45rem; }
.form-heading p { margin: 0; color: #8396b1; font-size: .78rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: #c6d3e5; font-size: .74rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid rgba(170,194,227,.18); border-radius: 8px; outline: 0;
  color: var(--white); background: rgba(255,255,255,.055); transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input, .contact-form select { height: 49px; padding: 0 13px; }
.contact-form textarea { padding: 12px 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(22,196,217,.1); }
.contact-form textarea::placeholder { color: #657b9a; }
.contact-form select { color-scheme: dark; }
.form-submit { width: 100%; margin-top: 5px; }
.form-status { min-height: 24px; margin: 10px 0 -10px; color: #95dcbe; font-size: .73rem; text-align: center; }

.site-footer { color: #9aabc2; background: #051326; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 40px; padding-top: 62px; padding-bottom: 50px; }
.brand-footer { color: var(--white); }
.footer-top > p { margin: 0; color: #879ab5; font-size: .84rem; }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-top nav a { color: #c0cde0; font-size: .75rem; font-weight: 600; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; padding-top: 22px; padding-bottom: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #687d9a; font-size: .66rem; }
.back-top span { margin-left: 5px; color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@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; }
}

@media (max-width: 1000px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 95px 0; }
  .hero { padding-top: 150px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; padding-bottom: 10px; }
  .hero-visual { width: min(100%, 620px); margin: 0 auto; }
  .trust-row { margin-top: 20px; }
  .split-heading, .team-grid, .contact-shell { gap: 55px; }
  .process .container { gap: 60px; }
  .service-card { padding: 28px; }
}

@media (max-width: 820px) {
  .nav-toggle { position: relative; z-index: 102; display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 0; z-index: 101; flex-direction: column; justify-content: center; gap: 26px;
    visibility: hidden; opacity: 0; background: rgba(5,19,38,.98); transition: opacity .2s ease, visibility .2s ease;
  }
  .primary-nav.open { visibility: visible; opacity: 1; }
  .primary-nav a { font-size: 1.25rem; }
  .split-heading, .team-grid, .contact-shell, .process .container { grid-template-columns: 1fr; }
  .split-heading { gap: 36px; }
  .heading-copy { max-width: 650px; }
  .value-grid, .services-grid { grid-template-columns: 1fr; }
  .value-grid { gap: 14px; }
  .value-card { min-height: auto; padding: 30px; }
  .value-number { top: 24px; }
  .services-grid { max-width: 650px; margin: auto; }
  .service-card { min-height: auto; }
  .service-card > p { min-height: auto; }
  .team-visual { order: 2; min-height: 440px; }
  .contact-copy { position: static; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top nav { grid-column: 1/-1; justify-content: flex-start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  h2 { font-size: 2.4rem; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { text-align: center; }
  .hero-notes { gap: 12px 18px; }
  .hero-visual { min-height: 425px; transform: scale(.9); transform-origin: center top; margin-bottom: -35px; }
  .system-card { width: 88%; left: 6%; top: 95px; }
  .float-card-ai { right: -2%; top: 32px; }
  .float-card-data { bottom: 42px; left: -2%; }
  .orbit-one { width: 390px; height: 390px; left: 50%; transform: translateX(-50%); }
  .orbit-two { width: 250px; height: 250px; left: 50%; transform: translateX(-50%); }
  .trust-row { display: block; padding: 30px 0; }
  .trust-row p { margin-bottom: 18px; }
  .trust-row div { flex-wrap: wrap; gap: 12px; }
  .split-heading { margin-bottom: 45px; }
  .process .container { gap: 45px; }
  .process-list li { grid-template-columns: 50px 1fr; gap: 10px; }
  .team-visual { min-height: 390px; }
  .team-node { font-size: .59rem; }
  .node-one { left: 4%; }.node-two { right: 4%; }.node-three { left: 4%; }.node-four { right: 4%; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:last-child { grid-column: auto; }
  .work-art { height: 220px; }
  .contact-form { padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .footer-top { gap: 28px; }
  .footer-bottom { gap: 12px; }
}
