/* =====================================================================
   .exe Cybersecurity Solutions — style.css
   Modular stylesheet extracted from index-final.html
   Structure: Custom Properties → Reset → Global → Components → Sections → Responsive
   ===================================================================== */

/* ── Custom Properties ─────────────────────────────────────────────── */
:root {
  --void:    #020408;
  --deep:    #050d14;
  --surface: #091520;
  --panel:   #0d1f2d;
  --border:  rgba(0, 210, 180, 0.15);
  --glow:    #00d2b4;
  --glow2:   #00a8ff;
  --glow3:   #ff3c5a;
  --text:    #c8e8e4;
  --muted:   #4a7a75;
  --white:   #e8f8f6;
  --accent:  #00ffd5;
  --warn:    #ff6b35;
  --grid:    rgba(0, 210, 180, 0.04);
}

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

/* ── Base ──────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--void);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: none;
}

h1, h2, h3 { font-family: 'Orbitron', sans-serif; letter-spacing: 0.04em; }
h4, h5, h6 { font-family: 'Rajdhani', sans-serif; font-weight: 600; }

.mono { font-family: 'Share Tech Mono', monospace; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--glow); border-radius: 2px; }

/* ── Noise Overlay ─────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── Grid Background ────────────────────────────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Custom Cursor ──────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 255, 213, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* ── Scan Line ──────────────────────────────────────────────────────── */
.scan-line {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.4), transparent);
  pointer-events: none;
  z-index: 999;
  animation: scanMove 8s linear infinite;
  opacity: 0.3;
}

@keyframes scanMove { 0% { top: -2px; } 100% { top: 100vh; } }

/* ── Back to Top ────────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid rgba(0, 210, 180, 0.3);
  background: rgba(2, 4, 8, 0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--glow);
  font-size: 18px;
  cursor: none;
  z-index: 400;
  transition: all 0.2s;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover   { background: rgba(0, 210, 180, 0.1); border-color: var(--glow); }

/* ── Global Animations ──────────────────────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 180, 0.6), 0 0 6px var(--glow); }
  50%       { box-shadow: 0 0 0 7px rgba(0, 210, 180, 0), 0 0 14px var(--glow); }
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Layout Helpers ─────────────────────────────────────────────────── */
section         { position: relative; z-index: 1; }
.section-pad    { padding: 100px 40px; }
.container      { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(13px, 1.8vw, 17px);
  color: var(--glow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: var(--glow); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title span { color: var(--glow); }

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #020408;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-shield-wrap {
  position: relative;
  width: 450px; height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 180, 0.18);
  animation: preRing 2.8s ease-in-out infinite;
}
.preloader-ring:nth-child(1) { width: 110%; height: 110%; animation-delay: 0s; }
.preloader-ring:nth-child(2) { width: 125%; height: 125%; animation-delay: 0.4s; border-color: rgba(0, 168, 255, 0.12); }
.preloader-ring:nth-child(3) { width: 140%; height: 140%; animation-delay: 0.8s; border-color: rgba(0, 255, 213, 0.07); }

@keyframes preRing {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 0.2; }
}

.preloader-shield-wrap svg {
  width: 450px; height: 450px;
  filter: drop-shadow(0 0 32px rgba(0, 210, 180, 0.38)) drop-shadow(0 0 80px rgba(122, 95, 255, 0.28));
  animation: shieldPulse 2.4s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { filter: drop-shadow(0 0 32px rgba(0, 210, 180, 0.38)) drop-shadow(0 0 80px rgba(122, 95, 255, 0.28)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 56px rgba(0, 210, 180, 0.6))  drop-shadow(0 0 130px rgba(122, 95, 255, 0.45)); transform: scale(1.04); }
}

.preloader-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 210, 180, 0.7);
  animation: textBlink 1.6s ease-in-out infinite;
}
@keyframes textBlink { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

.preloader-bar-wrap {
  width: 280px; height: 2px;
  background: rgba(0, 210, 180, 0.08);
  position: relative;
  overflow: hidden;
}
.preloader-bar {
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow), var(--accent), transparent);
  animation: preBar 1.4s ease-in-out infinite;
}
@keyframes preBar { 0% { left: -40%; } 100% { left: 100%; } }

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════ */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2, 4, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.main-nav.scrolled {
  height: 60px;
  background: rgba(2, 4, 8, 0.97);
  border-bottom-color: rgba(0, 210, 180, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.security-icon {
  width: 45px;
  height: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.nav-logo-text span { color: var(--glow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 16px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--glow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover              { color: var(--white); }
.nav-links a:hover::after       { transform: scaleX(1); }

.nav-cta {
  color: var(--void) !important;
  background: var(--glow);
  padding: 9px 20px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s !important;
}
.nav-cta:hover      { background: var(--accent) !important; }
.nav-cta::after     { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--glow);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 100px;
  text-align: center;
}

.hero-canvas { position: absolute; inset: 0; z-index: 0; }

.hero-radial {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 168, 255, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 50% 90%, rgba(0, 210, 180, 0.06) 0%, transparent 60%);
}

#home::after {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  width: 1px; height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(0, 210, 180, 0.14) 40%, rgba(0, 168, 255, 0.1) 70%, transparent);
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

/* CRT scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0, 210, 180, 0.012) 3px, rgba(0, 210, 180, 0.012) 4px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 210, 180, 0.35);
  padding: 7px 18px;
  margin-bottom: 36px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0, 210, 180, 0.05);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  animation: fadeSlideIn 0.7s 0.1s ease both;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.18), transparent);
  animation: badgeSweep 3.8s 1.4s ease-in-out infinite;
}
@keyframes badgeSweep { 0% { left: -80%; } 100% { left: 160%; } }

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow);
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

/* Cycling Headlines */
.hero-container {
  position: relative;
  width: 100%;
  height: clamp(100px, 20vw, 195px);
  margin-bottom: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-title {
  position: absolute;
  font-size: clamp(22px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  grid-area: 1 / 1;
  margin: 0;
  will-change: opacity, transform;
  padding: 0 8px;
  word-break: break-word;
}
.hero-title .accent {
  color: transparent;
  background: linear-gradient(90deg, var(--glow), var(--accent), var(--glow2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(0, 210, 180, 0.4));
}
.title-1 { animation: titleCycle 10s 0.5s ease-in-out infinite; }
.title-2 { animation: titleCycle 10s 5.5s ease-in-out infinite; }

@keyframes titleCycle {
  0%         { opacity: 0; transform: translateY(22px) skewY(0.8deg); }
  7%         { opacity: 1; transform: translateY(0)    skewY(0deg); }
  43%        { opacity: 1; transform: translateY(0)    skewY(0deg); }
  50%, 100%  { opacity: 0; transform: translateY(-18px) skewY(-0.8deg); }
}

/* Sub-copy */
.hero-sub {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.85;
  text-align: center;
  animation: fadeSlideIn 0.9s 0.4s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* CTAs */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideIn 0.9s 0.6s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--glow);
  color: var(--void);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0s;
}
.btn-primary:hover::after { left: 130%; transition: left 0.4s ease; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 210, 180, 0.4);
  background: var(--accent);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid rgba(0, 210, 180, 0.4);
  color: var(--glow);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
  cursor: none;
}
.btn-ghost:hover {
  background: rgba(0, 210, 180, 0.08);
  border-color: var(--glow);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 210, 180, 0.15);
}

/* Hero Stats */
.hero-stats {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0;
  z-index: 2;
  margin-top: 56px;
  width: 100%;
  max-width: 680px;
  animation: fadeSlideIn 1s 0.85s ease both;
  background: rgba(0, 210, 180, 0.08);
  border: 1px solid rgba(0, 210, 180, 0.14);
}

.stat-card {
  flex: 1;
  background: rgba(5, 13, 20, 0.88);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: background 0.3s;
  border-right: 1px solid rgba(0, 210, 180, 0.1);
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
}
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--glow2), transparent); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--warn), transparent); }
.stat-card:hover { background: rgba(0, 210, 180, 0.04); }

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 255, 213, 0.2);
}
.stat-num .accent { color: var(--glow); }

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeSlideIn 1s 1.1s ease both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--glow));
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Ticker ─────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: rgba(0, 210, 180, 0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
  flex-shrink: 0;
}
.ticker-item .dot { color: var(--glow); margin-right: 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════════
   LIVE RECON TERMINAL
═══════════════════════════════════════════════════════════════════ */
#recon { background: var(--void); padding: 80px 40px; }

.recon-header { text-align: center; margin-bottom: 36px; }

.recon-ticker {
  background: rgba(0, 210, 180, 0.04);
  border: 1px solid rgba(0, 210, 180, 0.1);
  border-bottom: none;
  padding: 6px 0;
  overflow: hidden;
}
.recon-ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: reconTick 32s linear infinite;
}
.ticker-item .dot { color: var(--glow); margin-right: 6px; }
@keyframes reconTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.recon-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(0, 210, 180, 0.06);
  border: 1px solid rgba(0, 210, 180, 0.14);
  border-bottom: none;
}
.recon-tabs::-webkit-scrollbar { display: none; }

