/* WP Guardian — design tokens */
:root {
  /* base navy palette — matches platform */
  --bg-0: #050a14;
  --bg-1: #0a1424;
  --bg-2: #0f1d33;
  --bg-3: #142545;
  --surface: rgba(15, 29, 51, 0.6);
  --surface-2: rgba(20, 37, 69, 0.55);
  --border: rgba(58, 96, 158, 0.18);
  --border-strong: rgba(58, 96, 158, 0.36);

  /* accents */
  --primary: #1E9CFF;
  --primary-2: #57b9ff;
  --primary-glow: rgba(30, 156, 255, 0.45);

  --danger: #ff4d4d;
  --warn: #ffa647;
  --ok: #22c55e;

  /* text */
  --text: #e8eef7;
  --text-muted: #8aa0c2;
  --text-dim: #5a7099;

  /* type */
  --font-display: 'Saira', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
}

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

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Global background: gradient + grid + scanlines + noise ─── */
.bg-stack {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(30, 156, 255, 0.18), transparent 60%),
    radial-gradient(900px 700px at 90% 30%, rgba(58, 90, 200, 0.12), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(30, 156, 255, 0.10), transparent 70%),
    linear-gradient(180deg, #050a14, #02060d);
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 156, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 156, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.bg-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}
.bg-noise {
  position: absolute; inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ─── Common sections ─── */
.section {
  position: relative;
  padding: 110px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.section.tight { padding: 70px 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--primary);
}
.eyebrow.center::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
}

.h1 { font-size: clamp(48px, 7vw, 96px); }
.h2 { font-size: clamp(36px, 5vw, 64px); }
.h3 { font-size: clamp(24px, 3vw, 36px); }

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
}

.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.mono { font-family: var(--font-mono); }
.italic { font-style: italic; }

