/* ================================================================
   DAR — Complete Stylesheet
   ================================================================ */

:root {
  --bg:       #070D07;
  --bg-2:     #0D1A0D;
  --bg-3:     #131F13;
  --bg-4:     #192519;
  --green:    #22C55E;
  --green-dim: rgba(34,197,94,0.12);
  --green-glow: rgba(34,197,94,0.35);
  --amber:    #F59E0B;
  --text:     #F1F5F1;
  --text-2:   #8A9E8A;
  --text-3:   #4A5E4A;
  --border:   rgba(255,255,255,0.07);
  --font-d:   'Space Grotesk', sans-serif;
  --font-b:   'Inter', sans-serif;
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --tr:       0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }

h1,h2,h3,h4 { font-family: var(--font-d); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem,5.5vw,4.8rem); }
h2 { font-size: clamp(1.9rem,3.5vw,2.9rem); }
h3 { font-size: 1.15rem; }

/* ── Utilities ────────────────────────────────────────────────── */

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.22);
  padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1.25rem;
}

.section-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--text-2); font-size: 1rem; line-height: 1.75; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-d); font-size: 0.88rem; font-weight: 600;
  color: #000; background: var(--green);
  padding: 0.8rem 1.6rem; border-radius: 8px; border: none; cursor: pointer;
  transition: var(--tr); letter-spacing: -0.01em;
}
.btn-primary:hover { background: #4ADE80; transform: translateY(-2px); box-shadow: 0 8px 28px var(--green-glow); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-d); font-size: 0.88rem; font-weight: 500;
  color: var(--text); background: transparent;
  padding: 0.8rem 1.6rem; border-radius: 8px; border: 1px solid var(--border); cursor: pointer;
  transition: var(--tr);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
.btn-full { width: 100%; justify-content: center; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Navigation ───────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--tr), backdrop-filter var(--tr);
}
.nav.scrolled {
  background: rgba(7,13,7,0.92); backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 1.2rem 1.5rem;
}
.nav-logo img { height: 52px; width: auto; filter: drop-shadow(0 0 8px rgba(34,197,94,0.15)); }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 500;
  color: var(--text-2); transition: color var(--tr);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: var(--green) !important;
  background: var(--green-dim) !important;
  border: 1px solid rgba(34,197,94,0.22) !important;
  padding: 0.4rem 1rem !important; border-radius: 6px !important;
  transition: all var(--tr) !important;
}
.nav-cta:hover { background: var(--green) !important; color: #000 !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.25rem; z-index: 102;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,13,7,0.88) 0%, rgba(7,13,7,0.72) 50%, rgba(7,13,7,0.9) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-scan {
  position: absolute; top: 0; left: -50%; width: 45%; height: 100%; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,0.015) 30%, rgba(34,197,94,0.07) 50%, rgba(34,197,94,0.015) 70%, transparent 100%);
  animation: scanMove 9s ease-in-out infinite;
}
@keyframes scanMove { 0% { left: -45%; } 100% { left: 140%; } }

.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  animation: bdot 2s ease-in-out infinite;
}
@keyframes bdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }

.hero h1 { color: var(--text); max-width: 720px; margin-bottom: 1.5rem; }
.hero-accent { color: var(--green); }

.hero-sub {
  font-size: 1.05rem; color: var(--text-2); max-width: 500px;
  line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Radar */
.hero-radar {
  position: absolute; right: 7%; bottom: 8%;
  width: 250px; height: 250px; z-index: 2; opacity: 0.55;
}
.radar-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.28);
  animation: rring 3s ease-out infinite;
}
.r1 { width:  80px; height:  80px; animation-delay: 0s; }
.r2 { width: 152px; height: 152px; animation-delay: 0.55s; }
.r3 { width: 224px; height: 224px; animation-delay: 1.1s; }
@keyframes rring { 0%{opacity:0.8;border-color:rgba(34,197,94,0.35)} 100%{opacity:0;border-color:transparent} }

.radar-sweep {
  position: absolute; top: 50%; left: 50%;
  width: 50%; height: 2px; transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.5));
  animation: rsweep 3s linear infinite;
}
@keyframes rsweep { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.radar-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.95rem;
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; z-index: 2; opacity: 0.4;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); }
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(var(--green), transparent);
  animation: sline 2s ease-in-out infinite;
}
@keyframes sline { 0%,100%{transform:scaleY(1);opacity:0.4} 50%{transform:scaleY(0.5);opacity:1} }

