/*
  PRIMAL GROUP SERVICES — SHARED STYLESHEET
  primal-shared.css
  Drop this in /assets/css/ and link from every page.
  All fixes applied: nav CTA, footer deduplication, banner copy, address repetition.
*/

/* ─── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --bg:          #07131c;
  --bg-mid:      #0d1e2b;
  --bg-card:     #0f2030;
  --bg-card-alt: #0a1922;
  --border:      rgba(94,184,232,0.10);
  --border-mid:  rgba(94,184,232,0.20);
  --blue:        #5eb8e8;
  --blue-dim:    rgba(94,184,232,0.08);
  --blue-glow:   rgba(94,184,232,0.14);
  --text:        #e8f0f5;
  --text-mid:    #8ca5b5;
  --text-dim:    #4e6a7a;
  --success:     #2dd4a0;
  --error:       #e85e5e;
  --ff:          'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius:      4px;
  --radius-lg:   8px;
}

/* ─── BASE ───────────────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ─── SKIP LINK ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto; overflow: visible;
  background: var(--bg-card); color: var(--blue); padding: 8px 14px;
  border-radius: var(--radius); z-index: 9999; font-size: 14px;
}

/* ─── NAV ────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,19,28,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 13px; color: var(--text-mid); text-decoration: none;
  letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }

/* FIX 1.2 — CTA now goes to contact form, not mailto */
.nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--bg); background: var(--blue); padding: 9px 20px;
  border-radius: var(--radius); text-decoration: none; transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.87; text-decoration: none; }
.nav-links .nav-cta,
.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--bg);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--text-mid); padding: 4px;
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-mid);
    border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.5rem;
    border-bottom: none;
  }
  .nav-toggle { display: block; }
}

/* ─── STATUS BANNER ─────────────────────────────────────────────────── */
/* FIX 1.3 — Tighter, cleaner copy rendered via JS into this element */
.launch-banner {
  background: var(--blue-dim); border-bottom: 1px solid var(--border);
  padding: 8px 2rem; text-align: center;
  font-size: 12px; color: var(--text-mid); letter-spacing: 0.03em;
}
.launch-banner strong { color: var(--blue); font-weight: 600; }

/* ─── PAGE LAYOUTS ───────────────────────────────────────────────────── */
.page-wrap { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.page-hero { padding: 5rem 0 3.5rem; }
.page-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.page-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; letter-spacing:0; line-height: 1.05;
  color: var(--text);
}
.page-title em { font-style: normal; color: var(--blue); }
.page-lead {
  margin-top: 1.25rem; font-size: 17px; color: var(--text-mid);
  max-width: 580px; line-height: 1.7;
}
.section { padding: 4rem 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing:0; line-height: 1.2; color: var(--text); margin-bottom: 1rem; }
.section-lead { font-size: 16px; color: var(--text-mid); max-width: 600px; line-height: 1.7; margin-bottom: 2.5rem; }

/* ─── CARDS ──────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-mid); }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ─── BADGES ─────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}
.badge-live { background: rgba(45,212,160,0.1); color: #2dd4a0; border: 1px solid rgba(45,212,160,0.25); }
.badge-dev  { background: rgba(94,184,232,0.08); color: var(--blue); border: 1px solid var(--border); }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff); font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 12px 24px; border-radius: var(--radius); border: none; cursor: pointer;
  text-decoration: none; transition: opacity 0.2s, transform 0.1s; white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue); color: var(--bg); }
.btn-primary:hover { opacity: 0.88; }
.btn-ghost { background: transparent; color: var(--text-mid); border: 1px solid var(--border-mid); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-mid); background: var(--blue-dim); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 2rem; }

/* ─── DIVIDERS ───────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }
hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
/* FIX 1.4 — Company column deduplicated. FIX 1.5 — address appears once */
.site-footer { border-top: 1px solid var(--border); padding: 3.5rem 2rem 0; }
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand-logo { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 13px; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.footer-address { margin-top: 1.25rem; font-size: 13px; color: var(--text-dim); line-height: 1.85; }
.footer-address strong { color: var(--text-mid); font-weight: 500; display: block; margin-bottom: 2px; }
.footer-address a { color: var(--blue); }

.footer-col-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-dim);
  margin-bottom: 8px; text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-mid); }

