
:root {
  --bg: #071019;
  --bg-2: #0d1b2a;
  --panel: #102033;
  --panel-2: #13283f;
  --text: #eaf1f8;
  --muted: #a9b8c8;
  --line: rgba(255,255,255,.14);
  --accent: #67e8f9;
  --accent-2: #c6a15b;
  --white: #fff;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(103,232,249,.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(198,161,91,.11), transparent 35%),
    var(--bg);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.narrow { max-width: 860px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: #00131a;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 8px; z-index: 1000; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7,16,25,.86);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.brand:hover, .footer-brand:hover { text-decoration: none; }
.brand-mark { width: 44px; height: 44px; }
.brand small { display: block; color: var(--muted); margin-top: -2px; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  color: var(--muted);
  padding: 10px 11px;
  border-radius: 999px;
  font-size: .92rem;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
  text-decoration: none;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero, .page-hero {
  position: relative;
  padding: 98px 0 76px;
  overflow: hidden;
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,232,249,.55), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.hero h1, .page-hero h1 {
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}
.lead {
  color: #d9e5ef;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  max-width: 850px;
}
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 800;
  font-size: .8rem;
  margin: 0 0 14px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  border: 1px solid var(--line);
  min-height: 48px;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent), #9ef3ff);
  color: #04111b;
  border-color: transparent;
}
.button.secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.hero-panel, .card, .status-box, .warning-box, .quote-card, .contact-card, .contact-form, .capability-doc {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 30px; }
.section { padding: 76px 0; }
.section.alt {
  background: rgba(255,255,255,.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dark-band {
  background: linear-gradient(135deg, rgba(13,27,42,.96), rgba(9,21,34,.96));
  border-block: 1px solid var(--line);
}
.section-heading { max-width: 880px; margin-bottom: 30px; }
.section-heading h2, .split h2, .cta h2, .capability-doc h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.cards { display: grid; gap: 18px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 24px; }
.card h2, .card h3 { margin-top: 0; line-height: 1.15; }
.card p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.check-list, .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: #d9e5ef;
}
.check-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .75rem;
  top: .15rem;
}
.check-list.columns { columns: 2; column-gap: 28px; }
.status-list { margin: 0; }
.status-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.status-list div:last-child { border-bottom: 0; }
.status-list dt { color: var(--accent-2); font-weight: 800; }
.status-list dd { margin: 0; color: #dbe7f2; }
.table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--line); }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255,255,255,.035);
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { color: var(--accent-2); }
tr:last-child th, tr:last-child td { border-bottom: 0; }
.note, .muted, .form-note { color: var(--muted); }
.cta {
  text-align: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.timeline span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .78rem;
}
.warning-box, .quote-card, .status-box { padding: 26px; }
.quote-card p {
  font-size: 1.35rem;
  line-height: 1.3;
  color: #eef7ff;
  margin: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}
.contact-card, .contact-form, .capability-doc { padding: 28px; }
.contact-form {
  display: grid;
  gap: 10px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(103,232,249,.45);
  border-color: var(--accent);
}
label { font-weight: 800; color: #dce9f6; }
.cap-header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  margin-bottom: 24px;
}
.cap-contact {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255,255,255,.045);
}
.print-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5,13,22,.96);
  padding: 48px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 28px;
}
.footer-mark { width: 40px; height: 40px; }
.footer-list li { margin: 8px 0; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .cap-header { grid-template-columns: 1fr; }
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr 1fr; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7,16,25,.98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero, .page-hero { padding: 66px 0 48px; }
  .section { padding: 54px 0; }
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr; }
  .check-list.columns { columns: 1; }
  .status-list div { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media print {
  .site-header, .site-footer, .print-actions { display: none; }
  body { background: #fff; color: #111; }
  .capability-doc, .card { box-shadow: none; border-color: #ccc; }
  a { color: #111; }
}
