*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

:root {
  --navy:     #080f1c;
  --navy2:    #0d1829;
  --navy3:    #112038;
  --blue:     #1557a0;
  --accent:   #2970e8;
  --accent-l: #5b93f0;
  --white:    #ffffff;
  --off:      #f0f4f9;
  --text:     #3d5068;
  --muted:    #6b7f96;
  --border:   #dde4ef;
  --border-d: rgba(255,255,255,0.07);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 70px;
  display: flex; align-items: center;
  padding: 0 48px;
  background: var(--navy);
  justify-content: space-between;
  border-bottom: 1px solid var(--border-d);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 36px; }
.nav-logo-text {
  font-size: 0.88rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.15s;
}
.nav-links a:hover { color: rgba(255,255,255,0.95); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-phone {
  font-size: 0.85rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: color 0.15s;
}
.nav-phone::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 2px rgba(34,197,94,0.25);} 50%{box-shadow:0 0 0 5px rgba(34,197,94,0.1);} }
.nav-phone:hover { color: var(--accent-l); }

.nav-cta {
  background: var(--accent); color: var(--white);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 22px; border-radius: 3px;
  text-decoration: none; transition: background 0.15s;
}
.nav-cta:hover { background: #1a5cd4; }

/* ─── HERO ────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; flex-direction: column;
  padding-top: 70px; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('https://cdn.prod.website-files.com/636bf86413f591573da5a85d/672e254a0b58190b9701510e_Vehicle_2.jpg') center/cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,15,28,0.96) 42%, rgba(8,15,28,0.55) 100%);
}

/* Diagonal accent line */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 38%; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(41,112,232,0.35), transparent);
  z-index: 1;
  transform: skewX(-4deg);
}

/* ── SCANNING LINE ── */
.hero-scan {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-scan::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 2px; top: -2px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(41,112,232,0) 20%,
    rgba(41,112,232,0.6) 50%, rgba(91,147,240,0.8) 52%,
    rgba(41,112,232,0.6) 54%, rgba(41,112,232,0) 80%, transparent 100%
  );
  box-shadow: 0 0 12px 2px rgba(41,112,232,0.3), 0 0 40px 6px rgba(41,112,232,0.08);
  animation: scanLine 5s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

/* ── RADAR SWEEP ── */
.hero-radar {
  position: absolute;
  right: 5%; bottom: 8%;
  width: 420px; height: 420px;
  z-index: 2; pointer-events: none;
}
.hero-radar::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(41,112,232,0.15);
  box-shadow: 0 0 30px rgba(41,112,232,0.12), inset 0 0 30px rgba(41,112,232,0.05);
}
.radar-circle {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(41,112,232,0.35);
  box-shadow: 0 0 12px rgba(41,112,232,0.08) inset;
}
.radar-circle:nth-child(2) { inset: 18%; border-color: rgba(41,112,232,0.28); }
.radar-circle:nth-child(3) { inset: 36%; border-color: rgba(41,112,232,0.22); }
.radar-circle:nth-child(4) { inset: 54%; border-color: rgba(41,112,232,0.18); }
.radar-crosshair { position: absolute; inset: 0; }
.radar-crosshair::before, .radar-crosshair::after {
  content: ''; position: absolute; background: rgba(41,112,232,0.25);
}
.radar-crosshair::before { top:50%; left:0; right:0; height:1px; transform:translateY(-50%); }
.radar-crosshair::after  { left:50%; top:0; bottom:0; width:1px; transform:translateX(-50%); }
.radar-sweep {
  position: absolute; inset: 0;
  border-radius: 50%; overflow: hidden;
  animation: radarRotate 3.5s linear infinite;
}
.radar-sweep::after {
  content: '';
  position: absolute;
  width: 200%; height: 200%; top: -50%; left: -50%;
  background: conic-gradient(
    from 0deg, transparent 0deg,
    rgba(41,112,232,0.0) 180deg, rgba(41,112,232,0.05) 260deg,
    rgba(41,112,232,0.18) 320deg, rgba(41,112,232,0.55) 355deg,
    rgba(91,147,240,0.85) 360deg
  );
}
@keyframes radarRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.radar-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px 3px rgba(34,197,94,0.7), 0 0 24px 6px rgba(34,197,94,0.3);
  animation: radarBlink 3.5s ease-out infinite;
}
.radar-dot:nth-child(5) { top:24%; left:65%; animation-delay:0s; }
.radar-dot:nth-child(6) { top:58%; left:33%; animation-delay:1.2s; }
.radar-dot:nth-child(7) { top:72%; left:64%; animation-delay:2.4s; }
@keyframes radarBlink {
  0%,100% { opacity:0; transform:scale(0.4); }
  10%     { opacity:1; transform:scale(1.2); }
  20%     { transform:scale(1); }
  50%     { opacity:0.5; }
  85%     { opacity:0; }
}
.radar-label {
  position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
  font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(41,112,232,0.55); white-space: nowrap;
  text-shadow: 0 0 12px rgba(41,112,232,0.4);
}
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media(max-width:1100px){ .hero-radar { width:300px; height:300px; right:3%; bottom:6%; } }
@media(max-width:680px)  { .hero-radar { display:none; } }

