/* ============================================================
   DataSpy.eu — Design System
   Direction : SAFE (Terminal modernisé)
   Stack : CSS3 pure, Mobile-first, prefers-reduced-motion
   Polices : JetBrains Mono + Inter (Google Fonts)
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --bg-deep: #0a0e14;
  --bg-surface: #0f1319;
  --bg-elevated: #151b24;
  --bg-card: #1a2130;
  --bg-card-hover: #1e2740;

  --neon-green: #00e5a0;
  --neon-green-dim: rgba(0, 229, 160, 0.2);
  --neon-green-glow: rgba(0, 229, 160, 0.4);
  --neon-green-faint: rgba(0, 229, 160, 0.08);
  --neon-amber: #ffa641;
  --neon-amber-dim: rgba(255, 166, 65, 0.15);
  --neon-red: #ff4d6a;
  --neon-red-dim: rgba(255, 77, 106, 0.15);
  --neon-blue: #4d9cff;

  --text-primary: #e8edf5;
  --text-secondary: #8892a4;
  --text-muted: #4a5568;

  --border: #1e2a3a;
  --border-light: #243040;
  --border-glow: rgba(0, 229, 160, 0.15);

  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-neon: 0 0 20px var(--neon-green-dim);
  --shadow-neon-strong: 0 0 40px var(--neon-green-glow), 0 4px 16px rgba(0,0,0,0.4);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --max-w: 720px;
  --max-w-wide: 1100px;
}

/* ---- VISUALLY HIDDEN (accessibilité) ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- SCAN GLOBAL PROGRESS ---- */
.scan-global-progress {
  position: sticky;
  top: 57px; /* Hauteur de la nav */
  z-index: 100;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

/* Nav scrolled state */
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon-green);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- SCANLINES OVERLAY ---- */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 160, 0.012) 2px,
    rgba(0, 229, 160, 0.012) 4px
  );
  pointer-events: none;
  z-index: 9000;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(10, 14, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--neon-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-logo:hover {
  opacity: 1;
  text-decoration: none;
  text-shadow: 0 0 12px var(--neon-green-glow);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--neon-green);
  border-radius: 1px;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.nav-status {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
  white-space: nowrap;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--neon-green); }
  50% { opacity: 0.5; box-shadow: 0 0 2px var(--neon-green); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
  opacity: 1;
  text-decoration: none;
}

.nav-links .nav-cta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bg-deep);
  background: var(--neon-green);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.nav-links .nav-cta:hover {
  box-shadow: var(--shadow-neon);
  transform: translateY(-1px);
  opacity: 1;
}

/* Burger mobile */
.nav-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.nav-menu-btn:hover {
  background: var(--bg-elevated);
}

.nav-menu-icon,
.nav-menu-icon::before,
.nav-menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.nav-menu-icon {
  position: relative;
}

.nav-menu-icon::before,
.nav-menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-menu-icon::before { top: -5px; }
.nav-menu-icon::after  { top: 5px; }

/* ============================================================
   LAYOUT UTILITAIRES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-divider {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green-dim), transparent);
}

/* ============================================================
   HERO — LANDING PAGE
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  width: 100%;
}

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

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tag::before {
  content: '>';
  color: var(--text-muted);
}

.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero h1 .highlight {
  color: var(--neon-green);
  text-shadow: 0 0 30px var(--neon-green-glow);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.65;
}

/* Hero illustration */
.hero-illustration {
  position: relative;
  flex-shrink: 0;
}

.hero-illustration img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 60px rgba(0, 229, 160, 0.15), var(--shadow-card);
  border: 1px solid var(--border-glow);
}

/* Terminal ticker de pre-scan */
.live-ticker {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.live-ticker-header {
  font-size: 0.6875rem;
  color: var(--neon-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-ticker-header::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse-dot 2s ease-in-out infinite;
  display: inline-block;
}

.ticker-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  opacity: 0;
  animation: ticker-appear 0.5s forwards;
}

.ticker-line:nth-child(1) { animation-delay: 0.4s; }
.ticker-line:nth-child(2) { animation-delay: 0.9s; }
.ticker-line:nth-child(3) { animation-delay: 1.4s; }
.ticker-line:nth-child(4) { animation-delay: 1.9s; }
.ticker-line:nth-child(5) { animation-delay: 2.4s; }

@keyframes ticker-appear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ticker-label {
  color: var(--text-muted);
  min-width: 100px;
}

.ticker-value {
  color: var(--neon-green);
  font-weight: 500;
}

.ticker-value.warn {
  color: var(--neon-amber);
}

/* Social proof */
.social-proof {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-proof strong {
  color: var(--text-secondary);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce-down 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--neon-green);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Disclaimer hero */
.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-disclaimer a {
  font-size: inherit;
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
}

.btn-primary {
  font-size: 0.9375rem;
  padding: 15px 32px;
  background: var(--neon-green);
  color: var(--bg-deep);
  min-height: 52px;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  box-shadow: var(--shadow-neon-strong);
  transform: translateY(-2px);
  opacity: 1;
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-neon);
}

.btn-primary-lg {
  font-size: 1rem;
  padding: 18px 40px;
  min-height: 58px;
}

.btn-secondary {
  font-size: 0.875rem;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--neon-green-dim);
  background: var(--bg-elevated);
  opacity: 1;
  text-decoration: none;
}

