/* ===========================================================
   Cyberbhoomi — Design System v3
   Restrained, modern-professional cybersecurity aesthetic.
   Near-black navy + warm paper, single confident signal-blue
   accent instead of competing gradient hues. Editorial,
   asymmetric layouts instead of uniform centered grids.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette */
  --ink: #0a0e1a;
  --navy-950: #05070d;
  --navy-900: #0a0f1c;
  --navy-800: #101627;
  --navy-700: #171f38;
  --navy-600: #202a4a;
  --slate-500: #6b7280;
  --slate-400: #97a1b5;
  --slate-300: #cdd3e0;
  --paper: #faf9f6;
  --paper-dim: #f1efe9;
  --line: #e7e3da;
  --line-dark: rgba(255, 255, 255, 0.08);

  --accent: #3654ff;
  --accent-bright: #6b8aff;
  --accent-dim: #2540cc;
  --accent-2: #8a93a6;

  --tech-tint: rgba(54, 84, 255, 0.10);

  --shadow-sm: 0 2px 10px rgba(10, 14, 26, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 14, 26, 0.10);
  --shadow-lg: 0 30px 90px rgba(10, 14, 26, 0.18);
  --shadow-accent: 0 14px 34px rgba(54, 84, 255, 0.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1220px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 28px; }

.accent-text {
  color: var(--accent);
}
.dark-section .accent-text, .hero .accent-text { color: var(--accent-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { box-shadow: 0 18px 46px rgba(54, 84, 255, 0.42); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dim); }

.btn-on-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.brand img { height: 32px; width: auto; filter: brightness(0) invert(1); transition: filter 0.35s ease; }
.site-nav.scrolled .brand img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255, 255, 255, 0.12); }
.site-nav.scrolled .nav-links a { color: var(--slate-500); }
.site-nav.scrolled .nav-links a:hover, .site-nav.scrolled .nav-links a.active { color: var(--ink); background: var(--paper-dim); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-nav.scrolled .nav-toggle { border-color: var(--line); background: #fff; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}
.site-nav.scrolled .nav-toggle span, .site-nav.scrolled .nav-toggle span::before, .site-nav.scrolled .nav-toggle span::after { background: var(--ink); }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Section basics ---------- */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 76px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dim);
}
.eyebrow.on-dark { color: var(--accent-bright); }
.eyebrow.tech { color: var(--accent); }
.eyebrow.tech.on-dark { color: var(--accent-bright); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; flex-shrink: 0; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.35rem; }
p { line-height: 1.7; color: var(--slate-500); margin: 0; }

.section-head { max-width: 640px; }
.section-head.centered { max-width: 700px; margin: 0 auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 4px; }
.section-head p { margin-top: 18px; font-size: 1.06rem; }

.dark-section {
  background: var(--navy-900);
  color: #fff;
}
.dark-section p { color: var(--slate-300); }
.dark-section h2, .dark-section h3, .dark-section h4 { color: #fff; }

/* ---------- Angled section dividers ---------- */
.angle-top { clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%); margin-top: -3.4vw; padding-top: calc(120px + 3.4vw); }
.angle-bottom-cut { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5vw), 0 100%); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

/* ---------- Reveal-on-scroll: 3D fold-up ---------- */
.reveal-fold {
  opacity: 0;
  transform: perspective(1200px) rotateX(-58deg);
  transform-origin: 50% 100%;
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}
.reveal-fold.in { opacity: 1; transform: perspective(1200px) rotateX(0deg); }

@media (prefers-reduced-motion: reduce) {
  .reveal-fold { transition: none; transform: none; opacity: 1; }
}

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(54, 84, 255, 0.3); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tech-tint);
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.card-icon svg { width: 26px; height: 26px; }
.featured .card-icon { background: rgba(255, 255, 255, 0.08); color: var(--accent-bright); }

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  backdrop-filter: blur(20px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background 0.35s ease;
}
.glass-card:hover { transform: translateY(-6px); border-color: rgba(107, 138, 255, 0.4); background: rgba(255, 255, 255, 0.08); }

