:root {
  --bg: #020b18;
  --bg-deep: #010711;
  --bg-soft: #03101e;
  --surface: #07172a;
  --surface-2: #091b31;
  --surface-3: #0b2038;
  --surface-glass: rgba(7, 23, 42, 0.82);
  --text: #f4f7fc;
  --muted: #8496b2;
  --muted-strong: #a9b7cc;
  --border: rgba(79, 143, 210, 0.18);
  --border-strong: rgba(79, 163, 238, 0.34);
  --blue: #1473ff;
  --cyan: #00b9ff;
  --cyan-2: #00d4ff;
  --green: #08c982;
  --amber: #ffae24;
  --red: #ff404c;
  --purple: #9b5cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --header-height: 72px;
}

html[data-theme="light"] {
  --bg: #f7faff;
  --bg-deep: #eef5ff;
  --bg-soft: #f0f6ff;
  --surface: #ffffff;
  --surface-2: #f5f9ff;
  --surface-3: #eaf3ff;
  --surface-glass: rgba(255, 255, 255, 0.88);
  --text: #091a36;
  --muted: #5e7191;
  --muted-strong: #405574;
  --border: #dce7f5;
  --border-strong: #b8d4f4;
  --blue: #1264f4;
  --cyan: #00a9e8;
  --cyan-2: #007fd0;
  --green: #079f68;
  --amber: #d68100;
  --red: #e52937;
  --purple: #7c3ee6;
  --shadow: 0 24px 70px rgba(38, 77, 133, 0.14);
  --shadow-soft: 0 14px 40px rgba(38, 77, 133, 0.1);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 185, 255, 0.07), transparent 26%),
    radial-gradient(circle at 12% 30%, rgba(20, 115, 255, 0.08), transparent 24%);
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 200; padding: 10px 14px; background: var(--blue); color: #fff; border-radius: 4px; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(1360px, calc(100% - 96px)); margin: 0 auto; position: relative; }
.narrative-section { padding: 136px 0; position: relative; }
.quiet-section { padding: 120px 0; position: relative; background: var(--bg-soft); }
.hidden { display: none !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-intro { max-width: 780px; margin-bottom: 72px; }
.section-intro.centered { margin-inline: auto; text-align: center; }
.section-intro.wide-intro { max-width: 950px; }
.section-intro h2, .security-copy h2, .channel-copy h2 {
  margin: 14px 0 24px;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 650;
}
.section-intro p, .security-copy p, .channel-copy p {
  max-width: 700px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.65;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-1px); border-color: var(--cyan); }
.button-primary { border-color: transparent; color: #fff; background: linear-gradient(135deg, var(--blue), #0755dd); box-shadow: 0 12px 28px rgba(20, 115, 255, 0.22); }
.button-primary:hover { box-shadow: 0 14px 34px rgba(20, 115, 255, 0.32); }
.button-secondary { background: color-mix(in srgb, var(--surface) 84%, transparent); }
.button-small { min-height: 38px; padding: 0 14px; font-size: 13px; }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 6px; background: color-mix(in srgb, var(--surface) 76%, transparent); cursor: pointer; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.site-header.scrolled { background: color-mix(in srgb, var(--bg) 84%, transparent); border-color: var(--border); box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12); backdrop-filter: blur(18px); }
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; gap: 32px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; }
.brand img.logo-full { width: auto; height: 38px; object-fit: contain; }
.light-logo, .light-shot, .light-orb { display: none; }
html[data-theme="light"] .dark-logo, html[data-theme="light"] .dark-shot, html[data-theme="light"] .dark-orb { display: none; }
html[data-theme="light"] .light-logo, html[data-theme="light"] .light-shot, html[data-theme="light"] .light-orb { display: block; }
.brand-divider { width: 1px; height: 26px; background: var(--border-strong); }
.harm-word { color: var(--cyan); font-size: 15px; font-weight: 650; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; color: var(--muted-strong); font-size: 13px; font-weight: 650; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--cyan); transition: right 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-symbol { width: 22px; height: 22px; display: grid; place-items: center; color: #ffd75a; font-size: 22px; line-height: 1; }
.theme-symbol::before { content: "\2600"; }
html[data-theme="light"] .theme-symbol { color: #17345f; }
html[data-theme="light"] .theme-symbol::before { content: "\263e"; }
.menu-toggle { display: none; align-content: center; gap: 4px; }
.menu-toggle span { width: 18px; height: 2px; display: block; background: var(--text); transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 82px; background: linear-gradient(180deg, rgba(2, 11, 24, 0.02), var(--bg)); }
html[data-theme="light"] .hero { background: linear-gradient(180deg, rgba(240, 246, 255, 0.12), var(--bg)); }
.hero-grid-lines { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 96px 96px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: 48px; align-items: center; }
.hero-copy { min-width: 0; position: relative; z-index: 4; }
.hero-copy h1 { margin: 20px 0 28px; font-size: 82px; line-height: 0.99; font-weight: 650; text-transform: uppercase; }
.hero-copy h1 span { color: var(--cyan); }
.hero-copy > p:not(.hero-note) { max-width: 650px; color: var(--muted-strong); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.live-dot { width: 8px; height: 8px; flex: 0 0 auto; margin-top: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(8, 201, 130, 0.7); }
.hero-visual { min-height: 720px; position: relative; isolation: isolate; display: grid; place-items: center; overflow: visible; perspective: 1600px; }
.orbit { position: absolute; z-index: 0; border: 1px solid rgba(0, 185, 255, 0.13); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 610px; height: 610px; }
.orbit-two { width: 770px; height: 430px; transform: rotate(-18deg); }
.orbit-three { width: 520px; height: 820px; transform: rotate(66deg); opacity: 0.58; }
.hero-sphere { width: 560px; height: 560px; position: absolute; right: -1%; top: 0; z-index: 1; display: grid; place-items: center; pointer-events: none; }
.sphere-mask { width: 66%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border-radius: 50%; filter: drop-shadow(0 0 20px rgba(0, 185, 255, 0.35)); }
.sphere-mask img { width: 100%; height: 100%; object-fit: contain; transform-origin: center; }
.hero-sphere .sphere-mask { width: 100%; height: 100%; position: relative; z-index: 2; overflow: visible; border-radius: 50%; filter: drop-shadow(0 0 28px rgba(0, 185, 255, 0.42)); }
.hero-sphere .sphere-mask img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.event-ring { position: absolute; z-index: 1; inset: 12%; border: 1px solid rgba(0, 212, 255, 0.48); border-radius: 50%; transform: rotateX(68deg) rotateZ(14deg); box-shadow: 0 0 22px rgba(0, 185, 255, 0.15); }
.event-ring::after { content: ""; position: absolute; inset: -9%; border: 1px solid rgba(20, 115, 255, 0.22); border-radius: 50%; }
.event-ring.ring-two { inset: 5%; transform: rotateX(70deg) rotateZ(-20deg); opacity: 0.56; }
.particle { position: absolute; z-index: 3; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.particle-one { left: 4%; top: 48%; }
.particle-two { right: 8%; top: 36%; }
.particle-three { right: 25%; bottom: 7%; }
.hero-dashboard { width: 88%; position: absolute; left: 0; bottom: 150px; z-index: 4; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); transform: perspective(1500px) rotateY(-8deg) rotateX(4deg); transform-origin: 50% 100%; transition: transform 0.2s ease-out; }
.hero-dashboard img { width: 100%; }
.hero-signal { min-width: 150px; position: absolute; z-index: 5; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--surface-glass); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.hero-signal span { display: block; color: var(--muted); font-size: 11px; }
.hero-signal strong { display: block; margin-top: 3px; font-size: 26px; line-height: 1.1; }
.signal-score { left: 0; top: 18%; }
.signal-risk { right: 0; bottom: 14%; }
.scroll-cue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.scroll-cue span { width: 28px; height: 1px; background: var(--cyan); }

/* Attack paths */
.attack-paths { background: var(--bg); }
.attack-scroll { height: calc(100svh - 132px); min-height: 620px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr); gap: 80px; align-items: start; overflow-y: auto; overscroll-behavior: contain; scrollbar-color: rgba(0, 185, 255, 0.45) transparent; scrollbar-width: thin; }
.attack-scroll::-webkit-scrollbar, .story-layout::-webkit-scrollbar { width: 8px; }
.attack-scroll::-webkit-scrollbar-thumb, .story-layout::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 8px; background: rgba(0, 185, 255, 0.42); background-clip: padding-box; }
.attack-visual { height: 720px; position: sticky; top: 0; display: grid; place-items: center; }
.attack-orbit { position: absolute; border: 1px solid var(--border); border-radius: 50%; }
.attack-orbit-a { width: 620px; height: 620px; }
.attack-orbit-b { width: 760px; height: 440px; transform: rotate(18deg); opacity: 0.62; }
.employee-node { width: 190px; height: 190px; position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--border-strong); border-radius: 50%; background: radial-gradient(circle at 50% 34%, var(--surface-3), var(--surface)); box-shadow: 0 0 0 26px rgba(20, 115, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.3); text-align: center; }
.employee-avatar { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 10px; border-radius: 50%; background: rgba(20, 115, 255, 0.18); color: var(--cyan); font-weight: 800; }
.employee-node strong { font-size: 16px; }
.employee-node small { color: var(--muted); }
.channel-node { width: 104px; min-height: 54px; position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); color: var(--muted-strong); cursor: pointer; font-size: 12px; font-weight: 700; transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.channel-node span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--cyan); font-size: 9px; }
.channel-node.active { z-index: 6; border-color: var(--cyan); color: var(--text); transform: scale(1.06); box-shadow: 0 0 0 3px rgba(0, 185, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.24); }
.node-email { left: 8%; top: 15%; }.node-whatsapp { right: 9%; top: 13%; }.node-sms { left: 0; top: 44%; }.node-qr { right: 0; top: 42%; }.node-voice { left: 13%; bottom: 14%; }.node-deepfake { right: 13%; bottom: 13%; }.node-clickfix { left: 36%; top: 1%; }.node-usb { left: 43%; bottom: 0; }
.attack-line { width: 1px; height: 215px; position: absolute; z-index: 1; top: 50%; left: 50%; transform-origin: top center; background: linear-gradient(180deg, var(--cyan), transparent); opacity: 0.06; transition: opacity 0.3s ease; }
.attack-line.active { opacity: 0.74; }
.line-email { transform: rotate(135deg); }.line-whatsapp { transform: rotate(-135deg); }.line-sms { transform: rotate(98deg); }.line-qr { transform: rotate(-98deg); }.line-voice { transform: rotate(45deg); }.line-deepfake { transform: rotate(-45deg); }.line-clickfix { transform: rotate(180deg); }.line-usb { transform: rotate(0deg); }
.attack-steps { padding: 40px 0 96px; }
.attack-step { min-height: 46vh; margin-bottom: 40px; padding: 38px; border-left: 1px solid var(--border); color: var(--muted); opacity: 0.45; transition: opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease; }
.attack-step.active { opacity: 1; border-color: var(--cyan); background: linear-gradient(90deg, rgba(0, 185, 255, 0.06), transparent); }
.attack-step > span { color: var(--cyan); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.1em; }
.attack-step h3 { margin: 18px 0 14px; color: var(--text); font-size: 32px; line-height: 1.12; }
.attack-step p { font-size: 17px; }

