/*
Theme Name: FoxEx Network Monitor
Theme URI: https://foxex-monitor.de
Author: FoxEx Team
Description: Offizielles Marketing-Theme für FoxEx Network Monitor
Version: 1.0
License: Proprietary
Text Domain: foxex
*/

/* =============================================
   FoxEx Theme – Root Variables
   ============================================= */
:root {
  --fox-orange:       #f47c20;
  --fox-orange-light: #ff9a42;
  --fox-orange-dark:  #c55c00;
  --fox-black:        #000000;
  --fox-bg:           #0a0a0a;
  --fox-card:         #111111;
  --fox-border:       #222222;
  --fox-text:         #ffffff;
  --fox-muted:        #888888;
  --fox-gradient:     linear-gradient(135deg, #f47c20 0%, #ff9a42 100%);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--fox-bg);
  color: var(--fox-text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
}
a { color: var(--fox-orange); text-decoration: none; }
a:hover { color: var(--fox-orange-light); }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; margin: 0 0 1rem; }
p { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--fox-bg); }
::-webkit-scrollbar-thumb { background: var(--fox-orange-dark); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
.site-header {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fox-border);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
}

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

.site-logo img { height: 44px; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #cccccc;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--fox-orange);
  background: rgba(244,124,32,0.08);
}

.nav-cta > a {
  background: var(--fox-gradient) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px !important;
  transition: opacity 0.2s !important;
}
.nav-cta > a:hover { opacity: 0.88 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #ccc;
  border-radius: 2px;
}

/* =============================================
   CONTENT WRAPPER
   ============================================= */
.site-main { padding-top: 72px; }

/* =============================================
   PAGE HERO (shared across pages)
   ============================================= */
.page-hero {
  background: #000;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(244,124,32,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--fox-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* =============================================
   UTILITY
   ============================================= */
.container-fox { max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 5rem 2rem; }
.bg-black { background: #000; }
.bg-bg { background: var(--fox-bg); }
.bg-card { background: var(--fox-card); }
.text-center { text-align: center; }

.section-badge {
  display: inline-block;
  background: rgba(244,124,32,0.12);
  border: 1px solid rgba(244,124,32,0.25);
  color: var(--fox-orange);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fox-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--fox-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-fox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fox-gradient);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(244,124,32,0.35);
}
.btn-fox:hover { color: #fff; opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,124,32,0.5); }

.btn-fox-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ccc;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--fox-border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-fox-outline:hover { color: var(--fox-orange); border-color: var(--fox-orange); }

/* =============================================
   HERO (Home)
   ============================================= */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
  background: var(--fox-black);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,124,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,124,32,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero::after {
  content: '';
  position: absolute;
  top: 20%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,124,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,124,32,0.12);
  border: 1px solid rgba(244,124,32,0.3);
  color: var(--fox-orange);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #aaaaaa;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fox-border);
  flex-wrap: wrap;
}
.hero-stat-value { font-size: 1.75rem; font-weight: 800; color: var(--fox-orange); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--fox-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 55%; max-width: 800px;
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  border-radius: 12px 0 0 12px;
  border: 1px solid var(--fox-border);
  border-right: none;
  box-shadow: -20px 0 60px rgba(0,0,0,0.8);
  opacity: 0.9;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--fox-card);
  border-top: 1px solid var(--fox-border);
  border-bottom: 1px solid var(--fox-border);
  padding: 2.5rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--fox-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; color: var(--fox-muted); text-transform: uppercase; letter-spacing: 0.07em; }

/* =============================================
   FEATURE CARDS
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--fox-card);
  border: 1px solid var(--fox-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--fox-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(244,124,32,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(244,124,32,0.12);
  border: 1px solid rgba(244,124,32,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.feature-card p { color: var(--fox-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* =============================================
   SCREENSHOT TABS
   ============================================= */
