/* ============================================================
   CALMLAYER LLC — Cybersecurity Website
   Dark Hack Theme with Cyan/Green Neon Palette
   ============================================================ */

/* ─── FONTS & RESET ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Share+Tech+Mono&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-primary: #020810;
  --bg-secondary: #050e1a;
  --bg-card: rgba(0, 255, 136, 0.03);
  --bg-card-hover: rgba(0, 255, 136, 0.07);
  --cyan: #00ffcc;
  --green: #00ff88;
  --blue: #00ccff;
  --red: #ff3366;
  --orange: #ffaa00;
  --text-primary: #e0f0ff;
  --text-secondary: #7090a0;
  --text-muted: #405060;
  --border: rgba(0, 255, 136, 0.15);
  --border-bright: rgba(0, 255, 136, 0.4);
  --glow-green: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.1);
  --glow-cyan: 0 0 20px rgba(0, 204, 255, 0.4), 0 0 60px rgba(0, 204, 255, 0.1);
  --glow-red: 0 0 20px rgba(255, 51, 102, 0.5);
  --font-display: 'Orbitron', monospace;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ─── CANVAS BACKGROUNDS ────────────────────────────────────── */
#matrix-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0.04; pointer-events: none;
}
#particle-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; opacity: 0.6; pointer-events: none;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; position: relative; z-index: 2; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(2, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.2em; color: var(--text-primary);
}
.logo-accent { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link {
  padding: 0.5rem 1rem; color: var(--text-secondary); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.05em;
  transition: var(--transition); border: 1px solid transparent; border-radius: var(--radius);
  position: relative;
}
.nav-link::before {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--green); transition: var(--transition);
}
.nav-link:hover { color: var(--green); border-color: rgba(0,255,136,0.2); background: rgba(0,255,136,0.04); }
.nav-link:hover::before { left: 10%; right: 10%; }
.nav-link.nav-cta {
  border-color: var(--green); color: var(--green);
  box-shadow: 0 0 15px rgba(0,255,136,0.15);
}
.nav-link.nav-cta:hover { background: var(--green); color: var(--bg-primary); box-shadow: var(--glow-green); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0.5rem; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--green); transition: var(--transition); border-radius: 2px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; z-index: 2;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.25;
  filter: saturate(0.8) hue-rotate(10deg);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,8,16,0.95) 0%,
    rgba(2,8,16,0.75) 50%,
    rgba(0,30,60,0.85) 100%
  );
}
.scan-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanDown 8s linear infinite; z-index: 3; opacity: 0.3;
}
@keyframes scanDown {
  0% { top: 0; opacity: 0; }
  5% { opacity: 0.3; }
  95% { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 5; text-align: center;
  padding: 8rem 2rem 4rem; max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.2rem; border: 1px solid rgba(0,255,136,0.3);
  background: rgba(0,255,136,0.05); border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--green); margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.hero-title {
  display: flex; flex-direction: column; gap: 0.1em;
  margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease 0.2s both;
}
.title-line {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem); line-height: 0.95;
  letter-spacing: -0.02em; color: var(--text-primary);
  text-shadow: 0 0 40px rgba(0,255,136,0.1);
}
.accent-line { color: var(--green); text-shadow: var(--glow-green); }

/* Glitch effect */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute;
  top: 0; left: 0; right: 0; overflow: hidden;
}
.glitch::before {
  color: var(--cyan); animation: glitch1 3s infinite; clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px);
}
.glitch::after {
  color: var(--red); animation: glitch2 3s infinite; clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px);
}
@keyframes glitch1 {
  0%,90%,100%{transform:translate(-2px);opacity:0;}
  91%{transform:translate(-2px,1px);opacity:0.6;}
  95%{transform:translate(2px,-1px);opacity:0.6;}
  99%{transform:translate(-2px);opacity:0;}
}
@keyframes glitch2 {
  0%,88%,100%{transform:translate(2px);opacity:0;}
  89%{transform:translate(2px,-1px);opacity:0.6;}
  93%{transform:translate(-2px,1px);opacity:0.6;}
  97%{transform:translate(2px);opacity:0;}
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 2rem; animation: fadeInUp 0.8s ease 0.4s both;
}

