:root {
  --ink: #eef8f3;
  --muted: #93aaa1;
  --quiet: #5f746c;
  --green: #9affc9;
  --green-strong: #41e49b;
  --lime: #d9ff7a;
  --bg: #06100d;
  --panel: #0a1713;
  --panel-2: #0d1c17;
  --line: rgba(181, 255, 220, .14);
  --line-strong: rgba(181, 255, 220, .28);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(255,255,255,.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.017) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 30%), rgba(65, 228, 155, .035), transparent 55%);
}

::selection { background: var(--green); color: #04100b; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--green);
  color: #04100b;
  border-radius: 6px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.ambient { position: fixed; pointer-events: none; filter: blur(1px); opacity: .6; }
.ambient-one { width: 50vw; height: 50vw; top: -32vw; right: -18vw; background: radial-gradient(circle, rgba(65,228,155,.11), transparent 68%); }
.ambient-two { width: 36vw; height: 36vw; top: 45vh; left: -28vw; background: radial-gradient(circle, rgba(217,255,122,.06), transparent 70%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 16, 13, .8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--shell);
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 13px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--green-strong);
  color: var(--green);
  font-weight: 600;
  letter-spacing: -.08em;
  border-radius: 4px;
  box-shadow: inset 0 0 18px rgba(65,228,155,.06);
}
.brand-slash { color: var(--quiet); }
.brand-role { color: var(--muted); }
.nav { margin-left: auto; display: flex; gap: 30px; }
.nav a { position: relative; color: var(--muted); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--green); transition: right .25s; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-cta { padding: 10px 15px; border: 1px solid var(--line-strong); border-radius: 4px; font-family: var(--font-mono); font-size: 12px; transition: background .2s, border-color .2s; }
.header-cta:hover { background: rgba(154,255,201,.08); border-color: var(--green); }
.header-cta span, .text-link span { color: var(--green); }
.scroll-progress { position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--green-strong); box-shadow: 0 0 8px var(--green-strong); }

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 90px 80px;
}
.eyebrow, .mono-kicker { margin: 0 0 24px; color: var(--green); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.pulse { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--green-strong); box-shadow: 0 0 0 5px rgba(65,228,155,.1), 0 0 20px rgba(65,228,155,.8); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(65,228,155,0), 0 0 24px rgba(65,228,155,.9); } }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 600;
}
.hero h1 em { color: var(--green); font-style: normal; font-weight: 500; }
.hero-intro { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 50px; padding: 0 21px; border-radius: 4px; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .03em; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #06100d; border: 1px solid var(--green); }
.button-primary:hover { background: var(--lime); border-color: var(--lime); }
.button-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.button-ghost span { color: var(--green); }
.button-ghost:hover { border-color: var(--green); background: rgba(154,255,201,.04); }
.quick-facts { display: flex; gap: clamp(28px, 4vw, 54px); margin: 52px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); }
.quick-facts div { display: grid; gap: 3px; }
.quick-facts dt { font-family: var(--font-mono); color: var(--ink); font-size: 20px; line-height: 1; }
.quick-facts dd { margin: 0; color: var(--quiet); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

.cloud-console { position: relative; background: linear-gradient(145deg, rgba(13,28,23,.95), rgba(6,15,12,.97)); border: 1px solid var(--line-strong); border-radius: 10px; box-shadow: 0 34px 90px rgba(0,0,0,.35), 0 0 0 8px rgba(255,255,255,.012); overflow: hidden; transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.cloud-console::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.025), transparent 65%); }
.console-bar { height: 46px; padding: 0 16px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); color: var(--quiet); font-family: var(--font-mono); font-size: 10px; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #ec6a5e; }
.window-dots span:nth-child(2) { background: #f5bf4f; }
.window-dots span:nth-child(3) { background: #61c554; }
.console-lock { margin-left: auto; color: var(--green); font-size: 16px; }
.console-body { padding: clamp(23px, 4vw, 36px); font-family: var(--font-mono); font-size: 12px; }
.command { margin: 0; color: var(--ink); }
.command > span:first-child { color: var(--green); margin-right: 8px; }
.caret { display: inline-block; width: 7px; height: 14px; margin-left: 4px; vertical-align: -2px; background: var(--green); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.console-rule { height: 1px; margin: 22px 0; background: linear-gradient(90deg, var(--line-strong), transparent); }
.status-grid { display: grid; grid-template-columns: 92px 1fr; gap: 10px 18px; }
.status-grid > span { color: var(--quiet); font-size: 10px; letter-spacing: .1em; }
.status-grid strong { color: #d8e6df; font-weight: 400; }
.status-grid .online { color: var(--green); }
.online i, .signal { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--green-strong); box-shadow: 0 0 8px rgba(65,228,155,.8); }
.console-output { margin: 25px 0 0; padding: 18px; background: rgba(0,0,0,.22); border-left: 2px solid var(--green-strong); }
.console-output p { margin: 0; color: var(--muted); }
.console-output p + p { margin-top: 6px; }
.console-output .muted { color: #38554a; margin-right: 10px; }
.console-footer { display: flex; justify-content: space-between; padding: 11px 16px; border-top: 1px solid var(--line); color: var(--quiet); background: rgba(0,0,0,.18); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(154,255,201,.025); }
.signal-track { display: flex; align-items: center; width: max-content; min-width: 100%; padding: 14px 0; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; animation: drift 28s linear infinite; }
.signal-track span { margin-inline: 28px; }
.signal-track i { color: var(--green-strong); font-style: normal; font-size: 6px; }
@keyframes drift { to { transform: translateX(-20%); } }

.section { padding-block: 120px; }
.section-label { display: flex; align-items: center; gap: 15px; margin-bottom: 54px; }
.section-label span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--green); font-family: var(--font-mono); font-size: 9px; }
.section-label p { margin: 0; color: var(--muted); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.section-label::after { content: ""; width: 80px; height: 1px; background: var(--line); }
.about-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: clamp(55px, 10vw, 140px); align-items: start; }
.about-copy h2, .section-heading h2, .journey-copy h2 { margin: 0 0 30px; font-size: clamp(34px, 4.1vw, 56px); line-height: 1.08; letter-spacing: -.045em; font-weight: 500; }
.about-copy p { max-width: 660px; margin: 0; color: var(--muted); font-size: 17px; }
.about-copy p + p { margin-top: 20px; }
.manifest-card { border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(10,23,19,.76); overflow: hidden; box-shadow: 22px 22px 0 rgba(65,228,155,.025); }
.manifest-title { display: flex; justify-content: space-between; padding: 12px 17px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--muted); font-family: var(--font-mono); font-size: 10px; }
.manifest-title small { color: var(--quiet); }
.manifest-card pre { margin: 0; padding: 25px; overflow-x: auto; color: #a4b6ae; font: 12px/1.8 var(--font-mono); }
.manifest-card .key { color: #76bfff; }
.manifest-card .value { color: #e2d596; }
.manifest-card .success { color: var(--green); }

.expertise { border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin: 0 0 6px; color: var(--muted); font-size: 16px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.expertise-card { position: relative; min-height: 400px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(13,28,23,.55), rgba(6,16,13,.25)); transition: background .3s, transform .3s; }
.expertise-card:hover { z-index: 2; background: rgba(17,39,31,.85); transform: translateY(-5px); }
.card-index { position: absolute; right: 25px; top: 25px; color: #355047; font: 10px var(--font-mono); }
.expertise-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 80px; border: 1px solid var(--line-strong); border-radius: 6px; color: var(--green); background: rgba(65,228,155,.04); }
.expertise-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.expertise-card h3 { margin: 0 0 14px; font-size: 21px; font-weight: 500; letter-spacing: -.02em; }
.expertise-card p { margin: 0; color: var(--muted); font-size: 14px; }
.expertise-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0 0; padding: 0; list-style: none; }
.expertise-card li { padding: 5px 8px; border: 1px solid var(--line); border-radius: 3px; color: var(--quiet); font: 9px var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }

.journey { border-top: 1px solid var(--line); }
.journey-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(450px, 1.2fr); gap: clamp(60px, 10vw, 150px); }
.journey-copy { position: sticky; top: 135px; align-self: start; }
.journey-copy > p:not(.mono-kicker) { max-width: 490px; color: var(--muted); }
.text-link { display: inline-flex; gap: 12px; margin-top: 25px; padding-bottom: 5px; border-bottom: 1px solid var(--line-strong); color: var(--ink); font: 11px var(--font-mono); text-transform: uppercase; letter-spacing: .05em; }
.text-link:hover { border-color: var(--green); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 42px 1fr; min-height: 160px; }
.timeline-node { display: flex; flex-direction: column; align-items: center; }
.timeline-node::after { content: ""; flex: 1; width: 1px; background: var(--line-strong); }
.timeline li:last-child .timeline-node::after { display: none; }
.timeline-node span { width: 13px; height: 13px; margin-top: 4px; border: 2px solid #38584c; border-radius: 50%; background: var(--bg); }
.timeline .active .timeline-node span { border-color: var(--green); background: var(--green); box-shadow: 0 0 0 6px rgba(65,228,155,.1), 0 0 20px rgba(65,228,155,.4); }
.timeline-content { padding: 0 0 48px 20px; }
.timeline-content small { color: var(--green); font: 9px var(--font-mono); letter-spacing: .15em; }
.timeline-content h3 { margin: 8px 0 5px; font-size: 23px; font-weight: 500; }
.timeline-content p { margin: 0; color: var(--muted); font-size: 14px; }

.credentials { border-top: 1px solid var(--line); }
.credential-list { border-top: 1px solid var(--line); }
.credential-list article { display: grid; grid-template-columns: 105px 1fr 70px; align-items: center; gap: 25px; min-height: 116px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.credential-list article:hover { padding-inline: 15px; background: rgba(154,255,201,.025); }
.credential-year { color: var(--green); font: 11px var(--font-mono); }
.credential-list small { color: var(--quiet); font: 9px var(--font-mono); letter-spacing: .13em; }
.credential-list h3 { margin: 6px 0 0; font-size: clamp(17px, 2vw, 23px); font-weight: 500; }
.credential-mark { justify-self: end; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--green); font: 10px var(--font-mono); }
.credential-note { margin: 22px 0 0; color: var(--quiet); font: 10px/1.6 var(--font-mono); }

.contact { position: relative; min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 30px; text-align: center; background: var(--green); color: #06100d; border-radius: 10px; overflow: hidden; }
.contact-noise { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(0,0,0,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.18) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(circle, black, transparent 75%); }
.contact > *:not(.contact-noise, .contact-orbit) { position: relative; z-index: 2; }
.contact .mono-kicker { color: #174d36; }
.contact h2 { margin: 0; font-size: clamp(38px, 5.6vw, 68px); line-height: 1.03; letter-spacing: -.05em; font-weight: 600; }
.contact > p:not(.mono-kicker) { max-width: 600px; margin: 24px 0 30px; color: #286349; font-size: 16px; }
.button-light { background: #06100d; color: var(--ink); border: 1px solid #06100d; }
.button-light:hover { background: #10251d; }
.button-light span { color: var(--green); }
.contact-orbit { position: absolute; border: 1px solid rgba(6,16,13,.12); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; left: -250px; bottom: -260px; }
.orbit-two { width: 600px; height: 600px; right: -390px; top: -370px; }

.footer { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--quiet); font: 10px var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.footer-brand .brand-mark { width: 31px; height: 31px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: .1s; }
.delay-two { transition-delay: .2s; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .cloud-console { max-width: 650px; transform: none; }
  .about-layout, .journey-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 760px; }
  .manifest-card { max-width: 650px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .expertise-card:last-child { grid-column: 1 / -1; }
  .journey-copy { position: static; }
  .timeline { max-width: 720px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .header-inner { min-height: 65px; gap: 14px; }
  .brand-role, .brand-slash { display: none; }
  .brand-mark { width: 31px; height: 31px; }
  .nav { gap: 15px; }
  .nav a { font-size: 9px; }
  .nav a:nth-child(2) { display: none; }
  .header-cta { padding: 8px 10px; font-size: 9px; }
  .hero { padding-block: 65px; gap: 55px; }
  .hero h1 { font-size: clamp(44px, 13vw, 66px); }
  .hero-intro { font-size: 16px; }
  .quick-facts { gap: 21px; }
  .quick-facts dt { font-size: 18px; }
  .quick-facts dd { font-size: 8px; }
  .cloud-console { margin-inline: -5px; }
  .console-body { font-size: 10px; }
  .status-grid { grid-template-columns: 75px 1fr; }
  .section { padding-block: 86px; }
  .section-label { margin-bottom: 38px; }
  .about-layout { gap: 45px; }
  .about-copy h2, .section-heading h2, .journey-copy h2 { font-size: 36px; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading > p { margin-top: 20px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card:last-child { grid-column: auto; }
  .expertise-card { min-height: 330px; }
  .expertise-icon { margin-bottom: 48px; }
  .journey-grid { gap: 55px; }
  .credential-list article { grid-template-columns: 58px 1fr 45px; gap: 12px; min-height: 124px; }
  .credential-mark { width: 42px; height: 42px; font-size: 8px; }
  .credential-list h3 { font-size: 16px; }
  .contact { min-height: 480px; padding-inline: 22px; }
  .footer { flex-direction: column; justify-content: center; text-align: center; gap: 14px; }
  .footer p { margin: 0; }
}

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