/* FIX 1.4 — Company column: About + Contact + Get a Quote only (no duplicate Services) */
/* applied in the HTML template below */

.footer-legal {
  max-width: 1120px; margin: 0 auto; padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-legal-text { font-size: 12px; color: var(--text-dim); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 12px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--text-mid); }

/* ─── COOKIE BANNER ──────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 500; background: var(--bg-card); border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem 1.5rem;
  width: max-content; max-width: calc(100% - 2rem); white-space: normal;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 13px; color: var(--text-mid);
}
.cookie-banner span { min-width: 0; }
.cookie-banner a { color: var(--blue); }
.cookie-banner.hidden { display: none; }
.cookie-dismiss {
  background: none; border: 1px solid var(--border-mid); color: var(--text-mid);
  font-family: var(--ff); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-dismiss:hover { background: var(--blue-dim); color: var(--text); }

@media (max-width: 560px) {
  .cookie-banner {
    left: 1rem; right: 1rem; bottom: 1rem; transform: none;
    width: auto; align-items: stretch; text-align: center;
  }
  .cookie-dismiss { width: 100%; }
}

/* ─── FORM ELEMENTS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px;
}
.form-group label .req { color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-family: var(--ff); font-size: 14px;
  padding: 10px 13px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: var(--error); }
.field-error { font-size: 12px; color: var(--error); margin-top: 4px; display: none; }
.field-error.show { display: block; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7385' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer;
}
.form-group select option { background: var(--bg-mid); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.65; }

/* ─── UTILITY ────────────────────────────────────────────────────────── */
.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; }
.text-blue { color: var(--blue); }
.text-mid  { color: var(--text-mid); }
.text-dim  { color: var(--text-dim); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* SERVICES ORBITAL SECTION */
/* ── SECTION WRAPPER ─────────────────────────────────────────── */
.services-section {
  --orbital-bg: #06090d;
  --orbital-bg-mid: #080d13;
  --orbital-surface: rgba(10,16,24,0.85);
  --orbital-surface-hover: rgba(14,22,32,0.95);
  --orbital-border: rgba(180,200,220,0.07);
  --orbital-border-hover: rgba(94,160,200,0.18);
  --orbital-blue: #6baed4;
  --orbital-text: #c8d8e4;
  --orbital-text-mid: #6a8a9c;
  --orbital-text-dim: #374d5a;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Barlow', sans-serif;
  --ff-label: 'Barlow Condensed', sans-serif;
  color: var(--orbital-text);
  font-family: var(--ff-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  padding: 8rem 0 7rem;
  overflow: hidden;
  background: linear-gradient(180deg, #04080e 0%, #070c14 40%, #06090d 100%);
}

/* Subtle grain overlay */
.services-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Ambient vignette */
.services-section::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 65% 70% at 50% 50%, transparent 40%, rgba(4,8,14,0.7) 100%);
  pointer-events: none;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.services-section .section-header {
  position: relative; z-index: 2;
  text-align: center; margin-bottom: 5rem;
}
.services-section .section-eyebrow {
  font-family: var(--ff-label);
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orbital-blue);
  margin-bottom: 1rem; opacity: 0.8;
}
.services-section .section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; letter-spacing: 0.04em;
  color: var(--orbital-text); line-height: 1.2;
}
.services-section .section-title em {
  font-style: italic; color: rgba(200,216,228,0.6);
}
.services-section .section-rule {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orbital-blue), transparent);
  margin: 1.5rem auto 0;
  opacity: 0.5;
}

/* ── ORBITAL LAYOUT ─────────────────────────────────────────── */
.services-section .orbital-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-section .orbital-stage {
  position: relative;
  width: 100%;
  padding-bottom: 86%; /* aspect ratio for the orbital */
}
@media (max-width: 640px) {
  .services-section .orbital-stage { display: none; }
}