.glow-text {
  text-shadow: 0 0 24px rgba(30, 156, 255, 0.35);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 8px 32px rgba(30,156,255,0.35),
    0 0 60px rgba(30,156,255,0.18);
}
.btn-primary:hover { background: #2eabff; transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-lg { height: 54px; padding: 0 28px; font-size: 15px; }

/* ─── Cards ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  backdrop-filter: blur(8px);
  position: relative;
}
.card-strong {
  background: linear-gradient(180deg, rgba(20, 37, 69, 0.85), rgba(15, 29, 51, 0.5));
  border-color: var(--border-strong);
}

/* ─── Badge / Status pills ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(20, 37, 69, 0.6);
  color: var(--text-muted);
}
.pill.live { color: var(--ok); border-color: rgba(34,197,94,0.3); }
.pill.warn { color: var(--warn); border-color: rgba(255,166,71,0.3); }
.pill.danger { color: var(--danger); border-color: rgba(255,77,77,0.3); }
.pill .dot { width:6px; height:6px; border-radius:50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.pill .dot.pulse { animation: pulse 1.6s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

/* ─── Navbar ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  background: rgba(5, 10, 20, 0.65);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 28px; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* hamburger button */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  background: rgba(20,37,69,0.5);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.burger {
  width: 18px; height: 14px;
  display: inline-flex; flex-direction: column; justify-content: space-between;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu overlay */
.nav-mobile {
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(5,10,20,0.92);
  backdrop-filter: blur(20px) saturate(140%);
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  display: flex;
  flex-direction: column;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 32px 24px;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.nav-mobile a:not(.btn) {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--text);
}

@media (max-width: 900px) {
  .nav-links-desktop, .nav-cta-desktop { display: none !important; }
  .nav-burger { display: inline-flex; }
  .nav-inner { padding: 14px 20px; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero-inner { max-width: 1320px; margin: 0 auto; position: relative; }

/* attack map overlay */
.attack-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .6;
}

/* terminal / log feed */
.terminal {
  background: linear-gradient(180deg, rgba(5,10,20,0.9), rgba(10,20,36,0.95));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(30,156,255,0.05) inset;
}
.terminal-hd {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(10,20,36,0.8);
  border-bottom: 1px solid var(--border);
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.terminal-body {
  padding: 14px;
  max-height: 360px;
  overflow: hidden;
  position: relative;
}
.terminal-body::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 80px;
  background: linear-gradient(180deg, transparent, rgba(5,10,20,0.95));
  pointer-events: none;
}
.term-line {
  display: flex; gap: 8px; padding: 3px 0;
  white-space: nowrap;
  animation: slide-up 0.4s ease;
}
.term-ts { color: var(--text-dim); }
.term-tag { padding: 0 6px; border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.term-tag.block { background: rgba(255,77,77,0.15); color: var(--danger); }
.term-tag.ok { background: rgba(34,197,94,0.15); color: var(--ok); }
.term-tag.warn { background: rgba(255,166,71,0.15); color: var(--warn); }
.term-tag.info { background: rgba(30,156,255,0.15); color: var(--primary); }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Stat block ─── */
.stat-mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.85;
  color: var(--text);
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(30,156,255,0.25);
}
.stat-mega.danger { color: var(--danger); text-shadow: 0 0 60px rgba(255,77,77,0.25); }

/* Marquee / ticker */
.ticker {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10,20,36,0.4);
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  gap: 64px;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
  padding-left: 64px;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 12px;
}
.ticker-item strong { color: var(--primary); font-weight: 700; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION HEADING block */
.sec-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 56px; max-width: 880px; }
.sec-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }

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

@media (max-width: 1024px) {
  .grid-3, .grid-4, .grid-fears { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-inner.hero-split { grid-template-columns: 1fr !important; gap: 40px !important; }
  .h1 { font-size: clamp(40px, 9vw, 64px) !important; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-fears { grid-template-columns: 1fr; }
  .section { padding: 70px 20px; }
  .hero { padding: 50px 20px 70px; }
  .nav-inner { padding: 14px 20px; }
  .display.h2 { font-size: clamp(28px, 7vw, 44px) !important; }
  .stat-mega { font-size: clamp(64px, 18vw, 110px) !important; }
  .plan-card { padding: 26px 22px; }
  .plan-name { font-size: 26px; }
  .plan-price .amount { font-size: 44px; }
  .terminal-body { font-size: 11px; }
  .term-line { font-size: 11px; }
  .footer { padding: 50px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-strip { padding: 32px 22px; margin: 0 20px; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-vs { padding: 4px 0; }
}

/* Stacked plans responsive */
.plan-stacked-card {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .plan-stacked-card { grid-template-columns: 1fr !important; gap: 24px !important; }
  .plan-stacked-card ul { grid-template-columns: 1fr !important; }
}

/* Prevent horizontal overflow from terminal lines */
.terminal-body { overflow-x: hidden; }
.term-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Animated counter style ─── */
.counter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ─── World map dots animation ─── */
.threat-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 12px var(--danger);
  animation: threat-blink 2s ease-in-out infinite;
}
@keyframes threat-blink {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.4); }
}
.threat-ring {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid var(--danger);
  animation: ring-expand 2s ease-out infinite;
}
@keyframes ring-expand {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(8); }
}

/* alert card */
.alert-card {
  background: linear-gradient(180deg, rgba(255,77,77,0.08), rgba(15,29,51,0.6));
  border: 1px solid rgba(255,77,77,0.2);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
}
.alert-card::before {
  content: '';
  position: absolute; left: 0; top: 16px; bottom: 16px;
  width: 3px; border-radius: 2px;
  background: var(--danger);
  box-shadow: 0 0 12px var(--danger);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(5,10,20,0.6);
  padding: 60px 32px 40px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer li { font-size: 14px; color: var(--text-muted); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.faq-q-text { font-size: 18px; font-weight: 500; color: var(--text); }
.faq-toggle {
  font-family: var(--font-mono); color: var(--primary);
  font-size: 22px; transition: transform .2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, margin-top .3s ease;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 16px; }

/* ─── Plans / pricing ─── */
.plan-card {
  background: linear-gradient(180deg, rgba(20, 37, 69, 0.65), rgba(10,20,36,0.5));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.plan-card.featured {
  border-color: var(--primary);
  background:
    radial-gradient(600px 200px at 50% -20%, rgba(30,156,255,0.18), transparent),
    linear-gradient(180deg, rgba(30,156,255,0.06), rgba(20,37,69,0.65));
  box-shadow: 0 30px 80px rgba(30,156,255,0.18), 0 0 0 1px rgba(30,156,255,0.15) inset;
}
.plan-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}
.plan-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.plan-sub { font-size: 13.5px; color: var(--text-muted); margin: 6px 0 22px; min-height: 40px; line-height: 1.5; }
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-price .amount {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 56px; line-height: 1;
}
.plan-price .per { color: var(--text-muted); font-size: 13px; }
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-muted);
  line-height: 1.5;
}
.plan-features li svg { flex-shrink: 0; margin-top: 2px; }
.plan-features li.strong { color: var(--text); }

/* Comparison table */
.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.plan-table th, .plan-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.plan-table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-align: center;
  background: rgba(10,20,36,0.4);
}
.plan-table thead th:first-child { text-align: left; }
.plan-table thead th.featured {
  color: var(--primary);
  background: rgba(30,156,255,0.08);
  border-top: 2px solid var(--primary);
}
.plan-table tbody td { color: var(--text-muted); text-align: center; }
.plan-table tbody td:first-child { color: var(--text); text-align: left; font-weight: 500; }
.plan-table tbody td.featured { background: rgba(30,156,255,0.04); color: var(--text); font-weight: 500; }
.plan-table .check { color: var(--ok); font-size: 16px; }
.plan-table .dash { color: var(--text-dim); }
.plan-table tr.section-row td {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: rgba(10,20,36,0.6);
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}

