/* LGr Technologies — Design System */

:root {
  /* LGr Technologies Visual Identity v1.0/2026 — dark-first */
  --ink: #191B1F;          /* Ink — primary background */
  --bone: #EEEFF1;         /* Bone — text on dark */
  --signal: #86E1A8;       /* Signal Green — primary accent, emphasis, links */
  --muted-c: #9CA0A8;      /* Muted — secondary text */

  --bg: #191B1F;           /* Ink */
  --surface: #23262A;      /* Surface — cards / panels */
  --surface-2: #2A2E33;
  --surface-3: #31353B;
  --border: #2A2E33;
  --border-strong: #3A3F46;
  --text: #EEEFF1;         /* Bone */
  --text-dim: #9CA0A8;     /* Muted */
  --text-dimmer: #6B7077;
  --accent: #86E1A8;       /* Signal Green */
  --accent-dim: #6FCB91;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Geist Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  --nav-h: 72px;
  --max-w: 1160px;
  --radius: 6px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
}

/* ── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links > li > a,
.nav-links > li > .nav-drop-toggle {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 450;
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-drop-toggle:hover,
.nav-links > li > a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown { position: relative; }
.nav-drop-toggle .chevron {
  width: 10px; height: 10px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 168px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  /* NOTE: no `overflow:hidden` — it would clip the ::before hover bridge
     to zero area and the menu would close before reaching it. Item corners
     are rounded individually instead (see :first-child/:last-child below). */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  list-style: none;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Invisible hover bridge across the 10px gap so the menu doesn't close
   while the cursor travels from the toggle down to the menu. */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-drop-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-drop-menu li a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
}
.nav-drop-menu li a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-drop-menu li:first-child a {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.nav-drop-menu li:last-child a {
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--radius);
  color: var(--text-dim);
  transition: color 0.15s, background 0.15s;
}
.nav-icon:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px; height: 36px;
  padding: 9px;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px; width: 18px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: background 0.15s, transform 0.2s, opacity 0.15s;
}
.nav-toggle:hover span { background: var(--text); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── LAYOUT ──────────────────────────────────────────── */
main { padding-top: var(--nav-h); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -10%; right: -10%;
  height: 72%;
  background: url('../svg/wave-dots.svg') no-repeat center bottom / cover;
  opacity: 0.15;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(134,225,168,0.06), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--text-dimmer);
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero h1 .muted { color: var(--text-dim); }

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ── HERO BACKGROUND VIDEO ───────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* bottom-fade into the page + left-to-dark scrim so Bone text stays legible */
  background:
    linear-gradient(to bottom, rgba(25,27,31,0) 58%, rgba(25,27,31,0.96) 100%),
    linear-gradient(105deg, rgba(25,27,31,0.93) 0%, rgba(25,27,31,0.76) 42%, rgba(25,27,31,0.46) 100%);
}
.hero.has-video::before,
.hero.has-video::after { display: none; }   /* video replaces the decorative bg */
.hero.has-video .hero-content { z-index: 2; }
.page-hero.has-video { position: relative; overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }             /* fall back to the solid Ink hero */
}

/* ── Inline video facade (click-to-load) ──────────────── */
.video-feature { padding: 44px 0 8px; }
.yt-facade {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 1px solid var(--border-strong);
}
.yt-facade-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.yt-facade:hover .yt-facade-poster,
.yt-facade:focus-visible .yt-facade-poster { transform: scale(1.03); opacity: 0.82; }
.yt-facade-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease;
}
.yt-facade-play::before {
  content: '';
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 5px;
}
.yt-facade:hover .yt-facade-play,
.yt-facade:focus-visible .yt-facade-play { transform: translate(-50%, -50%) scale(1.08); }
.yt-facade:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.yt-facade.loaded { cursor: default; }
.yt-facade.loaded .yt-facade-play { display: none; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  color: var(--text);
  border-color: var(--text-dim);
  background: rgba(255,255,255,0.04);
}

/* ── SECTIONS ────────────────────────────────────────── */
.section { padding: 104px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--text);
  margin-bottom: 20px;
}

.section-body {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.72;
  max-width: 580px;
  font-weight: 300;
}

/* ── GRID CARDS (1px gap technique) ─────────────────── */
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.15s;
}
.card:hover { background: var(--surface-2); }

.card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 20px;
}
.card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card-body {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.68;
  font-weight: 300;
}

/* ── STATS ───────────────────────────────────────────── */
.stats-strip {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  background: var(--surface);
  padding: 44px 36px;
}
.stat-num {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-suffix { font-size: 32px; font-weight: 400; color: var(--text-dim); }
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
  max-width: 180px;
  font-weight: 300;
}