/* Attack surface */
.surface-compare { display: grid; grid-template-columns: 1fr 220px 1fr; align-items: stretch; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.surface-column { padding: 48px 40px; }
.surface-column:first-child { border-right: 1px solid var(--border); }
.surface-column:last-child { border-left: 1px solid var(--border); }
.surface-index { color: var(--cyan); font-size: 12px; font-weight: 800; }
.surface-kicker { margin: 36px 0 0; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.surface-column h3 { margin: 8px 0 28px; font-size: 40px; }
.surface-column ul, .difference-grid ul, .scout-copy ul { padding: 0; margin: 0; list-style: none; }
.surface-column li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--muted-strong); }
.surface-column li::after { content: "+"; color: var(--blue); }
.human-surface li::after { color: var(--cyan); }
.surface-transition { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); font-size: 11px; text-align: center; }
.surface-transition::before, .surface-transition::after { content: ""; position: absolute; width: 128px; height: 128px; border: 1px solid var(--border); border-radius: 50%; animation: security-pulse 5s ease-in-out infinite; }
.surface-transition::after { width: 178px; height: 178px; animation-delay: -2s; opacity: 0.55; }
.security-core { width: 96px; height: 96px; position: relative; z-index: 2; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(0, 185, 255, 0.44); border-radius: 50%; background: rgba(0, 185, 255, 0.06); box-shadow: 0 0 34px rgba(0, 185, 255, 0.18); }
.security-core img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.mini-sphere { width: 66px; height: 66px; display: block; overflow: hidden; border-radius: 50%; box-shadow: 0 0 24px rgba(0, 185, 255, 0.18); }
.mini-sphere img { width: 100%; height: 100%; object-fit: cover; }
.transition-line { width: 1px; height: 70px; position: relative; z-index: 2; overflow: hidden; background: linear-gradient(var(--cyan), var(--border)); }
.transition-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, #fff, transparent); animation: security-scan 2.4s linear infinite; }
.transition-label { max-width: 128px; position: relative; z-index: 2; }

/* Dashboard reveal */
.dashboard-reveal { overflow: hidden; }
.dashboard-stage { position: relative; padding: 80px 72px 62px; }
.dashboard-glow { position: absolute; inset: 16% 14% 0; background: rgba(20, 115, 255, 0.14); filter: blur(90px); }
.dashboard-frame { position: relative; z-index: 2; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }
.dashboard-frame img { width: 100%; }
.dashboard-callout { position: absolute; z-index: 4; padding: 8px 10px; border: 1px solid var(--border-strong); border-radius: 4px; background: var(--surface-glass); color: var(--text); font-size: 11px; font-weight: 700; box-shadow: var(--shadow-soft); }
.dashboard-callout::after { content: ""; position: absolute; width: 34px; height: 1px; background: var(--cyan); }
.callout-score { left: 1%; top: 21%; }.callout-score::after { left: 100%; top: 50%; }
.callout-users { right: 2%; top: 22%; }.callout-users::after { right: 100%; top: 50%; }
.callout-signals { right: 1%; top: 34%; }.callout-signals::after { right: 100%; top: 50%; }
.callout-exposure { right: 0; top: 52%; }.callout-exposure::after { right: 100%; top: 50%; }
.callout-heatmap { left: 0; bottom: 30%; }.callout-heatmap::after { left: 100%; top: 50%; }
.callout-scout { right: 2%; bottom: 26%; }.callout-scout::after { right: 100%; top: 50%; }

