/* ═══════════════════════════════════════════
   HONEYPOT.IT-HELP.TECH — Styles
   Dark. Sassy. Educational.
   ═══════════════════════════════════════════ */

:root {
  /* Honey palette */
  --honey:        #f5a623;
  --honey-light:  #ffd580;
  --honey-dark:   #c47d10;
  --honey-glow:   rgba(245, 166, 35, 0.3);

  /* Danger / warning */
  --warn:         #ff4757;
  --warn-glow:    rgba(255, 71, 87, 0.3);

  /* Success / safe */
  --safe:         #2ed573;
  --safe-glow:    rgba(46, 213, 115, 0.2);

  /* Backgrounds */
  --bg-deep:      #0a0a0f;
  --bg-surface:   #12121a;
  --bg-card:      #1a1a26;
  --bg-elevated:  #222233;

  /* Text */
  --text-primary:    #e8e8f0;
  --text-secondary:  #a8a8c4;
  --text-dim:        #757590;

  /* Borders */
  --border:       #2a2a3d;
  --border-honey: rgba(245, 166, 35, 0.25);

  /* Fonts */
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', 'Space Grotesk', sans-serif;
  --font-handwritten: 'Caveat', cursive;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ─── Scanline Overlay ─── */
.scanline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

/* ─── Phase System ─── */
.phase {
  display: none;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.phase.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

/* ═══════════════════════════════════════════
   PHASE 1: LANDING
   ═══════════════════════════════════════════ */
.landing-container {
  max-width: 780px;
  width: 100%;
  text-align: center;
}

/* Honeypot Icon */
.honeypot-icon {
  position: relative;
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.honeypot-icon.small {
  font-size: 3rem;
}

.pot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--honey-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Typing Intro */
.typing-intro {
  margin-bottom: 2.5rem;
}

.sassy-line {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  animation: type-in 0.5s ease forwards;
}

.line-1 { animation-delay: 0.5s; color: var(--text-secondary); font-size: 1.2rem; }
.line-2 { animation-delay: 1.5s; }
.line-3 { animation-delay: 2.8s; color: var(--honey); font-size: 1.8rem; }

@keyframes type-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Honeypot Card */
.honeypot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-honey);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  text-align: left;
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
  animation-delay: 3.8s;
}

.card-header {
  background: var(--bg-elevated);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-prompt {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--honey);
}

.blink-cursor {
  color: var(--honey);
  animation: blink 1s step-end infinite;
}

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

.card-body {
  padding: 1.5rem;
}

.honey-quote {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.highlight-honey {
  color: var(--honey);
  font-weight: 700;
  text-shadow: 0 0 20px var(--honey-glow);
}

.highlight-warn {
  color: var(--warn);
  font-weight: 700;
}

.honey-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Discovery Methods */
.how-you-got-here {
  margin-bottom: 2.5rem;
  text-align: left;
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
  animation-delay: 4.5s;
}

.breadcrumb-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.discovery-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.discovery-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.method-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.method-item:hover {
  border-color: var(--honey);
}

.method-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.method-item strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.method-detail {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.method-detail code {
  color: var(--honey);
  background: none;
  padding: 0;
}

.discovery-punchline {
  font-size: 1rem;
  color: var(--honey-light);
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
}

/* Defense Education Callout */
.defense-callout {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.06), rgba(46, 213, 115, 0.02));
  border: 1px solid rgba(46, 213, 115, 0.2);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.defense-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(46, 213, 115, 0.12);
}

.defense-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--safe);
}

.defense-body {
  padding: 1.25rem 1.5rem;
}

.defense-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.defense-body p:last-child {
  margin-bottom: 0;
}

.defense-body strong {
  color: var(--text-primary);
}

.defense-body a {
  color: var(--honey);
  text-decoration: none;
}

.defense-body a:hover {
  text-decoration: underline;
}

.defense-tldr {
  color: var(--safe) !important;
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
  animation-delay: 5.2s;
}

.cta-dare {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.btn-honey {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--honey-dark), var(--honey));
  color: var(--bg-deep);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px var(--honey-glow);
}

.btn-honey:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}

.btn-icon {
  font-size: 1.3rem;
}

.cta-chicken {
  margin-top: 1.25rem;
}

.chicken-link {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.chicken-link:hover {
  color: var(--text-secondary);
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   PHASE 2: CONSENT
   ═══════════════════════════════════════════ */
.consent-container {
  max-width: 760px;
  width: 100%;
}

.consent-header {
  text-align: center;
  margin-bottom: 2rem;
}

.lock-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.consent-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.consent-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--text-dim);
}

/* Consent Box */
.consent-box {
  background: var(--bg-card);
  border: 1px solid var(--border-honey);
  border-radius: 14px;
  overflow: hidden;
}

.consent-box-header {
  background: var(--bg-elevated);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.consent-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--honey);
}

.consent-content {
  padding: 1.5rem;
}