.hero-main {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
  padding: 0 80px;
}

.hero-content { max-width: 660px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 30px;
}
.hero-eyebrow-line {
  width: 36px; height: 1px; background: var(--accent);
}
.hero-eyebrow span {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-l);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero h1 .line-blue { color: var(--accent-l); display: block; }

.hero-sub {
  font-size: 1rem; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 480px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Micro service status row */
.hero-svc-status {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  transition: background 0.3s, border-color 0.3s;
}
.hero-svc-badge.is-active {
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.2);
}
.hero-svc-badge.is-soon {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.2);
}
.hero-svc-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.3s;
}
.is-active .hero-svc-dot { background: #4ade80; animation: opsPulse 2s infinite; }
.is-soon .hero-svc-dot   { background: #fbbf24; }
.hero-svc-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-svc-sep {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.15);
}
.hero-svc-val {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.is-active .hero-svc-label,
.is-active .hero-svc-val { color: #4ade80; }
.is-soon .hero-svc-label,
.is-soon .hero-svc-val   { color: #fbbf24; }

.btn-hero {
  display: inline-block;
  background: var(--accent); color: var(--white);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px; border-radius: 3px;
  text-decoration: none; transition: background 0.15s;
}
.btn-hero:hover { background: #1a5cd4; }

.btn-hero-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-size: 0.85rem; font-weight: 500;
  padding: 14px 32px; border-radius: 3px;
  text-decoration: none; transition: border-color 0.15s, background 0.15s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); }

/* Hero bottom stats */
.hero-bottom {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-d);
  background: rgba(8,15,28,0.8);
  backdrop-filter: blur(12px);
}

.hstat {
  padding: 24px 40px;
  border-right: 1px solid var(--border-d);
  display: flex; align-items: center; gap: 18px;
}
.hstat:last-child { border-right: none; }

.hstat-icon {
  width: 38px; height: 38px;
  background: rgba(41,112,232,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.hstat-num {
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em; line-height: 1;
}
.hstat-label {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.35); margin-top: 2px;
  line-height: 1.4;
}

/* ─── TRUST BAR ───────────────────────── */
.trust-bar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 16px 80px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
}
.trust-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
}
.trust-check { color: var(--accent); font-size: 0.85rem; }

/* ─── ABOUT ───────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--border);
}

.about-img { position: relative; overflow: hidden; }
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
  transition: transform 0.6s ease;
}
.about:hover .about-img img { transform: scale(1.03); }

/* Overlay accent */
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,15,28,0.15) 0%, transparent 60%);
}

.about-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px; border-radius: 4px;
}
.about-img-badge strong {
  display: block; font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
}
.about-img-badge span {
  font-size: 0.7rem; font-weight: 500;
  opacity: 0.8; letter-spacing: 0.05em;
}

.about-text {
  padding: 72px 72px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}

.section-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

.section-h {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 24px;
}

.about-text p {
  font-size: 0.95rem; font-weight: 400; line-height: 1.85;
  color: var(--text); margin-bottom: 16px; max-width: 480px;
}
.about-text a { margin-top: 16px; }

/* ─── SERVICES ────────────────────────── */
.services {
  background: var(--navy);
  padding: 80px;
}

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; gap: 2rem; flex-wrap: wrap;
}
.services-header .section-tag { color: var(--accent-l); }
.services-header .section-h { color: var(--white); margin-bottom: 0; }
.services-header p {
  font-size: 0.9rem; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.4); max-width: 280px;
}

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px; overflow: hidden;
}

.svc {
  background: var(--navy2);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: background 0.2s;
}
.svc:hover { background: var(--navy3); }

.svc-img-wrap { overflow: hidden; flex-shrink: 0; }
.svc-img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  filter: brightness(0.78) saturate(0.9);
  transition: transform 0.5s ease, filter 0.3s;
}
.svc:hover .svc-img { transform: scale(1.05); filter: brightness(0.92) saturate(1); }