/* Sticky HARM story */
.harm-story { padding-block: 160px; }
.story-layout { height: calc(100svh - 132px); min-height: 620px; display: grid; grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr); gap: 80px; align-items: start; overflow-y: auto; overscroll-behavior: contain; scrollbar-color: rgba(0, 185, 255, 0.45) transparent; scrollbar-width: thin; }
.story-copy { position: relative; }
.story-progress { position: sticky; top: 120px; display: flex; gap: 8px; margin-bottom: 30px; }
.story-progress span { width: 42px; height: 3px; background: var(--border-strong); transition: background-color 0.2s ease; }
.story-progress span.active { background: var(--cyan); }
.story-step { min-height: 62vh; padding: 24px 0; opacity: 0.28; transition: opacity 0.3s ease; }
.story-step.active { opacity: 1; }
.story-number { color: var(--cyan); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.1em; }
.story-step h2 { margin: 20px 0 22px; font-size: 48px; line-height: 1.05; font-weight: 650; }
.story-step p { max-width: 520px; color: var(--muted-strong); font-size: 18px; }
.story-visual { height: calc(100svh - 160px); min-height: 620px; position: sticky; top: 0; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 8px; background: radial-gradient(circle at 50% 0%, rgba(20, 115, 255, 0.12), transparent 45%), var(--surface); box-shadow: var(--shadow-soft); }
.story-panel { position: absolute; inset: 0; z-index: 0; padding: 40px; opacity: 0; transform: translateY(24px); pointer-events: none; transition: opacity 0.45s ease, transform 0.45s ease; }
.story-panel.active { z-index: 2; opacity: 1; transform: translateY(0); pointer-events: auto; }
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.risk-pill, .safe-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 24px; padding: 0 8px; border: 1px solid currentColor; border-radius: 4px; font-size: 10px; font-style: normal; font-weight: 700; text-transform: none; letter-spacing: 0; }
.risk-pill.high { color: var(--red); background: rgba(255, 64, 76, 0.07); }.risk-pill.medium { color: var(--amber); background: rgba(255, 174, 36, 0.07); }.risk-pill.low { color: var(--green); background: rgba(8, 201, 130, 0.07); }
.safe-pill { color: var(--green); }
.person-profile { display: flex; align-items: center; gap: 16px; padding: 28px 0; }
.person-profile .large-avatar { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: rgba(20, 115, 255, 0.15); color: var(--cyan); font-size: 22px; font-weight: 800; }
.person-profile h3 { margin: 0; font-size: 25px; }.person-profile p { margin: 3px 0 0; color: var(--muted); }.person-profile > strong { margin-left: auto; padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; }
.signal-list { display: grid; gap: 10px; }
.signal-list > div { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--border); border-radius: 6px; background: rgba(20, 115, 255, 0.03); }
.signal-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--cyan); font-weight: 800; }
.signal-list p { margin: 0; }.signal-list small { display: block; color: var(--muted); }
.panel-summary { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding: 18px; border-left: 2px solid var(--red); background: rgba(255, 64, 76, 0.06); }.panel-summary span { color: var(--muted); }.panel-summary strong { color: var(--red); text-transform: uppercase; }
.compact-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 24px 0; }
.compact-picker button { min-height: 42px; border: 1px solid var(--border); border-radius: 4px; background: transparent; color: var(--muted); cursor: pointer; }.compact-picker button.active { border-color: var(--cyan); background: rgba(0, 185, 255, 0.08); color: var(--text); }
.scenario-card { display: flex; align-items: center; gap: 18px; padding: 22px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--surface-2); }.scenario-mark { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-weight: 800; }.scenario-card span:not(.scenario-mark) { color: var(--muted); font-size: 11px; text-transform: uppercase; }.scenario-card h3 { margin: 2px 0; font-size: 20px; }.scenario-card p { margin: 0; color: var(--muted); font-size: 13px; }
.scenario-details { display: grid; grid-template-columns: 1fr 1fr; margin: 20px 0 0; border: 1px solid var(--border); border-radius: 6px; }.scenario-details div { padding: 13px 16px; }.scenario-details div:nth-child(odd) { border-right: 1px solid var(--border); }.scenario-details div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }.scenario-details dt { color: var(--muted); font-size: 11px; }.scenario-details dd { margin: 2px 0 0; font-weight: 700; }
.demo-disclaimer { margin-top: 20px; color: var(--muted); font-size: 12px; text-align: center; }
.behavior-timeline { padding-top: 18px; }.behavior-timeline > div { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 12px; min-height: 68px; border-bottom: 1px solid var(--border); }.timeline-dot { width: 9px; height: 9px; border-radius: 50%; }.timeline-dot.success { background: var(--green); }.timeline-dot.warning { background: var(--amber); }.timeline-dot.danger { background: var(--red); }.behavior-timeline p { margin: 0; }.behavior-timeline small { display: block; color: var(--muted); }.behavior-timeline strong { font-size: 11px; text-transform: uppercase; }.success-text { color: var(--green); }.warning-text { color: var(--amber); }.danger-text { color: var(--red); }
.score-orbit { height: 440px; position: relative; display: grid; place-items: center; }.score-orbit::before, .score-orbit::after { content: ""; position: absolute; border: 1px solid var(--border); border-radius: 50%; }.score-orbit::before { width: 410px; height: 410px; }.score-orbit::after { width: 300px; height: 300px; }.score-ring { width: 190px; height: 190px; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid rgba(20, 115, 255, 0.24); border-top-color: var(--cyan); border-right-color: var(--blue); border-radius: 50%; box-shadow: 0 0 32px rgba(0, 185, 255, 0.14); }.score-ring span { color: var(--muted); font-size: 12px; text-transform: uppercase; }.score-ring strong { font-size: 68px; line-height: 1; }.score-ring small { color: var(--muted); }.score-node { min-width: 82px; position: absolute; z-index: 3; padding: 7px 9px; border: 1px solid var(--border); border-radius: 4px; background: var(--surface-2); color: var(--muted); font-size: 12px; text-align: right; }.score-node b { display: block; float: left; margin-right: 8px; color: var(--text); font-size: 10px; }.score-email { left: 8%; top: 16%; }.score-wa { right: 7%; top: 18%; }.score-voice { right: 0; top: 48%; border-color: var(--red); }.score-deepfake { right: 12%; bottom: 12%; }.score-qr { left: 12%; bottom: 12%; }.score-usb { left: 0; top: 48%; }
.score-factors { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }.score-factors span { padding: 7px 9px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); font-size: 11px; }
.scout-online { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }.scout-online i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.recommendation-list { display: grid; gap: 12px; padding: 28px 0; }.recommendation-list > div { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--border); border-radius: 6px; }.recommendation-list > div > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(0, 185, 255, 0.09); color: var(--cyan); font-size: 11px; }.recommendation-list p { margin: 0; }.recommendation-list small { display: block; color: var(--muted); }.recommendation-list button { min-height: 34px; border: 1px solid var(--border-strong); border-radius: 4px; background: transparent; cursor: pointer; font-size: 12px; }
.score-change { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface-2); }.score-change div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }.score-change span { color: var(--muted); font-size: 12px; }.score-change strong { font-size: 32px; }.score-change .improved strong { color: var(--green); }.score-arrow { text-transform: uppercase; }

