/* ═══════════════════════════════════════════════════
   BK.NET — CYBERPUNK SHARED STYLES
   Boris Katz IT Services · v2.0
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

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

:root {
  --bg: #050818;
  --bg2: #0a0e22;
  --bg3: #0d142d;
  --panel: rgba(13, 20, 45, 0.6);
  --panel-solid: #0d142d;
  --border: rgba(0, 240, 255, 0.18);
  --border-strong: rgba(0, 240, 255, 0.5);
  --neon-cyan: #00f0ff;
  --neon-pink: #ff00aa;
  --neon-purple: #b347ff;
  --neon-green: #00ff88;
  --neon-yellow: #ffd700;
  --text: #d9e4ff;
  --muted: #7d8cb5;
  --muted2: #4a5680;
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.3);
  --glow-pink: 0 0 20px rgba(255, 0, 170, 0.6), 0 0 40px rgba(255, 0, 170, 0.3);
  --glow-purple: 0 0 20px rgba(179, 71, 255, 0.5);
  --ff-display: 'Orbitron', sans-serif;
  --ff-body: 'Rajdhani', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  min-height: 100vh;
}

/* ═══ BACKGROUND GRID & EFFECTS ═══ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(179, 71, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255, 0, 170, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Scanlines effect */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    rgba(0, 240, 255, 0.015) 1px,
    transparent 2px,
    transparent 4px
  );
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ ACCESSIBILITY ═══ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--neon-cyan);
  color: #000;
  padding: 10px 20px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
  font-family: var(--ff-mono);
}
.skip-link:focus { top: 16px; }

*:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

/* ═══ NAV ═══ */
nav.cyber-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4%;
  background: rgba(5, 8, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.cyber-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.6;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
}
.logo-link img {
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-shadow: var(--glow-cyan);
  position: relative;
}
.logo-text::before {
  content: 'BK.NET';
  position: absolute;
  left: 2px; top: 0;
  color: var(--neon-pink);
  opacity: 0.7;
  z-index: -1;
}
.logo-tag {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--neon-pink);
  letter-spacing: 2px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-menu a::before {
  content: '>';
  position: absolute;
  right: -14px;
  opacity: 0;
  transition: all 0.2s;
  color: var(--neon-cyan);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan);
}
.nav-menu a:hover::before, .nav-menu a.active::before {
  opacity: 1;
  right: -18px;
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple)) !important;
  color: #000 !important;
  padding: 8px 22px !important;
  font-weight: 700 !important;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border: none;
  transition: all 0.2s;
}
.nav-cta-btn:hover {
  text-shadow: none !important;
  filter: brightness(1.2);
}
.nav-cta-btn::before { display: none !important; }

.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.hamburger-btn span {
  width: 18px; height: 1px;
  background: var(--neon-cyan);
  display: block;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  position: relative;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.btn-primary {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(0, 240, 255, 0.05);
  color: var(--neon-cyan);
  border: 1px solid var(--border-strong);
  clip-path: none;
}
.btn-ghost:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-cyan);
}
.btn-pink {
  background: var(--neon-pink);
  color: #000;
  box-shadow: var(--glow-pink);
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 1px; }
h3 { font-size: 1.2rem; letter-spacing: 1px; }
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}
.glitch::before {
  color: var(--neon-pink);
  z-index: -1;
  animation: glitch1 3s infinite;
}
.glitch::after {
  color: var(--neon-cyan);
  z-index: -2;
  animation: glitch2 3s infinite;
}
@keyframes glitch1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(-1px, -1px); }
  60% { transform: translate(0); }
}
@keyframes glitch2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -1px); }
  40% { transform: translate(1px, 1px); }
  60% { transform: translate(0); }
}

.neon-text { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
.pink-text { color: var(--neon-pink); text-shadow: var(--glow-pink); }
.tag-line {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: rgba(0, 240, 255, 0.05);
  margin-bottom: 24px;
}

/* ═══ LAYOUT ═══ */
.section {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.section-pad { padding: 100px 0; }

.hero-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Holographic frame */
.holo-frame {
  position: relative;
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.holo-frame-inner {
  background: var(--panel-solid);
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

/* Card */
.cyber-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}
.cyber-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--neon-cyan);
  border-left: 1px solid var(--neon-cyan);
}
.cyber-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--neon-cyan);
  border-right: 1px solid var(--neon-cyan);
}
.cyber-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
  transform: translateY(-4px);
}