.svc-body { padding: 26px 28px 32px; flex: 1; }

.svc-num {
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-l); margin-bottom: 8px;
}
.svc-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px; line-height: 1.3;
}
.svc-body p {
  font-size: 0.84rem; font-weight: 400;
  color: rgba(255,255,255,0.4); line-height: 1.7;
}
.svc-link {
  display: inline-block; margin-top: 16px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--accent-l); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.15s;
}
.svc-link:hover { color: var(--white); }

/* ─── FEATURE PANELS ──────────────────── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}

.feat-img { position: relative; overflow: hidden; }
.feat-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
  transition: transform 0.6s ease;
}
.feature:hover .feat-img img { transform: scale(1.03); }

.feat-content {
  padding: 72px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.feat-content p {
  font-size: 0.95rem; font-weight: 400; line-height: 1.85;
  color: var(--text); margin-bottom: 14px; max-width: 440px;
}
.feat-content a { margin-top: 16px; align-self: flex-start; }

.feature.dark { background: var(--navy); }
.feature.dark .feat-content { background: var(--navy2); }
.feature.dark .section-tag { color: var(--accent-l); }
.feature.dark .section-h { color: var(--white); }
.feature.dark p { color: rgba(255,255,255,0.5); }

.feature.flip .feat-img { order: 2; }
.feature.flip .feat-content { order: 1; }

/* ─── ACCENT DIVIDER ──────────────────── */
.accent-bar {
  background: var(--accent);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.abar-block {
  padding: 40px 52px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-direction: column; gap: 6px;
}
.abar-block:last-child { border-right: none; }
.abar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--white);
  letter-spacing: 0.02em; line-height: 1;
}
.abar-label { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); }

/* ─── WHY ─────────────────────────────── */
.why {
  background: var(--off);
  padding: 80px;
  border-bottom: 1px solid var(--border);
}

.why-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 2rem;
}
.why-top .section-h { margin-bottom: 0; }
.why-top p { font-size: 0.9rem; color: var(--muted); max-width: 300px; line-height: 1.75; }

.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  box-shadow: 0 8px 32px rgba(8,15,28,0.08);
  transform: translateY(-2px);
  border-color: #c5d5ed;
}

.why-card-icon {
  width: 46px; height: 46px;
  background: #e8f0fb;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 22px;
}
.why-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem; font-weight: 400;
  line-height: 1.78; color: var(--text);
}

/* ─── COMMUNITY ───────────────────────── */
.community {
  background: var(--white);
  padding: 80px;
  border-bottom: 1px solid var(--border);
}

.community-header { margin-bottom: 48px; }

.partners-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.partner {
  border: 1px solid var(--border);
  border-radius: 6px; padding: 44px 36px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.partner:hover {
  border-color: #bfd2f0;
  box-shadow: 0 8px 32px rgba(8,15,28,0.07);
  transform: translateY(-2px);
}

.partner-logo-wrap {
  height: 52px; margin-bottom: 28px;
  display: flex; align-items: center;
}
.partner-logo {
  max-height: 52px; max-width: 160px;
  object-fit: contain; object-position: left;
  filter: grayscale(100%); opacity: 0.35;
  transition: all 0.3s;
}
.partner:hover .partner-logo { filter: grayscale(0%); opacity: 1; }

.partner h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 10px;
}
.partner p {
  font-size: 0.88rem; font-weight: 400;
  line-height: 1.78; color: var(--text); flex: 1;
}
.partner a {
  display: inline-block; margin-top: 22px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.15s;
}
.partner a:hover { color: #1a5cd4; }

/* ══════════════════════════════════════
   FREE TOOLS — COMPLETE REDESIGN
   Concept: Editorial product launchpad
   ══════════════════════════════════════ */

.tools-section {
  background: #0c0e12;
  position: relative;
  overflow: hidden;
}

/* Noise grain overlay */
.tools-section::before {
  display: none;
}

/* Ambient glow top-left */
.tools-section::after {
  display: none;
}

.tools-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 80px 108px;
  position: relative; z-index: 1;
}

/* ── SECTION HEADER ── */
.tools-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tools-head-left {}

.tools-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.tools-eyebrow-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(41,112,232,0.6);
}
.tools-eyebrow-text {
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-l);
}

.tools-display-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff;
}
.tools-display-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
}

