/* =========================================
   TEQNIX — Main Stylesheet
   Dark cybersecurity aesthetic · Teal accent
   ========================================= */

:root {
  --teal: #14b8a6;
  --teal-dim: #0d9488;
  --teal-glow: rgba(20, 184, 166, 0.15);
  --teal-glow-strong: rgba(20, 184, 166, 0.25);
  --bg: #080c0f;
  --bg-2: #0d1117;
  --bg-3: #111820;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.07);
  --border-teal: rgba(20,184,166,0.25);
  --text: #e2e8f0;
  --text-dim: rgba(226,232,240,0.55);
  --text-dimmer: rgba(226,232,240,0.3);
  --white: #ffffff;
  --crit: #ef4444;
  --high: #f97316;
  --med: #f59e0b;
  --low: #22c55e;
  --info: #3b82f6;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ─── NOISE ─── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ─── CURSOR ─── */
.cursor {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(20,184,166,0.4);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: var(--teal);
  background: rgba(20,184,166,0.05);
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
h5 { font-size: 0.9rem; font-weight: 600; }
p { color: var(--text-dim); }
.lead { font-size: 1.1rem; line-height: 1.7; }
.mono { font-family: 'DM Mono', monospace; }
.accent { color: var(--teal); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 540px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ─── EYEBROW ─── */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: none;
  transition: var(--transition);
  border: none; outline: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: #080c0f;
  padding: 0.7rem 1.4rem;
}
.btn--primary:hover { background: #2dd4bf; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(20,184,166,0.35); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost-white:hover { border-color: white; color: white; }
.btn--white { background: white; color: #080c0f; padding: 0.7rem 1.4rem; font-weight: 600; }
.btn--white:hover { background: #e2faf8; transform: translateY(-1px); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn--lg { padding: 0.9rem 1.8rem; font-size: 1rem; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,12,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__links {
  display: flex; gap: 0.25rem;
  margin-left: auto;
}
.nav__links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  border-radius: 6px;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--white); background: var(--surface); }
.nav__cta { display: flex; gap: 0.5rem; flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--transition); }
.nav__mobile {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav__mobile a { display: block; padding: 0.6rem 0; color: var(--text-dim); font-size: 0.95rem; }
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn { margin-top: 0.5rem; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}
.orb--1 { width: 400px; height: 400px; background: rgba(20,184,166,0.12); top: 10%; left: -10%; animation-delay: 0s; }
.orb--2 { width: 300px; height: 300px; background: rgba(20,184,166,0.08); top: 40%; right: -5%; animation-delay: -3s; }
.orb--3 { width: 200px; height: 200px; background: rgba(99,102,241,0.06); bottom: 20%; left: 40%; animation-delay: -6s; }
@keyframes orb-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.dot--pulse { animation: pulse 2s ease-in-out infinite; box-shadow: 0 0 0 0 var(--teal); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(20,184,166,0.6); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero__title { max-width: 14ch; margin-bottom: 1.5rem; }
.hero__title .reveal-line { display: block; overflow: hidden; }
.hero__title .reveal-line span { display: block; transform: translateY(110%); animation: reveal-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero__title .reveal-line:nth-child(1) span { animation-delay: 0.1s; }
.hero__title .reveal-line:nth-child(2) span { animation-delay: 0.25s; }
@keyframes reveal-up { to { transform: translateY(0); } }

.reveal-fade { opacity: 0; transform: translateY(20px); animation: reveal-fade 0.8s ease forwards; }
.hero__sub { animation-delay: 0.5s; max-width: 520px; font-size: 1.1rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; animation-delay: 0.65s; margin-bottom: 3rem; }
@keyframes reveal-fade { to { opacity: 1; transform: translateY(0); } }

.hero__stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; animation-delay: 0.8s; }
.stat { text-align: left; }
.stat__num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); }
.stat__label { display: block; font-size: 0.78rem; color: var(--text-dimmer); margin-top: 0.15rem; }
.stat__divider { width: 1px; height: 40px; background: var(--border); }

.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  color: var(--text-dimmer); letter-spacing: 0.1em;
  animation: reveal-fade 1s ease 1.5s forwards; opacity: 0;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-bar .container { display: flex; flex-direction: column; gap: 1rem; }
.trust-bar__label { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-dimmer); text-transform: uppercase; }
.trust-bar__logos { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.trust-bar__logos span { font-size: 0.85rem; color: var(--text-dim); }
.trust-bar__logos .sep { color: var(--text-dimmer); }
.trust-bar__certs { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--text-dim);
  font-family: 'DM Mono', monospace;
}