.scout-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }.scout-copy h2 { margin: 14px 0 0; font-size: 58px; }.scout-copy h3 { margin: 4px 0 22px; color: var(--cyan); font-size: 30px; line-height: 1.18; }.scout-copy p { color: var(--muted-strong); font-size: 18px; }.scout-copy ul { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.scout-copy li { position: relative; padding: 10px 10px 10px 25px; border-bottom: 1px solid var(--border); color: var(--muted-strong); }.scout-copy li::before { content: ""; width: 7px; height: 7px; position: absolute; left: 4px; top: 20px; border-radius: 50%; background: var(--cyan); }
.scout-product { min-height: 620px; position: relative; display: flex; align-items: center; justify-content: flex-start; }.scout-window { width: 72%; position: relative; z-index: 2; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }.scout-window header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border); }.scout-window header > div { display: flex; align-items: center; gap: 10px; }.scout-window header p { margin: 0; }.scout-window header small { display: flex; align-items: center; gap: 5px; color: var(--muted); }.scout-window header small i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }.scout-window header > span { color: var(--muted); font-size: 11px; }.scout-avatar { width: 36px; height: 36px; display: block; overflow: hidden; border-radius: 50%; }.scout-avatar img { width: 100%; height: 100%; object-fit: cover; }
.scout-conversation { min-height: 360px; display: flex; flex-direction: column; gap: 18px; padding: 24px; background: radial-gradient(circle at 100% 0%, rgba(20, 115, 255, 0.09), transparent 45%); }.assistant-message, .user-message { max-width: 84%; padding: 16px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; line-height: 1.55; }.assistant-message { background: var(--surface-2); }.user-message { align-self: flex-end; border-color: var(--blue); background: var(--blue); color: #fff; }.scout-actions { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 18px; border-top: 1px solid var(--border); }.scout-actions button { min-height: 36px; padding: 0 12px; border: 1px solid var(--border); border-radius: 4px; background: transparent; cursor: pointer; font-size: 11px; }.scout-actions .primary-action { border-color: var(--blue); background: var(--blue); color: #fff; }
.scout-mascot { max-height: 600px; position: absolute; right: -2%; bottom: 0; z-index: 3; filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.34)); }

/* Difference */
.difference-section { overflow: hidden; }
.difference-statements { max-width: 1180px; }
.difference-statements p { margin: 0; padding: 72px 0; border-bottom: 1px solid var(--border); font-family: "Space Grotesk", Inter, sans-serif; font-size: 68px; line-height: 1.04; font-weight: 620; }
.difference-statements p span { color: var(--muted); }
.difference-statements p strong { color: var(--cyan); font-weight: 620; }
.difference-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 80px; }
.difference-grid article { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.difference-grid article + article { border-color: var(--border-strong); background: radial-gradient(circle at 83% 0%, rgba(0, 185, 255, 0.12), transparent 34%), linear-gradient(180deg, rgba(20, 115, 255, 0.05), transparent 24%), var(--surface-2); box-shadow: 0 0 0 1px rgba(0, 185, 255, 0.04), var(--shadow-soft); }
.difference-grid h3 { margin: 10px 0 14px; font-size: 30px; }
.difference-copy { max-width: 650px; margin-bottom: 26px; color: var(--muted-strong); font-size: 14px; line-height: 1.6; }
.difference-grid li { min-height: 50px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border); color: var(--muted-strong); }
.difference-grid li::before { content: none; }
.difference-grid li span { min-width: 0; font-weight: 700; color: var(--text); }
.difference-grid li b { display: inline-flex; align-items: center; justify-content: center; min-height: 24px; max-width: 310px; padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.2; text-align: right; }
.simulator-difference li { opacity: 0.72; }
.simulator-difference li b { background: rgba(132, 150, 178, 0.08); }
.harm-difference { padding-top: 92px; }
.harm-difference li { animation: signal-row-sweep 6s ease-in-out infinite; }
.harm-difference li:nth-child(2) { animation-delay: -0.7s; }.harm-difference li:nth-child(3) { animation-delay: -1.4s; }.harm-difference li:nth-child(4) { animation-delay: -2.1s; }.harm-difference li:nth-child(5) { animation-delay: -2.8s; }.harm-difference li:nth-child(6) { animation-delay: -3.5s; }.harm-difference li:nth-child(7) { animation-delay: -4.2s; }.harm-difference li:nth-child(8) { animation-delay: -4.9s; }.harm-difference li:nth-child(9) { animation-delay: -5.6s; }.harm-difference li:nth-child(10) { animation-delay: -6.3s; }.harm-difference li:nth-child(11) { animation-delay: -7s; }.harm-difference li:nth-child(12) { animation-delay: -7.7s; }.harm-difference li:nth-child(13) { animation-delay: -8.4s; }
.harm-difference li b { border-color: rgba(0, 185, 255, 0.34); background: rgba(0, 185, 255, 0.08); color: var(--cyan); }
.harm-command-core { width: 118px; height: 118px; position: absolute; right: 28px; top: 24px; display: grid; place-items: center; border: 1px solid rgba(0, 185, 255, 0.28); border-radius: 50%; background: radial-gradient(circle, rgba(0, 185, 255, 0.16), rgba(20, 115, 255, 0.05) 48%, transparent 60%); }
.harm-command-core img { width: 64px; height: 64px; position: relative; z-index: 2; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.45)); }
.harm-command-core i { position: absolute; border: 1px solid rgba(0, 185, 255, 0.24); border-radius: 50%; animation: security-pulse 4s ease-in-out infinite; }
.harm-command-core i:nth-child(2) { inset: 20px; }.harm-command-core i:nth-child(3) { inset: 8px; animation-delay: -1.4s; }.harm-command-core i:nth-child(4) { inset: -6px; animation-delay: -2.4s; }
.red-team-callout, .scout-intel-panel, .offensive-mindset { border: 1px solid var(--border); border-radius: 8px; background: rgba(20, 115, 255, 0.035); }
.red-team-callout { margin-top: 14px; padding: 18px; }
.red-team-callout h4, .scout-intel-panel h4, .offensive-mindset h3 { margin: 0 0 8px; font-size: 18px; }
.red-team-callout p, .scout-intel-panel p, .offensive-mindset p { margin: 0; color: var(--muted-strong); font-size: 13px; line-height: 1.6; }
.capability-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.capability-chips span { min-height: 26px; display: inline-flex; align-items: center; padding: 0 8px; border: 1px solid rgba(0, 185, 255, 0.22); border-radius: 4px; background: rgba(0, 185, 255, 0.055); color: var(--cyan); font-size: 10px; font-weight: 750; }
.scout-intel-panel { margin-top: 14px; padding: 16px; border-color: var(--border-strong); animation: scout-panel-pulse 5.5s ease-in-out infinite; }
.scout-intel-panel > span { display: inline-flex; margin-bottom: 8px; color: var(--cyan); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.scout-intel-panel b { display: block; margin: 12px 0 4px; font-size: 12px; }
.scout-intel-panel div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.scout-intel-panel .button { min-height: 32px; padding: 0 10px; font-size: 11px; }
.risk-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 16px; }
.risk-flow button { min-height: 38px; position: relative; display: grid; place-items: center; border: 1px solid rgba(0, 185, 255, 0.24); border-radius: 4px; background: rgba(0, 185, 255, 0.06); color: var(--cyan); cursor: pointer; font-size: 11px; font-weight: 750; }
.risk-flow button:hover, .risk-flow button:focus-visible { border-color: var(--cyan); background: rgba(0, 185, 255, 0.12); }
.risk-flow button::after { content: attr(data-tip); width: min(260px, 78vw); position: absolute; left: 50%; bottom: calc(100% + 8px); z-index: 10; padding: 8px 10px; transform: translate(-50%, 4px); border: 1px solid var(--border-strong); border-radius: 5px; background: var(--surface); color: var(--muted-strong); box-shadow: var(--shadow-soft); font-size: 10px; line-height: 1.4; opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease; }
.risk-flow button:hover::after, .risk-flow button:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.offensive-mindset { margin-top: 16px; padding: 24px 28px; border-color: var(--border-strong); background: linear-gradient(90deg, rgba(0, 185, 255, 0.09), rgba(20, 115, 255, 0.035)); }
.offensive-mindset h3 { color: var(--text); font-size: 24px; }
.offensive-mindset p { max-width: 980px; font-size: 15px; }