.consent-content > p:first-child {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Consent List */
.consent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.consent-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.consent-list li:hover {
  border-color: var(--honey);
}

.consent-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.consent-list strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.consent-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Kicker */
.consent-kicker {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(245, 166, 35, 0.03));
  border: 1px solid var(--border-honey);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.kicker-text {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.kicker-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-primary);
  margin: 0;
}

.kicker-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Web3 Callout */
.web3-callout {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
}

.web3-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #818cf8;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.web3-callout p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.web3-callout em {
  color: #818cf8;
  font-style: normal;
  font-weight: 700;
}

/* Consent Actions */
.consent-actions {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-agree {
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--honey-dark), var(--honey));
  color: var(--bg-deep);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px var(--honey-glow);
}

.btn-agree:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}

.btn-decline {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-decline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.consent-legal-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 500px;
  margin-top: 0.5rem;
}

.consent-legal-note a {
  color: var(--honey);
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   PHASE 3: THE REVEAL
   ═══════════════════════════════════════════ */
.reveal-container {
  max-width: 850px;
  width: 100%;
}

.reveal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reveal-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.reveal-emoji {
  display: inline-block;
  animation: float 2s ease-in-out infinite;
}

.reveal-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Data Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.data-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(15px);
  animation: tile-in 0.4s ease forwards;
}

.data-tile-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.data-tile-icon {
  font-size: 1.25rem;
}

.data-tile-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 700;
}

.data-tile-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--honey-light);
  word-break: break-all;
  line-height: 1.5;
}

.data-tile-value.warn {
  color: var(--warn);
}

@keyframes tile-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Education Section */
.reveal-education {
  margin-bottom: 3rem;
}

.reveal-education h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.lesson-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.lesson-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.lesson-card:hover {
  border-color: var(--honey);
}

.lesson-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.lesson-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.lesson-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.reveal-cta {
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(245, 166, 35, 0.02));
  border: 1px solid var(--border-honey);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.cta-message {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--honey);
  color: var(--bg-deep);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--honey-glow);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}

.cta-footer {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.cta-footer a {
  color: var(--honey);
  text-decoration: none;
}

.cta-footer a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   PHASE: DECLINED
   ═══════════════════════════════════════════ */
.declined-container {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.declined-container h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--safe);
  margin-bottom: 1rem;
}

.declined-message {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

code {
  font-family: var(--font-mono);
}

.declined-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ═══════════════════════════════════════════
   SKULLS — DEF CON vibes
   ═══════════════════════════════════════════ */

/* Floating background skulls */
.skull-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.skull-field a {
  pointer-events: auto;
}

.skull-float {
  position: absolute;
  animation: skull-drift linear infinite;
}

.skull-float.s1 { width: 80px; top: 8%; left: 5%; animation-duration: 25s; animation-delay: 0s; }
.skull-float.s2 { width: 50px; top: 25%; right: 8%; animation-duration: 30s; animation-delay: -5s; }
.skull-float.s3 { width: 65px; top: 55%; left: 3%; animation-duration: 22s; animation-delay: -10s; }
.skull-float.s4 { width: 45px; top: 70%; right: 5%; animation-duration: 28s; animation-delay: -3s; }
.skull-float.s5 { width: 55px; top: 40%; left: 85%; animation-duration: 26s; animation-delay: -8s; }
.skull-float.s6 { width: 70px; top: 85%; left: 50%; animation-duration: 32s; animation-delay: -15s; }

img.skull-float {
  opacity: 0.07;
  border-radius: 50%;
  object-fit: cover;
}

img[src="deadowl-float.png"] {
  border: 2px solid #b91c1c;
  box-shadow: 0 0 6px rgba(185, 28, 28, 0.4);
  box-sizing: border-box;
  background: #1a0a0a;
}

.owl-hero {
  width: 52px !important;
  height: 52px !important;
  border-width: 3px !important;
  box-shadow: 0 0 12px rgba(185, 28, 28, 0.5) !important;
  opacity: 0.8 !important;
}

@keyframes skull-drift {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.07; }
  25% { opacity: 0.12; }
  50% { transform: translateY(-30px) rotate(8deg); opacity: 0.09; }
  75% { opacity: 0.12; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.07; }
}

/* Flanking skulls next to honeypot icon */
.skull-flank {
  opacity: 0;
  animation: skull-flank-in 0.6s ease forwards;
  text-decoration: none;
}

.skull-flank.left { animation-delay: 3.2s; }
.skull-flank.right { animation-delay: 3.4s; }

.skull-sm {
  width: 36px;
  height: 36px;
  opacity: 0.5;
  animation: skull-pulse 3s ease-in-out infinite;
  border-radius: 50%;
  object-fit: cover;
}

.skull-flank.right .skull-sm {
  animation-delay: 1.5s;
}

@keyframes skull-flank-in {
  to { opacity: 1; }
}

@keyframes skull-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Inline skulls in headings */
.skull-inline {
  width: 36px;
  height: 36px;
  opacity: 0.5;
  vertical-align: middle;
  margin: 0 0.25rem;
  border-radius: 50%;
  object-fit: cover;
}