/* Terminal */
.hero-terminal {
  background: rgba(0,0,0,0.7); border: 1px solid rgba(0,255,136,0.2);
  border-radius: var(--radius-lg); margin: 0 auto 2.5rem;
  max-width: 580px; overflow: hidden;
  animation: fadeInUp 0.8s ease 0.5s both;
  box-shadow: 0 0 40px rgba(0,255,136,0.05), inset 0 1px 0 rgba(255,255,255,0.03);
}
.terminal-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(0,255,136,0.1);
}
.terminal-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }
.terminal-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--text-muted); margin-left: 0.5rem;
}
.terminal-body {
  padding: 1rem 1.25rem;
  font-family: var(--font-mono); font-size: 0.88rem; color: var(--green);
  min-height: 2.5rem;
}
.cursor {
  display: inline-block; animation: blink 0.8s step-end infinite;
  color: var(--green); vertical-align: baseline;
}

/* Hero Buttons */
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem; animation: fadeInUp 0.8s ease 0.6s both;
}

/* Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--green); text-shadow: var(--glow-green);
}
.stat-unit { font-family: var(--font-display); font-size: 1rem; color: var(--cyan); }
.stat-label { display: block; font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 5;
}
.scroll-text { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.2em; }
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1);} 50%{opacity:1;transform:scaleY(1.2);} }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem; border-radius: var(--radius); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em;
  transition: var(--transition); cursor: pointer; border: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00ccff);
  color: #020810; font-weight: 700;
  box-shadow: 0 0 20px rgba(0,255,136,0.3), 0 4px 15px rgba(0,0,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,255,136,0.5), 0 8px 25px rgba(0,0,0,0.4); }
.btn-ghost {
  border: 1px solid var(--border-bright); color: var(--green); background: transparent;
}
.btn-ghost:hover { background: rgba(0,255,136,0.07); border-color: var(--green); box-shadow: var(--glow-green); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { font-size: 1rem; }

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid rgba(0,255,136,0.1);
  border-bottom: 1px solid rgba(0,255,136,0.1);
  background: rgba(0,255,136,0.02); padding: 0.6rem 0;
  position: relative; z-index: 2;
}
.ticker-content {
  display: flex; animation: ticker 40s linear infinite;
  white-space: nowrap; will-change: transform;
}
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-right: 4rem; font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.ticker-dot { width: 4px; height: 4px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; }

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: block; font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--green); letter-spacing: 0.2em; margin-bottom: 0.75rem;
  opacity: 0.8;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--text-primary);
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.highlight { color: var(--green); text-shadow: 0 0 20px rgba(0,255,136,0.3); }
.section-subtitle { color: var(--text-secondary); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--bg-primary); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  position: relative; padding: 2rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--bg-card);
  transition: var(--transition); overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { border-color: var(--border-bright); background: var(--bg-card-hover); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .card-glow { opacity: 1; }
.card-glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-lg); opacity: 0; transition: 0.5s;
  background: radial-gradient(ellipse at top, rgba(0,255,136,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.service-card.featured {
  border-color: rgba(0,255,136,0.4);
  background: rgba(0,255,136,0.05);
  box-shadow: 0 0 30px rgba(0,255,136,0.08);
}
.featured-glow { opacity: 0.5 !important; }
.card-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: 0.2rem 0.6rem; background: var(--green); color: var(--bg-primary);
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; border-radius: 2px;
}
.service-icon {
  width: 52px; height: 52px; color: var(--green); margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(0,255,136,0.3));
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); filter: drop-shadow(0 0 16px rgba(0,255,136,0.6)); }
.service-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.75rem; letter-spacing: 0.05em;
}
.service-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-features li {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative;
}
.service-features li::before {
  content: '▸'; position: absolute; left: 0; color: var(--green); font-size: 0.7rem;
}
.service-link {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--green);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.service-link span { transition: var(--transition); }
.service-link:hover span { transform: translateX(4px); }
.service-link:hover { text-shadow: 0 0 10px rgba(0,255,136,0.5); }

/* ─── HARDWARE ───────────────────────────────────────────────── */
.hardware {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hardware-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,204,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.product-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.product-showcase:last-child { border-bottom: none; }
.product-showcase.reverse .product-visual { order: 2; }
.product-showcase.reverse .product-info { order: 1; }

/* Product Visual */
.product-visual { position: relative; }
.product-img-wrap {
  position: relative; width: 380px; height: 380px;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
}
.product-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 100%; height: 100%; border-color: rgba(0,255,136,0.1); animation-delay: 0s; }
.ring-2 { width: 80%; height: 80%; border-color: rgba(0,255,136,0.15); animation-delay: 0.5s; }
.ring-3 { width: 60%; height: 60%; border-color: rgba(0,255,136,0.2); animation-delay: 1s; }
@keyframes ringPulse {
  0%,100%{transform:scale(1);opacity:0.5;}
  50%{transform:scale(1.05);opacity:1;}
}
.product-img {
  width: 260px; height: 260px; object-fit: cover;
  border-radius: 12px; position: relative; z-index: 2;
  box-shadow: 0 0 60px rgba(0,255,136,0.2), 0 20px 60px rgba(0,0,0,0.8);
  border: 1px solid rgba(0,255,136,0.2);
}
.product-scan-overlay {
  position: absolute; inset: 0; z-index: 3; overflow: hidden;
  border-radius: 50%; pointer-events: none;
}
.scan-bar {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scanProd 3s linear infinite; opacity: 0.6; top: 0;
}
@keyframes scanProd {
  0%{top:0;opacity:0;}
  10%{opacity:0.6;}
  90%{opacity:0.6;}
  100%{top:100%;opacity:0;}
}
.product-specs-panel {
  position: absolute; bottom: -10px; right: -20px;
  background: rgba(2,8,16,0.9); border: 1px solid rgba(0,255,136,0.25);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  backdrop-filter: blur(10px); z-index: 10; min-width: 200px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.spec-row {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.3rem 0; border-bottom: 1px solid rgba(0,255,136,0.07);
  font-family: var(--font-mono); font-size: 0.7rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); }