/* ---------- Hero: asymmetric split ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 760px);
  display: flex;
  align-items: center;
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.75; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 15% 10%, rgba(54, 84, 255, 0.14), transparent 60%),
              radial-gradient(ellipse 55% 45% at 100% 100%, rgba(54, 84, 255, 0.20), transparent 60%),
              linear-gradient(180deg, transparent 0%, var(--navy-950) 97%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 26px 0 32px; }
.hero-content h1,
.hero-content h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  color: #fff;
}
.hero-content .lede {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--slate-300);
  max-width: 560px;
  line-height: 1.6;
}
.hero-actions { margin-top: 24px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-400); }
.hero-trust .trust-logos { display: flex; align-items: center; gap: 26px; }
.hero-trust .trust-logos b { color: var(--slate-300); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em; }
.hero-note { margin-top: 26px; font-size: 0.85rem; color: var(--slate-400); display: flex; align-items: center; gap: 10px; }
.hero-note svg { width: 16px; height: 16px; color: var(--accent-bright); flex-shrink: 0; }

/* ---------- Hero slider ---------- */
.hero-slides { position: relative; display: grid; }
.hero-slide {
  grid-row: 1; grid-column: 1;
  position: relative;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.8s ease, visibility 0s linear 0s; }
.hero-slide-text { max-width: 620px; position: relative; z-index: 2; }

.hero-dots { display: flex; gap: 10px; margin-top: 30px; }
.hero-dot {
  width: 30px; height: 5px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.4); }
.hero-dot.active { background: var(--accent); width: 48px; }