/* Section header skulls */
.skull-section {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  vertical-align: middle;
  margin: 0 0.4rem;
  border-radius: 50%;
  object-fit: cover;
}

/* DEF CON Credit */
.defcon-credit {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.defcon-skulls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.skull-credit-logo {
  width: 80px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.skull-credit-logo:hover {
  opacity: 1;
}

.skull-credit {
  width: 36px;
  height: 36px;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
  border-radius: 50%;
  object-fit: cover;
}

.skull-credit:hover {
  opacity: 0.8;
  transform: scale(1.15);
}

.defcon-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

.defcon-text a {
  color: var(--honey);
  text-decoration: none;
  font-weight: 600;
}

.defcon-text a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   SCANNING ANIMATION
   ═══════════════════════════════════════════ */
.scanning-overlay {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
}

.scan-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--honey);
  border-radius: 50%;
  opacity: 0;
  animation: scan-pulse 2s ease-out infinite;
}

.scan-ring.ring-2 { animation-delay: 0.5s; }
.scan-ring.ring-3 { animation-delay: 1s; }

@keyframes scan-pulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

.scan-icon {
  font-size: 2.5rem;
  z-index: 1;
  animation: float 2s ease-in-out infinite;
}

.scan-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--honey);
  margin-bottom: 0.5rem;
}

.scan-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.scan-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.scan-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  transition: color 0.3s;
}

.scan-step.active {
  color: var(--honey);
}

.scan-step.complete {
  color: var(--safe);
}

.step-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.scan-step.active .step-indicator {
  background: var(--honey);
  box-shadow: 0 0 8px var(--honey-glow);
  animation: step-blink 0.8s ease-in-out infinite;
}

.scan-step.complete .step-indicator {
  background: var(--safe);
  box-shadow: 0 0 8px var(--safe-glow);
}

@keyframes step-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   NMAP / DATA SECTION HEADERS
   ═══════════════════════════════════════════ */
.data-section-header {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1rem 0 0.25rem;
  border-bottom: 1px solid var(--border);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.data-section-header.nmap-section {
  color: var(--warn);
  border-bottom-color: rgba(255, 71, 87, 0.3);
  margin-top: 1.5rem;
}

.section-icon {
  font-size: 1.25rem;
}

.nmap-disclosure {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 1rem 1.25rem;
  background: rgba(255, 71, 87, 0.05);
  border: 1px solid rgba(255, 71, 87, 0.15);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.nmap-tile {
  border-color: rgba(255, 71, 87, 0.2);
}

.nmap-tile:hover {
  border-color: var(--warn);
}

.data-section-header.session-section {
  color: #818cf8;
  border-bottom-color: rgba(129, 140, 248, 0.3);
  margin-top: 1.5rem;
}

.session-disclosure {
  background: rgba(129, 140, 248, 0.05);
  border-color: rgba(129, 140, 248, 0.15);
}

.session-tile {
  border-color: rgba(129, 140, 248, 0.2);
}

.session-tile:hover {
  border-color: #818cf8;
}

.data-section-header.web3-section {
  color: #a78bfa;
  border-bottom-color: rgba(167, 139, 250, 0.3);
  margin-top: 1.5rem;
}

.web3-disclosure {
  background: rgba(167, 139, 250, 0.05);
  border-color: rgba(167, 139, 250, 0.15);
}

.web3-tile {
  border-color: rgba(167, 139, 250, 0.2);
}

.web3-tile:hover {
  border-color: #a78bfa;
}

.data-section-header.vpn-section {
  color: #f97316;
  border-bottom-color: rgba(249, 115, 22, 0.3);
  margin-top: 1.5rem;
}

.vpn-disclosure {
  background: rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.15);
}

.vpn-tile {
  border-color: rgba(249, 115, 22, 0.2);
}

.vpn-tile:hover {
  border-color: #f97316;
}

/* ─── CISA Section ─── */
.data-section-header.cisa-section {
  color: #3b82f6;
  border-bottom-color: rgba(59, 130, 246, 0.3);
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.cisa-disclosure {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.25);
  color: #c8d6e5;
  line-height: 1.7;
}

.cisa-disclosure code {
  background: rgba(59, 130, 246, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #93c5fd;
}

.cisa-disclosure ul li {
  margin-bottom: 4px;
}

.cisa-disclosure strong {
  color: #60a5fa;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .phase {
    padding: 1.5rem 1rem;
  }

  .sassy-line { font-size: 1.2rem; }
  .line-3 { font-size: 1.4rem; }

  .skull-field { display: none; }
  .skull-flank { display: none; }
  .skull-inline { width: 24px; height: 24px; }

  .reveal-title {
    font-size: 1.8rem;
  }

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

  .lesson-cards {
    grid-template-columns: 1fr;
  }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--honey-dark);
}

/* ─── Selection ─── */
::selection {
  background: var(--honey);
  color: var(--bg-deep);
}