.btn-ghost {
  font-size: 0.875rem;
  padding: 10px 20px;
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text-secondary);
  opacity: 1;
  text-decoration: none;
}

.btn-danger {
  font-size: 0.9375rem;
  padding: 15px 32px;
  background: var(--neon-amber);
  color: var(--bg-deep);
  min-height: 52px;
  box-shadow: 0 0 20px rgba(255, 166, 65, 0.25);
}

.btn-danger:hover {
  box-shadow: 0 0 40px rgba(255, 166, 65, 0.45), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-2px);
  opacity: 1;
  text-decoration: none;
}

/* ============================================================
   SECTION HEADERS (scan, attacks, etc.)
   ============================================================ */
.section-header {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--neon-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
}

.section-title {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.65;
}

/* Transition copy entre sections */
.section-transition {
  text-align: center;
  padding: 48px 24px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   DATA CARDS — resultats de scan
   ============================================================ */
.data-grid {
  display: grid;
  gap: 16px;
}

.data-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.data-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.data-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-elevated);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.data-card:hover::before {
  opacity: 1;
}

.data-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.data-card-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.data-card-severity {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.severity-high   { background: var(--neon-red-dim); color: var(--neon-red); }
.severity-medium { background: var(--neon-amber-dim); color: var(--neon-amber); }
.severity-low    { background: var(--neon-green-faint); color: var(--neon-green); }

.data-card-value {
  font-family: var(--font-mono);
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 8px;
  word-break: break-all;
  line-height: 1.3;
}

.data-card-value.is-loading {
  color: var(--text-muted);
  animation: shimmer 1.5s ease-in-out infinite;
}

.data-card-explain {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Reveal animation */
.data-card.revealed {
  animation: card-reveal 0.5s ease forwards;
}

@keyframes card-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCAN PROGRESS
   ============================================================ */
.scan-progress {
  margin-bottom: 32px;
}

.scan-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.scan-progress-fill {
  height: 100%;
  background: var(--neon-green);
  border-radius: 2px;
  width: 0%;
  box-shadow: 0 0 8px var(--neon-green);
  transition: width 0.4s ease;
  animation: progress-glow 2s ease-in-out infinite;
}

@keyframes progress-glow {
  0%, 100% { box-shadow: 0 0 6px var(--neon-green); }
  50%       { box-shadow: 0 0 14px var(--neon-green); }
}

.scan-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.scan-progress-label,
.scan-progress-pct {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* ============================================================
   FINGERPRINT CHECKLIST
   ============================================================ */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.fp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 10px 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.fp-item.active {
  color: var(--text-primary);
  border-color: var(--neon-green-dim);
}

.fp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon-green-faint);
  border: 1px solid var(--neon-green-dim);
  flex-shrink: 0;
}

.fp-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--neon-green);
}

.fp-item.pending .fp-check {
  background: var(--border);
  border-color: var(--border-light);
}

/* Illustration + donnees cote a cote */
.section-with-illustration {
  display: grid;
  gap: 40px;
  align-items: start;
}

.section-illustration img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(0,229,160,0.1), var(--shadow-card);
  border: 1px solid var(--border-glow);
}

/* ============================================================
   EMAIL FORM — enrichment
   ============================================================ */
.email-form-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.email-form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
}

.email-form {
  display: flex;
  gap: 12px;
  margin: 24px 0 16px;
}

.email-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
  min-height: 52px;
}

.email-input::placeholder {
  color: var(--text-muted);
}

.email-input:focus {
  outline: none;
  border-color: var(--neon-green-dim);
  box-shadow: 0 0 0 3px rgba(0,229,160,0.08);
}

.email-input.error {
  border-color: var(--neon-red);
}

.email-error-msg {
  font-size: 0.8125rem;
  color: var(--neon-red);
  margin-top: 6px;
  display: none;
}

.email-error-msg.visible {
  display: block;
}