.screenshot-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.screenshot-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: 1px solid var(--fox-border);
  background: transparent;
  color: var(--fox-muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.screenshot-tab.active, .screenshot-tab:hover {
  border-color: var(--fox-orange);
  color: var(--fox-orange);
  background: rgba(244,124,32,0.08);
}
.screenshot-frame {
  background: var(--fox-card);
  border: 1px solid var(--fox-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.frame-bar {
  background: #0d0d0d;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--fox-border);
}
.frame-dot { width: 10px; height: 10px; border-radius: 50%; }
.frame-dot:nth-child(1) { background: #ff5f57; }
.frame-dot:nth-child(2) { background: #ffbd2e; }
.frame-dot:nth-child(3) { background: #28c840; }
.frame-url {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  color: var(--fox-muted);
  margin-left: 0.5rem;
}
.screenshot-pane { display: none; }
.screenshot-pane.active { display: block; }
.screenshot-pane img { width: 100%; }

/* =============================================
   FEATURE SHOWCASE (alternating)
   ============================================= */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-showcase:last-child { margin-bottom: 0; }
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }
.feature-text h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.feature-text p { color: var(--fox-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.feature-list li::before { content: '✓'; color: var(--fox-orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.feature-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--fox-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transition: transform 0.4s, box-shadow 0.4s;
}
.feature-image:hover { transform: scale(1.01); box-shadow: 0 20px 64px rgba(0,0,0,0.8); }
.feature-image img { width: 100%; }

/* =============================================
   STEPS (How it works)
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--fox-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}
.steps-grid h4 { margin-bottom: 0.6rem; }
.steps-grid p { color: var(--fox-muted); font-size: 0.9rem; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--fox-black);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 2rem;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(244,124,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: var(--fox-muted); font-size: 1.1rem; margin-bottom: 2rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================
   SPECS TABLE
   ============================================= */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.specs-table th, .specs-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--fox-border); text-align: left; }
.specs-table th { color: var(--fox-muted); font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; background: rgba(255,255,255,0.02); }
.specs-table td:first-child { color: var(--fox-muted); width: 200px; }
.specs-table tr:last-child td { border-bottom: none; }

/* =============================================
   PROTOCOL CARDS
   ============================================= */
.proto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.card-fox {
  background: var(--fox-card);
  border: 1px solid var(--fox-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.card-fox h3 { color: var(--fox-orange); margin-bottom: .75rem; }
.card-fox p { color: var(--fox-muted); font-size: .9rem; line-height: 1.75; margin-bottom: 1rem; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid p { color: var(--fox-muted); line-height: 1.8; }
.timeline { border-left: 2px solid var(--fox-border); padding-left: 2rem; position: relative; }
.timeline-item { margin-bottom: 2rem; }
.timeline-year { color: var(--fox-orange); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; }
.timeline-item h4 { font-size: 1rem; margin-bottom: .4rem; }
.timeline-item p { color: var(--fox-muted); font-size: .875rem; margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  padding: 1.5rem;
  border-left: 3px solid var(--fox-orange);
  background: rgba(244,124,32,0.04);
  border-radius: 0 8px 8px 0;
}
.value-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-item p { color: var(--fox-muted); font-size: 0.88rem; margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--fox-card);
  border: 1px solid var(--fox-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: rgba(244,124,32,0.4); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--fox-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.team-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.team-card .role { color: var(--fox-orange); font-size: .8rem; font-weight: 600; margin-bottom: .75rem; display: block; }
.team-card p { color: var(--fox-muted); font-size: .85rem; margin: 0; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.mission-card { background: var(--fox-card); border: 1px solid var(--fox-border); border-top: 3px solid var(--fox-orange); border-radius: 12px; padding: 1.5rem; }
.mission-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.mission-card p { color: var(--fox-muted); line-height: 1.75; margin: 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--fox-muted); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(244,124,32,0.12);
  border: 1px solid rgba(244,124,32,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail h5 { font-size: .85rem; color: var(--fox-muted); margin: 0 0 .15rem; font-weight: 500; }
.contact-detail p { color: var(--fox-text); margin: 0; font-weight: 500; font-size: .95rem; }

.contact-form-wrap { background: var(--fox-card); border: 1px solid var(--fox-border); border-radius: 12px; padding: 2rem; }
.contact-form-wrap h3 { font-size: 1.25rem; margin-bottom: 1.5rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; color: #aaa; margin-bottom: .4rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid var(--fox-border);
  border-radius: 6px;
  color: var(--fox-text);
  padding: .7rem .9rem;
  font-size: .9rem;
  transition: border-color .2s;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--fox-orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #111; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1.25rem; }
.form-check input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--fox-orange); }
.form-check label { font-size: .82rem; color: var(--fox-muted); cursor: pointer; }
.btn-form-submit {
  width: 100%;
  background: var(--fox-gradient);
  color: #fff;
  padding: .85rem;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  font-family: inherit;
}
.btn-form-submit:hover { opacity: .88; transform: translateY(-1px); }

.faq-grid { display: flex; flex-direction: column; gap: 1rem; max-width: 700px; margin: 2.5rem auto 0; }
.faq-item { background: var(--fox-card); border: 1px solid var(--fox-border); border-radius: 12px; padding: 1.25rem 1.5rem; }
.faq-item h4 { color: var(--fox-orange); font-size: 1rem; margin-bottom: .5rem; }
.faq-item p { color: var(--fox-muted); font-size: .88rem; margin: 0; line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--fox-black);
  border-top: 1px solid var(--fox-border);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { color: var(--fox-muted); font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--fox-muted); margin-bottom: .85rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: #888; font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--fox-orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fox-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { color: #555; font-size: .8rem; margin: 0; }

/* WP default elements reset */
.wp-block-image { margin: 0; }
.alignnone { margin: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .hero-visual { display: none; }
  .about-grid, .feature-showcase, .feature-showcase.reverse,
  .proto-grid, .mission-grid, .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.98);
    padding: 1rem;
    border-bottom: 1px solid var(--fox-border);
    gap: .25rem;
  }
  .nav-menu.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section-pad { padding: 3rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}
