:root {
  --navy-950: #03101f;
  --navy-900: #061426;
  --navy-850: #091a30;
  --navy-700: #16304d;
  --ink: #071629;
  --paper: #ffffff;
  --paper-soft: #f4f7fa;
  --text: #f7f9fc;
  --muted: #a9b5c5;
  --muted-dark: #516174;
  --amber: #ffb42f;
  --amber-strong: #f6a91b;
  --line: rgba(180, 202, 228, .22);
  --max-width: 1586px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --shadow: 0 26px 70px rgba(0, 0, 0, .3);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  background: var(--amber);
  color: var(--ink);
  padding: .75rem 1rem;
  font-weight: 750;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100%, calc(var(--max-width) + 2 * var(--gutter)));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem var(--gutter);
}
.wordmark {
  display: block;
  width: clamp(11.5rem, 16vw, 14.5rem);
  text-decoration: none;
}
.wordmark img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.4rem); }
.site-nav a, .site-footer nav a {
  color: var(--text);
  font-size: .96rem;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: .35rem;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-footer a:hover, .site-footer a:focus-visible { text-decoration: underline; }
.header-contact { justify-self: end; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: .8rem 1.45rem;
  font-size: .96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, .copy-button:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 180, 47, .48);
  outline-offset: 3px;
}
.button-small { min-height: 3.05rem; padding: .65rem 1.35rem; }
.button-wide { width: 100%; }
.button-primary { background: var(--amber); color: #09101a; }
.button-primary:hover { background: #ffc55a; }
.button-secondary { border-color: rgba(255, 255, 255, .72); background: rgba(2, 12, 24, .32); color: var(--paper); }
.button-secondary:hover { border-color: var(--paper); background: rgba(255, 255, 255, .08); }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background-color: var(--navy-950);
  background:
    radial-gradient(circle at 76% 45%, rgba(255, 180, 47, .12), transparent 22rem),
    linear-gradient(120deg, var(--navy-950) 0%, #06162a 58%, #0b2038 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(180, 202, 228, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(180, 202, 228, .12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to left, #000, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  min-height: 860px;
  margin: 0 auto;
  padding: 10.5rem var(--gutter) 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, .82fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.hero-copy { max-width: 760px; }
.hero-copy { margin-top: -5rem; }
.hero h1, h2 {
  margin: 0;
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { overflow-wrap: anywhere; font-size: clamp(3.5rem, 5.1vw, 5.1rem); }
.hero-lede {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #e3e9f0;
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.65rem; }
.hero-actions .button-primary { min-width: 17.8rem; }
.hero-actions .button-secondary { min-width: 17.2rem; }
.service-area { margin: 2rem 0 0; color: var(--muted); font-size: .94rem; }
.hero-system {
  position: relative;
  border: 1px solid rgba(180, 202, 228, .28);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(155deg, rgba(16, 39, 65, .88), rgba(3, 16, 31, .94));
  box-shadow: var(--shadow);
}
.hero-system::before { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(180, 202, 228, .09); border-radius: 7px; pointer-events: none; }
.hero-system-topline { display: flex; justify-content: space-between; gap: 2rem; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-light { display: inline-flex; align-items: center; gap: .5rem; color: #dbe9f6; }
.status-light::before { content: ""; width: .48rem; height: .48rem; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 .32rem rgba(255, 180, 47, .12); }
.hero-hub-mark { display: flex; width: 7.5rem; height: 8.5rem; margin: 4rem 0 2.6rem; flex-direction: column; justify-content: center; gap: 1rem; border: 1px solid #54708d; border-radius: 8px; padding: 1.25rem; background: #07192c; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.hero-hub-mark span { display: block; height: .4rem; border-radius: 1rem; background: #395570; }
.hero-hub-mark span:last-child { width: 38%; background: var(--amber); }
.hero-system > strong { display: block; font-size: clamp(1.6rem, 2.8vw, 2.55rem); line-height: 1.12; letter-spacing: -.045em; }
.hero-system-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 3rem; }
.hero-system-services span { border-top: 1px solid var(--line); padding-top: .7rem; color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) var(--gutter);
}
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--navy-900); }
.ownership .section-shell { padding-top: clamp(3.75rem, 5vw, 5rem); }
.section-heading h2, .capabilities h2, .process h2, .contact h2 { font-size: clamp(2.75rem, 5vw, 5rem); }
.section-heading > p, .process-heading > p, .contact-copy > p {
  margin: 1.75rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.ownership-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.section-heading > p { color: var(--muted-dark); }
.ownership-brand { width: min(100%, 15rem); margin: 0 0 2.25rem; }
.ownership-rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid #dbe3eb;
  border-bottom: 1px solid #dbe3eb;
  padding: 2rem 0;
}
.rail-label { display: block; margin-bottom: .75rem; color: var(--muted-dark); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.rail-side strong { font-size: clamp(1.08rem, 1.6vw, 1.35rem); line-height: 1.45; }
.rail-side-muted strong { color: #6e7b89; text-decoration: line-through; text-decoration-thickness: 1px; }
.rail-side-owned strong { color: var(--ink); }
.rail-arrow { width: 2.5rem; color: var(--amber-strong); }
.rail-arrow svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }

.capabilities-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(4rem, 8vw, 8.5rem); }
.capability-list { list-style: none; margin: 3.75rem 0 0; padding: 0; }
.capability-list li { position: relative; display: grid; grid-template-columns: 3.35rem 1fr; gap: 1.25rem; padding: 0 0 2rem; }
.capability-list li:not(:last-child)::after { content: ""; position: absolute; left: 1.65rem; top: 3.05rem; bottom: .25rem; width: 1px; background: var(--line); }
.capability-icon { position: relative; z-index: 1; display: grid; width: 3.35rem; height: 3.35rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--navy-900); color: var(--amber); }
.capability-icon svg { width: 1.65rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.capability-list strong { display: block; padding-top: .15rem; font-size: 1.12rem; }
.capability-list p { margin: .3rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.system-diagram { margin: 0; border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.5rem, 3vw, 3rem); background: #07182b; box-shadow: var(--shadow); }
.system-diagram figcaption { margin-bottom: 2rem; color: var(--paper); font-size: 1rem; font-weight: 750; }
.diagram-flow { display: grid; grid-template-columns: repeat(9, minmax(0, auto)); align-items: center; gap: .65rem; }
.diagram-node { display: grid; min-width: 5.6rem; min-height: 7rem; place-items: center; align-content: center; gap: .85rem; border: 1px solid #29435f; border-radius: 7px; padding: 1rem .7rem; background: #0a1e34; text-align: center; }
.diagram-node svg { width: 2.4rem; fill: none; stroke: var(--amber); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.diagram-node span { color: #dfe8f1; font-size: .7rem; font-weight: 750; line-height: 1.25; }
.diagram-node.diagram-hub { border-color: rgba(255, 180, 47, .65); background: #102a46; }
.diagram-node.diagram-plex { min-width: 4.5rem; }
.diagram-node .plex-word { color: var(--paper); font-size: 1.12rem; letter-spacing: -.04em; }
.diagram-node .plex-word::first-letter { color: var(--amber); }
.diagram-link { display: block; width: 1.5rem; height: 1px; background: #54708d; }
.diagram-link::after { content: ""; display: block; width: .38rem; height: .38rem; margin: -.19rem 0 0 auto; border-top: 1px solid #54708d; border-right: 1px solid #54708d; transform: rotate(45deg); }
.system-diagram > p { margin: 1.5rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.plex-section { overflow: hidden; }
.plex-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(28rem, 1.1fr); align-items: center; gap: clamp(4rem, 10vw, 10rem); }
.plex-copy h2 { max-width: 12ch; color: var(--ink); font-size: clamp(3rem, 5.7vw, 5.8rem); font-weight: 750; letter-spacing: -.06em; line-height: .98; }
.plex-copy p { max-width: 41rem; margin: 2rem 0 2.5rem; color: var(--muted-dark); font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.plex-copy .plex-disclosure { margin-top: -1.25rem; font-size: .9rem; }
.plex-library { position: relative; border: 1px solid #cbd7e2; border-radius: 12px; padding: clamp(1.4rem, 3vw, 2.8rem); background: var(--navy-950); color: var(--paper); box-shadow: 0 30px 80px rgba(7, 22, 41, .2); transform: rotate(1.2deg); }
.plex-library::before { content: ""; position: absolute; width: 72%; height: 102%; left: 14%; top: -1%; border: 1px solid rgba(7, 22, 41, .14); border-radius: 12px; transform: rotate(-4deg); z-index: -1; background: #e7edf3; }
.library-header { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); padding-bottom: 1.1rem; }
.library-header strong { color: var(--paper); font-size: 1.8rem; letter-spacing: -.055em; }
.library-header strong::first-letter { color: var(--amber); }
.library-header span { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .13em; }
.library-shelves { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 1.4rem; }
.library-shelves span { display: flex; min-height: 8rem; align-items: end; border: 1px solid #29435f; border-radius: 5px; padding: 1rem; background: linear-gradient(145deg, #153553, #0a1c31); color: #dce6ef; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.plex-library > p { margin: 1.5rem 0 0; color: var(--muted); font-size: .85rem; }

.process { position: relative; overflow: hidden; background: var(--navy-950); }
.process::after { content: ""; position: absolute; right: -9rem; top: 5rem; width: 35rem; height: 18rem; border: 1px solid rgba(255, 180, 47, .1); transform: skewX(-18deg); pointer-events: none; }
.process-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.process-heading > p { width: min(30%, 21rem); color: var(--muted); }
.process-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 5rem 0 0; padding: 0; counter-reset: steps; }
.process-list li { position: relative; min-height: 18rem; border-top: 1px solid var(--line); padding: 2.4rem clamp(1.5rem, 3vw, 3rem) 0 0; }
.process-list li:not(:last-child)::after { content: ""; position: absolute; top: -.28rem; right: 1.5rem; width: .55rem; height: .55rem; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 .4rem var(--navy-950); }
.step-number { color: var(--amber); font-size: 1.05rem; font-weight: 800; letter-spacing: .08em; }
.process-list h3 { margin: 1.7rem 0 .8rem; max-width: 16rem; font-size: 1.35rem; line-height: 1.25; }
.process-list p { max-width: 19rem; margin: 0; color: var(--muted); font-size: .94rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: clamp(4rem, 10vw, 10rem); }
.contact-copy > p { color: var(--muted); }
.direct-actions { margin-top: 2.5rem; }
.direct-actions .button { max-width: 24rem; }
.text-link { display: block; width: max-content; margin-top: 1.25rem; color: var(--text); font-size: .95rem; text-underline-offset: .3rem; }
.lead-form { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3.2vw, 3rem); background: rgba(3, 16, 31, .45); box-shadow: var(--shadow); }
.field + .field { margin-top: 1.35rem; }
.field label { display: block; margin-bottom: .45rem; font-size: .94rem; font-weight: 650; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #47617d;
  border-radius: var(--radius);
  background: rgba(2, 12, 24, .45);
  color: var(--paper);
  padding: .9rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input::placeholder, .field textarea::placeholder { color: #8392a5; }
.field input:hover, .field textarea:hover { border-color: #6f89a7; }
.field [aria-invalid="true"] { border-color: #ff8c77; }
.lead-form > .button { margin-top: 1.6rem; }
.form-note { margin: 1.1rem 0 0; color: var(--muted); font-size: .79rem; line-height: 1.5; }
.form-status { min-height: 1.55rem; margin-top: .8rem; color: #ffd68d; font-size: .88rem; }
.copy-button { border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--paper); padding: .2rem 0; cursor: pointer; font-size: .86rem; }

.privacy { background: var(--paper-soft); color: var(--ink); }
.privacy-inner { display: grid; grid-template-columns: .5fr 1fr; gap: 5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.privacy h2 { font-size: 1.25rem; letter-spacing: -.02em; line-height: 1.25; }
.privacy p { margin: 0; color: var(--muted-dark); font-size: .9rem; }
.site-footer {
  display: flex;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem var(--gutter);
}
.site-footer p { margin: .5rem 0 0; color: var(--muted); font-size: .88rem; }
.site-footer .trademark-notice { max-width: 48rem; margin-top: 1.25rem; font-size: .72rem; line-height: 1.5; }
.site-footer nav { display: flex; gap: 2.5rem; }

.js-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header { position: absolute; left: 0; width: 100%; transform: none; }
  .header-contact { display: none; }
  .nav-toggle {
    display: grid;
    justify-self: end;
    width: 3rem;
    height: 3rem;
    place-content: center;
    gap: .3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 16, 31, .65);
    color: var(--paper);
  }
  .site-header > .wordmark, .nav-toggle { position: relative; z-index: 30; }
  .nav-toggle span:not(.sr-only) { width: 1.25rem; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(.4rem) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.4rem) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--navy-950);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav a { font-size: 1.55rem; }
  .ownership-grid, .capabilities-grid, .plex-grid { gap: 4rem; }
  .diagram-flow { grid-template-columns: 1fr; }
  .diagram-link { width: 1px; height: 1.4rem; margin: 0 auto; }
  .diagram-link::after { margin: auto 0 -.1rem -.18rem; transform: rotate(135deg); }
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; padding-top: 9.5rem; padding-bottom: 5rem; }
  .hero-copy { width: 100%; }
  .hero-copy { margin-top: 0; }
  .hero h1 { font-size: clamp(3.35rem, 11vw, 5rem); }
  .hero-system { margin-top: 1rem; }
  .ownership-grid, .capabilities-grid, .contact-grid, .plex-grid { grid-template-columns: 1fr; }
  .system-diagram { grid-row: 1; }
  .plex-library { transform: none; }
  .process-heading { display: block; }
  .process-heading > p { width: auto; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; padding-bottom: 3rem; }
  .process-list li:not(:last-child)::after { left: 0; right: auto; }
  .privacy-inner { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header { padding-top: 1.25rem; }
  .hero-inner { padding-top: 8rem; }
  .hero h1 { font-size: clamp(2.25rem, 13vw, 4rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { min-width: 0; }
  .button { width: 100%; }
  .ownership-rail { grid-template-columns: 1fr; align-items: start; }
  .rail-arrow { transform: rotate(90deg); }
  .section-heading h2, .capabilities h2, .process h2, .contact h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .capability-list li { grid-template-columns: 2.9rem 1fr; }
  .capability-icon { width: 2.9rem; height: 2.9rem; }
  .capability-list li:not(:last-child)::after { left: 1.45rem; top: 2.7rem; }
  .lead-form { padding: 1.25rem; }
  .site-footer { display: block; }
  .site-footer nav { margin-top: 2rem; }
}