/* ── Stats / Problem ──────────────────────────────────────────── */

.stats {
  background: var(--bg-2); padding: 6rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-intro { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.stats-intro h2 { margin-bottom: 1rem; }
.stats-intro p  { color: var(--text-2); line-height: 1.75; }

.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.stat-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem; text-align: center; position: relative; overflow: hidden;
  transition: border-color var(--tr), transform var(--tr);
}
.stat-card::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity var(--tr);
}
.stat-card:hover { border-color: rgba(34,197,94,0.22); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }

.stat-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; margin: 0 auto 1.2rem;
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1rem;
}
.stat-number {
  font-family: var(--font-d); font-size: clamp(2.2rem,3.5vw,3.2rem); font-weight: 700;
  color: var(--text); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.7rem;
}
.stat-label { font-size: 0.88rem; font-weight: 500; color: var(--text); margin-bottom: 0.3rem; }
.stat-note  { font-size: 0.76rem; color: var(--text-3); }

/* ── Globe ─────────────────────────────────────────────────────── */

.globe-section { margin-bottom: 4rem; }

.globe-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 2rem;
  align-items: center; margin-bottom: 1.2rem;
}

.globe-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.globe-wrap svg { width: 100%; max-width: 540px; height: auto; cursor: grab; display: block; margin: 0 auto; }
.globe-wrap svg:active { cursor: grabbing; }

.globe-hint {
  margin-top: 0.75rem; font-size: 0.76rem; color: var(--text-3);
  display: flex; align-items: center; gap: 0.4rem;
}

.globe-panel {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; min-height: 260px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.globe-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent); opacity: 0.5;
}

.globe-panel-default { text-align: center; color: var(--text-2); }
.gp-icon { font-size: 2.5rem; color: var(--green); opacity: 0.4; margin-bottom: 1rem; }
.globe-panel-default p { font-size: 0.9rem; line-height: 1.7; }

.globe-panel-data { width: 100%; }
.gp-country {
  font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem;
  color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 0.8rem;
}
.gp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.gp-stat { background: var(--bg-4); border-radius: 10px; padding: 0.9rem 1rem; }
.gp-val { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 0.25rem; }
.gp-lbl { font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.gp-note { font-size: 0.8rem; color: var(--text-2); line-height: 1.6; font-style: italic; }
.gp-grid .gp-stat:last-child:nth-child(odd) { grid-column: 1 / -1; }

.globe-legend {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-size: 0.75rem; color: var(--text-3);
}
.globe-legend-bar {
  width: 180px; height: 8px; border-radius: 4px;
  background: linear-gradient(to right, #1a3a1a, #22c55e, #f59e0b, #ef4444);
}

/* SVG globe elements */
.globe-sphere { fill: #0a1a2a; }
.globe-graticule { fill: none; stroke: rgba(255,255,255,0.04); stroke-width: 0.5; }
.globe-country {
  stroke: rgba(255,255,255,0.12); stroke-width: 0.4;
  transition: opacity 0.2s;
}
.globe-country.hovered { stroke: rgba(34,197,94,0.8); stroke-width: 1.2; }
.globe-country.no-data { fill: #1a2a1a; }
.globe-outline { fill: none; stroke: rgba(34,197,94,0.15); stroke-width: 0.8; }

@media (max-width: 900px) {
  .globe-layout { grid-template-columns: 1fr; }
  .globe-panel { min-height: 200px; }
}

/* ── How It Works ─────────────────────────────────────────────── */

.how { padding: 6rem 0; background: var(--bg); }

.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }

.step {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px;
  padding: 2.25rem 1.75rem; text-align: center; transition: border-color var(--tr), background var(--tr);
}
.step:hover { border-color: rgba(34,197,94,0.22); background: var(--bg-4); }

.step-num {
  font-family: var(--font-d); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--green); opacity: 0.75; margin-bottom: 1rem;
}
.step-icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.2rem; transition: var(--tr);
}
.step:hover .step-icon { background: rgba(34,197,94,0.2); box-shadow: 0 0 20px rgba(34,197,94,0.18); }
.step h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.step p   { color: var(--text-2); font-size: 0.88rem; line-height: 1.72; }

.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.25rem; color: var(--green); opacity: 0.4; font-size: 1rem;
  padding-top: 4rem;
}