/* Channel explorer */
.channel-layout { min-height: 760px; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 50px; align-items: center; }.channel-copy p { min-height: 125px; margin-top: 26px; }.channel-status { display: inline-flex; padding: 7px 10px; border: 1px solid var(--border); border-radius: 4px; color: var(--green); font-size: 11px; }.channel-orbit { min-height: 690px; position: relative; display: grid; place-items: center; }.explorer-ring { position: absolute; border: 1px solid var(--border); border-radius: 50%; }.ring-a { width: 570px; height: 570px; }.ring-b { width: 700px; height: 430px; transform: rotate(-18deg); }.explorer-sphere { width: 220px; height: 220px; display: block; overflow: hidden; border-radius: 50%; filter: drop-shadow(0 0 24px rgba(0, 185, 255, 0.24)); }.explorer-sphere img { width: 100%; height: 100%; object-fit: cover; }
.explorer-node { min-width: 100px; min-height: 40px; position: absolute; padding: 0 12px; border: 1px solid var(--border); border-radius: 5px; background: var(--surface); color: var(--muted-strong); cursor: pointer; font-size: 11px; font-weight: 700; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }.explorer-node.active { border-color: var(--cyan); color: var(--text); transform: scale(1.05); box-shadow: 0 0 22px rgba(0, 185, 255, 0.12); }.n-email { top: 7%; left: 40%; }.n-whatsapp { top: 18%; right: 7%; }.n-sms { right: 0; top: 47%; }.n-vishing { right: 13%; bottom: 13%; }.n-deepfake { left: 39%; bottom: 3%; }.n-clickfix { left: 9%; bottom: 14%; }.n-usb { left: 0; top: 47%; }.n-social { left: 11%; top: 17%; }

/* Product showcase */
.product-showcase { overflow: hidden; }.showcase-shell { position: relative; }.showcase-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }.showcase-tab { min-height: 42px; padding: 0 14px; border: 1px solid var(--border); border-radius: 5px; background: transparent; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 700; }.showcase-tab.active { border-color: var(--blue); background: var(--blue); color: #fff; }.showcase-meta { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 48px; align-items: end; margin-bottom: 22px; }.showcase-meta span { color: var(--cyan); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }.showcase-meta h3 { margin: 3px 0 0; font-size: 28px; }.showcase-meta p { max-width: 720px; margin: 0; color: var(--muted-strong); }
.showcase-window { min-height: 680px; position: relative; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }.window-bar { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--border); }.window-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }.window-bar span:nth-child(2) { background: var(--amber); }.window-bar span:nth-child(3) { background: var(--green); }.window-bar em { margin-left: auto; color: var(--muted); font-size: 10px; font-style: normal; }.showcase-shot { width: 100%; position: absolute; left: 0; top: 40px; opacity: 0; transform: translateX(38px) scale(0.985); transition: opacity 0.4s ease, transform 0.4s ease; }.showcase-shot.active { opacity: 1; transform: translateX(0) scale(1); }

/* Security */
.security-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 88px; align-items: start; }.security-copy { position: sticky; top: 120px; }.security-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }.security-grid article { min-height: 235px; padding: 30px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }.security-grid article > span { color: var(--cyan); font-size: 11px; }.security-grid h3 { margin: 28px 0 10px; font-size: 21px; }.security-grid p { margin: 0; color: var(--muted); font-size: 14px; }

/* Final CTA and form */
.final-cta { padding-block: 160px 130px; overflow: hidden; background: radial-gradient(circle at 20% 40%, rgba(20, 115, 255, 0.12), transparent 30%), var(--bg); }.final-nodes { position: absolute; inset: 0; opacity: 0.18; background-image: radial-gradient(circle, var(--cyan) 1px, transparent 1.5px); background-size: 54px 54px; mask-image: radial-gradient(circle at 22% 40%, #000, transparent 46%); }.final-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }.final-copy { position: relative; z-index: 2; }.final-sphere { width: 310px; height: 310px; position: relative; display: grid; place-items: center; margin-bottom: 22px; }.final-sphere .sphere-mask { width: 62%; }.final-sphere .event-ring { inset: 8%; }.node-field { position: absolute; inset: 0; border-radius: 50%; background-image: radial-gradient(circle, var(--cyan) 1px, transparent 1.5px); background-size: 22px 22px; mask-image: radial-gradient(circle, #000, transparent 68%); opacity: 0.42; }.final-copy h2 { margin: 14px 0 24px; font-size: 62px; line-height: 1.02; }.final-copy > p { color: var(--muted-strong); font-size: 18px; }
.lead-card { position: relative; z-index: 2; padding: 34px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }.form-heading > span { color: var(--cyan); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }.form-heading h3 { margin: 8px 0 6px; font-size: 28px; }.form-heading p { color: var(--muted); font-size: 14px; }.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }.field { min-width: 0; display: grid; gap: 5px; }.field.full { grid-column: 1 / -1; }.field label { color: var(--muted-strong); font-size: 11px; font-weight: 650; }.field input, .field select, .field textarea, .chat-contact input { width: 100%; min-height: 45px; padding: 0 12px; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-soft); color: var(--text); outline: none; }.field textarea { min-height: 112px; padding-top: 11px; resize: vertical; }.field input:focus, .field select:focus, .field textarea:focus, .chat-contact input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 185, 255, 0.08); }.consent-row { display: flex !important; align-items: flex-start; gap: 10px; cursor: pointer; }.consent-row input { width: 16px; min-height: 16px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--blue); }.form-submit { grid-template-columns: auto 1fr; align-items: center; }.form-message { min-height: 22px; color: var(--muted); font-size: 12px; }.form-success { color: var(--green); }.form-error { color: var(--red); }.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { padding: 54px 0 24px; border-top: 1px solid var(--border); background: var(--bg-deep); }.footer-main { display: grid; grid-template-columns: 1fr 1.2fr 0.8fr; gap: 54px; align-items: start; }.footer-main > div:first-child p { max-width: 320px; margin: 18px 0 0; color: var(--muted); }.footer-main nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; color: var(--muted-strong); font-size: 13px; }.footer-main nav a:hover { color: var(--cyan); }.footer-main > div:last-child { display: grid; gap: 14px; justify-items: start; color: var(--muted); font-size: 12px; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 11px; }
.footer-contact address { max-width: 280px; margin: 0; color: var(--muted-strong); font-style: normal; line-height: 1.55; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.footer-social a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 5px; background: var(--surface); color: var(--muted-strong); font-size: 10px; font-weight: 800; letter-spacing: 0; }
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); }

