:root {
  --bg: #07111f;
  --bg-2: #0a1728;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f3f7fb;
  --muted: #b8c7d8;
  --soft: #d7e4f1;
  --accent: #5de2ff;
  --accent-2: #a8ffb1;
  --warning: #ffd166;
  --ink: #07111f;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(93, 226, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 95% 12%, rgba(168, 255, 177, 0.13), transparent 28rem),
    linear-gradient(135deg, #06101d 0%, #081527 42%, #0b1320 100%);
  line-height: 1.55;
}

a { color: inherit; }
a:hover { color: var(--accent); }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.align-start { align-items: start; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: .75rem 1rem;
  z-index: 999;
  border-radius: 0 0 .5rem .5rem;
}
.skip-link:focus { left: 1rem; }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(7, 17, 31, 0.92); }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(93, 226, 255, 0.2);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { letter-spacing: .08em; }
.brand-text span { color: var(--muted); font-size: .82rem; }
.site-nav { display: flex; align-items: center; gap: 1rem; font-size: .95rem; }
.site-nav a { color: var(--soft); text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--accent); }
.nav-cta {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; border-radius: 999px; }

.hero { position: relative; overflow: hidden; padding-top: clamp(5rem, 9vw, 8rem); }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero h1, .section-heading h2, .final-card h2, .legal-hero h1 { margin: 0; letter-spacing: -0.045em; line-height: .98; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); max-width: 880px; }
.hero-lede { color: var(--soft); font-size: clamp(1.05rem, 1.8vw, 1.28rem); max-width: 760px; margin: 1.4rem 0 0; }
.eyebrow { margin: 0 0 .9rem; color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .76rem; }
.hero-actions, .form-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: 1.6rem; }
.center-actions { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1.08rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--ink); border-color: transparent; }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--text); }
.btn-ghost { background: transparent; color: var(--soft); }
.btn:hover { transform: translateY(-1px); color: inherit; }
.full { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.35rem; }
.hero-proof span, .partnership-list span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--soft);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-size: .88rem;
}
.command-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  padding: 1.2rem;
  overflow: hidden;
}
.flux-card {
  position: relative;
  background:
    radial-gradient(circle at 50% 45%, rgba(93,226,255,.1), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.052));
}
.command-top { display: flex; align-items: center; gap: .65rem; color: var(--soft); }
.command-top strong { margin-left: auto; color: var(--accent-2); letter-spacing: .08em; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 6px rgba(168,255,177,.12); }
.flux-status {
  background: #ff5d2a;
  box-shadow: 0 0 0 6px rgba(255,93,42,.13), 0 0 18px rgba(255,93,42,.8);
  animation: terminalFlicker 1.4s ease-in-out infinite;
}
.flux-capacitor {
  position: relative;
  height: 320px;
  margin: 1rem 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(93,226,255,.16), transparent 49%),
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(145deg, rgba(2,8,15,.92), rgba(8,18,31,.82));
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.04),
    inset 0 0 50px rgba(0,0,0,.55),
    0 24px 80px rgba(0,0,0,.26);
  overflow: hidden;
  isolation: isolate;
}
.flux-capacitor::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  box-shadow: inset 0 0 28px rgba(93,226,255,.08), 0 0 32px rgba(93,226,255,.07);
  pointer-events: none;
  z-index: 2;
}
.flux-capacitor::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .24;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.flux-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; }
.flux-panel { fill: rgba(4,10,18,.58); stroke: rgba(255,255,255,.18); stroke-width: 4; }
.flux-inner { fill: rgba(255,255,255,.02); stroke: rgba(255,255,255,.12); stroke-width: 2; }
.flux-cable {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  opacity: .9;
  filter: drop-shadow(0 0 4px rgba(255,209,102,.25));
}
.cable-yellow { stroke: #ffd166; }
.cable-hot { stroke: #ff5d2a; stroke-width: 2.3; opacity: .75; }
.flux-arm-shadow {
  fill: none;
  stroke: rgba(93,226,255,.16);
  stroke-width: 30;
  stroke-linecap: round;
}
.flux-beam {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 24 13;
  animation: fluxDash .72s linear infinite, fluxBreath 2.2s ease-in-out infinite;
}
.beam-left { stroke: url(#flux-arm-left); }
.beam-right { stroke: url(#flux-arm-right); animation-delay: -.18s; }
.beam-bottom { stroke: url(#flux-arm-bottom); animation-delay: -.34s; }
.flux-pulse {
  fill: none;
  stroke: rgba(255,255,255,.96);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: .08 .92;
  stroke-dashoffset: 1;
  animation: fluxPulse 1.08s linear infinite;
}
.pulse-right { animation-delay: .16s; }
.pulse-bottom { animation-delay: .32s; }
.flux-terminal circle, .flux-core circle { transform-box: fill-box; transform-origin: center; }
.terminal-halo { fill: rgba(255,93,42,.12); animation: terminalHalo 1.5s ease-in-out infinite; }
.terminal-ring { fill: rgba(255,93,42,.16); stroke: #ff5d2a; stroke-width: 3; animation: terminalFlicker 1.22s ease-in-out infinite; }
.terminal-core { fill: #fff4df; animation: terminalCore 1s ease-in-out infinite; }
.terminal-right .terminal-halo, .terminal-right .terminal-ring, .terminal-right .terminal-core { animation-delay: .14s; }
.terminal-bottom .terminal-halo, .terminal-bottom .terminal-ring, .terminal-bottom .terminal-core { animation-delay: .28s; }
.core-halo { fill: rgba(93,226,255,.18); animation: coreHalo 1.05s ease-in-out infinite; }
.core-shell { fill: rgba(255,255,255,.12); stroke: rgba(255,255,255,.92); stroke-width: 2; animation: coreShell 1.2s ease-in-out infinite; }
.core-hot { fill: #fff; animation: coreHot .8s ease-in-out infinite; }
.flux-label { fill: rgba(216,228,241,.72); font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.flux-scan {
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 42%;
  left: -48%;
  background: linear-gradient(90deg, transparent, rgba(93,226,255,.2), rgba(255,255,255,.1), transparent);
  filter: blur(10px);
  transform: skewX(-12deg);
  animation: fluxScan 3.8s linear infinite;
  pointer-events: none;
  z-index: 4;
}
.flux-flicker {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(255,255,255,.08), transparent 16%);
  opacity: .16;
  animation: fluxFlicker .22s steps(2, end) infinite;
  pointer-events: none;
  z-index: 5;
}
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
.metrics-grid div { border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.06); padding: .8rem; }
.metrics-grid small { display: block; color: var(--muted); }
.metrics-grid strong { display: block; margin-top: .18rem; }

@keyframes fluxDash { to { stroke-dashoffset: -74; } }
@keyframes fluxPulse { to { stroke-dashoffset: 0; } }
@keyframes fluxBreath {
  0%, 100% { opacity: .78; stroke-width: 9; }
  45% { opacity: 1; stroke-width: 12; }
  70% { opacity: .62; stroke-width: 8; }
}
@keyframes terminalHalo {
  0%, 100% { opacity: .34; transform: scale(.92); transform-origin: center; }
  50% { opacity: .95; transform: scale(1.16); transform-origin: center; }
}
@keyframes terminalFlicker {
  0%, 100% { opacity: .72; }
  18% { opacity: 1; }
  44% { opacity: .48; }
  72% { opacity: 1; }
}
@keyframes terminalCore {
  0%, 100% { opacity: .65; }
  50% { opacity: 1; }
}
@keyframes coreHalo {
  0%, 100% { opacity: .28; transform: scale(.86); transform-origin: center; }
  48% { opacity: .88; transform: scale(1.18); transform-origin: center; }
}
@keyframes coreShell {
  0%, 100% { opacity: .62; }
  50% { opacity: 1; }
}
@keyframes coreHot {
  0%, 100% { opacity: .78; transform: scale(.86); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.34); transform-origin: center; }
}
@keyframes fluxScan {
  0% { left: -52%; opacity: 0; }
  12% { opacity: .55; }
  55% { opacity: .35; }
  100% { left: 112%; opacity: 0; }
}
@keyframes fluxFlicker {
  0%, 100% { opacity: .08; }
  50% { opacity: .2; }
}

@media (prefers-reduced-motion: reduce) {
  .flux-status,
  .flux-beam,
  .flux-pulse,
  .terminal-halo,
  .terminal-ring,
  .terminal-core,
  .core-halo,
  .core-shell,
  .core-hot,
  .flux-scan,
  .flux-flicker {
    animation: none !important;
  }
  .flux-scan, .flux-flicker { display: none; }
}

.audience-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.04); }
.strip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1.6rem; padding: 1rem 0; color: var(--muted); font-weight: 700; font-size: .9rem; }

.two-col { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(1.8rem, 5vw, 4.4rem); align-items: center; }
.section-heading { max-width: 780px; }
.section-heading h2, .legal-hero h1 { font-size: clamp(2rem, 5vw, 4rem); }
.section-heading p:not(.eyebrow), .body-copy p, .final-card p, .legal-card p, .legal-card li { color: var(--soft); }
.body-copy p:first-child { margin-top: 0; }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.6rem; color: var(--soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-2); font-weight: 900; }

.cards-grid, .network-grid, .pilot-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.pilot-grid { grid-template-columns: repeat(4, 1fr); }
.network-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .pilot-card, .network-card, .form-card, .readiness-output, .final-card, .legal-card, .manchester-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.service-card, .pilot-card, .network-card { padding: 1.25rem; text-decoration: none; }
.service-card h3, .pilot-card h3, .network-card h3 { margin: .5rem 0; font-size: 1.25rem; }
.service-card p, .pilot-card p, .network-card p { color: var(--muted); }
.service-card ul { padding-left: 1rem; color: var(--soft); }
.card-num, .pilot-card span, .network-card span { color: var(--accent); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; }
.service-card a, .pilot-card a, .network-card strong { color: var(--accent-2); font-weight: 900; }
.feature-card { background: linear-gradient(180deg, rgba(93,226,255,.14), rgba(255,255,255,.065)); }

.process-timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 2rem; }
.process-step { border-top: 2px solid var(--accent); padding: 1rem 0 0; }
.process-step strong { color: var(--accent-2); }
.process-step h3 { margin: .35rem 0; font-size: 1.05rem; }
.process-step p { color: var(--muted); font-size: .94rem; }

.sticky-note { position: sticky; top: 100px; }
.form-card { padding: 1.35rem; display: grid; gap: 1rem; }
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
label, fieldset { display: grid; gap: .35rem; color: var(--soft); font-weight: 750; }
fieldset { border: 1px solid var(--line); border-radius: 16px; padding: 1rem; }
legend { color: var(--text); padding: 0 .5rem; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--text);
  border-radius: 14px;
  padding: .82rem .9rem;
  outline: none;
}
select option { background: #0b1728; color: #fff; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(93,226,255,.13); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
.checkbox-grid label, .consent-line { display: flex; align-items: flex-start; gap: .55rem; font-weight: 650; color: var(--soft); }
.checkbox-grid input, .consent-line input { width: auto; margin-top: .25rem; }
.consent-line a, .form-note a { color: var(--accent); }
.form-note, .microcopy, .footer-note { color: var(--muted); font-size: .9rem; }
.readiness-output { padding: 1rem; margin-top: 1.2rem; }
.readiness-output strong { color: var(--accent-2); }

.data-section, .partnership-section { background: rgba(255,255,255,.025); }
.offer-ladder { display: grid; gap: .75rem; margin-top: 1.2rem; }
.offer-ladder div { display: flex; gap: .8rem; align-items: center; border: 1px solid var(--line); border-radius: 16px; padding: .85rem; background: rgba(255,255,255,.055); }
.offer-ladder strong { color: var(--accent); }

.final-cta { padding: clamp(3rem, 7vw, 6rem) 0; }
.final-card { padding: clamp(1.8rem, 5vw, 3.4rem); text-align: center; }
.final-card h2 { font-size: clamp(2rem, 5vw, 4.2rem); }
.final-card p { max-width: 780px; margin-left: auto; margin-right: auto; }

.site-footer { border-top: 1px solid var(--line); padding: 3rem 0 1.4rem; background: rgba(0,0,0,.2); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.8rem; }
.footer-grid h3 { margin-top: 0; }
.footer-grid p { color: var(--muted); margin: .45rem 0; }
.footer-grid a { color: var(--soft); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1rem; }

.legal-body { background: linear-gradient(135deg, #06101d 0%, #091727 100%); }
.legal-hero { padding: clamp(4rem, 8vw, 7rem) 0 2rem; }
.legal-grid { display: grid; gap: 1rem; padding-bottom: 5rem; }
.legal-card { padding: 1.4rem; }
.legal-card h2 { margin-top: 0; }
.legal-card ul { margin-bottom: 0; }
.back-link { display: inline-flex; margin-bottom: 1rem; color: var(--accent); text-decoration: none; font-weight: 900; }

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

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7,17,31,.98);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .sticky-note { position: static; }
  .services-grid, .network-grid { grid-template-columns: repeat(2, 1fr); }
  .pilot-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 1.1rem, var(--max)); }
  .hero-actions, .form-actions, .inline-actions { align-items: stretch; }
  .btn { width: 100%; }
  .metrics-grid, .form-grid.two, .checkbox-grid, .services-grid, .network-grid, .pilot-grid, .process-timeline, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.8rem); }
  .flux-capacitor { height: 250px; }
}