.tools-head-right {
  padding-left: 48px;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
.tools-head-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
}
.tools-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  align-self: flex-start;
}
.tools-count-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.tools-count-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── BENTO GRID ── */
.tools-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto auto;
  gap: 10px;
}

/* ── FEATURED CARD ── */
.ftk-featured {
  grid-column: span 4;
  background: linear-gradient(135deg, #0f1f45 0%, #162554 40%, #1a1040 100%);
  border-radius: 16px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  border: 1px solid rgba(59,130,246,0.2);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease;
}
.ftk-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.35);
}

/* Simple top accent stripe — replaces expensive grid pattern */
.ftk-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #3b82f6, #818cf8);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

/* Remove glow orb pseudo-element */
.ftk-featured::after { display: none; }

.ftk-feat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative; z-index: 1;
  margin-bottom: 32px;
}

.ftk-feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80;
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
}
.ftk-feat-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.8);
  animation: opsPulse 2s infinite;
}

.ftk-feat-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.ftk-feat-body { position: relative; z-index: 1; }

.ftk-feat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.ftk-feat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.ftk-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3b82f6;
  color: #fff;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 8px;
  transition: background 0.2s, gap 0.2s;
}
.ftk-featured:hover .ftk-feat-cta {
  background: #2563eb;
  gap: 14px;
}

/* ── REGULAR TOOL CARDS ── */
.ftk-card {
  background: #13151a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.22,.68,0,1.2), box-shadow 0.25s ease, border-color 0.25s;
}
.ftk-card:hover { transform: translateY(-4px); }

/* Card spans */
.ftk-card--find     { grid-column: span 2; }
.ftk-card--estimate { grid-column: span 2; }
.ftk-card--quote    { grid-column: span 2; }
.ftk-card--avail    { grid-column: span 2; }
.ftk-card--response { grid-column: span 3; }
.ftk-card--action   { grid-column: span 3; }

/* Accent top strip per card */
.ftk-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  border-radius: 14px 14px 0 0;
  transition: opacity 0.25s;
  opacity: 0.7;
}
.ftk-card:hover::before { opacity: 1; }

.ftk-card--find::before     { background: #10b981; }
.ftk-card--estimate::before { background: #f59e0b; }
.ftk-card--quote::before    { background: #3b82f6; }
.ftk-card--avail::before    { background: #06b6d4; }
.ftk-card--response::before { background: #8b5cf6; }
.ftk-card--action::before   { background: #f43f5e; }

/* Hover glow per card */
.ftk-card--find:hover     { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.2); }
.ftk-card--estimate:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.2); }
.ftk-card--quote:hover    { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.2); border-color: rgba(59,130,246,0.2); }
.ftk-card--avail:hover    { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(6,182,212,0.2); border-color: rgba(6,182,212,0.2); }
.ftk-card--response:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.2); }
.ftk-card--action:hover   { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(244,63,94,0.2); border-color: rgba(244,63,94,0.2); }

/* Large index number, top right */
.ftk-card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

/* Icon badge */
.ftk-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.ftk-card--find .ftk-card-icon     { background: rgba(16,185,129,0.12);  border: 1px solid rgba(16,185,129,0.2); }
.ftk-card--estimate .ftk-card-icon { background: rgba(245,158,11,0.12);  border: 1px solid rgba(245,158,11,0.2); }
.ftk-card--quote .ftk-card-icon    { background: rgba(59,130,246,0.12);  border: 1px solid rgba(59,130,246,0.2); }
.ftk-card--avail .ftk-card-icon    { background: rgba(6,182,212,0.12);   border: 1px solid rgba(6,182,212,0.2); }
.ftk-card--response .ftk-card-icon { background: rgba(139,92,246,0.12);  border: 1px solid rgba(139,92,246,0.2); }
.ftk-card--action .ftk-card-icon   { background: rgba(244,63,94,0.12);   border: 1px solid rgba(244,63,94,0.2); }