/* Search-friendly HARM guide */
.guide-main { padding: calc(var(--header-height) + 76px) 0 100px; }
.guide-hero { padding: 72px 0 88px; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 82% 12%, rgba(0, 185, 255, 0.13), transparent 26%), var(--bg); }
.guide-hero-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); gap: 72px; align-items: center; }
.guide-hero h1 { max-width: 760px; margin: 14px 0 22px; font-size: clamp(42px, 5vw, 72px); line-height: 1.02; }
.guide-hero p { max-width: 760px; color: var(--muted-strong); font-size: 19px; line-height: 1.65; }
.guide-orb { width: min(320px, 72vw); aspect-ratio: 1; position: relative; display: grid; place-items: center; justify-self: end; }
.guide-orb::before, .guide-orb::after { content: ""; position: absolute; border: 1px solid var(--border-strong); border-radius: 50%; }
.guide-orb::before { inset: 2%; }.guide-orb::after { width: 118%; height: 60%; transform: rotate(-18deg); }
.guide-orb img { width: 68%; height: 68%; position: relative; z-index: 1; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 32px rgba(0, 212, 255, 0.38)); }
.guide-section { padding: 86px 0; border-bottom: 1px solid var(--border); }
.guide-section-heading { max-width: 780px; margin-bottom: 36px; }
.guide-section-heading h2 { margin: 12px 0; font-size: 40px; line-height: 1.1; }
.guide-section-heading p { color: var(--muted-strong); font-size: 17px; }
.guide-answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.guide-answer { min-height: 220px; padding: 28px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.guide-answer > span { color: var(--cyan); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.guide-answer h3 { margin: 22px 0 10px; font-size: 21px; }
.guide-answer p { margin: 0; color: var(--muted); line-height: 1.6; }
.guide-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.guide-step { min-height: 184px; padding: 24px; border-top: 2px solid var(--cyan); background: var(--surface); }
.guide-step span { color: var(--cyan); font-size: 11px; font-weight: 800; }
.guide-step h3 { margin: 22px 0 8px; font-size: 20px; }
.guide-step p { margin: 0; color: var(--muted); line-height: 1.55; }
.guide-faq { display: grid; grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr); gap: 60px; align-items: start; }
.guide-faq-intro { position: sticky; top: calc(var(--header-height) + 32px); }
.guide-faq-intro h2 { margin: 12px 0; font-size: 40px; line-height: 1.1; }
.guide-faq-intro p { color: var(--muted-strong); font-size: 17px; }
.guide-faq details { border-top: 1px solid var(--border); }
.guide-faq details:last-child { border-bottom: 1px solid var(--border); }
.guide-faq summary { position: relative; padding: 22px 40px 22px 0; cursor: pointer; color: var(--text); font-size: 18px; font-weight: 700; list-style: none; }
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--cyan); font-size: 23px; font-weight: 400; }
.guide-faq details[open] summary::after { content: "-"; }
.guide-faq details p { max-width: 760px; margin: 0; padding: 0 0 22px; color: var(--muted-strong); line-height: 1.7; }
.guide-contact { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 42px; border: 1px solid var(--border-strong); border-radius: 8px; background: radial-gradient(circle at 90% 12%, rgba(0, 185, 255, 0.13), transparent 34%), var(--surface); }
.guide-contact h2 { margin: 8px 0 12px; font-size: 34px; }
.guide-contact p { max-width: 700px; margin: 0; color: var(--muted-strong); }
.guide-contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