.spec-val { color: var(--green); text-align: right; }
.status-active { color: #27c93f; animation: blink 2s infinite; }

/* Product Info */
.product-badge {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--cyan);
  letter-spacing: 0.15em; margin-bottom: 0.75rem; opacity: 0.8;
}
.product-name {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: var(--text-primary); line-height: 1; margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.product-tagline {
  font-size: 1rem; color: var(--green); margin-bottom: 1.5rem;
  font-weight: 500; letter-spacing: 0.05em;
}
.product-desc { color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.product-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.75rem; background: rgba(0,255,136,0.03);
  border: 1px solid rgba(0,255,136,0.08); border-radius: var(--radius);
  transition: var(--transition);
}
.feature-item:hover { border-color: rgba(0,255,136,0.25); background: rgba(0,255,136,0.06); }
.feature-icon { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-item strong { display: block; font-size: 0.875rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.feature-item span { font-size: 0.8rem; color: var(--text-secondary); }
.product-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── THREAT INTEL ───────────────────────────────────────────── */
.threat { background: var(--bg-primary); }
.threat-dashboard { display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; }

.threat-map-panel {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.4); overflow: hidden; grid-row: 1 / 3;
}
.map-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  background: rgba(0,255,136,0.03);
}
.map-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-secondary); letter-spacing: 0.1em; }
.live-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--green);
  padding: 0.2rem 0.6rem; border: 1px solid rgba(0,255,136,0.3);
  border-radius: 100px; background: rgba(0,255,136,0.05);
}
.live-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: blink 1s infinite;
}
.threat-map {
  position: relative; background: rgba(0,5,15,0.8); aspect-ratio: 2/1;
}
.world-svg { width: 100%; height: 100%; }
.threat-point { cursor: pointer; }
.pulse-ring { animation: pulseRing 2s ease-out infinite; transform-origin: center; }
.pulse-ring.delay-1 { animation-delay: 0.6s; }
.pulse-ring.delay-2 { animation-delay: 1.2s; }
@keyframes pulseRing {
  0%{r:8;opacity:0.8;} 100%{r:30;opacity:0;}
}
.map-legend {
  display: flex; gap: 1.5rem; padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.critical { background: var(--red); box-shadow: 0 0 6px var(--red); }
.legend-dot.warning { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.legend-dot.safe { background: var(--green); box-shadow: 0 0 6px var(--green); }

.threat-feed-panel {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.4); overflow: hidden;
}
.feed-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  background: rgba(0,255,136,0.03);
}
.feed-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-secondary); letter-spacing: 0.1em; }
.feed-count { font-family: var(--font-mono); font-size: 0.7rem; color: var(--red); }
.feed-list { overflow-y: auto; max-height: 250px; }
.feed-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.75rem 1.25rem; border-bottom: 1px solid rgba(0,255,136,0.05);
  font-family: var(--font-mono); font-size: 0.72rem; animation: feedIn 0.3s ease;
}
@keyframes feedIn { from{opacity:0;transform:translateX(10px);} to{opacity:1;transform:none;} }
.feed-item:last-child { border-bottom: none; }
.feed-severity {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.feed-severity.high { background: var(--red); box-shadow: 0 0 6px var(--red); }
.feed-severity.med { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.feed-severity.low { background: var(--green); box-shadow: 0 0 6px var(--green); }
.feed-text { color: var(--text-secondary); flex: 1; line-height: 1.5; }
.feed-time { color: var(--text-muted); flex-shrink: 0; }

.threat-metrics { display: flex; flex-direction: column; gap: 1rem; }
.metric-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.4); padding: 1.25rem;
  transition: var(--transition);
}
.metric-card:hover { border-color: var(--border-bright); background: rgba(0,255,136,0.03); }
.mini-chart { width: 100%; height: 40px; margin-bottom: 0.75rem; }
.metric-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.metric-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; letter-spacing: 0.05em; }
.metric-change { font-family: var(--font-mono); font-size: 0.68rem; margin-top: 0.4rem; }
.metric-change.up { color: var(--green); }
.metric-change.down { color: var(--red); }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-desc { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.25rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon { color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* Hex Grid */
.about-visual { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.hex-grid {
  display: grid; grid-template-columns: repeat(3, 120px);
  grid-template-rows: repeat(2, 100px); gap: 1rem;
  justify-content: center;
}
.hex-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(0,255,136,0.04); border: 1px solid var(--border);
  border-radius: 8px; transition: var(--transition); cursor: default; gap: 0.4rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-item:hover { background: rgba(0,255,136,0.1); border-color: var(--green); transform: scale(1.05); }
.hex-item.h1 img { width: 50px; height: 50px; object-fit: contain; }
.hex-icon { font-size: 1.5rem; }
.hex-item span:last-child { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.05em; }

.cert-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cert-badge {
  padding: 0.4rem 1rem; border: 1px solid rgba(0,255,136,0.3);
  border-radius: 100px; font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--green); background: rgba(0,255,136,0.05);
  transition: var(--transition);
}
.cert-badge:hover { background: rgba(0,255,136,0.1); box-shadow: var(--glow-green); }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--bg-primary); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card); position: relative; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-bright); transform: translateY(-4px); background: var(--bg-card-hover); }
.quote-icon {
  font-family: Georgia, serif; font-size: 4rem; color: var(--green);
  line-height: 0.8; margin-bottom: 1rem; opacity: 0.4;
}
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; color: var(--bg-primary);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.testimonial-author span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-desc { color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: rgba(0,255,136,0.02);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--border-bright); background: rgba(0,255,136,0.05); }
.contact-icon { font-size: 1.25rem; color: var(--green); flex-shrink: 0; }
.contact-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); display: block; margin-bottom: 0.2rem; letter-spacing: 0.05em; }
.contact-val { font-family: var(--font-mono); font-size: 0.875rem; color: var(--text-primary); }
.contact-security-note {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem; border: 1px solid rgba(0,255,136,0.15);
  border-radius: var(--radius); background: rgba(0,255,136,0.03);
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.6;
}
.security-icon { font-size: 1rem; flex-shrink: 0; }