.recon-tab {
  flex: 1;
  min-width: 90px;
  padding: 12px 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0, 210, 180, 0.1);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.recon-tab:last-child { border-right: none; }
.recon-tab:hover      { color: var(--text); background: rgba(0, 210, 180, 0.05); }
.recon-tab.active     { color: var(--void); background: var(--glow); font-weight: 700; }
.recon-tab.done::after { content: ' ✓'; color: inherit; font-size: 9px; }

/* Terminal shared styles */
.terminal-wrap {
  max-width: 100%;
  margin: 60px auto 0;
  border: 1px solid rgba(0, 210, 180, 0.2);
  background: rgba(2, 4, 8, 0.95);
  overflow: hidden;
}

#recon .terminal-wrap {
  max-width: 100%;
  margin-top: 0;
  border-top: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  background: rgba(0, 210, 180, 0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 210, 180, 0.1);
}
.t-dot            { width: 10px; height: 10px; border-radius: 50%; }
.t-dot:nth-child(1) { background: #ff5f57; }
.t-dot:nth-child(2) { background: #febc2e; }
.t-dot:nth-child(3) { background: #28c840; }
.terminal-title   { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); margin-left: 8px; letter-spacing: 0.1em; }

.terminal-body {
  padding: 28px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  line-height: 2;
  min-height: 280px;
}

#recon .terminal-body {
  min-height: 400px;
  max-height: 440px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
#recon .terminal-body::-webkit-scrollbar       { width: 3px; }
#recon .terminal-body::-webkit-scrollbar-thumb { background: rgba(0, 210, 180, 0.3); }

.t-line   { display: flex; gap: 12px; margin-bottom: 4px; }
.t-prompt { color: var(--glow); flex-shrink: 0; }
.t-cmd    { color: var(--white); }
.t-output { color: var(--muted); padding-left: 20px; }
.t-warn   { color: var(--warn); }
.t-good   { color: #28c840; }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--glow);
  animation: blink 1s infinite;
  vertical-align: middle;
}
.t-type-cur {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--glow);
  vertical-align: middle;
  animation: blink 0.7s step-end infinite;
  margin-left: 1px;
}

/* Terminal status indicator */
.term-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.term-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--glow);
  animation: pulseDot 1.4s infinite;
  display: inline-block;
}
.term-status-txt { color: var(--glow); }

.recon-input-bar {
  border-top: 1px solid rgba(0, 210, 180, 0.1);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 210, 180, 0.02);
}
#termInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--white);
  caret-color: var(--glow);
}
#termInput::placeholder { color: var(--muted); opacity: 0.4; }

.recon-progress-wrap {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.recon-progress-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.recon-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(0, 210, 180, 0.08);
  position: relative;
  overflow: hidden;
}
#rProg {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--glow), var(--accent));
  transition: width 0.7s ease;
}
#rPct {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--glow);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.recon-findings {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.finding-card {
  flex: 1;
  min-width: 120px;
  border: 1px solid var(--border);
  background: rgba(9, 21, 32, 0.8);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.finding-card.vis      { opacity: 1; transform: translateY(0); }
.finding-card::before  {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
}
.finding-icon  { font-size: 18px; margin-bottom: 5px; }
.finding-label { font-family: 'Share Tech Mono', monospace; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.finding-val   { font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 700; color: var(--glow); }
.finding-val.crit { color: var(--glow3); }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════════ */
#about { background: var(--deep); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text-col {
  /* About text comes first in DOM and visually on wide screens */
}

/* Reduce bottom padding on about section to cut empty space after CTI panel */
#about.section-pad { padding: 80px 40px 60px; }

/* ══════════════════════════════════════════════
   CTI PANEL — Cyber Threat Intelligence Widget
══════════════════════════════════════════════ */
.cti-panel {
  width: 100%;
  max-width: 640px;
  margin: auto;
  background: var(--deep);
  border: 1px solid rgba(0, 210, 180, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,168,255,0.07),
    0 0 60px rgba(0,210,180,0.08),
    0 12px 48px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  font-family: 'Share Tech Mono', monospace;
}

/* ── Header ── */
.cti-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0,210,180,0.05);
  border-bottom: 1px solid rgba(0,210,180,0.12);
}
.cti-header-left { display: flex; align-items: center; gap: 10px; }
.cti-pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow);
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.cti-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--glow);
}
.cti-clock {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── Map ── */
.cti-map-wrap {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: #000a12;
  border: 1px solid rgba(0,210,180,0.18);
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0,210,180,0.06), 0 0 60px rgba(0,210,180,0.07), inset 0 0 100px rgba(0,0,0,0.7);
}

/* HUD top-left badges */
.cti-map-hud-tl {
  position: absolute;
  top: 12px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
  z-index: 10;
}
.cti-map-region {
  font-family: 'Orbitron', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.13em;
  color: #00d2b4;
  text-shadow: 0 0 10px rgba(0,210,180,0.9), 0 0 22px rgba(0,210,180,0.4);
  background: rgba(0,5,10,0.75);
  padding: 4px 10px;
  border-left: 2px solid rgba(0,210,180,0.8);
  backdrop-filter: blur(4px);
}
.cti-map-attacks {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.09em;
  color: #ff2244;
  text-shadow: 0 0 10px rgba(255,34,68,0.9), 0 0 22px rgba(255,34,68,0.4);
  background: rgba(0,5,10,0.75);
  padding: 4px 10px;
  border-left: 2px solid rgba(255,34,68,0.8);
  backdrop-filter: blur(4px);
}

/* HUD top-right */
.cti-map-hud-tr {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 10;
  pointer-events: none;
}
.cti-map-hud-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.10em;
  color: rgba(255,107,53,0.9);
  text-shadow: 0 0 8px rgba(255,107,53,0.7);
  background: rgba(0,5,10,0.75);
  padding: 4px 10px;
  border-right: 2px solid rgba(255,107,53,0.7);
  backdrop-filter: blur(4px);
}