/* Process steps */
.step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.step-title { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 22px; text-transform: uppercase; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CTA strip */
.cta-strip {
  position: relative;
  margin: 0 32px;
  max-width: 1280px;
  border-radius: 24px;
  padding: 64px 56px;
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(30,156,255,0.25), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(30,156,255,0.18), transparent 60%),
    linear-gradient(180deg, rgba(20,37,69,0.85), rgba(10,20,36,0.95));
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.cta-strip-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  position: relative; z-index: 2;
}
@media (max-width: 768px) {
  .cta-strip { padding: 40px 28px; margin: 0 20px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* Browser frame for platform screenshots */
.frame {
  background: rgba(10,20,36,0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.frame-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(15,29,51,0.85);
  border-bottom: 1px solid var(--border);
}
.frame-dots { display: flex; gap: 6px; margin-right: 10px; }
.frame-dot { width: 10px; height: 10px; border-radius: 50%; }
.frame-dot.r { background: #ff5f56; }
.frame-dot.y { background: #ffbd2e; }
.frame-dot.g { background: #27c93f; }
.frame-url {
  flex: 1;
  background: rgba(10,20,36,0.6);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.frame-body img { width: 100%; display: block; }

/* Consequences cards */
.csq-card {
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.csq-card .csq-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,77,77,0.1);
  color: var(--danger);
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}
.csq-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.csq-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Fear card */
.fear-card {
  padding: 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .2s, transform .2s;
}
.fear-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.fear-num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 900;
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1;
  opacity: 0.7;
}
.fear-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--text);
}
.fear-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }

/* Analogy section */
.analogy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .analogy { grid-template-columns: 1fr; }
}
.analogy-visual {
  background: linear-gradient(180deg, rgba(20,37,69,0.6), rgba(10,20,36,0.7));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 16px;
}
.compare-side {
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.compare-bad {
  background: rgba(255, 77, 77, 0.06);
  border: 1px solid rgba(255,77,77,0.2);
  color: var(--text-muted);
}
.compare-good {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--text);
}
.compare-vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}
