@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Instrument+Sans:wdth,wght@75..100,400..700&display=swap');

:root {
  --ink: #101314;
  --ink-2: #171b1d;
  --paper: #f3f1ea;
  --paper-2: #e7e4dc;
  --line: #c9c6bc;
  --muted: #696b68;
  --white: #ffffff;
  --signal: #f1ff48;
  --blue: #1557ff;
  --amber: #ff9d27;
  --success: #35d07f;
  --display: "Instrument Sans", "Arial Narrow", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --shadow: 0 18px 50px rgba(16, 19, 20, .12);
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--mono);
  font-size: 13px;
}
.skip-link:focus { top: 16px; }

.shell { width: min(1260px, calc(100% - 48px)); min-width: 0; margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
.narrow, main, section, article, header, footer { min-width: 0; max-width: 100%; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { color: var(--white); background: var(--ink); }
.section--blue { color: var(--white); background: var(--blue); }
.section--signal { color: var(--ink); background: var(--signal); }
.section--paper2 { background: var(--paper-2); }
.rule { border-top: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--white);
  background: rgba(16, 19, 20, .94);
  border-bottom: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(14px);
}
.header-row { min-height: 74px; display: flex; align-items: center; gap: 34px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: 19px;
}
.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid var(--signal);
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px -4px;
  border-top: 1px solid var(--signal);
  border-bottom: 1px solid var(--signal);
  border-radius: 50%;
}
.brand-mark::after { inset: -4px 7px; border: 0; border-left: 1px solid var(--signal); border-right: 1px solid var(--signal); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.site-nav a {
  color: #d8d9d5;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--signal); }
.header-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ink) !important;
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 3px;
  font-weight: 600;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 3px;
  cursor: pointer;
}
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }

.hero {
  position: relative;
  min-height: 690px;
  color: var(--white);
  background: #0c0e0f url("/assets/elanix-ai-infrastructure.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,10,.98) 0%, rgba(7,9,10,.86) 40%, rgba(7,9,10,.2) 75%, rgba(7,9,10,.12) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; }
.hero .shell { position: relative; z-index: 1; min-height: 690px; display: flex; flex-direction: column; justify-content: center; }
.hero-copy { width: min(680px, 72%); padding: 72px 0 92px; }
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.kicker::before, .eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.kicker { color: var(--signal); }
.eyebrow { color: var(--blue); }
.section--dark .eyebrow, .section--blue .eyebrow { color: var(--signal); }
h1, h2, h3, h4 { max-width: 100%; margin: 0; font-family: var(--display); line-height: 1.04; letter-spacing: 0; overflow-wrap: anywhere; }
h1 { max-width: 760px; font-size: 76px; font-weight: 660; }
h2 { max-width: 850px; font-size: 54px; font-weight: 650; }
h3 { font-size: 28px; font-weight: 630; }
h4 { font-size: 20px; font-weight: 640; }
.hero p { max-width: 620px; margin: 28px 0 0; color: #d4d5d2; font-size: 20px; line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 3px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.button:hover { transform: translateY(-2px); background: var(--white); }
.button--outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); }
.button--outline:hover { color: var(--ink); }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: var(--white); }
.button--blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.arrow { font-size: 18px; line-height: 1; }

.status-strip { color: var(--white); background: var(--blue); }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.status-item { min-height: 112px; padding: 24px; border-right: 1px solid rgba(255,255,255,.28); }
.status-item, .service-row > *, .control-board > *, .outcome, .feature, .insight-card { min-width: 0; }
.status-item:last-child { border-right: 0; }
.status-item strong { display: block; margin-bottom: 5px; font-family: var(--mono); color: var(--signal); font-size: 13px; }
.status-item span { color: #eff3ff; font-size: 15px; }

.section-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr); gap: 80px; align-items: end; margin-bottom: 56px; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.section--dark .section-head p, .section--blue .section-head p { color: #c8ccca; }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, .75fr) minmax(300px, 1.4fr) 24px;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .18s ease, background .18s ease;
}
.service-row:hover { padding-left: 16px; padding-right: 16px; background: rgba(255,255,255,.55); }
.service-row .index { color: var(--blue); font-family: var(--mono); font-size: 12px; }
.service-row p { margin: 0; color: var(--muted); }
.service-row .arrow { color: var(--blue); }