/* Website HARM Guide */
.chatbot-launcher { min-height: 52px; position: fixed; right: 22px; bottom: 20px; z-index: 120; display: flex; align-items: center; gap: 9px; padding: 5px 15px 5px 6px; border: 1px solid var(--border-strong); border-radius: 28px; background: var(--surface-glass); color: var(--text); box-shadow: var(--shadow-soft); backdrop-filter: blur(16px); cursor: pointer; font-weight: 750; }.orb-icon { width: 40px; height: 40px; display: block; flex: 0 0 auto; overflow: hidden; border-radius: 50%; background: var(--bg); }.orb-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); }.chatbot-panel { width: min(410px, calc(100vw - 24px)); max-height: min(700px, calc(100dvh - 96px)); position: fixed; right: 18px; bottom: 84px; z-index: 125; display: grid; grid-template-rows: auto minmax(130px, 1fr) auto auto; overflow: hidden; visibility: hidden; opacity: 0; transform: translateY(12px); border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; }.chatbot-panel.open { visibility: visible; opacity: 1; transform: translateY(0); }.chat-head { min-height: 70px; position: relative; display: flex; align-items: center; padding: 12px 62px 12px 14px; border-bottom: 1px solid var(--border); }.chat-head > div { min-width: 0; display: flex; align-items: center; gap: 10px; }.chat-head .orb-icon { width: 40px; height: 40px; }.chat-head p { min-width: 0; margin: 0; }.chat-head strong { display: block; }.chat-head small { display: block; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.chat-close { width: 38px; height: 38px; position: absolute; top: 50%; right: 12px; z-index: 2; flex: 0 0 auto; transform: translateY(-50%); border: 1px solid var(--border); border-radius: 5px; background: transparent; color: var(--text); cursor: pointer; }.chat-body { min-height: 0; overflow-y: auto; padding: 14px; }.msg { width: fit-content; max-width: 88%; margin-bottom: 10px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 6px; color: var(--muted-strong); font-size: 13px; line-height: 1.5; white-space: pre-wrap; }.msg.bot { background: var(--surface-2); }.msg.user { margin-left: auto; border-color: var(--blue); background: var(--blue); color: #fff; }.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; max-height: 92px; overflow-y: auto; padding: 8px 12px; border-top: 1px solid var(--border); }.chat-quick button { min-height: 30px; padding: 0 9px; border: 1px solid var(--border); border-radius: 4px; background: transparent; color: var(--muted-strong); cursor: pointer; font-size: 10px; }.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }.chat-form label { min-width: 0; }.chat-form input { width: 100%; height: 38px; padding: 0 10px; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-soft); color: var(--text); outline: none; }.chat-contact { max-height: min(390px, 48dvh); position: absolute; inset: auto 0 0; z-index: 5; display: none; overflow-y: auto; padding: 16px; border-top: 1px solid var(--border-strong); background: var(--surface); box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.22); }.chat-contact.open { display: block; }.chat-contact h4 { margin: 0 0 4px; }.chat-contact > p { margin: 0 0 12px; color: var(--muted); font-size: 11px; }.chat-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }.chat-contact-grid label { display: grid; gap: 3px; color: var(--muted); font-size: 9px; }.chat-contact-grid label.full { grid-column: 1 / -1; }.chat-contact input { min-height: 38px; }.chat-contact-actions { display: flex; gap: 8px; margin-top: 10px; }.chat-status { margin-top: 8px; font-size: 11px; }

/* Reveal and motion */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
@keyframes sphere-turn { to { transform: rotate(360deg); } }
@keyframes hero-grid-drift { to { background-position: 96px 96px; } }
@keyframes hero-sphere-float { 50% { transform: translate3d(-10px, 14px, 0) scale(1.015); } }
@keyframes ring-turn { to { transform: rotateX(68deg) rotateZ(374deg); } }
@keyframes ring-turn-two { to { transform: rotateX(70deg) rotateZ(-380deg); } }
@keyframes particle-orbit { 50% { transform: translate(14px, -8px); opacity: 0.4; } }
@keyframes orbit-drift-one { to { transform: rotate(360deg); } }
@keyframes orbit-drift-two { to { transform: rotate(342deg); } }
@keyframes orbit-drift-three { to { transform: rotate(426deg); } }
@keyframes hero-dashboard-glow { 50% { box-shadow: 0 30px 95px rgba(0, 0, 0, 0.42), 0 0 42px rgba(0, 185, 255, 0.16); border-color: rgba(0, 185, 255, 0.46); } }
@keyframes hero-signal-pulse { 50% { transform: translateY(-5px); border-color: rgba(0, 185, 255, 0.5); } }
@keyframes security-pulse { 50% { transform: scale(1.08); opacity: 0.38; } }
@keyframes security-scan { from { transform: translateY(-100%); } to { transform: translateY(100%); } }
@keyframes signal-row-sweep { 50% { background: rgba(0, 185, 255, 0.045); box-shadow: inset 2px 0 0 var(--cyan); } }
@keyframes scout-panel-pulse { 50% { border-color: rgba(0, 185, 255, 0.44); box-shadow: 0 0 24px rgba(0, 185, 255, 0.08); } }
.hero-grid-lines { animation: hero-grid-drift 26s linear infinite; }
.orbit-one { animation: orbit-drift-one 44s linear infinite; }
.orbit-two { animation: orbit-drift-two 36s linear infinite; }
.orbit-three { animation: orbit-drift-three 52s linear infinite; }
.hero-sphere { animation: hero-sphere-float 8s ease-in-out infinite; }
.hero-sphere .sphere-mask img, .final-sphere .sphere-mask img { animation: sphere-turn 30s linear infinite; }
.hero-sphere .event-ring, .final-sphere .event-ring { animation: ring-turn 18s linear infinite; }
.hero-sphere .ring-two { animation: ring-turn-two 22s linear infinite; }
.particle { animation: particle-orbit 7s ease-in-out infinite; }
.hero-dashboard { animation: hero-dashboard-glow 7s ease-in-out infinite; }
.hero-signal { animation: hero-signal-pulse 6s ease-in-out infinite; }
.signal-risk { animation-delay: -2.5s; }

/* Tablet */
@media (max-width: 1180px) {
  .container { width: min(100% - 64px, 1180px); }
  .nav-links { gap: 16px; }
  .nav-links a:nth-child(5), .nav-links a:nth-child(6) { display: none; }
  .hero-copy h1 { font-size: 64px; }
  .hero-layout { grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
  .hero-visual { min-height: 650px; }
  .hero-dashboard { bottom: 126px; }
  .hero-sphere { width: 460px; height: 460px; right: 0; top: 2%; }
  .attack-scroll { grid-template-columns: 1fr 360px; gap: 38px; }
  .attack-visual { transform: scale(0.85); }
  .story-layout { gap: 44px; }
  .story-step h2 { font-size: 42px; }
  .showcase-window { min-height: 570px; }
  .scout-mascot { right: -9%; }
}

@media (max-width: 960px) {
  :root { --header-height: 66px; }
  .container { width: min(100% - 48px, 900px); }
  .narrative-section, .quiet-section { padding-block: 96px; }
  .section-intro h2, .security-copy h2, .channel-copy h2, .scout-copy h2 { font-size: 46px; }
  .nav-links { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; padding: 16px 24px 22px; border-bottom: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-soft); }
  .nav-links.open { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-links a:nth-child(5), .nav-links a:nth-child(6) { display: block; }
  .menu-toggle { display: grid; }
  .hero { min-height: auto; padding: 122px 0 72px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-copy h1 { font-size: 60px; }
  .hero-visual { min-height: 610px; margin-top: 6px; }
  .hero-dashboard { width: min(760px, 92%); left: 4%; bottom: 118px; }
  .hero-sphere { width: min(500px, 72vw); height: min(500px, 72vw); right: 8%; top: 0; }
  .scroll-cue { display: none; }
  .attack-scroll { height: auto; min-height: auto; grid-template-columns: 1fr; overflow: visible; }
  .attack-visual { height: 690px; position: relative; top: 0; transform: none; }
  .attack-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; }
  .attack-step { min-height: 250px; margin: 0; padding: 24px; opacity: 1; }
  .attack-step:last-child { grid-column: 1 / -1; }
  .surface-compare { grid-template-columns: 1fr 120px 1fr; }
  .surface-column { padding: 32px 24px; }
  .dashboard-stage { padding: 58px 20px 30px; }
  .dashboard-callout { display: none; }
  .story-layout { height: auto; min-height: 0; grid-template-columns: 1fr; overflow: visible; }
  .story-progress { display: none; }
  .story-step { min-height: auto; padding: 48px 0 20px; opacity: 1; }
  .story-step:first-of-type { padding-top: 0; }
  .story-visual { height: auto; min-height: 0; position: relative; top: 0; overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .story-panel { min-height: 620px; position: relative; inset: auto; display: block; margin-bottom: 18px; padding: 30px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); opacity: 1; transform: none; }
  .scout-layout, .security-layout, .final-layout, .channel-layout { grid-template-columns: 1fr; }
  .scout-product { max-width: 760px; }
  .channel-copy p { min-height: auto; }
  .security-copy { position: relative; top: 0; }
  .final-sphere { width: 240px; height: 240px; }
  .showcase-window { min-height: 480px; }
  .guide-hero-layout, .guide-faq { grid-template-columns: 1fr; gap: 38px; }
  .guide-orb { justify-self: start; }
  .guide-answer-grid { grid-template-columns: 1fr 1fr; }
  .guide-steps { grid-template-columns: 1fr 1fr; }
  .guide-faq-intro { position: static; }
}

/* Mobile */
@media (max-width: 700px) {
  .container { width: calc(100% - 36px); }
  .narrative-section, .quiet-section { padding-block: 76px; }
  .section-intro { margin-bottom: 46px; }
  .section-intro h2, .security-copy h2, .channel-copy h2, .scout-copy h2 { font-size: 38px; }
  .section-intro p, .security-copy p, .channel-copy p { font-size: 16px; }
  .brand img.logo-full { height: 32px; max-width: 124px; }
  .brand-divider, .harm-word { display: none; }
  .nav-shell { width: calc(100% - 24px); gap: 8px; }
  .brand { min-width: 0; }
  .nav-actions { gap: 6px; margin-left: auto; }
  .icon-button { width: 38px; height: 38px; flex: 0 0 38px; }
  .nav-demo { min-height: 42px; padding-inline: 12px; font-size: 12px; }
  .nav-links.open { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; padding: 88px 0 34px; align-items: start; }
  .nav-demo { width: 72px; min-width: 72px; padding-inline: 0; font-size: 0; }
  .nav-demo::after { content: "Demo"; font-size: 11px; }
  .hero-copy h1 { margin: 14px 0 18px; font-size: 36px; line-height: 1.04; }
  .hero-copy > p:not(.hero-note) { font-size: 16px; line-height: 1.58; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { flex: 1 1 150px; }
  .hero-note { margin-top: 16px; }
  .hero-visual { min-height: 392px; margin-top: -34px; }
  .orbit-one { width: 360px; height: 360px; }.orbit-two { width: 470px; height: 250px; }.orbit-three { width: 290px; height: 490px; }
  .hero-sphere { width: min(360px, 76vw); height: min(360px, 76vw); right: 3%; top: 4px; }
  .hero-dashboard { width: 100%; left: 0; bottom: 122px; transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
  .hero-signal { min-width: 112px; padding: 8px 9px; }.hero-signal strong { font-size: 20px; }.signal-score { left: 0; top: 16%; }.signal-risk { right: 0; bottom: 28%; }
  .attack-visual { height: 510px; max-width: 100%; overflow: hidden; transform: scale(0.76); transform-origin: center; margin-inline: 0; }
  .attack-steps { grid-template-columns: 1fr; }.attack-step:last-child { grid-column: auto; }
  .attack-step { min-height: 0; }.attack-step h3 { font-size: 25px; }
  .surface-compare { grid-template-columns: 1fr; }.surface-column:first-child, .surface-column:last-child { border: 0; }.surface-column:first-child { border-bottom: 1px solid var(--border); }.surface-transition { min-height: 120px; flex-direction: row; }.transition-line { width: 70px; height: 1px; }
  .surface-column h3 { font-size: 34px; }
  .dashboard-stage { padding: 24px 0 0; }.dashboard-frame { overflow-x: auto; }.dashboard-frame img { width: 900px; max-width: none; }
  .story-step h2 { font-size: 36px; }.story-panel { min-height: 0; padding: 22px; }.score-orbit { height: 430px; max-width: 100%; overflow: hidden; transform: scale(0.86); margin-inline: 0; }.recommendation-list > div { grid-template-columns: 34px 1fr; }.recommendation-list button { grid-column: 2; justify-self: start; }.score-change { grid-template-columns: 1fr; }.score-arrow { text-align: center; }
  .scout-layout { gap: 34px; }.scout-copy h3 { font-size: 24px; }.scout-copy ul { grid-template-columns: 1fr; }.scout-product { min-height: 510px; }.scout-window { width: 100%; }.scout-conversation { min-height: 300px; padding: 16px; }.scout-mascot { max-height: 300px; right: -18px; bottom: -48px; opacity: 0.5; }.scout-window { z-index: 4; }
  .difference-statements p { padding: 48px 0; font-size: 40px; }
  .difference-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .difference-grid::before { content: "HARM goes further"; display: grid; place-items: center; min-height: 42px; order: 2; border: 1px solid var(--border-strong); border-radius: 6px; color: var(--cyan); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
  .simulator-difference { order: 1; }
  .harm-difference { order: 3; padding-top: 86px; }
  .offensive-mindset { padding: 22px; }
  .difference-grid article + article { border-left: 1px solid var(--border-strong); border-top: 1px solid var(--border-strong); }
  .difference-grid article { padding: 28px; }
  .difference-grid li { grid-template-columns: 1fr; gap: 6px; }
  .difference-grid li b { justify-self: start; max-width: 100%; text-align: left; }
  .risk-flow { grid-template-columns: 1fr 1fr; }
  .risk-flow button::after { left: 0; transform: translate(0, 4px); }
  .risk-flow button:hover::after, .risk-flow button:focus-visible::after { transform: translate(0, 0); }
  .channel-layout { min-height: auto; overflow: hidden; }
  .channel-orbit { width: 100%; max-width: 100%; min-height: 430px; overflow: hidden; transform: none; margin-inline: 0; }
  .ring-a { width: min(430px, 112vw); height: min(430px, 112vw); }
  .ring-b { width: min(520px, 135vw); height: min(320px, 84vw); }
  .explorer-sphere { width: 150px; height: 150px; }
  .explorer-node { min-width: 74px; min-height: 32px; padding: 0 8px; font-size: 9px; }
  .showcase-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }.showcase-tab { flex: 0 0 auto; }.showcase-meta { grid-template-columns: 1fr; gap: 10px; }.showcase-meta p { font-size: 14px; }.showcase-window { min-height: 310px; }.showcase-shot { width: 760px; max-width: none; }
  .security-grid { grid-template-columns: 1fr; }.security-grid article { min-height: 180px; }
  .final-cta { padding-block: 90px 72px; }.final-layout { gap: 48px; }.final-sphere { width: 220px; height: 220px; }.final-copy h2 { font-size: 42px; }.lead-card { padding: 22px 18px; }.lead-form { grid-template-columns: 1fr; }.field.full { grid-column: auto; }.form-submit { grid-template-columns: 1fr; }.form-submit .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }.footer-main nav { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; gap: 6px; }
  .chatbot-launcher { right: 12px; bottom: 12px; min-height: 48px; }.chatbot-launcher .orb-icon { width: 36px; height: 36px; }.chatbot-panel { left: 12px; right: auto; bottom: 70px; width: min(366px, calc(100vw - 24px)); max-height: calc(100dvh - 82px); }.chat-contact-grid { grid-template-columns: 1fr; }.chat-contact-grid label.full { grid-column: auto; }
  .chatbot-launcher { width: 48px; padding: 5px; border-radius: 50%; }
  .chatbot-launcher > span:last-child { display: none; }
  .guide-main { padding-bottom: 72px; }
  .guide-hero { padding: 48px 0 60px; }
  .guide-hero p { font-size: 16px; }
  .guide-section { padding: 64px 0; }
  .guide-section-heading h2, .guide-faq-intro h2 { font-size: 34px; }
  .guide-answer-grid, .guide-steps { grid-template-columns: 1fr; }
  .guide-answer { min-height: 0; }
  .guide-contact { grid-template-columns: 1fr; padding: 26px; }
  .guide-contact-actions { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .brand img.logo-full { max-width: 112px; }
  .nav-demo { width: 58px; min-width: 58px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-actions .button { flex-basis: 100%; }
  .hero-visual { min-height: 360px; margin-top: -38px; }
  .hero-sphere { width: min(300px, 78vw); height: min(300px, 78vw); right: 2%; }
  .hero-dashboard { bottom: 94px; }
  .attack-visual { transform: scale(0.68); margin-inline: 0; }
  .story-step h2 { font-size: 34px; }
  .channel-orbit { min-height: 390px; transform: none; margin-inline: 0; }
  .explorer-sphere { width: 132px; height: 132px; }
  .showcase-window { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