/* Bottom label */
.cti-map-label {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(0,210,180,0.55);
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Share Tech Mono', monospace;
  text-shadow: 0 0 8px rgba(0,210,180,0.4);
  background: rgba(0,0,0,0.5);
  padding: 3px 14px;
  border: 1px solid rgba(0,210,180,0.12);
  border-radius: 1px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scanline overlay */
.cti-map-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  z-index: 5;
}

/* Tactical corner brackets */
.cti-map-corner {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
  z-index: 11;
}
.cti-map-corner--tl { top: 0; left: 0;
  border-top: 2px solid rgba(0,210,180,0.6);
  border-left: 2px solid rgba(0,210,180,0.6); }
.cti-map-corner--tr { top: 0; right: 0;
  border-top: 2px solid rgba(0,210,180,0.6);
  border-right: 2px solid rgba(0,210,180,0.6); }
.cti-map-corner--bl { bottom: 0; left: 0;
  border-bottom: 2px solid rgba(0,210,180,0.6);
  border-left: 2px solid rgba(0,210,180,0.6); }
.cti-map-corner--br { bottom: 0; right: 0;
  border-bottom: 2px solid rgba(0,210,180,0.6);
  border-right: 2px solid rgba(0,210,180,0.6); }

/* D3 map SVG layer styles */
#ctiMapSvg .country { transition: fill 0.2s; cursor: default; }
#ctiMapSvg .node-label { pointer-events: none; text-rendering: geometricPrecision; }