.email-reassurance {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px;
}

.email-reassurance a {
  font-size: inherit;
  color: var(--text-secondary);
}

.skip-email {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 12px;
  transition: color var(--transition-fast);
}

.skip-email:hover {
  color: var(--text-secondary);
}

/* ============================================================
   BREACH RESULTS
   ============================================================ */
.breach-found-banner {
  background: linear-gradient(135deg, rgba(255,77,106,0.08), rgba(255,77,106,0.04));
  border: 1px solid rgba(255,77,106,0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.breach-count-badge {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-red);
  line-height: 1;
  flex-shrink: 0;
}

.breach-found-text strong {
  color: var(--text-primary);
}

.breach-list {
  display: grid;
  gap: 12px;
}

.breach-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition-fast);
}

.breach-item:hover {
  border-color: rgba(255,77,106,0.25);
}

.breach-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.breach-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.breach-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-red);
  margin-bottom: 8px;
}

.breach-data-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.data-type-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 2px 8px;
  background: var(--neon-red-dim);
  color: var(--neon-red);
  border-radius: 4px;
}

/* Gravatar found */
.gravatar-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 16px;
}

.gravatar-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--neon-amber-dim);
  box-shadow: 0 0 12px rgba(255,166,65,0.2);
  object-fit: cover;
  flex-shrink: 0;
}

.gravatar-info {
  flex: 1;
}

.gravatar-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--neon-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.gravatar-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.gravatar-explain {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Services detected tags */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: border-color var(--transition-fast);
}

.service-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--neon-green);
}

.service-tag:hover {
  border-color: var(--neon-green-dim);
  color: var(--text-primary);
}

/* ============================================================
   ATTAQUES SECTION
   ============================================================ */
.attacks-intro-banner {
  background: linear-gradient(135deg, rgba(255,166,65,0.06), rgba(255,77,106,0.04));
  border: 1px solid var(--neon-amber-dim);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.attacks-intro-banner img {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(255,77,106,0.1);
}

.attack-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  transition: border-color var(--transition-base);
}

.attack-card:hover {
  border-color: var(--border-glow);
}

.attack-card-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
}

.attack-number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.attack-type {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.attack-severity-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 3px 10px;
  border-radius: 4px;
}

/* Zone de streaming du texte IA */
.attack-stream-zone {
  padding: 28px;
  min-height: 140px;
  position: relative;
}

.attack-stream-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-word;
}

.attack-stream-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--neon-green);
  margin-left: 2px;
  animation: blink 1.1s steps(1) infinite;
  vertical-align: middle;
}

.attack-stream-placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stream-skeleton {
  height: 14px;
  background: var(--bg-elevated);
  border-radius: 4px;
  animation: shimmer 1.5s ease-in-out infinite;
}

.stream-skeleton:nth-child(2) { width: 80%; }
.stream-skeleton:nth-child(3) { width: 92%; }
.stream-skeleton:nth-child(4) { width: 65%; }

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.7; }
}

/* Autopsie */
.autopsy {
  margin: 0 28px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.autopsy-header {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition-fast);
}

.autopsy-header:hover {
  background: var(--bg-card);
}

.autopsy-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-amber);
}

.autopsy-toggle {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.autopsy.open .autopsy-toggle {
  transform: rotate(180deg);
}

.autopsy-body {
  padding: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: none;
}

.autopsy.open .autopsy-body {
  display: block;
}

.autopsy-body strong {
  color: var(--neon-amber);
}

.autopsy-stat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--neon-red);
  background: var(--neon-red-dim);
  padding: 2px 10px;
  border-radius: 4px;
  margin-top: 12px;
}

/* ============================================================
   OPT-IN HARCELEMENT
   ============================================================ */
.optin-section-wrap {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.optin-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.optin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-amber), var(--neon-red));
}

.optin-warning-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--neon-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding: 5px 12px;
  background: var(--neon-amber-dim);
  border-radius: 4px;
}

.optin-title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.optin-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.optin-social-proof {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.optin-skip {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.optin-skip:hover {
  color: var(--text-secondary);
}

/* Harcelement revealed content */
.harassment-content {
  display: none;
}

.harassment-content.revealed {
  display: block;
}

.harassment-safe-note {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--neon-amber);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.crisis-hotline {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-primary);
}

.crisis-hotline a {
  color: var(--neon-green);
}

/* ============================================================
   PRIVACY SCORE
   ============================================================ */
.score-section {
  text-align: center;
  padding: 80px 24px;
}

.score-ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
}

.score-ring {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}