/* ─── SERVICES ─── */
.services { background: var(--bg-2); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-glow) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--border-teal); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-card__num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 0.7rem; color: var(--text-dimmer); letter-spacing: 0.05em;
}
.service-card__icon { margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p { font-size: 0.875rem; line-height: 1.65; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.service-card__tags li {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  padding: 0.25rem 0.6rem;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 4px;
  color: var(--teal);
}
.service-card--cta {
  background: linear-gradient(135deg, rgba(20,184,166,0.1) 0%, rgba(20,184,166,0.03) 100%);
  border-color: var(--border-teal);
  display: flex; align-items: center; justify-content: center;
}
.service-card--cta:hover { transform: none; }
.service-card--cta .btn--primary { cursor: pointer; }
.service-card--cta .btn--primary:hover { background: #2dd4bf; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,184,166,0.4); }
.service-card__cta-inner { text-align: center; }
.service-card__cta-inner h3 { margin-bottom: 0.75rem; }
.service-card__cta-inner p { font-size: 0.875rem; margin-bottom: 1.25rem; }

/* ─── FAST PENTEST ─── */
.fastpentest {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}
.fastpentest__bg-accent {
  position: absolute;
  right: -200px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fastpentest__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.fp-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.3);
  color: var(--teal);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-family: 'DM Mono', monospace;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.fastpentest__content h2 { margin-bottom: 1rem; }
.fastpentest__content p { margin-bottom: 1rem; }
.fastpentest__content .lead { margin-bottom: 1.25rem; }

.fp-examples { margin: 1.5rem 0; }
.fp-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fp-tags span {
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
}

.fp-includes { margin: 1.5rem 0 2rem; }
.fp-includes h4 { color: var(--white); margin-bottom: 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.checklist li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-dim); }

.fp-flow { margin-bottom: 1.5rem; }
.fp-step { display: flex; gap: 1rem; position: relative; padding-bottom: 1.75rem; }
.fp-step:last-child { padding-bottom: 0; }
.fp-step__line {
  position: absolute; left: 1.1rem; top: 2rem;
  width: 1px; bottom: 0;
  background: linear-gradient(to bottom, var(--border-teal), transparent);
}
.fp-step__num {
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  color: var(--text-dimmer);
  flex-shrink: 0;
  transition: var(--transition);
}
.fp-step.active .fp-step__num {
  border-color: var(--teal);
  background: rgba(20,184,166,0.1);
  color: var(--teal);
}
.fp-step__content h5 { color: var(--white); margin-bottom: 0.25rem; font-size: 0.9rem; }
.fp-step__content p { font-size: 0.82rem; line-height: 1.6; }

.fp-scope-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.scope-check { display: flex; flex-direction: column; gap: 0.6rem; }
.scope-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-dim); }
.scope-row--warn { color: #f59e0b; }

/* ─── SECTORS ─── */
.sectors { background: var(--bg-2); }
.sectors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sector-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.sector-card:hover { border-color: var(--border-teal); transform: translateY(-3px); }
.sector-card__top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.sector-card h3 { font-size: 1rem; }
.sector-card p { font-size: 0.82rem; line-height: 1.65; margin-bottom: 1rem; }
.sector-card__compliance { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.sector-card__compliance li {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  background: rgba(20,184,166,0.06);
  border: 1px solid rgba(20,184,166,0.15);
  border-radius: 4px;
  color: var(--teal);
}

/* ─── PLATFORM ─── */
.platform { background: var(--bg); }
.platform__features { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.platform__feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.pf-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: none;
  transition: var(--transition);
}
.pf-item:hover, .pf-item.active {
  background: var(--surface);
  border-color: var(--border-teal);
}
.pf-item__icon {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dimmer);
  flex-shrink: 0;
  transition: var(--transition);
}
.pf-item.active .pf-item__icon, .pf-item:hover .pf-item__icon { color: var(--teal); }
.pf-item h4 { font-size: 0.875rem; color: var(--white); margin-bottom: 0.2rem; }
.pf-item p { font-size: 0.8rem; }

/* ─── MOCKUP ─── */
.platform__mockup { position: sticky; top: 6rem; }
.mockup-window {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.mockup-url { font-size: 0.65rem; color: var(--text-dimmer); margin-left: 0.5rem; }
.mockup-content { padding: 1.25rem; min-height: 360px; }
.mockup-tab { display: none; }
.mockup-tab.active { display: block; animation: fade-in 0.3s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

.m-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.m-header h5 { color: var(--white); font-size: 0.9rem; }
.m-badge { font-family: 'DM Mono', monospace; font-size: 0.65rem; padding: 0.2rem 0.6rem; border-radius: 100px; }
.m-badge--active { background: rgba(20,184,166,0.15); color: var(--teal); }

.m-progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 0.4rem; color: var(--text-dim); }
.m-progress-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 1rem; }
.m-progress-fill { height: 100%; background: linear-gradient(to right, var(--teal-dim), var(--teal)); border-radius: 2px; transition: width 1s ease; }
.m-phases { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.m-phase { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.m-phase span { color: var(--text-dim); }
.m-phase.done span { color: var(--teal); }
.m-phase.active span { color: var(--white); }
.m-phase-spinner { width: 12px; height: 12px; border: 1.5px solid rgba(20,184,166,0.3); border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.m-recent p { margin: 0; }
.m-activity { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0; font-size: 0.75rem; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,0.03); }
.m-activity:last-child { border: none; }
.m-activity-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.m-activity-dot--high { background: var(--crit); }
.m-activity-dot--med { background: var(--med); }
.m-activity-dot--low { background: var(--low); }
.m-activity span:last-child { margin-left: auto; }

.m-findings { display: flex; flex-direction: column; gap: 0.3rem; }
.m-finding { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 0.78rem; border-left: 2px solid transparent; }
.m-find-sev { font-family: 'DM Mono', monospace; font-size: 0.6rem; font-weight: 500; min-width: 64px; }
.m-finding--crit { background: rgba(239,68,68,0.08); border-left-color: var(--crit); }
.m-finding--crit .m-find-sev { color: var(--crit); }
.m-finding--high { background: rgba(249,115,22,0.08); border-left-color: var(--high); }
.m-finding--high .m-find-sev { color: var(--high); }
.m-finding--med { background: rgba(245,158,11,0.08); border-left-color: var(--med); }
.m-finding--med .m-find-sev { color: var(--med); }
.m-finding--low { background: rgba(34,197,94,0.08); border-left-color: var(--low); }
.m-finding--low .m-find-sev { color: var(--low); }
.m-finding--info { background: rgba(59,130,246,0.08); border-left-color: var(--info); }
.m-finding--info .m-find-sev { color: var(--info); }

.m-asvs { display: flex; flex-direction: column; gap: 0.25rem; }
.m-asvs-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.4rem 0.75rem; border-radius: 6px; font-size: 0.78rem; }
.m-asvs-num { font-family: 'DM Mono', monospace; font-size: 0.65rem; min-width: 24px; color: var(--text-dimmer); }
.m-asvs-row span:nth-child(2) { flex: 1; color: var(--text-dim); }
.m-asvs-status { font-family: 'DM Mono', monospace; font-size: 0.65rem; min-width: 50px; text-align: right; }
.m-asvs-row.pass { background: rgba(34,197,94,0.05); }
.pass-label { color: var(--low); }
.m-asvs-row.fail { background: rgba(239,68,68,0.07); }
.fail-label { color: var(--crit); }
.m-asvs-row.warn { background: rgba(245,158,11,0.07); }
.warn-label { color: var(--med); }

.m-projects { display: flex; flex-direction: column; gap: 0.5rem; }
.m-project { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border); }
.m-project.active-proj { border-color: var(--border-teal); }
.m-proj-info { display: flex; flex-direction: column; gap: 0.15rem; }
.m-proj-info strong { font-size: 0.82rem; color: var(--white); }
.m-proj-prog { min-width: 80px; }
.m-proj-badge { font-family: 'DM Mono', monospace; font-size: 0.65rem; padding: 0.2rem 0.5rem; background: rgba(245,158,11,0.12); color: var(--med); border-radius: 4px; }
.m-proj-badge--done { background: rgba(34,197,94,0.1); color: var(--low); }

.m-chat { display: flex; flex-direction: column; gap: 0.75rem; }
.m-msg { display: flex; gap: 0.6rem; }
.m-msg-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #080c0f; flex-shrink: 0; }
.m-msg-body { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 0.5rem 0.75rem; max-width: 85%; }
.m-msg-body strong { font-size: 0.65rem; color: var(--teal); display: block; margin-bottom: 0.2rem; }
.m-msg-body p { font-size: 0.75rem; line-height: 1.5; }
.m-msg--client { flex-direction: row-reverse; }
.m-msg--client .m-msg-body { background: rgba(20,184,166,0.1); border: 1px solid rgba(20,184,166,0.2); }

/* ─── WHY ─── */
.why { background: var(--bg-2); }
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why__content h2 { margin-bottom: 1.25rem; }
.why__content p { margin-bottom: 1rem; }
.why__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.pillar { padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.pillar h5 { color: var(--white); margin: 0.25rem 0 0.4rem; font-size: 0.875rem; }
.pillar p { font-size: 0.8rem; }
.why__certs { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.cert-block { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.cert-block:hover { border-color: var(--border-teal); }
.cert-block__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(20,184,166,0.07); border-radius: var(--radius-sm); }
.cert-block strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.cert-block p { font-size: 0.8rem; }

/* ─── CTA SECTION ─── */
.cta-section { padding: 5rem 0; }
.cta-block {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5rem;
  overflow: hidden;
  text-align: center;
}
.cta-block__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(20,184,166,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block__content { position: relative; z-index: 1; }
.cta-block h2 { margin-bottom: 1rem; }
.cta-block p { max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-block__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 3rem; }
.footer__brand p { font-size: 0.85rem; margin: 1rem 0; max-width: 260px; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-dim);
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--teal); color: var(--teal); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col h6 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { font-size: 0.85rem; color: var(--text-dim); transition: var(--transition); }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom span { font-size: 0.75rem; color: var(--text-dimmer); }

/* ─── SCROLL ANIMATIONS ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .fastpentest__inner { grid-template-columns: 1fr; gap: 3rem; }
  .platform__features { grid-template-columns: 1fr; }
  .platform__mockup { position: relative; top: auto; }
  .why__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }
  .services__grid { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: 1fr; }
  .cta-block { padding: 3rem 2rem; }
  .why__pillars { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat__divider { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