/* ── Ticker ── */
.cti-ticker-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(0,210,180,0.1);
  border-bottom: 1px solid rgba(0,210,180,0.1);
  height: 30px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.cti-ticker-tag {
  flex-shrink: 0;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--void);
  background: var(--glow);
  font-family: 'Orbitron', sans-serif;
}
.cti-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.cti-ticker-inner {
  white-space: nowrap;
  font-size: 11px;
  color: rgba(0,210,180,0.7);
  animation: tickerScroll 40s linear infinite;
  display: inline-block;
  padding-left: 100%;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats Row ── */
.cti-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0,210,180,0.1);
}
.cti-stat {
  padding: 14px 12px;
  text-align: center;
}
.cti-stat--mid {
  border-left: 1px solid rgba(0,210,180,0.1);
  border-right: 1px solid rgba(0,210,180,0.1);
}
.cti-stat-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--glow);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(0,210,180,0.4);
}
.cti-stat-lbl {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── Block title shared ── */
.cti-block-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
}
.cti-ext-link {
  color: var(--glow2);
  text-decoration: none;
  font-size: 9px;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.cti-ext-link:hover { color: var(--glow); }

/* ── Severity ── */
.cti-severity-block {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,210,180,0.1);
}
.cti-severity-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--warn);
  font-family: 'Orbitron', sans-serif;
  padding: 2px 8px;
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 3px;
}
.cti-sev-track {
  position: relative;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 6px;
}
.cti-sev-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 2s cubic-bezier(0.23,1,0.32,1);
  background: linear-gradient(90deg, #00d2b4 0%, #00a8ff 40%, #ff6b35 70%, #ff3c5a 100%);
  box-shadow: 0 0 12px rgba(255,107,53,0.5);
}
.cti-sev-zones {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(74,122,117,0.6);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── Breakdown bars ── */
.cti-breakdown {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,210,180,0.1);
}
.cti-bars { display: flex; flex-direction: column; gap: 8px; }
.cti-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 10px;
}
.cti-bar-name { font-size: 10px; color: rgba(200,232,228,0.7); letter-spacing: 0.04em; }
.cti-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.cti-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.8s cubic-bezier(0.23,1,0.32,1);
}
.cti-bar--red    { background: linear-gradient(90deg, #ff3c5a, #ff6b7a); box-shadow: 0 0 8px rgba(255,60,90,0.4); }
.cti-bar--orange { background: linear-gradient(90deg, #ff6b35, #ffab6b); box-shadow: 0 0 8px rgba(255,107,53,0.4); }
.cti-bar--teal   { background: linear-gradient(90deg, #00d2b4, #00ffe6); box-shadow: 0 0 8px rgba(0,210,180,0.4); }
.cti-bar--blue   { background: linear-gradient(90deg, #00a8ff, #60cfff); box-shadow: 0 0 8px rgba(0,168,255,0.4); }
.cti-bar--purple { background: linear-gradient(90deg, #a855f7, #c084fc); box-shadow: 0 0 8px rgba(168,85,247,0.4); }
.cti-bar-pct { font-size: 10px; color: var(--muted); text-align: right; }

/* ── CVE Feed ── */
.cti-cve-block {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,210,180,0.1);
}
.cti-cve-list { display: flex; flex-direction: column; gap: 6px; }
.cti-cve-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.cti-cve-row:hover {
  background: rgba(0,210,180,0.04);
  border-left-color: var(--glow);
}
.cti-badge {
  flex-shrink: 0;
  font-size: 8px;
  font-family: 'Orbitron', sans-serif;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.cti-badge--crit { background: rgba(255,60,90,0.15); color: #ff3c5a; border: 1px solid rgba(255,60,90,0.3); }
.cti-badge--high { background: rgba(255,107,53,0.15); color: #ff6b35; border: 1px solid rgba(255,107,53,0.3); }
.cti-badge--med  { background: rgba(255,200,0,0.12);  color: #ffc800; border: 1px solid rgba(255,200,0,0.25); }
.cti-cve-id   { font-size: 10px; color: var(--glow2); letter-spacing: 0.04em; flex-shrink: 0; }
.cti-cve-desc { font-size: 10px; color: rgba(200,232,228,0.6); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Footer ── */
.cti-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 9px;
  color: rgba(74,122,117,0.5);
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.2);
}
.cti-footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
}


.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 210, 180, 0.02);
  transition: all 0.3s;
}
.feat-item:hover { border-color: rgba(0, 210, 180, 0.3); background: rgba(0, 210, 180, 0.05); transform: translateX(8px); }
.feat-check { width: 28px; height: 28px; border: 1px solid var(--glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--glow); font-size: 13px; }
.feat-text  { font-size: 14px; color: var(--text); letter-spacing: 0.03em; }

.company-reg {
  margin-top: 28px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding: 12px 16px;
  border-left: 2px solid rgba(0, 210, 180, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════ */
#services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 210, 180, 0.08);
  border: 1px solid rgba(0, 210, 180, 0.08);
  margin-top: 60px;
}
.service-card {
  background: var(--surface);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover              { background: rgba(0, 210, 180, 0.04); }
.service-card:hover::before      { opacity: 1; }
.service-card-num { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: rgba(0, 210, 180, 0.3); letter-spacing: 0.2em; margin-bottom: 20px; }
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(0, 210, 180, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  background: rgba(0, 210, 180, 0.04);
  transition: all 0.3s;
}
.service-card:hover .service-icon { border-color: var(--glow); background: rgba(0, 210, 180, 0.1); box-shadow: 0 0 20px rgba(0, 210, 180, 0.15); }
.service-title { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; margin-bottom: 12px; }
.service-desc  { font-size: 14px; color: var(--muted); line-height: 1.75; }
.service-arrow { margin-top: 20px; color: var(--glow); font-size: 13px; opacity: 0; transform: translateX(-8px); transition: all 0.3s; font-family: 'Share Tech Mono', monospace; display: inline-block; text-decoration: none; letter-spacing: 0.1em; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

.step-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--glow), var(--glow2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.service-card:hover .step-bar { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════════════════ */
#process { background: var(--deep); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.process-step {
  background: var(--deep);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.step-num   { font-family: 'Orbitron', sans-serif; font-size: 64px; font-weight: 900; color: rgba(0, 210, 180, 0.06); line-height: 1; margin-bottom: 20px; }
.step-title { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: 0.05em; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.8; }
.step-desc a { color: var(--glow); }

.process-step .step-bar { position: absolute; bottom: 0; left: 0; height: 3px; width: 100%; }
.process-step:hover .step-bar { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════════════
   AI TOOLS
═══════════════════════════════════════════════════════════════════ */
#tools { background: var(--surface); }

.tools-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tool-card {
  border: 1px solid var(--border);
  background: rgba(9, 21, 32, 0.8);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: none;
}
.tool-card:hover { border-color: rgba(0, 210, 180, 0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.tool-badge  { font-family: 'Share Tech Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 3px 8px; border: 1px solid rgba(0, 210, 180, 0.3); color: var(--glow); display: inline-block; margin-bottom: 16px; }
.tool-name   { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.04em; }
.tool-desc   { font-size: 12px; color: var(--muted); line-height: 1.7; }
.tool-status { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--glow); letter-spacing: 0.1em; }
.status-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--glow); animation: pulseDot 2s infinite; }

/* ═══════════════════════════════════════════════════════════════════
   THREAT INTEL TERMINAL
═══════════════════════════════════════════════════════════════════ */
#threat-intel { background: var(--void); padding: 80px 40px; }

/* ═══════════════════════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(90deg, var(--deep), rgba(0, 168, 255, 0.05), var(--deep));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-block     { background: var(--deep); padding: 32px 24px; text-align: center; }
.stat-big       { font-family: 'Orbitron', sans-serif; font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-big .g    { color: var(--glow); }
.stat-desc      { font-size: 13px; color: var(--muted); letter-spacing: 0.08em; font-family: 'Rajdhani', sans-serif; font-weight: 600; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
#testimonials { background: var(--surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.testi-card {
  border: 1px solid var(--border);
  padding: 32px 28px;
  background: rgba(9, 21, 32, 0.6);
  transition: all 0.3s;
}
.testi-card:hover  { border-color: rgba(0, 210, 180, 0.25); transform: translateY(-4px); }
.testi-quote       { font-size: 40px; color: rgba(0, 210, 180, 0.15); font-family: serif; line-height: 1; margin-bottom: 16px; }
.testi-text        { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.testi-author      { display: flex; align-items: center; gap: 14px; }
.testi-avatar      { width: 44px; height: 44px; border: 1px solid var(--border); background: rgba(0, 210, 180, 0.08); display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 700; color: var(--glow); flex-shrink: 0; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.testi-name        { font-weight: 700; font-size: 15px; color: var(--white); }
.testi-role        { font-size: 12px; color: var(--muted); font-family: 'Share Tech Mono', monospace; }
.stars             { color: var(--glow); font-size: 12px; margin-bottom: 16px; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════════════════════
   PARTNERS BAND
═══════════════════════════════════════════════════════════════════ */
.partners-band {
  background: var(--deep);
  padding: 50px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.partners-label {
  text-align: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.partner-badge {
  padding: 10px 22px;
  border: 1px solid var(--border);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.partner-badge:hover { border-color: rgba(0, 210, 180, 0.3); color: var(--text); background: rgba(0, 210, 180, 0.04); }

/* ═══════════════════════════════════════════════════════════════════
   EXECUTIVE TEAM
═══════════════════════════════════════════════════════════════════ */
#team { background: var(--void); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  position: relative;
  border: 1px solid var(--border);
  background: rgba(9, 21, 32, 0.7);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  cursor: default;
}
.team-card:hover {
  border-color: rgba(0, 210, 180, 0.4);
  box-shadow: 0 16px 56px rgba(0, 210, 180, 0.1);
  transform: translateY(-6px);
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
}
.team-card:hover::before { opacity: 1; }

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.team-avatar svg { width: 100%; height: 100%; display: block; }
.team-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0, 210, 180, 0.025) 3px, rgba(0, 210, 180, 0.025) 4px
  );
  pointer-events: none;
  z-index: 2;
}
.team-avatar-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(9, 21, 32, 0.98), transparent);
  z-index: 1;
  pointer-events: none;
}

.team-body      { padding: 20px 22px 24px; position: relative; }
.team-role-badge {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glow);
  border: 1px solid rgba(0, 210, 180, 0.25);
  padding: 3px 9px;
  margin-bottom: 12px;
  background: rgba(0, 210, 180, 0.04);
}
.team-name  { font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; margin-bottom: 4px; line-height: 1.3; }
.team-title { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 14px; }
.team-email {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0, 210, 180, 0.55);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  transition: color 0.2s;
  word-break: break-all;
}
.team-email:hover { color: var(--glow); }
.team-card-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 3px; height: 100%;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════════ */
#contact { background: var(--deep); }

.contact-centre {
  max-width: 860px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 100%;
  background: rgba(0, 210, 180, 0.08);
  border: 1px solid rgba(0, 210, 180, 0.1);
  margin-bottom: 32px;
}
.ci-card {
  background: var(--deep);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.ci-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--glow);
  opacity: 0;
  transition: opacity 0.25s;
}
.ci-card:hover           { background: rgba(0, 210, 180, 0.04); }
.ci-card:hover::before   { opacity: 1; }

.ci-icon  { width: 46px; height: 46px; flex-shrink: 0; border: 1px solid rgba(0, 210, 180, 0.2); background: rgba(0, 210, 180, 0.04); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ci-label { font-family: 'Share Tech Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.ci-val   { font-size: 15px; font-weight: 500; color: var(--text); letter-spacing: 0.02em; }
.ci-val a { color: var(--glow); text-decoration: none; transition: opacity 0.2s; }
.ci-val a:hover { opacity: 0.75; }

.contact-mission {
  width: 100%;
  padding: 28px 32px;
  border: 1px solid var(--border);
  background: rgba(0, 210, 180, 0.02);
  text-align: center;
}
.contact-mission .section-label { justify-content: center; margin-bottom: 14px; }
.contact-mission p { font-size: 15px; color: var(--muted); line-height: 1.9; max-width: 640px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 60px 40px 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand-text { font-size: 14px; color: var(--muted); line-height: 1.9; margin-top: 16px; max-width: 280px; }
.footer-heading    { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-links      { list-style: none; }
.footer-links li   { margin-bottom: 10px; }
.footer-links a    { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '▸'; font-size: 8px; color: rgba(0, 210, 180, 0.4); transition: color 0.2s; }
.footer-links a:hover        { color: var(--glow); }
.footer-links a:hover::before{ color: var(--glow); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy   { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.footer-social { display: flex; gap: 12px; align-items: center; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 4px;
}
.social-btn svg { fill: currentColor; pointer-events: none; }
.social-btn:hover { border-color: rgba(0, 210, 180, 0.4); color: var(--glow); background: rgba(0, 210, 180, 0.06); }

/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL (applied via JS)
═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — World-Class Mobile-First System
   Breakpoints: 1200 | 1024 | 900 | 768 | 600 | 480 | 380
═══════════════════════════════════════════════════════════════════ */

/* ── Touch devices: hide custom cursor ─────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  body          { cursor: auto; }
  .cursor,
  .cursor-ring  { display: none !important; }
  a, button     { cursor: pointer; }
}

/* ── 1200px — slight tightening for large tablets / small laptops ── */
@media (max-width: 1200px) {
  .footer-grid  { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}

/* ── 1024px — iPad landscape, surface tablets ──────────────────── */
@media (max-width: 1024px) {
  .about-grid        { gap: 48px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .tools-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-row         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats        { max-width: 560px; }
  .stat-big          { font-size: 38px; }
  .process-steps     { gap: 2px; }
}

/* ── 900px — iPad portrait, most Android tablets ───────────────── */
@media (max-width: 900px) {
  .tools-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .about-visual      { max-width: 100%; margin: 0 auto; }
  .cti-panel         { max-width: 100%; }
  .cti-map-wrap      { height: 320px; }
}

/* ── 700px — Modern hamburger menu breakpoint ───────────────────── */
@media (max-width: 700px) {

  /* ── Navigation ── */
  nav.main-nav {
    padding: 0 16px;
    height: 64px;
  }
  nav.main-nav.scrolled { height: 56px; }

  .security-icon  { width: 36px; }
  .nav-logo-text  { font-size: 11px; letter-spacing: 0.06em; }
  .nav-logo-text  { display: block; }

  /* Hide desktop links, show hamburger */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Mobile dropdown menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(2, 4, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    z-index: 499;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    gap: 0;
    box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(0,210,180,0.06);
    color: var(--text);
  }
  .nav-links.open a:hover { color: var(--glow); background: rgba(0,210,180,0.04); }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    margin: 16px 24px 0;
    display: block;
    text-align: center;
    padding: 14px 24px !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    width: calc(100% - 48px);
  }

  /* Hamburger → X animation */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── About & Live Thread Intelligence: stack to single column ── */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { max-width: 100%; margin: 0 auto; }
  .cti-panel    { max-width: 100%; }

  /* ── Preloader ── */
  .preloader-shield-wrap {
    width: 260px;
    height: 260px;
  }
  .preloader-shield-wrap svg { width: 260px; height: 260px; }

  /* ── Hero ── */
  #home { padding: 88px 20px 60px; }

  .hero-badge {
    font-size: 9px;
    padding: 6px 14px;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-container {
    height: clamp(90px, 22vw, 145px);
    margin-bottom: 20px;
  }

  .hero-title { font-size: clamp(26px, 7.5vw, 48px); }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 12px;
  }

  .hero-stats {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
  }
  .stat-card  { padding: 18px 10px; }
  .stat-num   { font-size: 26px; }
  .stat-label { font-size: 8px; letter-spacing: 0.08em; }

  /* ── Section spacing ── */
  .section-pad    { padding: 64px 20px; }
  #recon          { padding: 64px 16px; }
  #threat-intel   { padding: 64px 20px; }
  .stats-band     { padding: 48px 20px; }
  .partners-band  { padding: 40px 20px; }
  footer          { padding: 48px 20px 24px; }

  /* ── Section headers ── */
  .section-title  { font-size: clamp(22px, 5.5vw, 34px); }

  /* ── Recon terminal ── */
  .recon-tabs     { flex-wrap: wrap; gap: 0; }
  .recon-tab      { font-size: 9px; padding: 10px 8px; min-width: 0; flex: 1 1 calc(33.33% - 1px); }
  .recon-progress-wrap { flex-wrap: wrap; gap: 8px; }
  .recon-progress-label { font-size: 8px; }

  .terminal-body  { padding: 16px; font-size: 11px; min-height: 220px; }
  #recon .terminal-body { min-height: 300px; max-height: 340px; }
  .terminal-title { font-size: 9px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; }
  .recon-input-bar { padding: 10px 16px; }
  #termInput      { font-size: 11px; }
  .t-line         { gap: 6px; font-size: 11px; }

  .recon-findings { gap: 6px; }
  .finding-card   { min-width: 0; flex: 1 1 calc(33.33% - 6px); padding: 12px 8px; }
  .finding-label  { font-size: 7px; }
  .finding-val    { font-size: 12px; }

  /* ── Services / Process ── */
  .services-grid  { grid-template-columns: 1fr; margin-top: 40px; }
  .service-card   { padding: 28px 22px; }
  .process-steps  { grid-template-columns: 1fr; gap: 2px; margin-top: 40px; }
  .process-step   { padding: 32px 24px; }
  .step-num       { font-size: 48px; }

  /* ── AI Tools ── */
  .tools-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tool-card      { padding: 18px 16px; }

  /* ── Stats band ── */
  .stats-row      { grid-template-columns: repeat(2, 1fr); }
  .stat-big       { font-size: 36px; }
  .stat-block     { padding: 24px 16px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; margin-top: 40px; }

  /* ── Partners ── */
  .partners-row   { gap: 10px; }
  .partner-badge  { font-size: 12px; padding: 8px 14px; }

  /* ── Team ── */
  .team-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-name      { font-size: 12px; }
  .team-title     { font-size: 12px; }
  .team-email     { font-size: 9px; }
  .team-body      { padding: 14px 14px 18px; }

  /* ── Contact ── */
  .contact-info-grid { grid-template-columns: 1fr; gap: 2px; }
  .contact-centre { margin-top: 40px; }
  .ci-card        { padding: 20px 16px; gap: 14px; }
  .ci-val         { font-size: 13px; word-break: break-all; }

  /* ── Footer ── */
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-text { max-width: 100%; }
  .footer-bottom  { flex-direction: column; text-align: center; gap: 20px; }
  .footer-social  { justify-content: center; }

  /* ── Back to top ── */
  .back-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }
}

/* ── 600px — Large phones, iPhone Plus landscape ────────────────── */
@media (max-width: 600px) {
  nav.main-nav    { height: 60px; }
  .nav-links.open { top: 60px; max-height: calc(100vh - 60px); }

  .security-icon  { width: 32px; }
  .nav-logo-text  { font-size: 10px; }

  .hero-badge     { font-size: 8px; letter-spacing: 0.12em; }

  .tools-grid     { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .stats-row      { grid-template-columns: repeat(2, 1fr); }

  /* Recon tabs wrap to 2+3 layout */
  .recon-tab { flex: 1 1 calc(50% - 1px); }

  /* Contact grid single col */
  .contact-info-grid { grid-template-columns: 1fr; }

  .about-visual   { max-width: 100%; }
  .cti-map-wrap   { height: 260px; }
  .cti-stat-val   { font-size: 17px; }
}

/* ── 480px — iPhone standard (SE, 14, 15) ───────────────────────── */
@media (max-width: 480px) {
  nav.main-nav    { padding: 0 14px; height: 58px; }
  .nav-links.open { top: 58px; max-height: calc(100vh - 58px); }
  .nav-logo-text  { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* Hero */
  #home { padding: 80px 16px 48px; }
  .hero-title { font-size: clamp(22px, 8vw, 38px); line-height: 1.1; }
  .hero-sub   { font-size: 14px; }

  .hero-stats { flex-direction: column; max-width: 280px; margin: 32px auto 0; }
  .stat-card  { padding: 16px 20px; border-right: none; border-bottom: 1px solid rgba(0,210,180,0.1); }
  .stat-card:last-child { border-bottom: none; }
  .stat-num   { font-size: 32px; }

  /* Sections */
  .section-pad    { padding: 52px 16px; }
  #recon          { padding: 52px 12px; }
  #threat-intel   { padding: 52px 16px; }

  /* Terminal */
  .terminal-body  { padding: 12px; min-height: 180px; }
  #recon .terminal-body { min-height: 260px; max-height: 300px; }
  .terminal-bar   { padding: 10px 14px; gap: 8px; }
  .terminal-title { max-width: 120px; font-size: 8px; }
  .t-dot          { width: 8px; height: 8px; }

  .recon-findings { gap: 4px; }
  .finding-card   { flex: 1 1 calc(50% - 4px); min-width: 0; }

  /* Team single col on very small */
  .team-grid      { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }

  /* Stats band */
  .stats-row      { grid-template-columns: 1fr 1fr; }
  .stat-big       { font-size: 30px; }

  /* Contact */
  .ci-card        { gap: 12px; }
  .ci-icon        { width: 38px; height: 38px; font-size: 16px; }

  /* Footer */
  .footer-grid    { gap: 24px; }
  .footer-copy    { font-size: 10px; text-align: center; line-height: 1.7; }

  /* Partners */
  .partners-row   { gap: 8px; }
  .partner-badge  { font-size: 11px; padding: 6px 10px; }

  /* Preloader */
  .preloader-shield-wrap      { width: 200px; height: 200px; }
  .preloader-shield-wrap svg  { width: 200px; height: 200px; }
  .preloader-text             { font-size: 9px; letter-spacing: 0.18em; }
  .preloader-bar-wrap         { width: 200px; }
}

/* ── 380px — iPhone SE, smallest Android phones ─────────────────── */
@media (max-width: 380px) {
  nav.main-nav    { padding: 0 12px; height: 56px; }
  .nav-links.open { top: 56px; }
  .nav-logo-text  { font-size: 9px; max-width: 155px; }

  #home { padding: 76px 14px 44px; }
  .hero-title { font-size: clamp(20px, 8.5vw, 32px); }

  .hero-stats  { max-width: 260px; }
  .stat-num    { font-size: 28px; }

  .section-pad { padding: 44px 14px; }

  .recon-tab   { font-size: 8px; padding: 8px 4px; }
  .recon-findings { flex-direction: column; }
  .finding-card { flex: 1 1 100%; }

  .tools-grid  { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { font-size: 11px; padding: 14px 20px; }

  .stats-row   { grid-template-columns: 1fr; }
  .stat-block  { padding: 20px 16px; }
}

/* ── Vulnerability Disclosure Block ── */
.vuln-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(0, 210, 180, 0.04);
  border: 1px solid rgba(0, 210, 180, 0.18);
  border-left: 3px solid var(--glow);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.vuln-disclosure::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,210,180,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.vuln-disclosure-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(0,210,180,0.4));
}
.vuln-disclosure-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--glow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vuln-disclosure-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.vuln-disclosure-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border: 1px solid rgba(0,255,213,0.25);
  border-radius: 4px;
  background: rgba(0,255,213,0.05);
  transition: all 0.2s;
  word-break: break-all;
}
.vuln-disclosure-email::before {
  content: '✉';
  font-size: 12px;
}
.vuln-disclosure-email:hover {
  color: var(--void);
  background: var(--glow);
  border-color: var(--glow);
  box-shadow: 0 0 16px rgba(0,210,180,0.3);
}

/* ── Sentinel Live Terminal ── */
.sentinel-live-body {
  min-height: 360px;
  max-height: 420px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.sentinel-live-body::-webkit-scrollbar       { width: 3px; }
.sentinel-live-body::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
.sentinel-live-body::-webkit-scrollbar-thumb { background: rgba(0,210,180,0.35); border-radius: 2px; }
.sentinel-live-body .t-line { animation: sentinelFadeIn 0.35s ease; }
@keyframes sentinelFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════
   HERO CONTACT INFO BOX
═══════════════════════════════════════════════════════════════════ */
.hero-contact-box {
  display: flex;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  width: 100%;
  max-width: 560px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 210, 180, 0.04);
  border: 1px solid rgba(0, 210, 180, 0.2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 200px;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-contact-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 180, 0.6), transparent);
}

.hero-contact-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 210, 180, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}

.hero-contact-item:hover {
  border-color: rgba(0, 210, 180, 0.5);
  box-shadow: 0 0 24px rgba(0, 210, 180, 0.12), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.hero-contact-item:hover::after { opacity: 1; }

.hero-contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 210, 180, 0.5));
  line-height: 1;
}

.hero-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero-contact-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--glow);
  line-height: 1;
}

.hero-contact-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════════════════════
   SOCIAL MEDIA BOX (below contact section)
═══════════════════════════════════════════════════════════════════ */
.social-connect-section {
  padding: 48px 40px;
  background: var(--surface);
  border-top: 1px solid rgba(0, 210, 180, 0.08);
  text-align: center;
}

.social-connect-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 8px;
}

.social-connect-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.social-connect-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(0, 210, 180, 0.04);
  border: 1px solid rgba(0, 210, 180, 0.18);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  min-width: 130px;
  justify-content: center;
}

.social-pill::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 213, 0.08), transparent);
  transition: left 0.4s ease;
}

.social-pill:hover::before { left: 100%; }

.social-pill:hover {
  color: var(--glow);
  border-color: rgba(0, 210, 180, 0.5);
  box-shadow: 0 0 20px rgba(0, 210, 180, 0.1), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.social-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* X/Twitter specific */
.social-pill--x:hover         { color: #e7e9ea; border-color: rgba(231, 233, 234, 0.4); }
.social-pill--instagram:hover { color: #e1306c; border-color: rgba(225, 48, 108, 0.4); }
.social-pill--tiktok:hover    { color: #69c9d0; border-color: rgba(105, 201, 208, 0.4); }
.social-pill--facebook:hover  { color: #1877f2; border-color: rgba(24, 119, 242, 0.4); }

/* ══════════════════════════════════════════════════════════════════
   MOBILE OVERFLOW & RESPONSIVE FIXES
═══════════════════════════════════════════════════════════════════ */

/* Ensure all sections and containers don't overflow on mobile */
section,
.container,
.cti-panel,
.about-grid,
.about-visual,
nav.main-nav {
  max-width: 100%;
}

/* Fix CTI panel on mobile — critical overflow fix */
@media (max-width: 768px) {
  /* === CTI PANEL / LIVE THREAT INTEL — force single column & clip === */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .about-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .cti-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .cti-map-wrap {
    height: 240px;
    width: 100%;
    overflow: hidden;
  }

  /* Prevent the CTI stats row from creating horizontal scroll */
  .cti-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .cti-stat-val {
    font-size: 14px;
  }

  .cti-stat-lbl {
    font-size: 7px;
  }

  /* Fix bar rows on mobile */
  .cti-bar-row {
    grid-template-columns: 70px 1fr 30px;
    gap: 6px;
  }

  .cti-bar-name {
    font-size: 9px;
  }

  /* About section text — give breathing room */
  #about .section-desc {
    max-width: 100%;
    font-size: 15px;
  }

  .about-features {
    margin-top: 24px;
  }

  /* Social connect section on mobile */
  .social-connect-section {
    padding: 40px 20px;
  }

  .social-connect-grid {
    gap: 10px;
  }

  .social-pill {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Hero contact box on mobile */
  .hero-contact-box {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .hero-contact-item {
    min-width: 0;
  }
}

/* Fix ticker overflow in CTI */
.cti-ticker-track {
  max-width: 100%;
  overflow: hidden;
}

/* Fix CVE list text overflow */
.cti-cve-desc {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .cti-map-wrap { height: 200px; }

  .cti-bar-row {
    grid-template-columns: 60px 1fr 26px;
    gap: 4px;
  }

  .cti-cve-row {
    flex-wrap: wrap;
    gap: 4px;
  }

  .cti-cve-desc {
    font-size: 9px;
    white-space: normal;
    word-break: break-word;
  }

  .social-connect-grid {
    gap: 8px;
  }

  .social-pill {
    min-width: 100px;
    padding: 10px 14px;
    font-size: 12px;
    gap: 8px;
  }

  .social-pill svg {
    width: 16px;
    height: 16px;
  }

  .hero-contact-value {
    font-size: 12px;
  }
}


/* ══════════════════════════════════════════════════════════════════
   TOUCH DEVICE — restore cursor & fix tap targets
═══════════════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  body        { cursor: auto; }
  .cursor,
  .cursor-ring { display: none !important; }
  a, button   { cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .hamburger  { cursor: pointer; }
  .nav-links.open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}

/* ── Extra guard: hamburger always shows on narrow screens ── */
@media (max-width: 700px) {
  .hamburger { display: flex !important; }
  .nav-links:not(.open) { display: none !important; }
  .cti-panel, .about-visual, #about .container {
    overflow: hidden;
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL SECTION CENTERING — all sections align centre
═══════════════════════════════════════════════════════════════════ */
.section-pad > .container,
#recon > .container,
#about > .container,
#services > .container,
#process > .container,
#tools > .container,
#team > .container,
#testimonials > .container,
#contact > .container {
  text-align: left; /* keep body text left within container */
}

/* Section intro blocks (label + title + desc) centred */
#services .container > .section-label,
#services .container > .section-title,
#services .container > .section-desc,
#process .container > .section-label,
#process .container > .section-title,
#process .container > .section-desc,
#tools .container > .section-label,
#tools .container > .section-title,
#tools .container > .section-desc,
#team .container > .section-label,
#team .container > .section-title,
#team .container > .section-desc,
#testimonials .container > .section-label,
#testimonials .container > .section-title,
#testimonials .container > .section-desc,
#recon .recon-header .section-label,
#recon .recon-header .section-title,
#recon .recon-header .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: center; /* for flex section-label */
}

/* section-desc max-width centred */
#services .container > .section-desc,
#process .container > .section-desc,
#tools .container > .section-desc,
#team .container > .section-desc,
#testimonials .container > .section-desc {
  max-width: 640px;
}

/* Footer centred */
footer {
  padding: 72px 40px 32px;
  text-align: center;
}
.footer-grid {
  text-align: left; /* keep footer columns left-aligned */
}
.footer-brand-text { max-width: 100%; }

/* ══════════════════════════════════════════════════════════════════
   HERO MARQUEE CONTACT STRIP
═══════════════════════════════════════════════════════════════════ */
.hero-marquee-wrap {
  width: 100%;
  max-width: 540px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 180, 0.2);
  border-radius: 6px;
  background: rgba(0, 210, 180, 0.04);
  backdrop-filter: blur(8px);
  position: relative;
}

/* Fade-out edges */
.hero-marquee-wrap::before,
.hero-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.hero-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2,4,8,0.9), transparent);
}
.hero-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2,4,8,0.9), transparent);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  animation: heroMarquee 18s linear infinite;
  gap: 0;
}