/* ═══ FOOTER ═══ */
.cyber-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 60px 0 24px;
  position: relative;
  z-index: 1;
}
.cyber-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--neon-cyan); }
.footer-brand .logo-text { font-size: 1.4rem; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 14px 0 20px;
  line-height: 1.7;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted2);
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══ A11Y TOOLBAR ═══ */
#a11y-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.a11y-btn {
  width: 42px; height: 42px;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  color: var(--neon-cyan);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.a11y-btn:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: var(--glow-cyan);
}
body.high-contrast {
  --bg: #000;
  --panel: #000;
  --panel-solid: #000;
  --text: #fff;
  --border: rgba(255,255,255,0.5);
}
body.large-text { font-size: 18.5px; }



/* ═══════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-first breakpoints
═══════════════════════════════════════════ */

/* Base touch-friendly sizes */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; padding: 14px 22px; }
  .nav-menu a { padding: 12px 0; }
  .svc-card, .spec-card, .cyber-card { padding: 24px 20px; }
  *:hover { transition: none; }
}

/* ═══ LARGE TABLET (1024px - 1280px) ═══ */
@media (max-width: 1280px) {
  .container { padding: 0 5%; }
  h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }
}

/* ═══ TABLET (768px - 1024px) ═══ */
@media (max-width: 1024px) {
  /* Layout */
  .container { padding: 0 5%; }
  .section-pad { padding: 70px 0; }

  /* Hero */
  .hero-grid, .svc-hero-grid, .about-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .holo-display, .svc-visual { max-width: 320px !important; margin: 0 auto !important; }

  /* Grids */
  .svc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .stats-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .process-grid::before { display: none !important; }

  /* Stack */
  .stack-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; gap: 30px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px; }

  /* Typography */
  h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .stat-val { font-size: 2.2rem; }
}

/* ═══ MOBILE LANDSCAPE & SMALL TABLET (640px - 768px) ═══ */
@media (max-width: 768px) {
  /* Nav */
  nav.cyber-nav {
    padding: 12px 4%;
  }
  .logo-text { font-size: 1.3rem; }
  .hamburger-btn { display: flex !important; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-menu.open { display: flex !important; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu a {
    display: block;
    padding: 16px 0 !important;
    font-size: 0.95rem !important;
  }
  .nav-menu a::before { display: none; }
  .nav-cta-btn {
    margin-top: 12px;
    text-align: center;
    padding: 14px !important;
  }

  /* Hero sections */
  .hero-home, .hero-page, .service-hero, .about-hero, .contact-hero {
    padding: 100px 0 50px !important;
    min-height: auto !important;
  }

  /* Typography */
  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem) !important; line-height: 1.1 !important; }
  h2 { font-size: clamp(1.5rem, 6vw, 2.1rem) !important; }
  h3 { font-size: 1.05rem; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .hero-sub, .svc-intro { font-size: 1rem !important; }

  /* Layout */
  .section-pad { padding: 50px 0 !important; }
  .container { padding: 0 5% !important; }

  /* Grids - all to single column */
  .svc-grid, .specs-grid, .benefits-grid, .process-grid,
  .stack-grid, .values-grid, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }

  /* Cards */
  .svc-card, .spec-card, .cyber-card, .channels, .contact-form, .profile-card, .cta-box {
    padding: 24px 20px !important;
  }
  .holo-frame-inner { padding: 20px; }

  /* Holographic elements - keep visible but smaller */
  .holo-display, .svc-visual {
    max-width: 240px !important;
    margin: 0 auto !important;
  }
  .data-point { font-size: 0.62rem !important; padding: 3px 7px !important; }

  /* Stats */
  .stat-cell {
    padding: 24px 16px !important;
    border-left: none !important;
    border-bottom: 1px solid var(--border);
  }
  .stat-cell:nth-child(2n) { border-left: 1px solid var(--border) !important; }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .stat-val { font-size: 1.9rem !important; }
  .stat-key { font-size: 0.68rem !important; letter-spacing: 1.5px !important; }

  /* Process timeline */
  .timeline { padding-right: 24px !important; max-width: 100% !important; }
  .tl-item::before { right: -23px !important; width: 10px !important; height: 10px !important; }
  .tl-year { font-size: 0.75rem !important; }

  /* Buttons */
  .btn {
    padding: 14px 22px !important;
    font-size: 0.8rem !important;
    width: auto;
    min-height: 44px;
  }
  .hero-btns, .cta-btns, .svc-cta-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
  }
  .hero-btns .btn, .cta-btns .btn, .svc-cta-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Forms */
  .form-grid-2 { grid-template-columns: 1fr !important; gap: 16px !important; }
  .form-row input, .form-row select, .form-row textarea {
    font-size: 16px !important; /* iOS doesn't zoom on 16px+ */
    padding: 14px !important;
  }
  .submit-btn { padding: 16px !important; }

  /* CTA box */
  .cta-box, .svc-cta-inner {
    padding: 36px 22px !important;
  }
  .cta-box h2 { font-size: 1.7rem !important; }

  /* Footer */
  .footer-grid { gap: 30px !important; }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px;
  }

  /* A11y bar - move to corner, smaller */
  #a11y-bar {
    bottom: 12px !important;
    right: 12px !important;
    gap: 4px !important;
  }
  .a11y-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.9rem !important;
  }

  /* Spec cards */
  .spec-card { padding: 24px 18px !important; }
  .spec-icon { width: 40px !important; height: 40px !important; }

  /* Section titles */
  .sec-title, .section-header { margin-bottom: 36px !important; }
  .section-header { text-align: center; }

  /* Tag line */
  .tag-line { font-size: 0.65rem !important; padding: 5px 12px !important; }

  /* Disable some heavy animations on mobile for performance */
  .glitch::before, .glitch::after { display: none; }
  body::before { background-size: 40px 40px; }

  /* Channel cards */
  .channel { padding: 14px 12px !important; gap: 12px !important; }
  .channel-icon { width: 40px !important; height: 40px !important; font-size: 1.2rem !important; }

  /* Status ticker - keep but adjust */
  .status-track { gap: 30px !important; }
  .status-bar { padding: 12px 0 !important; }
  .status-track span { font-size: 0.72rem !important; }

  /* Service hero meta */
  .svc-meta { gap: 6px !important; }
  .svc-meta span { font-size: 0.68rem !important; padding: 4px 9px !important; }

  /* Timeline section */
  .timeline-section { padding: 50px 0 !important; }
  .tl-item { padding-bottom: 24px !important; }
}