/* ---------- Slide visuals (crisp, purposeful, monochrome-accent) ---------- */
.slide-visual {
  position: absolute;
  top: 50%; right: -2%;
  width: min(30vw, 380px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1180px) { .slide-visual { right: -6%; } }
@media (max-width: 980px) { .slide-visual { display: none; } }

/* ---------- Hero sculpture: resilience field visual (slide 1) ---------- */
.hero-sculpture {
  position: absolute;
  top: 50%; right: -2%;
  width: 720px; height: 520px;
  transform: translateY(-50%) scale(0.81);
  transform-origin: right center;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1180px) { .hero-sculpture { transform: translateY(-50%) scale(0.66); right: -6%; } }
@media (max-width: 980px) { .hero-sculpture { display: none; } }

.sculpture-space { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(122,147,222,.4) 0 1px, transparent 1.5px); background-size: 71px 77px; opacity: .2; mask: linear-gradient(#000, transparent 94%); -webkit-mask: linear-gradient(#000, transparent 94%); }

.resilience-sculpture { position: absolute; left: 64%; top: 50%; width: 390px; height: 390px; translate: -50% -48%; scale: 1.25; z-index: 3; }
.field-halo { position: absolute; inset: 22px; border-radius: 50%; background: radial-gradient(circle, rgba(107,138,255,.32), rgba(70,88,208,.12) 42%, transparent 70%); filter: blur(8px); animation: sculpture-breathe 5s ease-in-out infinite; }
.field-loop { position: absolute; left: 50%; top: 50%; translate: -50% -50%; border-radius: 50%; background: conic-gradient(from 30deg, transparent 0 10%, #7ab8ff 22%, #8aa4ff 42%, transparent 55% 69%, #7fe8bf 82%, transparent 94%); -webkit-mask: radial-gradient(ellipse, transparent 0 69%, #000 70% 73%, transparent 74%); mask: radial-gradient(ellipse, transparent 0 69%, #000 70% 73%, transparent 74%); filter: drop-shadow(0 0 14px rgba(54,84,255,.55)); }
.loop-a { width: 340px; height: 205px; rotate: -22deg; animation: loop-turn-a 18s linear infinite; }
.loop-b { width: 300px; height: 245px; rotate: 53deg; opacity: .8; animation: loop-turn-b 23s linear infinite; }
.loop-c { width: 265px; height: 315px; rotate: -58deg; opacity: .64; animation: loop-turn-c 29s linear infinite; }
.field-surface { position: absolute; left: 50%; top: 50%; translate: -50% -50%; border: 1px solid rgba(107,138,255,.2); border-radius: 48% 52% 45% 55%; background: linear-gradient(145deg, rgba(54,84,255,.12), rgba(41,98,111,.08)); backdrop-filter: blur(2px); }
.surface-a { width: 220px; height: 250px; rotate: 22deg; animation: surface-shift 7s ease-in-out infinite; }
.surface-b { width: 250px; height: 190px; rotate: -37deg; animation: surface-shift 8.5s ease-in-out infinite reverse; }
.protected-core { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 112px; height: 112px; translate: -50% -50%; border: 1px solid rgba(112,227,168,.5); border-radius: 34px; background: linear-gradient(145deg, rgba(38,102,79,.9), rgba(15,29,45,.96)); box-shadow: 0 0 75px rgba(74,208,144,.3), inset 0 1px 0 rgba(255,255,255,.08); }
.protected-core > span { width: 22px; height: 25px; border: 1px solid #72dfa5; border-radius: 8px 8px 12px 12px; box-shadow: 0 0 15px rgba(100,225,164,.28); }
.protected-core > span::after { content: "\2713"; display: grid; place-items: center; width: 100%; height: 100%; color: #75e1a7; font-size: .58rem; }
.protected-core b { font-size: .7rem; color: #fff; }
.protected-core small { color: #90aa9f; font-size: .45rem; }
.deflection-point { position: absolute; width: 10px; height: 10px; border: 2px solid #8ff0c0; border-radius: 50%; background: #0d3329; box-shadow: 0 0 26px rgba(100,228,166,.9); animation: deflection-burst 3.4s ease-out infinite; z-index: 5; }
.dp-one { left: 35px; top: 92px; }
.dp-two { left: 18px; bottom: 96px; animation-delay: -1.1s; }
.dp-three { right: 38px; top: 74px; animation-delay: -2.2s; }


@keyframes sculpture-breathe { 50% { scale: 1.1; opacity: .72; } }
@keyframes deflection-burst { 0%, 30% { scale: .3; opacity: 0; } 50% { scale: 1; opacity: 1; } 80%, 100% { scale: 2.6; opacity: 0; } }
@keyframes loop-turn-a { to { rotate: 338deg; } }
@keyframes loop-turn-b { to { rotate: -307deg; } }
@keyframes loop-turn-c { to { rotate: 302deg; } }
@keyframes surface-shift { 50% { scale: 1.06; filter: brightness(1.2); } }

.threat-energy { position: absolute; left: 29px; top: 55px; z-index: 2; width: 386px; height: 340px; }
.threat-energy > span { position: absolute; left: 0; top: 0; color: #a6808a; font-size: .47rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.threat-energy svg { position: absolute; left: 0; top: 24px; width: 100%; height: 286px; overflow: visible; }
.energy-trace, .energy-ghost { fill: none; stroke-linecap: round; filter: url(#threatGlow); }
.energy-trace { stroke: url(#threatGradientA); stroke-width: 2; stroke-dasharray: 8 9; animation: energy-stream 5.8s linear infinite; }
.trace-b { stroke: url(#threatGradientB); stroke-width: 1.6; stroke-dasharray: 4 11; animation-duration: 7.2s; animation-direction: reverse; }
.trace-c { stroke: url(#threatGradientA); stroke-width: 1.8; stroke-dasharray: 12 10; animation-duration: 6.7s; }
.energy-ghost { stroke: url(#threatGradientB); stroke-width: .7; stroke-dasharray: 2 8; opacity: .45; animation: energy-stream 9s linear infinite; }
.ghost-b { animation-direction: reverse; animation-duration: 10.5s; }
.energy-packet { fill: #ed8b69; filter: url(#threatGlow); animation: packet-charge 2.7s ease-in-out infinite; }
.packet-b { fill: #c76979; animation-delay: -.9s; }
.packet-c { fill: #df806e; animation-delay: -1.8s; }
@keyframes energy-stream { to { stroke-dashoffset: -110; } }
@keyframes packet-charge { 50% { r: 7px; opacity: .35; } }

.threat-spectrum { position: absolute; left: 1px; top: 70px; display: flex; align-items: center; gap: 4px; width: 52px; height: 145px; opacity: .65; }
.threat-spectrum i { width: 2px; height: var(--wave, 34%); border-radius: 3px; background: linear-gradient(#a84d5d, #e3886a); animation: spectrum-jitter 1.8s ease-in-out infinite; }
.threat-spectrum i:nth-child(2) { --wave: 72%; animation-delay: -.2s; }
.threat-spectrum i:nth-child(3) { --wave: 45%; animation-delay: -.4s; }
.threat-spectrum i:nth-child(4) { --wave: 90%; animation-delay: -.6s; }
.threat-spectrum i:nth-child(5) { --wave: 57%; animation-delay: -.8s; }
.threat-spectrum i:nth-child(6) { --wave: 80%; animation-delay: -1s; }
.threat-spectrum i:nth-child(7) { --wave: 39%; animation-delay: -1.2s; }
.threat-spectrum i:nth-child(8) { --wave: 66%; animation-delay: -1.4s; }
.threat-spectrum i:nth-child(9) { --wave: 28%; animation-delay: -1.6s; }
@keyframes spectrum-jitter { 50% { scale: 1 1.35; filter: brightness(1.4); } }

@media (prefers-reduced-motion: reduce) {
  .field-halo, .field-loop, .field-surface, .deflection-point, .energy-trace, .energy-ghost, .energy-packet, .threat-spectrum i { animation: none; }
}

/* ---------- Hero hub: unified-defense diagram (slide 2) ---------- */
.hero-hub {
  position: absolute; top: 50%; right: -2%;
  width: 600px; height: 480px;
  transform: translateY(-50%) scale(0.97);
  transform-origin: right center;
  z-index: 1; pointer-events: none;
}
@media (max-width: 1180px) { .hero-hub { transform: translateY(-50%) scale(0.78); right: -6%; } }
@media (max-width: 980px) { .hero-hub { display: none; } }

.hub-space { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(122,147,222,.35) 0 1px, transparent 1.5px); background-size: 68px 74px; opacity: .18; mask: radial-gradient(circle at 50% 50%, #000, transparent 75%); -webkit-mask: radial-gradient(circle at 50% 50%, #000, transparent 75%); }
.hub-diagram { position: absolute; inset: 0; scale: 1.15; }

.hub-rings { position: absolute; inset: 0; overflow: visible; }
.hub-ring { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 1; }
.hub-ring-b { stroke-dasharray: 2 7; }
.hub-ring-spin { transform-origin: 300px 240px; animation: hub-ring-spin 70s linear infinite; }
@keyframes hub-ring-spin { to { transform: rotate(360deg); } }

.hub-links { position: absolute; inset: 0; overflow: visible; }
.hub-link { fill: none; stroke: rgba(107,138,255,.6); stroke-width: 1.6; stroke-dasharray: 5 9; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(107,138,255,.65)); animation: hub-flow 2.6s linear infinite; }
@keyframes hub-flow { to { stroke-dashoffset: -56; } }

.hub-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(54,84,255,.16);
  border: 1px solid rgba(107,138,255,.55);
  box-shadow: 0 0 85px rgba(54,84,255,.48), inset 0 1px 0 rgba(255,255,255,.08);
  animation: hub-pulse 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes hub-pulse { 50% { box-shadow: 0 0 120px rgba(54,84,255,.65), inset 0 1px 0 rgba(255,255,255,.08); scale: 1.035; } }
.hub-core-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-bright); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; margin-bottom: 7px; box-shadow: 0 0 28px rgba(107,138,255,.9); }
.hub-core b { color: #fff; font-size: .64rem; letter-spacing: .01em; }
.hub-core small { color: #8a93a6; font-size: .42rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

.hub-node { position: absolute; display: flex; align-items: center; gap: 8px; transform: translate(-50%, -50%); white-space: nowrap; z-index: 2; }
.hub-node.side-left { flex-direction: row-reverse; }
.hub-node i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 15px rgba(107,138,255,1); flex-shrink: 0; animation: hub-node-pulse 3s ease-in-out infinite; }
.hub-node span { font-size: .5rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #c7cbe0; }
@keyframes hub-node-pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hub-link, .hub-ring-spin, .hub-core, .hub-node i { animation: none; }
}

/* ---------- Hero gate: Deceptiment verification flow (slide 3) ---------- */
.hero-gate {
  position: absolute; top: 50%; right: -2%;
  width: 600px; height: 400px;
  transform: translateY(-50%) scale(0.97);
  transform-origin: right center;
  z-index: 1; pointer-events: none;
}
@media (max-width: 1180px) { .hero-gate { transform: translateY(-50%) scale(0.78); right: -6%; } }
@media (max-width: 980px) { .hero-gate { display: none; } }

.gate-space { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(122,147,222,.35) 0 1px, transparent 1.5px); background-size: 68px 74px; opacity: .16; mask: linear-gradient(#000, transparent 92%); -webkit-mask: linear-gradient(#000, transparent 92%); }
.gate-label { position: absolute; left: 0; top: 0; color: #a6808a; font-size: .47rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }

.gate-links { position: absolute; inset: 0; overflow: visible; }
.gate-link { fill: none; stroke: rgba(230,138,110,.75); stroke-width: 1.8; stroke-dasharray: 6 9; stroke-linecap: round; filter: drop-shadow(0 0 7px rgba(230,138,110,.6)); animation: gate-flow 2.4s linear infinite; }
.gate-link-outcome { stroke: rgba(112,220,160,.8); filter: drop-shadow(0 0 7px rgba(112,220,160,.6)); animation: gate-flow 1.8s linear infinite; }
@keyframes gate-flow { to { stroke-dashoffset: -60; } }

.gate-channel { position: absolute; display: flex; align-items: center; gap: 9px; width: 155px; }
.gate-channel i { width: 28px; height: 28px; border-radius: 9px; background: rgba(230,138,110,.08); border: 1px solid rgba(230,138,110,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gate-channel i svg { width: 14px; height: 14px; color: #e68a6e; }
.gate-channel span { font-size: .46rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: #c7cbe0; }

.gate-scanner {
  position: absolute; left: 50%; top: 8%; bottom: 8%; width: 64px; transform: translateX(-50%);
  border-radius: 20px; border: 1px solid rgba(107,138,255,.25); background: rgba(10,16,32,.45);
  overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 3px; padding: 0 8px;
  z-index: 2;
}
.gate-bars { display: flex; align-items: center; gap: 3px; height: 60%; }
.gate-bars i { width: 3px; border-radius: 2px; background: var(--accent-bright); height: var(--h, 30%); box-shadow: 0 0 10px rgba(107,138,255,.85); animation: gate-bar 1.5s ease-in-out infinite; }
.gate-bars i:nth-child(1) { --h: 35%; animation-delay: 0s; }
.gate-bars i:nth-child(2) { --h: 70%; animation-delay: -.15s; }
.gate-bars i:nth-child(3) { --h: 48%; animation-delay: -.3s; }
.gate-bars i:nth-child(4) { --h: 90%; animation-delay: -.45s; }
.gate-bars i:nth-child(5) { --h: 55%; animation-delay: -.6s; }
.gate-bars i:nth-child(6) { --h: 78%; animation-delay: -.75s; }
.gate-bars i:nth-child(7) { --h: 40%; animation-delay: -.9s; }
@keyframes gate-bar { 50% { scale: 1 1.25; filter: brightness(1.3); } }
.gate-sweep { position: absolute; left: 4px; right: 4px; height: 2px; background: #8ff0c0; box-shadow: 0 0 20px 3px rgba(112,220,160,.9); animation: gate-sweep-move 3s ease-in-out infinite; }
@keyframes gate-sweep-move { 0%, 100% { top: 6%; } 50% { top: 94%; } }

.gate-outcome { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; width: 140px; text-align: center; }
.gate-outcome .dot { position: relative; width: 22px; height: 22px; border-radius: 50%; background: #0d3329; border: 2px solid #8ff0c0; box-shadow: 0 0 26px rgba(100,228,166,.85); }
.gate-outcome .dot::after { content: "\2713"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #75e1a7; font-size: .6rem; }
.gate-outcome b { color: #fff; font-size: .68rem; }
.gate-outcome small { color: #8a93a6; font-size: .42rem; text-transform: uppercase; letter-spacing: .08em; }

@media (prefers-reduced-motion: reduce) {
  .gate-link, .gate-link-outcome, .gate-bars i, .gate-sweep { animation: none; }
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}

/* ---------- Stat hero (single bold editorial statement) ---------- */
.stat-hero { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.stat-hero .big-num {
  font-size: clamp(5rem, 12vw, 9.5rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--accent);
  white-space: nowrap;
}
.stat-hero .big-num sub { font-size: 0.22em; font-weight: 800; vertical-align: baseline; margin-left: 4px; color: var(--ink); }
.stat-hero .big-num-label { margin-top: 10px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); }

/* ---------- Service list (editorial numbered rows) ---------- */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.6fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
  position: relative;
}
.service-row:hover { background: var(--paper-dim); }
.service-row .idx { font-family: 'JetBrains Mono', monospace; font-size: 0.95rem; font-weight: 700; color: var(--slate-400); transition: color 0.3s ease; }
.service-row h3 { font-size: 1.25rem; }
.service-row p { font-size: 0.96rem; }
.service-row .arrow {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.service-row .arrow svg { width: 18px; height: 18px; }
.service-row:hover .arrow { background: var(--accent); border-color: transparent; color: #fff; transform: rotate(45deg); }
.service-row:hover .idx { color: var(--accent); }
@media (max-width: 720px) {
  .service-row { grid-template-columns: 44px 1fr; row-gap: 10px; }
  .service-row p { grid-column: 2 / 3; }
  .service-row .arrow { display: none; }
  .stat-hero { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Stat band (full-bleed) ---------- */
.stat-band { background: var(--navy-950); position: relative; overflow: hidden; }
.stat-band .stat-row { grid-template-columns: repeat(4, 1fr); }
.stat-row { display: grid; gap: 20px; }
.stat {
  text-align: left;
  padding: 8px 0;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  padding-left: 24px;
}
.stat .num {
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 900;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .lbl { margin-top: 10px; font-size: 0.9rem; color: var(--slate-400); font-weight: 600; }

/* ---------- Marquee (partner logos) ---------- */
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 72px; width: max-content; animation: marquee 26s linear infinite; align-items: center; }
.marquee-track img { height: 34px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.3s ease, filter 0.3s ease; }
.marquee-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Timeline / process ---------- */
.process-line {
  position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.dark-section .process-line { background: rgba(255,255,255,0.12); }

/* ---------- Product spotlight ---------- */
.spotlight {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  border: 1px solid var(--navy-700);
  overflow: hidden;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.spotlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(70, 100, 220, 0.22), transparent 60%),
              radial-gradient(ellipse 50% 50% at 0% 100%, rgba(54, 84, 255, 0.14), transparent 60%);
  pointer-events: none;
}
.spotlight-content { position: relative; z-index: 1; }
.spotlight-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.spotlight-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem; font-weight: 700; color: var(--slate-300);
  margin-bottom: 22px;
}
.spotlight-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
.spotlight h2 { color: #fff; }
.spotlight p { color: var(--slate-300); margin-top: 18px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--slate-400); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.9fr 1.2fr 1fr 1.15fr; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 16px; }
.footer-brand img { height: 26px; filter: brightness(0) invert(1); }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; color: var(--slate-400); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-services a { font-size: 0.86rem; }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; }
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.08); transition: background 0.2s ease, border-color 0.2s ease; }
.social-row a:hover { background: rgba(107,138,255,0.14); border-color: rgba(107,138,255,0.4); }
.social-row svg { width: 17px; height: 17px; }

.newsletter-form { display: flex; gap: 10px; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--slate-500); }
.newsletter-form button {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- Page hero (non-home pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + 90px) 0 80px; background: var(--navy-950); color: #fff; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.2rem); }

.article-wrap { max-width: 840px; margin: 0 auto; }
.article-meta { color: var(--slate-500); font-size: 0.9rem; margin-top: 16px; }
.article-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); margin: 34px 0; }
.blog-card-image { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; margin-bottom: 22px; transition: transform .35s cubic-bezier(.22,1,.36,1), filter .35s ease; }
.card:hover .blog-card-image { transform: scale(1.015); filter: saturate(1.05) contrast(1.02); }
.article-body { color: var(--slate-700); font-size: 1.05rem; line-height: 1.85; }
.article-body p, .article-body ul { margin: 0 0 22px; }
.article-body h2 { color: var(--navy-900); font-size: clamp(1.45rem, 3vw, 2rem); margin: 42px 0 16px; }
.article-body ul { padding-left: 24px; }
.article-body li { margin-bottom: 12px; }
.article-body blockquote { margin: 30px 0; padding: 22px 26px; border-left: 4px solid var(--accent); background: var(--paper-dim); border-radius: 0 var(--radius-md) var(--radius-md) 0; color: var(--navy-800); font-weight: 600; }
.article-back { display: inline-flex; margin-bottom: 24px; color: var(--accent); font-weight: 700; }
.footer-newsletter-link { display: inline-flex; margin-top: 10px; color: #fff; font-weight: 700; }
.page-hero p { color: var(--slate-300); margin-top: 16px; max-width: 600px; font-size: 1.05rem; }

/* ---------- Service detail pages ---------- */
.service-hero { padding-bottom: 92px; }
.service-hero .hero-actions { margin-top: 30px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--slate-400); font-size: 0.82rem; }
.breadcrumb a { color: var(--slate-300); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden="true"] { opacity: 0.55; }
.service-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr); gap: 72px; align-items: start; }
.service-intro-copy > p { margin-top: 18px; font-size: 1.06rem; line-height: 1.75; color: var(--slate-500); }
.service-summary { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.service-summary h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.07em; }
.check-list { margin-top: 20px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 26px; color: var(--slate-500); line-height: 1.55; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 10px; height: 10px; border: 2px solid var(--accent); border-radius: 50%; box-shadow: inset 0 0 0 2px #fff; background: var(--accent); }
.capability-grid { margin-top: 44px; }
.capability-card { min-height: 100%; }
.capability-card h3 { font-size: 1.15rem; }
.capability-card p { margin-top: 10px; }
.process-grid { counter-reset: service-step; margin-top: 42px; }
.process-step { counter-increment: service-step; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.16); }
.process-step::before { content: "0" counter(service-step); display: block; margin-bottom: 20px; color: var(--accent-bright); font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; font-weight: 700; }
.process-step h3 { color: #fff; font-size: 1.08rem; }
.process-step p { margin-top: 10px; color: var(--slate-300); font-size: 0.94rem; }
.related-services { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.related-services a { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--navy-800); font-size: 0.88rem; font-weight: 700; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.related-services a:hover { border-color: var(--accent); color: var(--accent-dim); transform: translateY(-2px); }
.service-card-link { display: block; height: 100%; text-decoration: none; color: inherit; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card-link:hover { transform: translateY(-4px); border-color: rgba(54,84,255,.32); box-shadow: var(--shadow-md); }
.service-card-link .learn-link { display: inline-block; margin-top: 18px; color: var(--accent-dim); font-size: .88rem; font-weight: 800; }

/* ---------- Misc components ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 7px 14px; border-radius: 999px; background: var(--paper-dim); border: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; color: var(--slate-500); }
.dark-section .pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: var(--slate-300); }

.divider-fade { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Pull quote ---------- */
.pull-quote { position: relative; padding-left: 32px; }
.pull-quote::before {
  content: "\201C";
  position: absolute; left: -6px; top: -18px;
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.5;
}
.pull-quote p { font-size: 1.3rem; font-weight: 600; color: var(--ink); line-height: 1.5; }
.dark-section .pull-quote p { color: #fff; }
.pull-quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 0.9rem; color: var(--slate-500); font-weight: 600; }
.dark-section .pull-quote cite { color: var(--slate-400); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    padding: 10px 20px 20px;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open a {
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 12px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a:hover, .nav-links.open a.active { color: #fff; background: rgba(255, 255, 255, 0.1); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spotlight { grid-template-columns: 1fr; padding: 40px 28px; }
  .service-intro { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 640px) {
  .section-pad { padding: 76px 0; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-band .stat-row { grid-template-columns: 1fr 1fr; }
  .nav-cta > .btn { display: none; }
  .brand { flex-shrink: 0; }
  .brand img { height: 31px; }
}

/* ---------- Legal content (Privacy / Cookie / Terms pages) ---------- */
.legal-content { font-size: 1rem; line-height: 1.75; color: var(--slate-500); }
.legal-content .updated { font-size: 0.88rem; color: var(--slate-400); margin-bottom: 36px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 16px; color: var(--ink); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 12px; color: var(--ink); }
.legal-content p { margin-top: 14px; }
.legal-content ul, .legal-content ol { list-style: disc; padding-left: 22px; margin-top: 14px; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-top: 8px; line-height: 1.7; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--ink); }
.legal-content .toc { background: var(--paper-dim); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 40px; }
.legal-content .toc h2 { margin-top: 0; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.legal-content .toc ol { columns: 2; gap: 24px; }
.legal-content .toc li { margin-top: 6px; break-inside: avoid; }
@media (max-width: 640px) { .legal-content .toc ol { columns: 1; } }

/* ---------- Radar scan (Proactive Defense visual) ---------- */
.radar-panel {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-field { position: relative; width: 82%; aspect-ratio: 1/1; }
.radar-rings { position: absolute; inset: 0; overflow: visible; }
.radar-ring { fill: none; stroke: rgba(54, 84, 255, 0.18); stroke-width: 0.5; }
.radar-ring.dashed { stroke-dasharray: 2 6; stroke: rgba(54, 84, 255, 0.24); }
.ring-orbit { transform-origin: 50px 50px; }
.ring-orbit-a { animation: ring-spin 15s linear infinite; }
.ring-orbit-b { animation: ring-spin 10s linear infinite reverse; }
.ring-orbit-c { animation: ring-spin 6.5s linear infinite; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.ring-light { fill: var(--accent-bright); filter: drop-shadow(0 0 3px rgba(54, 84, 255, 0.85)); }
.radar-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(54, 84, 255, 0.28), transparent 24%);
  animation: radar-spin 7s linear infinite;
}
@keyframes radar-spin { to { transform: rotate(360deg); } }
.radar-dot {
  position: absolute;
  width: 7px; height: 7px;
  margin: -3.5px;
  border-radius: 50%;
  background: #d9754f;
  box-shadow: 0 0 5px rgba(217, 117, 79, 0.45);
  animation: dot-detect 7s ease-in-out infinite;
}
@keyframes dot-detect {
  0% { background: #d9754f; box-shadow: 0 0 5px rgba(217, 117, 79, 0.45); scale: 1; }
  4% { background: var(--accent); box-shadow: 0 0 16px rgba(54, 84, 255, 0.8); scale: 1.9; }
  10% { background: var(--accent); box-shadow: 0 0 8px rgba(54, 84, 255, 0.55); scale: 1; }
  92% { background: var(--accent); box-shadow: 0 0 8px rgba(54, 84, 255, 0.5); scale: 1; }
  100% { background: #d9754f; box-shadow: 0 0 5px rgba(217, 117, 79, 0.45); scale: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .radar-dot, .ring-orbit-a, .ring-orbit-b, .ring-orbit-c { animation: none; }
}

/* ---------- Spotlight product mark (Deceptiment logo, no box) ---------- */
.spotlight-mark { position: relative; width: 210px; margin-left: auto; }
.spotlight-mark::before {
  content: "";
  position: absolute; inset: -34px;
  background: radial-gradient(circle, rgba(54, 84, 255, 0.28), transparent 68%);
  filter: blur(6px);
  z-index: 0;
}
.spotlight-mark-img {
  position: relative; z-index: 1;
  width: 100%; display: block;
  filter: drop-shadow(0 14px 40px rgba(54, 84, 255, 0.4)) drop-shadow(0 0 24px rgba(54, 84, 255, 0.25));
}
.spotlight-mark-scan {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 42%, rgba(107, 138, 255, 0.95) 50%, transparent 58%);
  background-size: 100% 300%;
  -webkit-mask-image: url('/assets/img/deceptiment-mark.png');
  mask-image: url('/assets/img/deceptiment-mark.png');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  mix-blend-mode: screen;
  animation: mark-scan 3.6s ease-in-out infinite;
}
@keyframes mark-scan { 0% { background-position: 0 -100%; } 100% { background-position: 0 200%; } }
.spotlight-mark-corner { position: absolute; width: 20px; height: 20px; border-color: var(--accent-bright); border-style: solid; border-width: 0; opacity: 0.85; z-index: 2; }
.spotlight-mark-corner.tl { top: -10px; left: -10px; border-top-width: 2px; border-left-width: 2px; border-radius: 6px 0 0 0; }
.spotlight-mark-corner.tr { top: -10px; right: -10px; border-top-width: 2px; border-right-width: 2px; border-radius: 0 6px 0 0; }
.spotlight-mark-corner.bl { bottom: -10px; left: -10px; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 6px; }
.spotlight-mark-corner.br { bottom: -10px; right: -10px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 6px 0; }

@media (prefers-reduced-motion: reduce) {
  .spotlight-mark-scan { animation: none; }
}
