/* Lever Launch — static site styles. Mission-control: dark, instrument-panel. */

:root {
  --deep-space: #0A0E17;
  --panel: #121826;
  --panel-light: #1B2436;
  --grid-line: #2A3650;
  --ignition: #FF6B2C;
  --telemetry: #3DE0C8;
  --signal-red: #FF4D4D;
  --text: #E8ECF4;
  --text-muted: #9AA5BC;

  --font-head: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --content: 780px;
  --wide: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--deep-space);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: 1.375rem; }

p { margin: 0 0 1rem; }
a { color: var(--telemetry); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ignition); }
strong { color: var(--text); font-weight: 600; }
img, svg, video { display: block; max-width: 100%; }

/* Layout */
.container { width: 100%; max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 840px; }
.section { padding: 4.5rem 0; }
.section--tight { padding: 3.5rem 0; }
.bordered-top { border-top: 1px solid var(--grid-line); }
.panel-bg { background: var(--panel); }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--text-muted); }

/* Mono telemetry eyebrow */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--telemetry);
  margin: 0 0 1rem;
}

hr.rule { border: 0; height: 1px; background: var(--grid-line); margin: 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  background: var(--ignition);
  color: var(--deep-space);
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--telemetry); color: var(--deep-space); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--telemetry);
  box-shadow: inset 0 0 0 1px var(--telemetry);
}
.btn-outline:hover { color: var(--ignition); background: transparent; box-shadow: inset 0 0 0 1px var(--ignition); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Header / nav */
.site-header {
  border-bottom: 1px solid var(--grid-line);
  background: var(--deep-space);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { width: 32px; height: 27px; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand:hover .brand-name { color: var(--text); }
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav a:hover { color: var(--ignition); }
.nav .btn { font-size: 0.85rem; padding: 0.55rem 1.1rem; color: var(--deep-space); }

/* Hero with rocket video */
.hero { position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: flex-start; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(10,14,23,0.82) 0%, rgba(10,14,23,0.45) 20%, rgba(10,14,23,0) 42%, rgba(10,14,23,0) 70%, rgba(10,14,23,0.97) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 840px; margin: 0 auto;
  padding: 7rem 1.5rem 6rem;
  text-align: center;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}
.hero h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 1.05; }
.hero .btn-row { justify-content: center; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

/* Cards / pillars / grids */
.card {
  border: 1px solid var(--grid-line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
  height: 100%;
}
.card:hover { border-color: var(--ignition); transform: translateY(-2px); }
.card h3 { font-size: 1.3rem; }
.card .eyebrow { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Two-column service pillar (label | list) */
.pillar { display: grid; grid-template-columns: 34% 1fr; gap: 3rem; align-items: start; }
.pillar h2 { font-size: 2rem; }
.pillar ul { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.75rem; }
.pillar li { line-height: 1.55; }

/* How-I-work / 3-up text columns */
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.cols-3 h3 { font-size: 1.2rem; }
.cols-3 p { font-size: 0.95rem; margin: 0; }

/* CTA panel */
.cta { text-align: center; }
.cta .btn-row { justify-content: center; }

/* Contact card */
.contact-card { max-width: 760px; margin: 0 auto; }
.contact-card .card { padding: 2.5rem 2rem; }
.contact-card h2 { font-size: 1.6rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--grid-line); padding: 4rem 0; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.site-footer .brand-name { font-size: 1.1rem; }
.site-footer .tagline { color: var(--text-muted); font-size: 0.9rem; margin: 0.25rem 0 0; }
.site-footer .legal { font-family: var(--font-mono); color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .grid-3, .pillar, .cols-3 { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar { gap: 1rem; }
  .nav { gap: 1rem; }
  .nav a:not(.btn) { display: none; }     /* keep it simple on mobile: logo + Book a call */
}