/* ═══ SMALL MOBILE (480px - 640px) ═══ */
@media (max-width: 480px) {
  .container { padding: 0 4% !important; }

  /* Even tighter typography */
  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.4rem !important; }
  .hero-headline { font-size: 2rem !important; }
  .hero-sub, .svc-intro { font-size: 0.95rem !important; line-height: 1.6 !important; }

  /* Hero pad */
  .hero-home, .hero-page, .service-hero, .about-hero, .contact-hero {
    padding: 90px 0 40px !important;
  }

  /* Stats single column on tiny */
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stat-cell { padding: 18px 12px !important; }
  .stat-val { font-size: 1.6rem !important; }

  /* Cards even tighter */
  .svc-card, .spec-card, .cyber-card, .channels, .contact-form, .profile-card, .cta-box {
    padding: 20px 16px !important;
  }

  /* Logo */
  .logo-text { font-size: 1.15rem !important; letter-spacing: 1px !important; }

  /* CTA */
  .cta-box, .svc-cta-inner { padding: 28px 16px !important; }
  .cta-box h2 { font-size: 1.4rem !important; }

  /* Section pad */
  .section-pad { padding: 40px 0 !important; }

  /* Hide some decorative elements on tiny screens */
  .holo-display, .svc-visual {
    max-width: 200px !important;
  }
  .data-point { display: none !important; }

  /* Reduce animations */
  body::before { background-size: 30px 30px; }
}

/* ═══ EXTRA SMALL (< 360px) ═══ */
@media (max-width: 360px) {
  h1 { font-size: 1.6rem !important; }
  .logo-text { font-size: 1rem !important; }
  .btn { font-size: 0.72rem !important; padding: 12px 16px !important; }
  .container { padding: 0 16px !important; }
}

/* ═══ ACCESSIBILITY: REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .holo-ring, .holo-core, .status-track, body::before {
    animation: none !important;
  }
}

/* ═══ LANDSCAPE PHONES ═══ */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero-home, .hero-page, .service-hero {
    min-height: auto !important;
    padding: 80px 0 40px !important;
  }
  .holo-display, .svc-visual { max-width: 180px !important; }
}

/* ═══ FIX SCANLINES ON MOBILE ═══ */
@media (max-width: 768px) {
  .scanlines { display: none; }
  .noise { opacity: 0.015 !important; }
}

/* ═══ TOUCH-SPECIFIC FIXES ═══ */
@media (pointer: coarse) {
  /* Larger tap targets */
  .nav-menu a, .footer-col a, .channel { min-height: 44px; }
  .a11y-btn { min-width: 44px; min-height: 44px; }
}