.ftk-card-tag {
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 7px;
  position: relative; z-index: 1;
}
.ftk-card--find .ftk-card-tag     { color: #10b981; }
.ftk-card--estimate .ftk-card-tag { color: #f59e0b; }
.ftk-card--quote .ftk-card-tag    { color: #60a5fa; }
.ftk-card--avail .ftk-card-tag    { color: #22d3ee; }
.ftk-card--response .ftk-card-tag { color: #a78bfa; }
.ftk-card--action .ftk-card-tag   { color: #fb7185; }

.ftk-card-title {
  font-size: 0.96rem; font-weight: 800;
  color: rgba(255,255,255,0.88);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
  position: relative; z-index: 1;
}

.ftk-card-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  flex: 1;
  position: relative; z-index: 1;
}

.ftk-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.ftk-card-cta-text {
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.ftk-card:hover .ftk-card-cta-text { color: rgba(255,255,255,0.75); }

.ftk-card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.ftk-card--find:hover .ftk-card-arrow     { background: rgba(16,185,129,0.15); color: #10b981; transform: translateX(3px); }
.ftk-card--estimate:hover .ftk-card-arrow { background: rgba(245,158,11,0.15); color: #f59e0b; transform: translateX(3px); }
.ftk-card--quote:hover .ftk-card-arrow    { background: rgba(59,130,246,0.15); color: #60a5fa; transform: translateX(3px); }
.ftk-card--avail:hover .ftk-card-arrow    { background: rgba(6,182,212,0.15);  color: #22d3ee; transform: translateX(3px); }
.ftk-card--response:hover .ftk-card-arrow { background: rgba(139,92,246,0.15); color: #a78bfa; transform: translateX(3px); }
.ftk-card--action:hover .ftk-card-arrow   { background: rgba(244,63,94,0.15);  color: #fb7185; transform: translateX(3px); }

/* Live pulse on action card */
.ftk-live-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #f43f5e;
  animation: opsPulse 1.8s infinite;
  margin-right: 5px;
  vertical-align: middle;
}

/* ─── CTA ─────────────────────────────── */
.cta {
  background: var(--navy);
  display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 400px;
}

.cta-left {
  padding: 80px;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  border-right: 1px solid var(--border-d);
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}

.cta-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95; color: var(--white);
  letter-spacing: 0.02em;
}
.cta-left h2 span { color: var(--accent-l); }

.cta-left p {
  font-size: 0.95rem; font-weight: 400; line-height: 1.8;
  color: rgba(255,255,255,0.45); max-width: 400px;
}

.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-w {
  display: inline-block;
  background: var(--white); color: var(--navy);
  font-size: 0.85rem; font-weight: 700;
  padding: 13px 28px; border-radius: 3px;
  text-decoration: none; transition: opacity 0.15s;
}
.btn-w:hover { opacity: 0.88; }

.btn-ow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-size: 0.85rem; font-weight: 500;
  padding: 13px 28px; border-radius: 3px;
  text-decoration: none; transition: border-color 0.15s;
}
.btn-ow:hover { border-color: rgba(255,255,255,0.55); }

.cta-right {
  padding: 64px 72px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}

.cta-contact {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-d);
}
.cta-contact:first-child { padding-top: 0; }
.cta-contact:last-child { border-bottom: none; }

.cta-contact-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 5px;
}
.cta-contact-val {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color 0.15s;
}
.cta-contact-val:hover { color: var(--accent-l); }

/* ─── NEWSLETTER ──────────────────────── */
.newsletter {
  background: var(--off); border-top: 1px solid var(--border);
  padding: 52px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.nl-left h3 { font-size: 1.1rem; font-weight: 800; }
.nl-left p { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.nl-row { display: flex; box-shadow: 0 2px 12px rgba(8,15,28,0.08); }
.nl-row input {
  width: 300px; padding: 12px 18px;
  border: 1px solid var(--border); border-right: none;
  font-family: 'Manrope', sans-serif; font-size: 0.88rem;
  color: var(--navy); background: var(--white);
  border-radius: 3px 0 0 3px; outline: none;
  transition: border-color 0.2s;
}
.nl-row input:focus { border-color: var(--accent); }
.nl-row input::placeholder { color: var(--muted); }
.nl-row button {
  background: var(--accent); color: var(--white);
  border: none; padding: 12px 26px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer; border-radius: 0 3px 3px 0;
  transition: background 0.15s;
}
.nl-row button:hover { background: #1a5cd4; }

/* ─── FOOTER ──────────────────────────── */
footer {
  background: var(--navy);
  padding: 64px 80px 36px;
  border-top: 1px solid var(--border-d);
}

.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 48px;
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 28px;
}

.footer-brand img { height: 36px; margin-bottom: 16px; opacity: 0.6; }
.footer-brand p {
  font-size: 0.84rem; font-weight: 400; line-height: 1.8;
  color: rgba(255,255,255,0.24); max-width: 300px;
}
.footer-partners { display: flex; gap: 16px; align-items: center; margin-top: 22px; }
.fp-img {
  height: 28px; object-fit: contain;
  filter: grayscale(100%) brightness(0.35); transition: filter 0.3s;
}
.fp-img:hover { filter: grayscale(0%) brightness(0.85); }

.f-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 18px;
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul li a {
  font-size: 0.85rem; font-weight: 400;
  color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.15s;
}
.f-col ul li a:hover { color: rgba(255,255,255,0.78); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.16); }
.footer-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ─── BUTTONS shared ──────────────────── */
.btn-blue {
  display: inline-block;
  background: var(--accent); color: var(--white);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 28px; border-radius: 3px;
  text-decoration: none; transition: background 0.15s;
}
.btn-blue:hover { background: #1a5cd4; }

.btn-outline-dark {
  display: inline-block;
  border: 1px solid var(--border); color: var(--navy);
  font-size: 0.85rem; font-weight: 600;
  padding: 13px 28px; border-radius: 3px;
  text-decoration: none; transition: border-color 0.15s, background 0.15s;
}
.btn-outline-dark:hover { border-color: var(--accent); background: #f0f5ff; }

/* ─── OPERATIONS BOARD ─────────────────────────────────────────── */
.ops-board {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}

/* scanline texture */
.ops-board::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none; z-index: 0;
}

/* diagonal accent line — same device as hero */
.ops-board::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(41,112,232,0.2), transparent);
  transform: skewX(-6deg);
  pointer-events: none; z-index: 0;
}

.ops-inner {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 80px 64px;
}

/* ── TOP BAR ── */
.ops-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ops-topbar-left {}

.ops-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ops-eyebrow-line {
  width: 28px; height: 1px;
  background: var(--accent);
}
.ops-eyebrow-text {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-l);
}

.ops-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.01em;
}
.ops-headline .dim { color: rgba(255,255,255,0.18); }
.ops-headline .accent { color: var(--accent-l); }

.ops-topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* live clock */
.ops-clock {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.9;
}
.ops-clock-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-align: right;
}
.ops-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.ops-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: opsPulse 2s infinite;
}
@keyframes opsPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.5; }
}
.ops-status-text {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.ops-status-text span { color: #22c55e; }

/* ── STATUS PANELS – REDESIGNED ── */
.ops-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.ops-panel {
  background: var(--navy2);
  border-radius: 12px;
  padding: 30px 28px 26px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.055);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease;
  cursor: default;
}
.ops-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

/* Left accent pillar */
.ops-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
}
.ops-panel.active::before   { background: linear-gradient(180deg, #4ade80 0%, #16a34a 100%); }
.ops-panel.deployed::before { background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%); }
.ops-panel.standby::before  { background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%); }
.ops-panel.patrol::before   { background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%); }

