/* ═══════════════════════════════════════════
   freecupholder.com — Global Stylesheet
   Hacker CRT Terminal Aesthetic
   ═══════════════════════════════════════════ */

:root {
  --green: #00ff41;
  --green-dim: #00cc33;
  --green-dark: #003300;
  --red: #ff0033;
  --amber: #ffaa00;
  --cyan: #00ffff;
  --magenta: #ff00ff;
  --bg: #0a0a0a;
  --bg-card: #0d1117;
  --border: #1a2a1a;
  --text-dim: #4a7a4a;
  --text-body: #8aff8a;
  --scanline-opacity: 0.04;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
  overflow-x: hidden;
  cursor: default;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── CRT Scanlines ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0, 255, 65, var(--scanline-opacity)) 2px,
    rgba(0, 255, 65, var(--scanline-opacity)) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── Noise grain ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dim); }

/* ── Matrix rain canvas ── */
#matrix-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.07;
}

/* ── Scan line sweep ── */
.scan-sweep {
  position: fixed;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.15;
  z-index: 9997;
  animation: scan-down 4s linear infinite;
  pointer-events: none;
}

/* ══════════════════════════
   KEYFRAMES
   ══════════════════════════ */
@keyframes glitch-1 {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-2px, 0); }
  20% { clip-path: inset(30% 0 40% 0); transform: translate(2px, 0); }
  40% { clip-path: inset(60% 0 10% 0); transform: translate(-1px, 0); }
  60% { clip-path: inset(10% 0 70% 0); transform: translate(1px, 0); }
  80% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 0); }
}
@keyframes glitch-2 {
  0%, 100% { clip-path: inset(90% 0 0 0); transform: translate(2px, 0); }
  25% { clip-path: inset(20% 0 50% 0); transform: translate(-3px, 0); }
  50% { clip-path: inset(50% 0 20% 0); transform: translate(1px, 0); }
  75% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, 0); }
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes pulse-glow { 0%, 100% { text-shadow: 0 0 10px var(--green), 0 0 20px var(--green); } 50% { text-shadow: 0 0 20px var(--green), 0 0 40px var(--green), 0 0 60px var(--green); } }
@keyframes scan-down { 0% { top: -5%; } 100% { top: 105%; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes warning-flash { 0%, 100% { border-color: var(--red); } 50% { border-color: transparent; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════
   NAVIGATION
   ══════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 8px var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .prompt-char {
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 16px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 1rem;
  padding: 6px 12px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  z-index: 100001;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999;
    background: #0a0a0a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

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

  .nav-links a {
    display: block;
    width: 260px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    padding: 18px 2rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:first-child {
    border-top: 1px solid var(--border);
  }

  .nav-links a:hover {
    color: var(--green);
    background: rgba(0, 255, 65, 0.06);
  }

  .nav-links a.active {
    color: var(--green);
    text-shadow: 0 0 10px var(--green);
  }

  .nav-links a::after {
    display: none !important;
  }

  .site-nav {
    z-index: 100000;
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 4rem) !important;
  }
}

/* ══════════════════════════
   SHARED LAYOUT
   ══════════════════════════ */
.page-body {
  flex: 1;
  padding-top: 56px; /* nav height */
}

.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.body-text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.body-text strong { color: var(--green); }
.body-text em { color: var(--text-body); font-style: normal; }
.body-text a { color: var(--cyan); text-decoration: none; border-bottom: 1px dotted var(--cyan); transition: color 0.3s; }
.body-text a:hover { color: var(--green); }

/* ══════════════════════════
   HERO (index only)
   ══════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.hero-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 6px 20px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s 0.5s forwards;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 6rem);
  text-align: center;
  line-height: 1.1;
  position: relative;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-title .line1 { display: block; color: var(--green); }
.hero-title .line2 {
  display: block;
  font-size: 0.4em;
  color: var(--text-dim);
  letter-spacing: 8px;
  margin-top: 0.5rem;
}

.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: block;
}
.hero-title::before {
  color: var(--cyan);
  animation: glitch-1 3s infinite linear;
  opacity: 0.6;
}
.hero-title::after {
  color: var(--magenta);
  animation: glitch-2 3s infinite linear;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 2rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.8;
  opacity: 0;
  animation: fade-up 0.8s 1s forwards;
}

.hero-subtitle strong { color: var(--green); }
.hero-subtitle em { color: var(--text-body); }

.hero-prompt {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--green-dim);
  opacity: 0;
  animation: fade-up 0.8s 1.5s forwards;
}

.hero-prompt .cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--green);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

.scroll-arrow {
  position: absolute;
  bottom: 3rem;
  color: var(--green-dim);
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0;
  animation: float 2s ease-in-out infinite, fade-up 0.8s 2s forwards;
}

/* ══════════════════════════
   TERMINAL CARDS
   ══════════════════════════ */
.terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.05), inset 0 0 60px rgba(0,0,0,0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.r { background: #ff5f57; }
.terminal-dot.y { background: #febc2e; }
.terminal-dot.g { background: #28c840; }

.terminal-title {
  font-size: 0.7rem;
  color: #555;
  margin-left: 8px;
  letter-spacing: 1px;
}

.terminal-body {
  padding: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-body);
}

.terminal-body .prompt { color: var(--cyan); }
.terminal-body .comment { color: #555; }
.terminal-body .danger { color: var(--red); font-weight: 700; }
.terminal-body .warn { color: var(--amber); }
.terminal-body .highlight { color: var(--green); text-shadow: 0 0 6px var(--green); }

/* ══════════════════════════
   TIMELINE
   ══════════════════════════ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-dark), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--bg);
  box-shadow: 0 0 10px var(--green);
}

.timeline-date {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.timeline-text {
  color: var(--text-body);
  font-size: 0.82rem;
  line-height: 1.7;
}

.timeline-text strong { color: var(--green); }

/* ══════════════════════════
   WARNING BOX
   ══════════════════════════ */
.warning-box {
  border: 1px solid var(--red);
  background: rgba(255, 0, 51, 0.05);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  animation: warning-flash 2s ease-in-out infinite;
}

.warning-box::before {
  content: '⚠ WARNING';
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--bg);
  padding: 0 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
}

.warning-box p {
  color: #ff6666;
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ══════════════════════════
   THREAT CARDS
   ══════════════════════════ */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.threat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.threat-card:hover {
  border-color: var(--green-dim);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
  transform: translateY(-2px);
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.threat-card .icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.threat-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--green);
}

.threat-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ══════════════════════════
   FAKE DOWNLOAD BUTTON
   ══════════════════════════ */
.fake-download-area {
  text-align: center;
  margin: 3rem 0;
}

.fake-btn {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fake-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.fake-btn:hover::before { transform: translateX(0); }
.fake-btn:hover { color: var(--bg); }
.fake-btn span { position: relative; z-index: 1; }

.fake-result {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--red);
  min-height: 3rem;
  line-height: 1.7;
}

/* ══════════════════════════
   STATS BAR
   ══════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 3rem 0;
}

.stat-item {
  background: var(--bg-card);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 15px var(--green);
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ══════════════════════════
   PAGE HERO (sub-pages)
   ══════════════════════════ */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  animation: pulse-glow 3s ease-in-out infinite;
}

.page-hero .page-subtitle {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ══════════════════════════
   CONTACT FORM
   ══════════════════════════ */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dim);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--red);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #2a3a2a;
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-select option {
  background: var(--bg);
  color: var(--text-body);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-submit {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.form-submit:hover::before { transform: translateX(0); }
.form-submit:hover { color: var(--bg); }
.form-submit span { position: relative; z-index: 1; }

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-submit:disabled::before { display: none; }

.form-status {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.7;
  min-height: 2rem;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }
.form-status.sending { color: var(--amber); }

.form-note {
  font-size: 0.68rem;
  color: #333;
  margin-top: 2rem;
  line-height: 1.6;
}

.form-note a { color: #555; text-decoration: none; }

/* ══════════════════════════
   ABOUT PAGE — SERVICE CARDS
   ══════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--green-dim);
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.08);
  transform: translateY(-3px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--cyan));
}

.service-card .service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ══════════════════════════
   RESOURCES PAGE
   ══════════════════════════ */
.resource-list {
  margin: 2rem 0;
}

.resource-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.resource-item:hover {
  border-color: var(--green-dim);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.06);
}

.resource-item .res-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-dark);
  min-width: 50px;
  text-align: center;
  line-height: 1;
  padding-top: 4px;
}

.resource-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.resource-item p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.resource-item a {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 1px;
  border-bottom: 1px dotted var(--cyan);
  transition: color 0.3s;
}

.resource-item a:hover { color: var(--green); }

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: auto;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--green); }

footer .domain {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--green-dim);
  letter-spacing: 4px;
}

footer .tagline {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
  letter-spacing: 2px;
}

footer .credit {
  font-size: 0.65rem;
  color: #333;
  margin-top: 1.5rem;
}

footer .credit a {
  color: #555;
  text-decoration: none;
  border-bottom: 1px dotted #333;
  transition: color 0.3s;
}

footer .credit a:hover { color: var(--green-dim); }

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 600px) {
  .terminal-body { font-size: 0.72rem; padding: 1rem; }
  .threat-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 1.2rem; }
  .resource-item { flex-direction: column; gap: 0.8rem; }
  .resource-item .res-number { min-width: auto; }
  .page-hero { padding: 6rem 1.2rem 3rem; }
}
