:root {
  color-scheme: dark;
  --ink: #07121f;
  --ink-2: #0b1d2d;
  --panel: #10283b;
  --paper: #eef7f8;
  --cyan: #43e5ef;
  --cyan-soft: #a8f4f6;
  --orange: #ff8a3d;
  --line: rgba(185, 229, 232, .18);
  --muted: #9cb1bd;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
button { font: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .75rem 1rem; background: var(--paper); color: var(--ink); }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(calc(100% - 3rem), var(--max));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0; text-decoration: none; line-height: 1; }
.brand-icon { flex: none; display: block; width: 2.5rem; height: auto; filter: drop-shadow(0 0 10px rgba(67,229,239,.35)); }
.brand-word { display: flex; flex-direction: column; justify-content: center; gap: .3rem; overflow: hidden; white-space: nowrap; max-width: 0; opacity: 0; margin-left: 0; animation: brandReveal 6s cubic-bezier(.65,0,.35,1) 1 both; }
.brand-logo { display: block; height: 1.05rem; width: auto; }
.brand-word small { display: block; font-size: .58rem; letter-spacing: .36em; color: var(--muted); }

@keyframes brandReveal {
  0%   { max-width: 0; opacity: 0; margin-left: 0; }
  8%   { max-width: 160px; opacity: 1; margin-left: .75rem; }
  83%  { max-width: 160px; opacity: 1; margin-left: .75rem; }
  100% { max-width: 0; opacity: 0; margin-left: 0; }
}
.site-nav { display: flex; align-items: center; gap: 2.1rem; }
.site-nav a { text-decoration: none; font-size: .9rem; color: #c8d7dc; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--cyan); }
.site-nav .nav-cta { border: 1px solid rgba(67,229,239,.5); padding: .72rem 1rem; color: var(--paper); }
.menu-toggle { display: none; background: none; border: 0; color: white; padding: .75rem; }

.hero {
  min-height: 780px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: stretch;
  padding: 145px max(1.5rem, calc((100vw - var(--max)) / 2)) 60px;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 42%, rgba(24, 120, 151, .22), transparent 35%), linear-gradient(100deg, rgba(7,18,31,1) 0%, rgba(7,18,31,.92) 48%, rgba(5,17,29,.7) 100%); z-index: -1; }