/* ── CANVAS FOR FLOW LINES ───────────────────────────────────── */
.services-section .flow-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

/* ── SHIELD CENTRE ───────────────────────────────────────────── */
.services-section .shield-centre {
  position: absolute; z-index: 4;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
}
.services-section .shield-halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--orbital-border);
  transition: border-color 0.8s, box-shadow 0.8s;
  pointer-events: none;
}
.services-section .shield-halo.h1 { width: 110px; height: 110px; }
.services-section .shield-halo.h2 { width: 160px; height: 160px; opacity: 0.5; }
.services-section .shield-centre.lit .shield-halo {
  border-color: rgba(107,174,212,0.2);
  box-shadow: 0 0 40px rgba(107,174,212,0.06);
}
.services-section .shield-logo {
  width: clamp(64px, 7vw, 90px);
  height: auto;
  display: block;
  position: relative; z-index: 2;
  filter: brightness(0.9) contrast(1.05);
  transition: filter 1s;
}
.services-section .shield-centre.lit .shield-logo {
  filter: brightness(1.05) contrast(1.05) drop-shadow(0 0 18px rgba(107,174,212,0.25));
}

/* ── SERVICE NODES ───────────────────────────────────────────── */
.services-section .node {
  position: absolute; z-index: 3;
  transform: translate(-50%, -50%);
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.services-section .node-panel {
  background: var(--orbital-surface);
  border: 1px solid var(--orbital-border);
  border-radius: 3px;
  padding: 1.1rem 1.3rem 1rem;
  width: clamp(110px, 13vw, 148px);
  transition:
    background 0.4s,
    border-color 0.4s,
    transform 0.5s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

/* Top accent line */
.services-section .node-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orbital-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.services-section .node:hover .node-panel,
.services-section .node:focus-visible .node-panel {
  background: var(--orbital-surface-hover);
  border-color: var(--orbital-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(107,174,212,0.06);
}
.services-section .node:hover .node-panel::before,
.services-section .node:focus-visible .node-panel::before { opacity: 1; }

.services-section .node-status {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 0.55rem;
}
.services-section .node-dot {
  width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0;
}
.services-section .node-dot.live { background: #3ecf9a; box-shadow: 0 0 5px rgba(62,207,154,0.5); }
.services-section .node-dot.dev  { background: var(--orbital-text-dim); }
.services-section .node-status-text {
  font-family: var(--ff-label);
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orbital-text-dim);
}
.services-section .node-status-text.live { color: rgba(62,207,154,0.7); }

.services-section .node-name {
  font-family: var(--ff-label);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--orbital-text);
  line-height: 1.2; margin-bottom: 0.3rem;
  transition: color 0.3s;
}
.services-section .node:hover .node-name { color: #ddeaf4; }

.services-section .node-sub {
  font-family: var(--ff-body);
  font-size: clamp(9px, 0.85vw, 10.5px);
  font-weight: 400; color: var(--orbital-text-dim);
  line-height: 1.5;
  transition: color 0.3s;
}
.services-section .node:hover .node-sub { color: var(--orbital-text-mid); }

/* Node inner glow on hover */
.services-section .node-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,174,212,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.services-section .node:hover .node-glow { opacity: 1; }

/* ── FLOW LINES on canvas — drawn by JS ─────────────────────── */

/* ── INFO STRIP ──────────────────────────────────────────────── */
.services-section .info-strip {
  position: relative; z-index: 2;
  text-align: center;
  margin-top: 3rem;
  min-height: 64px;
}
.services-section .info-strip-inner {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.services-section .info-strip-inner.show {
  opacity: 1; transform: translateY(0); pointer-events: all;
}
.services-section .info-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-label);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orbital-bg);
  background: var(--orbital-blue); padding: 11px 26px;
  border-radius: 2px; text-decoration: none;
  transition: opacity 0.2s;
}
.services-section .info-cta:hover { opacity: 0.85; }
.services-section .info-cta-label { font-size: 11px; color: var(--orbital-text-mid); margin-top: 6px; letter-spacing: 0.06em; }

/* ── MOBILE GRID ─────────────────────────────────────────────── */
.services-section .mobile-services {
  display: none;
  padding: 0 1.5rem;
}
@media (max-width: 640px) {
  .services-section .mobile-services { display: block; }
}
.services-section .mobile-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--orbital-border); border: 1px solid var(--orbital-border); border-radius: 4px; overflow: hidden;
}
.services-section .mobile-node {
  background: var(--orbital-surface); padding: 1.25rem 1rem;
  text-decoration: none; display: block;
  transition: background 0.2s;
}
.services-section .mobile-node:hover { background: var(--orbital-surface-hover); }
.services-section .mobile-node-name {
  font-family: var(--ff-label);
  font-size: 13px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--orbital-text); margin-bottom: 4px;
}
.services-section .mobile-node-status {
  font-size: 10px; font-family: var(--ff-label); letter-spacing: 0.1em; text-transform: uppercase;
}
.services-section .mobile-node-status.live { color: rgba(62,207,154,0.75); }
.services-section .mobile-node-status.dev  { color: var(--orbital-text-dim); }

