:root {
  color-scheme: dark;
  --bg: #07070a;
  --bg-soft: #0d1117;
  --panel: rgba(16, 18, 24, 0.86);
  --panel-line: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --text-soft: rgba(245, 245, 247, 0.7);
  --accent: #ff4d4d;
  --accent-soft: rgba(255, 77, 77, 0.18);
  --blue: rgba(82, 180, 255, 0.26);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Segoe UI, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(229, 9, 20, 0.18), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(34, 144, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #07070a 0%, #0a0d12 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 84%);
  opacity: 0.18;
  pointer-events: none;
}

.decoy-layout {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.decoy-hero {
  margin-bottom: 34px;
}

.decoy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 102, 102, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 800;
}

.decoy-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255, 102, 102, 0.72);
}

.decoy-hero h1 {
  margin: 0 0 18px;
  font-family: 'Bebas Neue', Inter, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #fff8f8;
}

.decoy-lead,
.decoy-note p,
.decoy-card li {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.decoy-lead {
  max-width: 68ch;
}

.decoy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.decoy-card,
.decoy-note {
  border: 1px solid var(--panel-line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.decoy-card {
  padding: 24px;
}

.decoy-note {
  padding: 28px;
}

.decoy-card h2,
.decoy-note h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: #fff3f3;
}

.decoy-card ul {
  margin: 0;
  padding-left: 18px;
}

.decoy-card li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .decoy-grid {
    grid-template-columns: 1fr;
  }
}