.hero-grid { position: absolute; inset: 0; z-index: -2; opacity: .2; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, #000, transparent 82%); }
.hero-copy { align-self: center; max-width: 760px; padding: 2rem 4.5rem 2rem 0; }
.eyebrow { margin: 0 0 1.5rem; color: var(--cyan); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; display: flex; align-items: center; gap: .65rem; }
.eyebrow span { display: inline-block; width: 1.75rem; height: 2px; background: var(--orange); }
h1, h2, h3 { margin: 0; font-weight: 650; letter-spacing: -.04em; line-height: 1.02; }
h1 { font-size: clamp(3.3rem, 6.3vw, 6rem); max-width: 880px; }
h1 em { font-style: normal; color: var(--cyan); }
.hero-lede { max-width: 680px; margin: 2rem 0 0; font-size: clamp(1rem, 1.5vw, 1.18rem); color: #b9c9d1; }
.hero-actions { display: flex; align-items: center; gap: 1.7rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 52px; padding: .8rem 1.25rem; text-decoration: none; font-weight: 700; font-size: .9rem; }
.button-primary { background: var(--cyan); color: var(--ink); box-shadow: 0 12px 30px rgba(67,229,239,.12); }
.button-primary:hover { background: #78f4f7; }
.text-link { font-size: .9rem; text-decoration: none; border-bottom: 1px solid #66808e; padding: .3rem 0; }
.text-link:hover { color: var(--cyan); border-color: var(--cyan); }
.hero-proof { display: grid; grid-template-columns: repeat(3, max-content); gap: 2.2rem; margin-top: 3.35rem; }
.hero-proof div { display: grid; gap: .2rem; }
.hero-proof strong { font-size: 1.05rem; color: white; }
.hero-proof span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.hero-visual { align-self: stretch; display: grid; place-items: center; min-width: 0; }
.visual-frame { position: relative; width: 100%; aspect-ratio: 4/5; max-height: 590px; border: 1px solid rgba(133,224,229,.28); padding: 1rem; background: rgba(10,30,46,.54); box-shadow: 0 24px 80px rgba(0,0,0,.32); }
.visual-placeholder { height: calc(100% - 52px); position: relative; overflow: hidden; background: linear-gradient(135deg, #0b2a3e, #071722 70%); }
.visual-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; display: block; }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,20,31,.72), transparent 46%), linear-gradient(to top, rgba(4,14,23,.62), transparent 42%); pointer-events: none; }
.scope-label, .scope-reading { position: absolute; left: 1rem; font-size: .66rem; letter-spacing: .16em; color: var(--cyan-soft); }
.scope-label { top: 1rem; }
.scope-reading { bottom: 1rem; color: var(--orange); }
.visual-caption { min-height: 52px; display: flex; align-items: center; gap: 1rem; color: #aebfc7; font-size: .78rem; letter-spacing: .04em; }
.visual-caption span { color: var(--orange); }
.hero-index { position: absolute; right: max(1.5rem, calc((100vw - var(--max)) / 2)); bottom: 28px; margin: 0; font-size: .66rem; color: #6f8a98; letter-spacing: .16em; }
.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: #0a1a28; }
.signal-track { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 1.7rem; white-space: nowrap; color: #9fb5bf; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.signal-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

.section { padding: 110px max(1.5rem, calc((100vw - var(--max)) / 2)); }
.capabilities { background: var(--paper); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 4rem; align-items: start; }
.section-heading h2 { font-size: clamp(2.2rem, 4vw, 4.4rem); max-width: 850px; }
.capability-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 4.5rem; padding-bottom: 1rem; border-bottom: 1px solid #b9c8cd; }
.capability-intro p, .capability-intro span { margin: 0; }
.capability-intro p { font-weight: 700; }
.capability-intro span { color: #60727b; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.capability-shell { margin-top: 1.25rem; display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; min-height: 390px; }
.capability-tabs { display: grid; align-content: start; }
.capability-tab { cursor: pointer; text-align: left; background: transparent; color: #62727a; border: 0; border-bottom: 1px solid #ccd7da; padding: 1.25rem .6rem; font-weight: 650; display: flex; gap: 1.1rem; transition: all .2s ease; }
.capability-tab span { color: #8aa0aa; font-size: .7rem; }
.capability-tab:hover, .capability-tab:focus-visible { color: #0a5062; }
.capability-tab.is-active { color: var(--ink); padding-left: 1.2rem; border-left: 3px solid var(--orange); background: rgba(7,18,31,.04); }
.capability-panel { background: var(--ink-2); color: white; padding: clamp(2rem, 4vw, 4rem); display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end; }
.capability-panel[hidden] { display: none; }
.panel-kicker { color: var(--orange); letter-spacing: .15em; font-size: .68rem; font-weight: 700; }
.capability-panel h3 { font-size: clamp(2rem, 3.2vw, 3.4rem); max-width: 620px; }
.capability-panel p:not(.panel-kicker) { color: #a8bbc4; max-width: 640px; }
.capability-panel ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.capability-panel li { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .86rem; color: #c4d3d9; }
.capability-panel li::before { content: "+"; color: var(--cyan); margin-right: .65rem; }

.approach { background: #07121f; position: relative; overflow: hidden; }
.approach::after { content: ""; width: 520px; height: 520px; border: 1px solid rgba(67,229,239,.16); position: absolute; right: -250px; top: 90px; transform: rotate(45deg); }
.approach-heading h2 { font-size: clamp(2.3rem, 4.2vw, 4.8rem); }
.approach-heading h2 em { font-style: normal; color: var(--cyan); }
.section-lede { max-width: 730px; color: #9fb3bd; font-size: 1.08rem; }
.process { list-style: none; padding: 0; margin: 5rem 0 0; display: grid; grid-template-columns: repeat(7, 1fr); position: relative; z-index: 1; }
.process::before { content: ""; position: absolute; left: 2%; right: 2%; top: 28px; height: 1px; background: linear-gradient(90deg, var(--orange), var(--cyan)); opacity: .7; }
.process li { min-width: 0; padding-right: 1.25rem; }
.process li > span { position: relative; display: grid; place-items: center; width: 56px; height: 56px; background: var(--ink); border: 1px solid var(--line); color: var(--cyan); font-size: .7rem; z-index: 1; }
.process li:first-child > span { border-color: var(--orange); color: var(--orange); }
.process strong { display: block; margin-top: 1.35rem; font-size: .94rem; }
.process p { margin: .45rem 0 0; color: #8299a4; font-size: .78rem; line-height: 1.55; }

.proof { display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw; background: #0c2030; position: relative; }
.proof::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(67,229,239,.17) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to right, transparent 35%, black); opacity: .32; }
.proof-lead, .commitments { position: relative; z-index: 1; }
.proof-code { color: var(--orange); font-size: .68rem; letter-spacing: .18em; }
.proof h2 { font-size: clamp(2.35rem, 4.3vw, 4.7rem); margin: 1.1rem 0 1.5rem; }
.proof-lead > p:not(.eyebrow):not(.proof-code) { max-width: 680px; color: #a7bac2; }
.proof-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.proof-tags span { border: 1px solid var(--line); color: #bcd0d6; padding: .52rem .72rem; font-size: .72rem; }
.commitments { border-top: 1px solid var(--line); }
.commitments article { display: grid; grid-template-columns: 50px 1fr; gap: 1.2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.commitment-number { color: var(--cyan); font-size: .68rem; letter-spacing: .12em; }
.commitments h3 { font-size: 1.5rem; }
.commitments p { color: #8fa6b0; margin: .5rem 0 0; font-size: .9rem; }

.company { background: var(--paper); color: var(--ink); }
.company-statement { display: grid; grid-template-columns: .58fr 1fr; column-gap: 6vw; }
.company-statement .eyebrow { grid-column: 1; }
.company-statement h2 { grid-column: 2; grid-row: 1 / span 2; font-size: clamp(2.5rem, 4.8vw, 5rem); }
.company-statement > p:last-child { grid-column: 2; font-size: 1.12rem; max-width: 800px; color: #53666e; margin: 2rem 0 0; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 6rem; background: #bacacd; border: 1px solid #bacacd; }
.vision-mission article { padding: clamp(2rem, 4vw, 4rem); background: #e7f0f2; }
.vision-mission article:last-child { background: #d9e8eb; }
.meta { margin: 0 0 2.4rem; color: #147386; font-weight: 700; font-size: .68rem; letter-spacing: .16em; }
.vision-mission h3 { font-size: clamp(1.55rem, 2.7vw, 2.7rem); }
.vision-mission article > p:last-child { color: #5c6e75; }
.value-rail { display: flex; justify-content: space-between; gap: 1rem; padding: 1.7rem 0; border-bottom: 1px solid #bacacd; overflow-x: auto; }
.value-rail span { white-space: nowrap; color: #394c54; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.value-rail span::before { content: "/"; color: var(--orange); margin-right: .7rem; }

.closing { display: grid; grid-template-columns: 1.2fr .8fr auto; gap: 4rem; align-items: end; background: var(--ink); }
.closing h2 { font-size: clamp(2.6rem, 4.9vw, 5.2rem); }
.closing > p { color: #9db1ba; max-width: 580px; margin: 0; }
.closing .button { white-space: nowrap; }
.site-footer { padding: 2.5rem max(1.5rem, calc((100vw - var(--max)) / 2)) 1.5rem; border-top: 1px solid var(--line); background: #050d16; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.footer-brand > p { color: #718793; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin: 1.3rem 0 0; }
.footer-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.footer-info p { margin: 0; font-size: .82rem; }
.footer-info span { display: block; color: #6f8792; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 1.3rem; border-top: 1px solid var(--line); color: #627984; font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }

@media (max-width: 980px) {
  .site-header { width: min(calc(100% - 2rem), var(--max)); }
  .menu-toggle { display: grid; gap: 6px; }
  .menu-toggle span { width: 24px; height: 1px; background: white; }
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 1.25rem; background: #081827; border: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 1rem; }
  .site-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 128px; }
  .hero-copy { padding-right: 0; }
  .hero-visual { min-height: 420px; }
  .visual-frame { aspect-ratio: 16/9; max-height: none; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .capability-shell { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .process::before { display: none; }
  .proof { grid-template-columns: 1fr; }
  .company-statement { grid-template-columns: 1fr; }
  .company-statement h2, .company-statement > p:last-child { grid-column: 1; grid-row: auto; }
  .closing { grid-template-columns: 1fr; align-items: start; }
  .footer-info { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 72px; }
  .hero { min-height: auto; padding: 108px 1.15rem 3rem; }
  h1 { font-size: clamp(2.75rem, 14.6vw, 4.3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.2rem; }
  .hero-visual { min-height: 0; margin-top: 1.5rem; }
  .visual-frame { aspect-ratio: 4/3; }
  .hero-index { display: none; }
  .signal-track { justify-content: flex-start; width: max-content; padding-inline: 1rem; animation: marquee 20s linear infinite; }
  .section { padding: 76px 1.15rem; }
  .capability-intro { align-items: flex-start; gap: 1rem; flex-direction: column; margin-top: 2.7rem; }
  .capability-panel { grid-template-columns: 1fr; padding: 1.5rem; gap: 2rem; }
  .capability-tab { min-height: 58px; }
  .process { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 3rem; }
  .process li { display: grid; grid-template-columns: 48px 1fr; column-gap: 1rem; align-items: start; }
  .process li > span { width: 44px; height: 44px; grid-row: 1 / span 2; }
  .process strong { margin: 0; }
  .process p { margin-top: .2rem; }
  .vision-mission { grid-template-columns: 1fr; margin-top: 3.5rem; }
  .closing { gap: 2rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { grid-column: 1; }
  @keyframes marquee { to { transform: translateX(-45%); } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .brand-word { animation: none; max-width: 160px; opacity: 1; margin-left: .75rem; }
}