/* Contact Form */
.contact-form-wrap {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: rgba(0,0,0,0.3);
  box-shadow: 0 0 60px rgba(0,255,136,0.04);
}
.contact-form { padding: 2rem; }
.form-header {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--green);
  margin-bottom: 1.75rem; letter-spacing: 0.05em;
}
.form-header-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: blink 1.5s infinite;
  box-shadow: 0 0 8px var(--green);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 0.5rem; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(0,255,136,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-primary);
  font-family: var(--font-mono); font-size: 0.875rem;
  transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); background: rgba(0,255,136,0.05);
  box-shadow: 0 0 15px rgba(0,255,136,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status {
  margin-top: 1rem; padding: 0.75rem; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.8rem; text-align: center;
  display: none;
}
.form-status.success { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3); color: var(--green); display: block; }
.form-status.error { background: rgba(255,51,102,0.1); border: 1px solid rgba(255,51,102,0.3); color: var(--red); display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-primary); border-top: 1px solid var(--border); }
.footer-top { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-img { width: 32px; height: 32px; filter: drop-shadow(0 0 6px rgba(0,255,136,0.4)); }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.2em; color: var(--text-primary); }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--green); color: var(--green); background: rgba(0,255,136,0.07); box-shadow: var(--glow-green); }
.footer-col-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; color: var(--green); letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.footer-links-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-links-col a:hover { color: var(--green); padding-left: 0.5rem; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.25rem 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }
.footer-status { display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; box-shadow: 0 0 6px var(--green); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── OPS CENTER / MAP ───────────────────────────────────────── */
.opscenter { background: var(--bg-secondary); border-top: 1px solid var(--border); }

/* Leaflet dark override */
#houston-map {
  width: 100%; height: 520px; border-radius: var(--radius-lg);
  border: 1px solid rgba(0,255,136,0.25);
  box-shadow: 0 0 60px rgba(0,255,136,0.08), 0 0 120px rgba(0,204,255,0.04);
  z-index: 10;
}
.leaflet-container {
  background: #020c14 !important;
  font-family: var(--font-mono) !important;
}
.leaflet-tile-pane { filter: brightness(0.6) saturate(0.4) hue-rotate(180deg); }
.leaflet-control-zoom a {
  background: rgba(2,8,16,0.9) !important; color: var(--green) !important;
  border-color: var(--border) !important; font-weight: 700;
}
.leaflet-control-zoom a:hover { background: rgba(0,255,136,0.1) !important; }
.leaflet-control-attribution { display: none !important; }