/* ── Features ─────────────────────────────────────────────────── */

.features { padding: 6rem 0; background: var(--bg-2); }

.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }

.feature-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px;
  padding: 2.25rem; position: relative; overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
}
.feature-card::after {
  content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--green); opacity: 0; transition: opacity var(--tr);
}
.feature-card:hover { border-color: rgba(34,197,94,0.2); transform: translateY(-4px); background: var(--bg-4); }
.feature-card:hover::after { opacity: 1; }

.feature-num {
  font-family: var(--font-d); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--green); opacity: 0.65; margin-bottom: 1.2rem;
}
.feature-icon {
  width: 50px; height: 50px; border-radius: 11px; margin-bottom: 1.2rem;
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem; transition: var(--tr);
}
.feature-card:hover .feature-icon { background: rgba(34,197,94,0.2); box-shadow: 0 0 18px rgba(34,197,94,0.15); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; color: var(--text); }
.feature-card p  { color: var(--text-2); font-size: 0.88rem; line-height: 1.76; }

/* ── Live Network ─────────────────────────────────────────────── */

.live { padding: 6rem 0; background: var(--bg); }

.live-tag { gap: 0.45rem; }
.live-dot {
  width: 6px; height: 6px; background: #EF4444; border-radius: 50%;
  animation: lpulse 1.5s ease-in-out infinite;
}
@keyframes lpulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.live-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.live-loading {
  grid-column: 1/-1; text-align: center; padding: 4rem;
  color: var(--text-2); display: flex; align-items: center; justify-content: center;
  gap: 0.9rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px;
}

/* Live Cards */
.live-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: var(--tr);
}
.live-card:hover { border-color: rgba(34,197,94,0.2); transform: translateY(-3px); }
.live-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #0A130A; }
.live-card-img img { width:100%; height:100%; object-fit:cover; }
.no-frame {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:0.5rem; color:var(--text-3); font-size:0.78rem;
}
.detection-tag {
  position:absolute; bottom:0.5rem; left:0.5rem;
  font-size:0.6rem; font-weight:700; letter-spacing:0.06em;
  padding:0.2rem 0.55rem; border-radius:4px; font-family:var(--font-d);
}
.detection-tag.clear   { background:rgba(34,197,94,0.12); color:var(--green);  border:1px solid rgba(34,197,94,0.28); }
.detection-tag.animal  { background:rgba(245,158,11,0.12); color:var(--amber); border:1px solid rgba(245,158,11,0.28); }
.detection-tag.waiting { background:rgba(148,163,184,0.08); color:var(--text-2); border:1px solid var(--border); }