@keyframes heroMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hero-marquee-dot { font-size: 14px; flex-shrink: 0; }

.hero-marquee-label {
  color: var(--glow);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-marquee-val {
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-marquee-val:hover { color: var(--glow); }

.hero-marquee-sep {
  color: rgba(0, 210, 180, 0.4);
  font-size: 10px;
  padding: 0 8px;
  flex-shrink: 0;
}

/* Hide old hero-contact-box styles since we replaced with marquee */
.hero-contact-box { display: none; }

/* ══════════════════════════════════════════════════════════════════
   ABOUT TEXT COLUMN — full width desc on mobile
═══════════════════════════════════════════════════════════════════ */
.about-text-col .section-desc {
  max-width: 100%;
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE OVERRIDES — section centring & marquee
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* About grid: stack text first, then CTI panel */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-text-col,
  .about-visual {
    width: 100%;
    max-width: 100%;
  }

  #about.section-pad { padding: 56px 20px 40px; }

  /* Hero marquee smaller on mobile */
  .hero-marquee-wrap { max-width: 100%; }
  .hero-marquee-item { padding: 0 20px; }
  .hero-marquee-val  { font-size: 11px; }

  /* Hero container height on mobile */
  .hero-container { height: clamp(90px, 28vw, 160px); }

  /* Section labels still readable on mobile */
  .section-label { font-size: clamp(11px, 3vw, 15px); letter-spacing: 0.14em; }
}

@media (max-width: 480px) {
  /* Hero title — prevent cut off on small screens */
  .hero-title      { font-size: clamp(20px, 7.5vw, 38px); padding: 0 4px; line-height: 1.15; }
  .hero-container  { height: clamp(88px, 32vw, 150px); }

  .hero-marquee-item  { padding: 0 14px; }
  .hero-marquee-val   { font-size: 10px; }
  .hero-marquee-label { font-size: 8px; }

  #about.section-pad { padding: 44px 16px 32px; }
}

@media (max-width: 380px) {
  .hero-title     { font-size: clamp(18px, 8vw, 30px); }
  .hero-container { height: clamp(80px, 34vw, 135px); }
}

/* ══════════════════════════════════════════════════════════════════
   ISSUE FIXES — Applied fixes for alignment, sizing & styling
═══════════════════════════════════════════════════════════════════ */

/* ── Issue 1: About Us section header + Tools header + Footer copyright centred ── */
#about .container > .about-text-col > .section-label,
#about .container > .section-label {
  justify-content: flex-start;
}
/* Tools section header centred */
#tools .tools-header {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
#tools .tools-header .section-label {
  justify-content: center;
}
/* Footer copyright centred */
.footer-bottom {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* ── Issue 2: About grid — single column on ALL screen sizes, about text first then map ── */
.about-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 48px;
}
.about-text-col {
  order: 1;
  width: 100%;
  max-width: 100%;
}
.about-visual {
  order: 2;
  width: 100%;
  max-width: 100%;
}
.cti-panel {
  max-width: 100%;
}