/* Custom HQ marker popup */
.leaflet-popup-content-wrapper {
  background: rgba(2,8,16,0.97) !important;
  border: 1px solid rgba(0,255,136,0.4) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 0 30px rgba(0,255,136,0.2) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-mono) !important;
}
.leaflet-popup-tip { background: rgba(0,255,136,0.4) !important; }
.leaflet-popup-close-button { color: var(--green) !important; font-size: 1.1rem !important; }
.hq-popup h4 {
  font-family: var(--font-display); color: var(--green); font-size: 0.9rem;
  margin-bottom: 0.5rem; letter-spacing: 0.1em;
}
.hq-popup p { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.hq-popup .popup-status {
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 0.6rem; font-size: 0.7rem; color: var(--green);
}

/* Threat arcs (Leaflet SVG polylines) handled in JS */

/* Zero-day alert banner */
.zeroday-alert {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem 1.5rem; margin-bottom: 2rem;
  background: rgba(255,51,102,0.07);
  border: 1px solid rgba(255,51,102,0.4);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  box-shadow: 0 0 30px rgba(255,51,102,0.08);
}
.zeroday-alert::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,51,102,0.06), transparent);
  animation: alertSweep 3s linear infinite;
}
@keyframes alertSweep { to { left: 200%; } }

.zda-pulse {
  width: 14px; height: 14px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 12px var(--red);
  animation: blink 0.8s ease-in-out infinite;
}
.zda-content {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; flex: 1;
}
.zda-tag {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.1em; white-space: nowrap;
}
.zda-msg {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.zda-timer {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted);
  white-space: nowrap;
}
.zda-timer strong { color: var(--orange); font-size: 0.85rem; }
.zda-status {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; padding: 0.4rem 1rem;
  border: 1px solid rgba(255,51,102,0.5); border-radius: 100px;
  color: var(--red); white-space: nowrap; animation: blink 1.5s infinite;
}
.zda-status.contained { color: var(--orange); border-color: rgba(255,170,0,0.5); animation: none; }
.zda-status.neutralized { color: var(--green); border-color: rgba(0,255,136,0.5); animation: none; }