/* Diagonal shine sweep */
.ops-panel::after {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 55%; height: 220%;
  background: linear-gradient(135deg, rgba(255,255,255,0.028) 0%, transparent 55%);
  transform: skewX(-12deg);
  pointer-events: none;
}

/* Glowing card ambient underneath */
.ops-panel.active   { box-shadow: inset 0 0 0 1px rgba(34,197,94,0.08), 0 4px 24px rgba(0,0,0,0.3); }
.ops-panel.deployed { box-shadow: inset 0 0 0 1px rgba(245,158,11,0.08), 0 4px 24px rgba(0,0,0,0.3); }
.ops-panel.standby  { box-shadow: inset 0 0 0 1px rgba(41,112,232,0.08), 0 4px 24px rgba(0,0,0,0.3); }
.ops-panel.patrol   { box-shadow: inset 0 0 0 1px rgba(167,139,250,0.08), 0 4px 24px rgba(0,0,0,0.3); }

/* Corner bracket – top right */
.ops-panel-corner {
  position: absolute;
  top: 14px; right: 14px;
  width: 14px; height: 14px;
  border-top: 1.5px solid;
  border-right: 1.5px solid;
  border-radius: 0 3px 0 0;
}
.ops-panel.active .ops-panel-corner   { border-color: rgba(74,222,128,0.35); }
.ops-panel.deployed .ops-panel-corner { border-color: rgba(251,191,36,0.35); }
.ops-panel.standby .ops-panel-corner  { border-color: rgba(96,165,250,0.35); }
.ops-panel.patrol .ops-panel-corner   { border-color: rgba(167,139,250,0.35); }