/* ── PARTNERS ────────────────────────────────────────── */
.partners-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.partners-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 36px;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
  list-style: none;
  padding: 0;
}
.partners-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 22px;
  min-width: 150px;
  height: 76px;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partners-list a:hover,
.partners-list a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.partners-list img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .partners-list { gap: 16px 20px; }
  .partners-list a { min-width: 110px; height: 60px; padding: 10px 14px; }
  .partners-list img { max-height: 36px; }
}

/* ── TEAM ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.team-card {
  background: var(--surface);
  padding: 32px;
}
.team-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
}
.team-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dimmer);
  margin-top: 10px;
}

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 88px 0;
  text-align: center;
}
.cta-band .section-title { max-width: 560px; margin: 0 auto 16px; }
.cta-band .section-body { max-width: 480px; margin: 0 auto 40px; text-align: center; }
.cta-band .btn-group { justify-content: center; }

/* ── DIVIDER ─────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── FEATURE LIST ────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item {
  background: var(--surface);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  transition: background 0.15s;
}
.feature-item:hover { background: var(--surface-2); }
.feature-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dimmer);
  padding-top: 2px;
}
.feature-text { }
.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.feature-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ── SPEC TABLE ──────────────────────────────────────── */
.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-row {
  background: var(--surface);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-key {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.spec-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.spec-row.kit { grid-column: 1 / -1; }
.kit-list {
  list-style: none;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.kit-list li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.kit-list .qty {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  min-width: 18px;
  text-align: right;
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.page-hero .section-body { max-width: 600px; }

/* ── COMING SOON ─────────────────────────────────────── */
.coming-soon-wrap {
  min-height: calc(100vh - var(--nav-h) - 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.coming-soon-inner { max-width: 520px; }
.coming-soon-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 32px;
}
.coming-soon-inner h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}
.coming-soon-inner p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  padding: 88px 0;
}
.contact-meta { display: flex; flex-direction: column; gap: 36px; }
.contact-meta-item { }
.contact-meta-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 8px;
}
.contact-meta-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.contact-meta-val a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.contact-meta-val a:hover { color: var(--accent); }

.contact-socials { display: flex; gap: 12px; margin-top: 4px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.social-link:hover {
  color: var(--text);
  border-color: var(--text-dimmer);
  background: rgba(255,255,255,0.04);
}

.contact-form { }
.contact-form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.form-status {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  min-height: 1em;
}
.form-status.ok { color: var(--accent); }
.form-status.err { color: #ff6b6b; }
.form-status a { color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--accent-dim);
  background: var(--surface-3);
}
.form-control::placeholder { color: var(--text-dimmer); }
textarea.form-control { min-height: 130px; resize: vertical; line-height: 1.5; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23555555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand-logo { margin-bottom: 18px; }
.footer-brand-logo img { height: 26px; }
.footer-desc {
  font-size: 13px;
  color: var(--text-dimmer);
  line-height: 1.65;
  max-width: 240px;
  font-weight: 300;
}
.footer-col-head {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 18px;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav-list a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav-list a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dimmer);
}
.footer-socials { display: flex; gap: 4px; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius);
  color: var(--text-dimmer);
  transition: color 0.15s, background 0.15s;
}
.footer-socials a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

/* ── HORIZONTAL RULE / SECTION DIVIDERS ──────────────── */
.section-separator {
  height: 1px;
  background: var(--border);
}

/* ── INTRO SPLIT ─────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-split .section-body { max-width: 100%; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 28px; }
  .container { padding: 0 28px; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .spec-table { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links > li > a,
  .nav-links > li > .nav-drop-toggle {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .nav-dropdown { position: static; }
  .nav-drop-toggle { cursor: default; }
  .nav-drop-toggle .chevron { display: none; }
  .nav-drop-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0;
  }
  .nav-drop-menu li a { padding: 11px 24px 11px 40px; font-size: 14px; }
  .container { padding: 0 20px; }
  .hero-content { padding: 64px 0; }
  .section { padding: 72px 0; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 64px 0; }
}

/* ── VISUAL IDENTITY: Geist Mono on labels (always uppercase) ── */
.eyebrow,
.card-eyebrow,
.hero-label,
.partners-label,
.footer-col-head,
.spec-key,
.feature-num,
.contact-meta-label,
.coming-soon-badge,
.stat-suffix {
  font-family: var(--font-mono);
  font-weight: 500;
}

/* Signal Green for inline emphasis links in body copy */
.section-body a,
.card-body a,
.hero-sub a,
.coming-soon-inner p a {
  color: var(--accent);
  text-decoration: none;
}
.section-body a:hover,
.card-body a:hover,
.hero-sub a:hover { text-decoration: underline; }