/* Layout */
.opscenter-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; align-items: start;
}
.map-container { position: relative; }
.map-overlay-ui {
  position: absolute; top: 1rem; left: 1rem; z-index: 20; pointer-events: none;
}
.map-overlay-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; background: rgba(2,8,16,0.9);
  border: 1px solid rgba(0,255,136,0.35); border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--green);
  letter-spacing: 0.08em; box-shadow: 0 0 20px rgba(0,255,136,0.1);
}
.map-ob-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green); animation: blink 1.2s infinite;
}

/* Side panel */
.ops-side-panel {
  display: flex; flex-direction: column; gap: 1rem;
}
.ops-panel-block {
  background: rgba(0,0,0,0.4); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem 1.25rem;
  transition: var(--transition);
}
.ops-panel-block:hover { border-color: rgba(0,255,136,0.25); }
.ops-panel-title {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--green);
  letter-spacing: 0.15em; margin-bottom: 0.8rem; opacity: 0.8;
}
.ops-coord {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--cyan);
  letter-spacing: 0.05em; margin-bottom: 0.3rem;
}
.ops-coord-sub { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }

.ops-incident-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.35rem 0; border-bottom: 1px solid rgba(0,255,136,0.05);
  font-family: var(--font-mono); font-size: 0.72rem;
}
.ops-incident-row:last-child { border-bottom: none; }
.ops-ir-label { color: var(--text-muted); }
.ops-ir-val { color: var(--text-primary); text-align: right; }
.ops-ir-val.red { color: var(--red); }
.ops-ir-val.green { color: var(--green); }
.blink-val { animation: blink 1.5s infinite; color: var(--orange); }

/* Action log */
.ops-action-log { display: flex; flex-direction: column; gap: 0.4rem; max-height: 160px; overflow-y: auto; }
.ops-action-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-family: var(--font-mono); font-size: 0.69rem; line-height: 1.5;
  animation: feedIn 0.3s ease;
}
.ops-action-icon { flex-shrink: 0; margin-top: 1px; }
.ops-action-icon.done  { color: var(--green); }
.ops-action-icon.prog  { color: var(--orange); }
.ops-action-icon.warn  { color: var(--red); }
.ops-action-text { color: var(--text-secondary); }

/* Team */
.ops-team { display: flex; flex-direction: column; gap: 0.6rem; }
.ops-team-member {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(0,255,136,0.05);
}
.ops-team-member:last-child { border-bottom: none; }
.otm-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  color: var(--bg-primary);
}
.otm-avatar.green { background: var(--green); box-shadow: 0 0 10px rgba(0,255,136,0.4); }
.otm-avatar.cyan  { background: var(--cyan);  box-shadow: 0 0 10px rgba(0,204,255,0.4); }
.otm-name  { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-primary); }
.otm-role  { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); }
.otm-status { margin-left: auto; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; }
.otm-status.active { color: var(--green); letter-spacing: 0.1em; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .threat-dashboard { grid-template-columns: 1fr; }
  .threat-map-panel { grid-row: auto; }
  .threat-metrics { flex-direction: row; }
  .metric-card { flex: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .product-showcase { grid-template-columns: 1fr; gap: 3rem; }
  .product-showcase.reverse .product-visual { order: unset; }
  .product-showcase.reverse .product-info { order: unset; }
  .product-img-wrap { width: 300px; height: 300px; }
  .product-img { width: 200px; height: 200px; }
  .product-specs-panel { right: 0; bottom: -60px; }
  .opscenter-layout { grid-template-columns: 1fr; }
  #houston-map { height: 400px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: rgba(2,8,16,0.98); border-left: 1px solid var(--border); padding: 5rem 2rem 2rem; gap: 0.5rem; z-index: 99; transform: translateX(100%); transition: var(--transition); backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-link { width: 100%; padding: 0.75rem 1rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .threat-metrics { flex-direction: column; }
  .product-img-wrap { width: 260px; height: 260px; }
  .product-img { width: 180px; height: 180px; }
  .product-specs-panel { position: static; margin-top: 2rem; right: auto; bottom: auto; }
  .hex-grid { grid-template-columns: repeat(3, 90px); grid-template-rows: repeat(2, 80px); }
  #houston-map { height: 300px; }
  .zda-content { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-content { padding: 6rem 1.25rem 3rem; }
  .title-line { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .product-actions { flex-direction: column; }
  .section-title { font-size: 1.6rem; }
}
