/*
THE HQ CREW – BRAND LOCK
Mission Control / Operations HQ aesthetic
Electric Cyan accent: #00A7FF
Montserrat (uppercase) for headings
Inter for body text
*/

:root {
  --bg: #0D0D0D;
  --panel: #161616;
  --panel2: #1A1A1A;
  --text: #FFFFFF;
  --muted: #A0A0A0;
  --line: #2A2A2A;
  --accent: #00A7FF;
  --radius: 4px;
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

section { scroll-margin-top: 120px; }

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 600px at 0% 0%, rgba(0, 167, 255, 0.15), transparent 70%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, .name {
  font-family: var(--font-header);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1;
  margin: 0 0 24px;
}

h2 { font-size: 28px; }
h3 { font-size: 18px; }

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header & Brand */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

/* BIG LOGO (hero-level) */
.logo-img {
  height: 64px;
  max-width: 360px;
  width: auto;
  display: block;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navlinks a {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.navlinks a:hover { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #000 !important;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn.big { padding: 14px 28px; font-size: 14px; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn.ghost { background: transparent; color: var(--text) !important; border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); }
.btn.full { width: 100%; }

/* Section header + common text */
.section-header { margin-bottom: 28px; }
.section-header::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
}
.sub { color: var(--muted); margin: 8px 0 0; max-width: 70ch; }

/* Layout Components */
.hero { padding: 80px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.lede { font-size: 18px; color: var(--muted); max-width: 55ch; margin: 0; }

/* Hero CTA row */
.cta { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.badges { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.badges span {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  color: var(--muted); padding: 6px 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
}

.card {
  background: var(--panel); border: 1px solid var(--line);
  padding: 30px; border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.card.highlight { border-top: 4px solid var(--accent); }
.card-title { margin: 0 0 16px; font-size: 18px; }
.card-note { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.section { padding: 60px 0; }
.section.alt { background: #111; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tile {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
  transition: 0.3s;
}
.tile:hover { border-color: var(--accent); }
.tile-accent { width: 30px; height: 3px; background: var(--line); margin-bottom: 20px; }
.tile-accent.cyan { background: var(--accent); }

.tile p { margin: 10px 0 16px; color: var(--muted); }
.tile ul { margin: 0; padding-left: 18px; color: var(--muted); }
.tile li { margin: 8px 0; }

/* Services featured tile */
.tile.featured { border-color: rgba(0,167,255,0.35); box-shadow: 0 18px 40px rgba(0,167,255,0.10); }
.tile.featured:hover { border-color: var(--accent); }

/* Steps */
.steps { display: grid; gap: 16px; }
.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step p { margin: 6px 0 0; color: var(--muted); }

.num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 900;
  border-radius: 2px;
}

/* Checklist */
.checks { list-style: none; padding: 0; margin: 16px 0 0; }
.checks li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--muted); }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: start; }
.contact-card { background: var(--panel); border: 1px solid var(--line); padding: 24px; border-radius: var(--radius); }
.aside { background: var(--panel2); border: 1px solid var(--line); padding: 24px; border-radius: var(--radius); }
.fineprint { margin-top: 14px; color: var(--muted); font-size: 13px; }

/* Forms */
.form-group { margin-bottom: 16px; }
label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  background: #000;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
}
input:focus, textarea:focus { border-color: var(--accent); outline: none; }

/* Footer */
.footer { padding: 40px 0; border-top: 1px solid var(--line); margin-top: 40px; }
.foot { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; font-weight: 600; }
.small a { color: var(--muted); }
.small a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .grid3, .contact-grid { grid-template-columns: 1fr; }

  .nav { flex-direction: column; align-items: flex-start; gap: 14px; }
  .navlinks { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero { padding: 40px 0; }

  .logo-img {
    height: 52px;
    max-width: 320px;
  }
}