/* ── Issue 3: Reduce empty space above hero-stats & show Free Security / Explore buttons ── */
.hero-contact-box {
  display: flex !important;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideIn 0.9s 0.6s ease both;
  margin-bottom: 0;
}
.hero-stats {
  margin-top: 32px;
}
#home {
  padding: 100px 40px 72px;
}
.hero-badge {
  margin-bottom: 24px;
}
.hero-sub {
  margin-bottom: 28px;
}

/* ── Issue 4: Threat intel terminal & recon terminal same size, 75% screen ── */
#threat-intel .terminal-wrap,
#recon .terminal-wrap {
  max-width: 75vw;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
#recon .terminal-body {
  min-height: 45vh;
  max-height: 50vh;
}
#threat-intel .terminal-body {
  min-height: 45vh;
  max-height: 50vh;
}
/* CTI map panel same width */
.cti-panel {
  max-width: 75vw;
  width: 100%;
}
@media (max-width: 900px) {
  #threat-intel .terminal-wrap,
  #recon .terminal-wrap {
    max-width: 95vw;
    width: 95%;
  }
  .cti-panel {
    max-width: 95vw;
  }
  #recon .terminal-body,
  #threat-intel .terminal-body {
    min-height: 320px;
    max-height: 400px;
  }
}
@media (max-width: 480px) {
  #threat-intel .terminal-wrap,
  #recon .terminal-wrap {
    max-width: 100%;
    width: 100%;
  }
  .cti-panel {
    max-width: 100%;
  }
}