/* ── AMBIENT PULSE ───────────────────────────────────────────── */
@keyframes ambientPulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.55; }
}

/* Issue 4 pre-live polish: shared page rhythm, brand assets and responsive fit. */
.nav-inner,
.page-wrap,
.footer-inner,
.footer-legal{
  max-width:1160px;
}
.nav-inner{
  gap:clamp(16px,2vw,32px);
}
.nav-brand{
  min-width:0;
  letter-spacing:.06em;
}
.nav-brand img,
.footer-brand-logo{
  object-fit:contain;
  filter:drop-shadow(0 0 12px rgba(94,184,232,0.16));
}
.nav-links{
  gap:clamp(1rem,2vw,2rem);
}
.page-hero{
  width:min(1120px,calc(100% - 44px));
  max-width:1120px;
  margin:0 auto;
  padding:clamp(4rem,7vw,5.5rem) 0 clamp(2.75rem,5vw,4rem);
}
.page-title,
.section-title{
  letter-spacing:0;
}
.section{
  padding:clamp(3.25rem,6.5vw,4.75rem) 0;
}
.card,
.constant-card,
.pillar-card,
.form-card,
.apparel-card,
.cookie-banner{
  border-radius:8px;
}
.btn,
.nav-cta,
.btn-submit,
.cookie-dismiss{
  border-radius:6px;
}
.btn,
.nav-cta,
.btn-submit{
  min-height:42px;
  align-items:center;
  justify-content:center;
}
.apparel-card img,
.apparel-logo-core,
.apparel-logo-pink{
  object-fit:contain;
}
.footer-inner{
  gap:clamp(1.75rem,4vw,3rem);
}

@media (min-width:1200px) and (max-width:1536px){
  .page-wrap,
  .nav-inner,
  .footer-inner,
  .footer-legal{
    max-width:1120px;
  }
  .page-hero{
    padding-top:clamp(3.6rem,6vw,5rem);
  }
}

@media (max-width:768px){
  .launch-banner{
    padding-left:1rem;
    padding-right:1rem;
    line-height:1.45;
  }
  .nav-inner{
    padding-left:1.25rem;
    padding-right:1.25rem;
  }
  .nav-brand{
    font-size:11px;
    line-height:1.25;
  }
  .page-hero{
    width:min(100% - 32px,1120px);
    padding:clamp(3.4rem,12vw,4.6rem) 0 clamp(2.1rem,8vw,3rem);
  }
  .page-title{
    font-size:clamp(2.25rem,12vw,3rem);
  }
  .footer-inner,
  .footer-legal{
    width:min(100% - 32px,1120px);
  }
  .site-footer{
    padding-left:0;
    padding-right:0;
  }
}