.live-badge {
  position:absolute; top:0.5rem; right:0.5rem;
  display:flex; align-items:center; gap:0.28rem;
  font-size:0.58rem; font-weight:700; letter-spacing:0.1em;
  color:#fff; background:rgba(239,68,68,0.82); padding:0.2rem 0.45rem; border-radius:3px;
}
.live-badge-dot { width:4px; height:4px; background:#fff; border-radius:50%; animation:lpulse 1.5s ease-in-out infinite; }
.live-card-body { padding: 0.9rem 1rem; }
.live-card-name { font-family:var(--font-d); font-size:0.88rem; font-weight:600; color:var(--text); margin-bottom:0.2rem; }
.live-card-loc  { font-size:0.74rem; color:var(--text-3); margin-bottom:0.7rem; }
.live-card-meta { display:flex; gap:1rem; flex-wrap:wrap; }
.live-meta-item { display:flex; flex-direction:column; gap:0.1rem; }
.live-meta-label { font-size:0.62rem; letter-spacing:0.07em; text-transform:uppercase; color:var(--text-3); }
.live-meta-value { font-size:0.8rem; font-weight:500; color:var(--text); }

.live-footer {
  display:flex; align-items:center; justify-content:center;
  gap:0.7rem; font-size:0.78rem; color:var(--text-3);
}
.live-pulse-dot {
  width:6px; height:6px; background:var(--green); border-radius:50%; flex-shrink:0;
  animation:lpulse 2s ease-in-out infinite;
}

/* ── About ────────────────────────────────────────────────────── */

.about {
  padding: 6rem 0; background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { margin-bottom: 1.4rem; }
.about-text p  { color: var(--text-2); font-size: 0.98rem; line-height: 1.8; margin-bottom: 1rem; }

.about-nums { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.1rem; }
.about-num {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.4rem; text-align: center; transition: border-color var(--tr);
}
.about-num:hover { border-color: rgba(34,197,94,0.2); }
.about-num strong {
  display:block; font-family:var(--font-d); font-size:1.9rem; font-weight:700;
  color: var(--green); letter-spacing:-0.02em; line-height:1; margin-bottom:0.4rem;
}
.about-num span { font-size:0.78rem; color:var(--text-2); }

/* ── Team ─────────────────────────────────────────────────────── */

.team { padding: 6rem 0; background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.team-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem; text-align: center; transition: border-color var(--tr), transform var(--tr);
}
.team-card:hover { border-color: rgba(34,197,94,0.2); transform: translateY(-4px); }

.team-img-wrap {
  width: 92px; height: 92px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 1.25rem; border: 2px solid var(--border); transition: var(--tr);
}
.team-card:hover .team-img-wrap { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-dim); }
.team-img-wrap img { width:100%; height:100%; object-fit:cover; }
.team-card h3   { font-size: 1rem; margin-bottom: 0.3rem; }
.team-role      { display:block; font-size:0.72rem; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; color:var(--green); margin-bottom:0.7rem; }
.team-card p    { font-size:0.83rem; color:var(--text-2); line-height:1.65; }

/* ── Contact ──────────────────────────────────────────────────── */

.contact { padding: 6rem 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.contact-info h2      { margin-bottom: 1rem; }
.contact-info > p     { color: var(--text-2); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details      { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-detail       { display: flex; align-items: flex-start; gap: 0.9rem; }
.cd-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.85rem;
}
.contact-detail div    { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-detail strong { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.contact-detail span   { font-size: 0.82rem; color: var(--text-2); }

.linkedin-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.83rem; font-weight: 500; color: var(--text-2);
  padding: 0.55rem 1rem; border: 1px solid var(--border); border-radius: 8px; transition: var(--tr);
}
.linkedin-link:hover { color: var(--text); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); }

.contact-form {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 2.25rem;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; }
.form-field input,
.form-field textarea {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 7px;
  padding: 0.8rem 0.95rem; color: var(--text); font-family: var(--font-b);
  font-size: 0.88rem; transition: var(--tr); resize: vertical; outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: rgba(34,197,94,0.38); box-shadow: 0 0 0 3px var(--green-dim); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }

.form-status {
  margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 7px;
  font-size: 0.85rem; font-weight: 500; text-align: center;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.22); color: var(--green);
}
.form-status.hidden { display: none; }

/* ── Footer ───────────────────────────────────────────────────── */

.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 4rem; margin-bottom: 3.5rem;
}
.footer-logo { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-3); line-height: 1.72; max-width: 270px; margin-bottom: 1.2rem; }

.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.88rem; transition: var(--tr);
}
.social-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.14); }

.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col   { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col strong {
  font-family: var(--font-d); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 0.2rem;
}
.footer-col a { font-size: 0.82rem; color: var(--text-3); transition: color var(--tr); }
.footer-col a:hover { color: var(--text-2); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: 1fr; }
  .about-split,
  .contact-wrap    { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top      { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-radar      { display: none; }
  .steps           { grid-template-columns: 1fr; }
  .step-arrow      { display: none; }
}

@media (max-width: 900px) {
  .stats-row       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .team-grid       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(7,13,7,0.97); flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 101; backdrop-filter: blur(20px);
  }
  .nav-links.open   { display: flex; }
  .nav-links a      { font-size: 1.4rem; font-weight: 600; }
  .hamburger        { display: flex; }

  .team-grid        { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .live-grid        { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form     { padding: 1.5rem; }
  .footer-links     { grid-template-columns: repeat(2,1fr); }
  .footer-bottom    { flex-direction: column; gap: 0.4rem; text-align: center; }
  .stats-row        { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions     { flex-direction: column; }
  .btn-primary,
  .btn-ghost        { width: 100%; justify-content: center; }
  .about-nums       { grid-template-columns: 1fr 1fr; }
  .hero-scroll      { display: none; }
  .hero             { min-height: 56vw; max-height: 100vh; }
  .hero-video       { object-fit: cover; }
}