/* ── Issue 5: Section-label text colour matches shield teal, size h4 ── */
.section-label {
  color: var(--glow) !important;
  font-size: 1rem !important;  /* h4 equivalent */
  font-weight: 700 !important;
}
.section-label::before {
  background: var(--glow) !important;
}

/* ── Issue 6: Hero title height — prevent text cut off ── */
.hero-container {
  height: clamp(130px, 22vw, 220px);
  overflow: visible;
}
.hero-title {
  overflow: visible;
  line-height: 1.15;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .hero-container {
    height: clamp(110px, 30vw, 180px);
    overflow: visible;
  }
}
@media (max-width: 480px) {
  .hero-container {
    height: clamp(100px, 34vw, 160px);
    overflow: visible;
  }
}
@media (max-width: 380px) {
  .hero-container {
    height: clamp(90px, 36vw, 140px);
    overflow: visible;
  }
}

/* ── Founder Card Styles ── */
.founder-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: rgba(9,21,32,0.85);
  border: 1px solid rgba(0,210,180,0.18);
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0,210,180,0.06), 0 12px 48px rgba(0,0,0,0.5);
  max-width: 860px;
  margin: 0 auto;
}
.founder-avatar-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 200px;
  min-width: 200px;
}
.founder-body {
  flex: 1;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.founder-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(0,210,180,0.3);
  color: var(--glow);
  background: rgba(0,210,180,0.04);
  border-radius: 2px;
}
.founder-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.founder-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--glow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 620px;
}
.founder-email {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(0,210,180,0.65);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.founder-email:hover { color: var(--glow); }

/* ── Founder photo frame ── */
.founder-photo-frame {
  position: relative;
  width: 200px;
  min-width: 200px;
  min-height: 260px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,210,180,0.04);
  box-shadow:
    0 0 0 1px rgba(0,210,180,0.25),
    0 0 24px rgba(0,210,180,0.12),
    0 16px 48px rgba(0,0,0,0.6);
}
.founder-photo {
  display: block;
  width: 200px;
  min-width: 200px;
  height: auto;
  min-height: 260px;
  max-height: 320px;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.04) brightness(0.97);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.founder-photo-frame:hover .founder-photo {
  transform: scale(1.03);
  filter: contrast(1.07) brightness(1.02);
}