.control-board { display: grid; grid-template-columns: 1.15fr .85fr; border: 1px solid #343a3c; background: var(--ink-2); box-shadow: var(--shadow); }
.control-main { padding: 42px; border-right: 1px solid #343a3c; }
.control-side { display: grid; grid-template-rows: repeat(3, 1fr); }
.control-unit { padding: 26px; border-bottom: 1px solid #343a3c; }
.control-unit:last-child { border-bottom: 0; }
.control-label { margin-bottom: 18px; color: #919794; font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.control-value { color: var(--white); font-size: 20px; font-weight: 600; }
.meter { height: 8px; margin-top: 18px; background: #2e3435; overflow: hidden; }
.meter span { display: block; height: 100%; background: var(--signal); }
.flow-line { display: flex; align-items: center; gap: 8px; margin: 28px 0 4px; }
.node { width: 12px; height: 12px; border: 2px solid var(--signal); border-radius: 50%; }
.track { flex: 1; height: 2px; background: var(--blue); position: relative; }
.track::after { content: ""; position: absolute; right: 0; top: -4px; border-left: 7px solid var(--blue); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.flow-caption { display: flex; justify-content: space-between; color: #9ca29f; font-family: var(--mono); font-size: 10px; }
.control-main h3 { max-width: 520px; color: var(--white); font-size: 36px; }
.control-main p { max-width: 590px; color: #b8bcba; }

.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outcome { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outcome:nth-child(2) { background: var(--signal); }
.outcome:nth-child(5) { color: var(--white); background: var(--blue); }
.outcome .num { display: block; margin-bottom: 50px; font-family: var(--mono); color: var(--blue); font-size: 12px; }
.outcome:nth-child(5) .num { color: var(--signal); }
.outcome p { margin: 14px 0 0; color: var(--muted); }
.outcome:nth-child(2) p, .outcome:nth-child(5) p { color: inherit; }

.proof-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; }
.proof-stat { padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.proof-stat strong { display: block; color: var(--signal); font-size: 48px; line-height: 1; }
.proof-stat span { color: #b8bcba; }
.quote-list { border-top: 1px solid rgba(255,255,255,.2); }
.quote { padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.quote p { margin: 0 0 14px; font-size: 22px; line-height: 1.45; }
.quote cite { color: #aeb4b1; font-family: var(--mono); font-size: 12px; font-style: normal; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { display: flex; min-height: 340px; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 5px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.insight-card .meta { margin-bottom: auto; color: var(--blue); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.insight-card h3 { margin: 46px 0 18px; }
.insight-card p { margin: 0; color: var(--muted); }
.insight-card .read { margin-top: 30px; color: var(--blue); font-family: var(--mono); font-size: 12px; }

.page-hero { padding: 100px 0 72px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; color: var(--ink); font-size: 64px; }
.page-hero p { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 20px; }
.page-hero--dark { color: var(--white); background: var(--ink); }
.page-hero--dark h1 { color: var(--white); }
.page-hero--dark p { color: #bec3c0; }
.breadcrumb { margin-bottom: 26px; color: var(--blue); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.page-hero--dark .breadcrumb { color: var(--signal); }

.split { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 88px; align-items: start; }
.split h2 { font-size: 44px; }
.prose { max-width: 760px; }
.prose > *:first-child { margin-top: 0; }
.prose p, .prose li { color: #4e514f; font-size: 18px; }
.prose h2 { margin: 64px 0 20px; font-size: 40px; }
.prose h3 { margin: 42px 0 16px; }
.prose ul, .prose ol { padding-left: 23px; }
.prose li { margin: 10px 0; }
.prose .lead { color: var(--ink); font-size: 23px; line-height: 1.5; }
.prose blockquote { margin: 38px 0; padding: 24px 28px; background: var(--signal); border-left: 5px solid var(--ink); font-size: 21px; }
.aside-nav { position: sticky; top: 104px; border-top: 3px solid var(--ink); }
.aside-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.aside-nav a:hover { color: var(--blue); }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { min-height: 250px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 5px; }
.feature .tag { color: var(--blue); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.feature h3 { margin-top: 38px; }
.feature p { color: var(--muted); }
.feature--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.feature--dark p { color: #bcc1bf; }
.feature--signal { background: var(--signal); }

.timeline { border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 40px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.timeline-row .phase { color: var(--blue); font-family: var(--mono); font-size: 12px; }
.timeline-row p { margin: 0; color: var(--muted); }

.partner-cloud { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.partner { min-height: 150px; display: grid; place-items: center; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-family: var(--mono); font-weight: 600; }
.partner:nth-child(3n) { background: var(--signal); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-lines { border-top: 1px solid var(--line); }
.contact-line { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-line span { display: block; color: var(--muted); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.contact-line a, .contact-line strong { font-size: 19px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 15px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 3px; }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 64px 0; }
.cta-band h2 { font-size: 46px; }

.site-footer { color: var(--white); background: #080a0b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 56px; padding: 72px 0 54px; }
.footer-brand p { max-width: 390px; color: #9fa4a1; }
.footer-col h4 { margin-bottom: 18px; color: var(--signal); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 10px 0; color: #c9cdcb; text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--signal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; color: #747a77; border-top: 1px solid #292d2f; font-family: var(--mono); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1000px) {
  .site-nav { position: fixed; inset: 74px 0 auto 0; display: none; max-height: calc(100vh - 74px); overflow: auto; padding: 28px 24px 36px; background: var(--ink); border-bottom: 1px solid #353a3c; }
  .site-nav.is-open { display: grid; gap: 0; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid #2f3436; }
  .header-action { margin-top: 16px; }
  .menu-button { display: block; }
  .hero, .hero .shell { min-height: 650px; }
  h1 { font-size: 62px; }
  h2 { font-size: 46px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .service-row { grid-template-columns: 54px 1fr 24px; }
  .service-row p { grid-column: 2 / 3; }
  .control-board, .proof-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .control-main { border-right: 0; border-bottom: 1px solid #343a3c; }
  .outcome-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-cloud { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .aside-nav { position: static; }
}

@media (max-width: 700px) {
  .shell, .narrow { width: min(100% - 32px, 1260px); }
  .section { padding: 68px 0; }
  .section--tight { padding: 46px 0; }
  .hero { background-position: 66% center; }
  .hero::before { background: linear-gradient(90deg, rgba(7,9,10,.98), rgba(7,9,10,.82)); }
  .hero-copy { width: 100%; padding: 64px 0 78px; }
  .hero-copy > * { max-width: 100%; }
  h1, .page-hero h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero p, .page-hero p { font-size: 18px; }
  .actions { width: 100%; flex-direction: column; align-items: stretch; }
  .actions .button { width: 100%; }
  .status-grid { grid-template-columns: 1fr; }
  .status-item { width: 100%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .status-item:last-child { border-bottom: 0; }
  .service-row { grid-template-columns: 36px 1fr 18px; gap: 14px; }
  .outcome-grid, .insight-grid, .feature-grid { grid-template-columns: 1fr; }
  .control-main { padding: 28px; }
  .control-main h3 { font-size: 30px; }
  .timeline-row { grid-template-columns: 1fr; gap: 10px; }
  .partner-cloud { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .header-row { min-height: 66px; }
  .site-nav { inset: 66px 0 auto 0; }
  .brand { font-size: 17px; }
  h1, .page-hero h1 { font-size: 40px; }
  .status-grid, .partner-cloud, .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .status-item { border-right: 0; }
  .actions .button { width: 100%; }
  .service-row { grid-template-columns: 30px 1fr; }
  .service-row .arrow { display: none; }
  .service-row p { grid-column: 2 / 3; }
}