.score-ring-fill {
  fill: none;
  stroke: var(--neon-green);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 565; /* 2pi * 90 */
  stroke-dashoffset: 565;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 6px var(--neon-green));
}

.score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.score-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.score-grade {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 8px;
}

.score-grade.grade-a { color: var(--neon-green); }
.score-grade.grade-b { color: #7fff6a; }
.score-grade.grade-c { color: var(--neon-amber); }
.score-grade.grade-d { color: #ff8c42; }
.score-grade.grade-f { color: var(--neon-red); }

.score-percentile {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* Score breakdown */
.score-breakdown {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.breakdown-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.breakdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.breakdown-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
}

.breakdown-score {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.breakdown-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.breakdown-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

.breakdown-detail {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   RECOMMANDATIONS
   ============================================================ */
.recommendations-section {
  padding: 0 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.rec-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.rec-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-elevated);
}

.rec-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.rec-priority {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neon-green-faint);
  border: 1px solid var(--neon-green-dim);
  color: var(--neon-green);
  margin-top: 2px;
}

.rec-title {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}

.rec-impact {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--neon-green);
  background: var(--neon-green-faint);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
  white-space: nowrap;
}

.rec-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.rec-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rec-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  padding: 7px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.rec-tool-link:hover {
  border-color: var(--neon-green-dim);
  color: var(--text-primary);
  background: var(--bg-card-hover);
  opacity: 1;
  text-decoration: none;
}

.rec-tool-link.affiliate::after {
  content: 'affilie';
  font-size: 0.625rem;
  color: var(--neon-amber);
  background: var(--neon-amber-dim);
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 2px;
}

.affiliate-transparency {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.6;
}

/* ============================================================
   PARTAGE VIRAL
   ============================================================ */
.share-section {
  text-align: center;
  padding: 40px 24px 80px;
}

.share-title {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.share-subtitle {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: all var(--transition-base);
  text-decoration: none;
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-secondary);
}

.share-btn:hover {
  border-color: var(--neon-green-dim);
  color: var(--text-primary);
  background: var(--bg-elevated);
  transform: translateY(-1px);
  opacity: 1;
  text-decoration: none;
}

.share-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   PAGES LEGALES
   ============================================================ */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .last-update {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-page p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--neon-green);
}

.legal-page .legal-section {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 32px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.page-404 .error-code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--neon-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.footer-logo:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-tagline a {
  color: var(--text-secondary);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--text-secondary);
  opacity: 1;
  text-decoration: none;
}

.footer-analytics {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-analytics a {
  color: var(--text-secondary);
}

.footer-legal-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-legal-note a {
  color: var(--text-secondary);
}

/* ============================================================
   COMMENT CA MARCHE / A PROPOS
   ============================================================ */
.info-page {
  padding: 120px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-page h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.info-page h1 .highlight {
  color: var(--neon-green);
}

.info-page h2 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-page h2::before {
  content: '//';
  color: var(--text-muted);
}

.info-page p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.info-page a { color: var(--neon-green); }

.step-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--neon-green);
  flex-shrink: 0;
  min-width: 32px;
  line-height: 1;
  margin-top: 2px;
}

.step-content h3 {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scan-progress-fill {
    transition: width 0.2s ease;
  }

  .score-ring-fill {
    transition: stroke-dashoffset 0.3s ease;
  }
}

/* ============================================================
   RESPONSIVE — Tablette 768px
   ============================================================ */
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-illustration {
    display: block;
  }

  .section-with-illustration {
    grid-template-columns: 1fr 320px;
  }

  .attacks-intro-banner {
    align-items: center;
  }

  .email-form {
    flex-direction: row;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-nav {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

  .footer-analytics {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-disclaimer {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — Desktop 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .nav {
    padding: 14px 40px;
  }

  .hero {
    padding: 120px 40px 80px;
  }

  .section {
    padding: 100px 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr 480px;
    gap: 64px;
  }
}

/* Mobile — masquer nav links derriere burger */
@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 20, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-menu-btn {
    display: flex;
  }

  .nav-menu-btn[aria-expanded="true"] .nav-menu-icon {
    background: transparent;
  }

  .nav-menu-btn[aria-expanded="true"] .nav-menu-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-menu-btn[aria-expanded="true"] .nav-menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .attacks-intro-banner {
    flex-direction: column;
  }

  .attacks-intro-banner img {
    width: 100%;
    max-width: 100%;
  }

  .data-grid-2 {
    grid-template-columns: 1fr;
  }

  .fp-grid {
    grid-template-columns: 1fr;
  }

  .email-form {
    flex-direction: column;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-with-illustration {
    grid-template-columns: 1fr;
  }
}