/* Corner bracket – bottom left */
.ops-panel-corner-bl {
  position: absolute;
  bottom: 14px; left: 18px;
  width: 10px; height: 10px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-radius: 0 0 0 2px;
}
.ops-panel.active .ops-panel-corner-bl   { border-color: rgba(74,222,128,0.18); }
.ops-panel.deployed .ops-panel-corner-bl { border-color: rgba(251,191,36,0.18); }
.ops-panel.standby .ops-panel-corner-bl  { border-color: rgba(96,165,250,0.18); }
.ops-panel.patrol .ops-panel-corner-bl   { border-color: rgba(167,139,250,0.18); }

/* Status badge – pill chip */
.ops-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  padding: 4px 11px 4px 8px;
  border-radius: 30px;
}
.ops-panel.active .ops-panel-status   { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.25); }
.ops-panel.deployed .ops-panel-status { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); }
.ops-panel.standby .ops-panel-status  { background: rgba(41,112,232,0.12); border: 1px solid rgba(41,112,232,0.25); }
.ops-panel.patrol .ops-panel-status   { background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.25); }

/* Active state overrides for schedule badges */
.ops-panel-status.is-active { background: rgba(74,222,128,0.12)  !important; border-color: rgba(74,222,128,0.28) !important; }
.ops-panel-status.is-soon   { background: rgba(251,191,36,0.12)  !important; border-color: rgba(251,191,36,0.25) !important; }
.ops-panel-status.is-active .ops-panel-status-label { color: #4ade80 !important; }
.ops-panel-status.is-soon   .ops-panel-status-label { color: #fbbf24 !important; }

.ops-panel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.ops-panel-dot.green  { background: #4ade80; animation: opsPulse 2.2s infinite; }
.ops-panel-dot.amber  { background: #fbbf24; box-shadow: 0 0 6px rgba(251,191,36,0.7); }
.ops-panel-dot.blue   { background: #60a5fa; box-shadow: 0 0 5px rgba(96,165,250,0.6); }
.ops-panel-dot.violet { background: #a78bfa; box-shadow: 0 0 5px rgba(167,139,250,0.6); }

.ops-panel-status-label {
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
  transition: color 0.3s;
}
.ops-panel.active .ops-panel-status-label   { color: #4ade80; }
.ops-panel.deployed .ops-panel-status-label { color: #fbbf24; }
.ops-panel.standby .ops-panel-status-label  { color: #60a5fa; }
.ops-panel.patrol .ops-panel-status-label   { color: #a78bfa; }

/* Pip capacity indicators */
.ops-panel-pips {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  max-width: 200px;
}
.pip {
  display: block;
  width: 18px; height: 8px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  transition: opacity 0.2s;
}
.pip--on   { background: #4ade80; box-shadow: 0 0 7px rgba(74,222,128,0.55); }
.pip--dim  { background: rgba(74,222,128,0.18); box-shadow: none; }
.pip--blue { background: #60a5fa; box-shadow: 0 0 7px rgba(96,165,250,0.5); }

/* Service window time display */
.ops-panel-window {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.ops-win-t {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--white);
  opacity: 0.92;
}
.ops-win-arr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.ops-panel.deployed .ops-win-t { color: #fbbf24; text-shadow: 0 0 36px rgba(251,191,36,0.35); }
.ops-panel.patrol .ops-win-t   { color: #c4b5fd; text-shadow: 0 0 36px rgba(167,139,250,0.35); }

.ops-panel-label {
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
  position: relative; z-index: 1;
}
.ops-panel-sub {
  font-size: 0.68rem; font-weight: 400;
  color: rgba(255,255,255,0.22);
  line-height: 1.55;
  position: relative; z-index: 1;
}

/* Next-active / live strip */
.ops-panel-next {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  position: relative; z-index: 1;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.ops-panel-next.is-live {
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.25);
  color: #4ade80;
}
.ops-panel-next.is-soon {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.2);
  color: #fbbf24;
}
.ops-panel-next-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: background 0.35s, box-shadow 0.35s;
}
.is-live .ops-panel-next-dot {
  background: #4ade80;
  animation: opsPulse 1.8s infinite;
}
.is-soon .ops-panel-next-dot {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251,191,36,0.6);
}

/* Large ghost watermark */
.ops-panel-bg {
  position: absolute;
  bottom: -20px; right: -6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem; line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ops-panel.active .ops-panel-bg   { color: rgba(74,222,128,0.055); }
.ops-panel.deployed .ops-panel-bg { color: rgba(251,191,36,0.055); }
.ops-panel.standby .ops-panel-bg  { color: rgba(96,165,250,0.055); }
.ops-panel.patrol .ops-panel-bg   { color: rgba(167,139,250,0.055); }

@keyframes panelRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ops-panels .ops-panel {
  animation: panelRise 0.55s cubic-bezier(.22,.68,0,1.1) both;
  will-change: transform, opacity;
}
.ops-panels .ops-panel:nth-child(1) { animation-delay: 0.10s; }
.ops-panels .ops-panel:nth-child(2) { animation-delay: 0.22s; }
.ops-panels .ops-panel:nth-child(3) { animation-delay: 0.34s; }
.ops-panels .ops-panel:nth-child(4) { animation-delay: 0.46s; }

@media (max-width: 1100px) {
  .ops-inner { padding: 60px 40px 52px; }
  .ops-panels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .ops-inner { padding: 48px 20px 44px; }
  .ops-panels { grid-template-columns: 1fr 1fr; }
  .ops-clock { font-size: 2rem; }
  .ops-topbar { flex-direction: column; align-items: flex-start; }
  .ops-topbar-right { align-items: flex-start; }
}

/* ─── REVEAL ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .hero-main { padding: 0 40px; }
  .hero-bottom { grid-template-columns: repeat(2,1fr); }
  .trust-bar { padding: 16px 40px; }
  .tools-inner { padding: 60px 40px; }
  .tools-head { grid-template-columns: 1fr; gap: 28px; }
  .tools-head-right { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; }
  .tools-bento { grid-template-columns: repeat(2, 1fr); }
  .ftk-featured { grid-column: span 2; }
  .ftk-card--find, .ftk-card--estimate, .ftk-card--quote,
  .ftk-card--avail, .ftk-card--response, .ftk-card--action { grid-column: span 1; }
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 380px; }
  .about-text { padding: 56px 40px; }
  .services { padding: 60px 40px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; min-height: auto; }
  .feat-img { height: 360px; }
  .feat-content { padding: 56px 40px; }
  .feature.flip .feat-img { order: 0; }
  .feature.flip .feat-content { order: 0; }
  .accent-bar { grid-template-columns: repeat(2,1fr); }
  .abar-block { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .why { padding: 60px 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .community { padding: 60px 40px; }
  .partners-row { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; }
  .cta-left { padding: 60px 40px; }
  .cta-right { padding: 56px 40px; }
  .newsletter { padding: 48px 40px; }
  footer { padding: 56px 40px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .big-stats { padding: 80px 40px; }
  .big-stats-grid { gap: 0; }
  .bstat { padding: 32px 32px; }
}

@media (max-width: 680px) {
  body { overflow-x: hidden; }
  .hero-main { padding: 0 20px; }
  .hero h1 { font-size: clamp(3rem,12vw,5rem); }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .tools-inner { padding: 48px 20px; }
  .tools-bento { grid-template-columns: 1fr; }
  .ftk-featured, .ftk-card--find, .ftk-card--estimate, .ftk-card--quote,
  .ftk-card--avail, .ftk-card--response, .ftk-card--action { grid-column: span 1; }
  .ftk-feat-title { font-size: 2rem; }
  .tools-display-title { font-size: 3.2rem; }
  .tool-feat-left { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partners-row { grid-template-columns: 1fr; }
  .hero-bottom { display: none; }
  .trust-bar { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; width: 100%; }
  .trust-bar-label { font-size: 0.65rem; }
  .accent-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter { padding: 36px 20px; }
  .nl-left { width: 100%; }
  .nl-row { width: 100%; }
  .nl-row input { flex: 1; min-width: 0; }
  footer { padding: 48px 20px 24px; }
  .services { padding: 48px 20px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .why { padding: 48px 20px; }
  .why-top { flex-direction: column; }
  .community { padding: 48px 20px; }
  .cta-left { padding: 48px 20px; }
  .cta-right { padding: 44px 20px; }
  .feat-content { padding: 48px 20px; }
  .about-text { padding: 44px 20px; }
  .big-stats { padding: 60px 20px; }
  .big-stats-grid { grid-template-columns: 1fr 1fr; }
  .bstat { padding: 24px 16px; }
  .bstat-n { font-size: clamp(2.5rem,10vw,4rem); }
  .abar-block { padding: 32px 20px; }
  .abar-num { font-size: 2.4rem; }
  .why-card { padding: 28px 20px; }
  .partner { padding: 32px 20px; }
  .hero-eyebrow-line { display: none; }
}



@keyframes hpTick{from{transform:translateX(0);}to{transform:translateX(-50%);}}
#hp-ticker:hover{animation-play-state:paused;}