/* Animated scan-line shimmer */
@keyframes founderScanSlide {
  0%   { top: -100%; opacity: 0.18; }
  30%  { opacity: 0.12; }
  100% { top: 200%;   opacity: 0; }
}
.founder-scan {
  position: absolute;
  left: 0; right: 0;
  top: -100%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,229,255,0.07) 40%,
    rgba(0,229,255,0.12) 50%,
    rgba(0,229,255,0.07) 60%,
    transparent 100%
  );
  pointer-events: none;
  animation: founderScanSlide 4s 1.2s ease-in-out infinite;
}

/* Corner bracket marks */
.fpc {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 2;
}
.fpc-tl { top: 6px;    left: 6px;    border-top: 2px solid #00d2b4;  border-left:  2px solid #00d2b4; }
.fpc-tr { top: 6px;    right: 6px;   border-top: 2px solid #00d2b4;  border-right: 2px solid #00d2b4; }
.fpc-bl { bottom: 28px; left: 6px;   border-bottom: 2px solid #00a8ff; border-left:  2px solid #00a8ff; }
.fpc-br { bottom: 28px; right: 6px;  border-bottom: 2px solid #00a8ff; border-right: 2px solid #00a8ff; }

/* ID strip at the bottom of the photo */
.founder-photo-id {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5px 10px;
  background: rgba(2,6,10,0.82);
  border-top: 1px solid rgba(0,210,180,0.2);
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: rgba(0,210,180,0.6);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

/* Responsive — stack photo above body on mobile */
@media (max-width: 600px) {
  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 24px;
  }
  .founder-avatar-wrap {
    width: 160px;
    min-width: 160px;
  }
  .founder-photo-frame {
    width: 160px;
    min-width: 160px;
    min-height: 213px;
  }
  .founder-photo {
    width: 160px;
    min-width: 160px;
    min-height: 213px;
  }
  .fpc-bl { bottom: 26px; }
  .fpc-br { bottom: 26px; }
  .founder-tags { justify-content: center; }
  .founder-bio { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════
   v2 FIXES — About centre, Recon full-width, Section-label gradient
═══════════════════════════════════════════════════════════════════ */

/* ── Fix 1: About Us — centre-align text content & features ── */
#about .about-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 48px;
  text-align: center;
}

#about .about-text-col {
  width: 100%;
  max-width: 780px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section label inside about — centre it */
#about .about-text-col .section-label {
  justify-content: center !important;
  text-align: center;
}

/* Section title & desc inside about — centre */
#about .section-title,
#about .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* About features — centred column layout */
#about .about-features {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

/* Feature items — centre text, no left-slide hover */
#about .feat-item {
  justify-content: center;
  text-align: left;   /* keep checkmark text readable left-to-right */
  transition: all 0.3s;
}
#about .feat-item:hover {
  transform: translateY(-2px);   /* lift instead of slide */
}

/* Company reg — centre */
#about .company-reg {
  text-align: center;
  border-left: none;
  border-top: 2px solid rgba(0, 210, 180, 0.3);
  border-bottom: 2px solid rgba(0, 210, 180, 0.15);
  padding: 12px 0;
  width: 100%;
}

/* About visual — full width, centred */
#about .about-visual {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
#about .cti-panel {
  max-width: 100%;
  width: 100%;
}

/* ── Fix 2: Recon tabs + terminal — 100% width, perfectly aligned ── */
#recon .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* Wrap tabs and terminal together so they share identical width */
.recon-body-wrap {
  width: 100%;
}

#recon .recon-ticker {
  width: 100%;
  max-width: 100%;
}

#recon .recon-tabs {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
}

#recon .terminal-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#recon .terminal-body {
  min-height: 400px;
  max-height: 480px;
}

#recon .recon-progress-wrap,
#recon .recon-findings {
  width: 100%;
}

/* Responsive — tablets */
@media (max-width: 1024px) {
  #recon .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  #recon .terminal-body {
    min-height: 340px;
    max-height: 420px;
  }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  #recon .terminal-body {
    min-height: 280px;
    max-height: 360px;
  }
}

/* ── Fix 3: Section-label — hero-title gradient colour (#00e5ff) ── */
/*
  The hero-title accent gradient is: var(--glow) → var(--accent) → var(--glow2)
  i.e. #00d2b4 → #00ffd5 → #00a8ff
  The user wants section-label to use #00e5ff (var(--glow2) / cyan-blue end).
  We apply it as a CSS gradient text so it matches the hero title accent exactly.
*/
.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(13px, 1.8vw, 17px);
  color: var(--glow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;       /* Maintains flex context */
  align-items: center;
  justify-content: center; /* Centering fix */
  gap: 12px;
  font-weight: 600;
  width: 100%;        /* Ensures it takes full width of container */
}

/* The decorative line before section-label — keep it visible with solid colour */
.section-label::before {
  background: linear-gradient(90deg, var(--glow), #00e5ff) !important;
  -webkit-text-fill-color: initial !important; /* line is not text, reset */
  flex-shrink: 0;
}


/* Add a decorative line after the text for symmetry */
.section-label::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--glow);
}

/* Sections that centre their label — keep flex centering working */
#services .container > .section-label,
#process .container > .section-label,
#tools .container > .section-label,
#team .container > .section-label,
#testimonials .container > .section-label,
#recon .recon-header .section-label,
#about .about-text-col .section-label,
#threat-intel .container .section-label,
#contact .container .section-label,
.contact-mission .section-label,
[style*="justify-content:center"] .section-label,
.section-label[style*="justify-content:center"] {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
