/* ============================================================
   ENRICO DI VENTURA - "Nachts am Wasser"
   Dark-Design nach Design-Spezifikation Juli 2026
   ============================================================ */

:root {
  --bg-0: #04060f;
  --bg-1: #0a0e1c;
  --bg-2: #0e1526;
  --card: #151a2b;
  --card-glass: rgba(21, 26, 43, 0.55);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(94, 168, 255, 0.35);
  --accent: #3f7bff;
  --accent-2: #1cbeb1;
  --accent-soft: rgba(63, 123, 255, 0.15);
  --text-1: #f4f6fb;
  --text-2: #b8c0d4;
  --text-3: #6b7590;
  --grad-cta: linear-gradient(135deg, #3f7bff 0%, #35c6e8 100%);
  --grad-text: linear-gradient(90deg, #6ea8ff, #35e0d0);
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

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

body {
  background: var(--bg-0);
  color: var(--text-2);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #6ea8ff; }

h1, h2, h3, h4 {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text-1);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Noise Overlay ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4, 6, 15, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.site-logo img { height: 76px; width: auto; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  color: var(--text-2); font-size: 15px; font-weight: 500;
  transition: color 0.25s;
}
.site-nav a:hover { color: var(--text-1); }
.site-nav a.active { color: var(--text-1); }
.site-nav a.active::after {
  content: ""; display: block; height: 2px; margin-top: 2px;
  background: var(--grad-cta); border-radius: 2px;
}
.nav-toggle {
  display: none; background: none; border: 1px solid var(--card-border);
  border-radius: 10px; padding: 8px 12px; color: var(--text-1);
  font-size: 18px; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16px;
  cursor: pointer; border: 0; white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset,
              0 8px 30px -8px rgba(63,123,255,0.6);
}
.btn-primary:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset,
              0 12px 40px -8px rgba(63,123,255,0.8);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: transparent; color: var(--text-1);
  border: 1px solid var(--card-border);
}
.btn-ghost:hover { border-color: var(--card-border-hover); color: var(--text-1); transform: translateY(-2px); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 999px;
  background: rgba(63,123,255,0.08);
  border: 1px solid rgba(63,123,255,0.25);
  color: var(--text-2); font-size: 14px; font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 9vw, 8rem);
  background: var(--bg-0);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(63,123,255,0.22), transparent 70%);
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.6;
}
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 700; margin: 22px 0 20px;
}
.hero h1 .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 19px; max-width: 34rem; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.media-frame {
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 80px -10px rgba(53,198,232,0.35),
              0 40px 100px -40px rgba(0,0,0,0.8);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Foto-Integration in die dunkle Welt */
.photo-dark { position: relative; border-radius: var(--radius); overflow: hidden; }
.photo-dark img { filter: saturate(0.88) contrast(1.05); width: 100%; object-fit: cover; }
.photo-dark::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,6,15,0) 45%, rgba(4,6,15,0.82) 100%),
              radial-gradient(ellipse at top, rgba(63,123,255,0.10), transparent 60%);
}
.photo-dark figcaption {
  position: absolute; bottom: 16px; left: 20px; right: 20px; z-index: 2;
  color: var(--text-1); font-size: 15px; font-weight: 500;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-alt { background: var(--bg-1); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 16px; }
.section-head p { font-size: 18px; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  padding: 28px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)), var(--card);
  border: 1px solid var(--card-border);
}
.stat b {
  display: block; font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--text-1);
  margin-bottom: 6px;
}
.stat span { font-size: 14.5px; color: var(--text-3); line-height: 1.45; display: block; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)), var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 20px 60px -20px rgba(63,123,255,0.25);
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--text-3); }
.card .card-link {
  display: inline-block; margin-top: 18px; font-weight: 600; font-size: 15px;
}

/* Teaser-Grid: bewusst asymmetrisch */
.teaser-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}
.teaser-grid .t-1 { grid-column: span 7; }
.teaser-grid .t-2 { grid-column: span 5; }
.teaser-grid .t-3 { grid-column: span 5; }
.teaser-grid .t-4 { grid-column: span 7; }
.teaser-card { position: relative; overflow: hidden; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; }
.teaser-card .bg {
  position: absolute; inset: 0; z-index: 0;
}
.teaser-card .bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.65); transition: transform 0.6s var(--ease); }
.teaser-card:hover .bg img { transform: scale(1.04); }
.teaser-card .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,6,15,0.15) 0%, rgba(4,6,15,0.9) 100%);
}
.teaser-card .inner { position: relative; z-index: 1; }

/* ---------- Split Layout ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.split h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 18px; }
.split .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { counter-increment: step; }
.step h3::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-size: 15px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.08em; margin-bottom: 12px;
}

/* ---------- Timeline (Musik) ---------- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 36px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px; opacity: 0.5;
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -34px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(63,123,255,0.7);
}
.timeline-item b {
  font-family: "Outfit", sans-serif; font-size: 1.25rem; color: var(--text-1);
  display: block; margin-bottom: 6px;
}

/* ---------- Video Grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-embed {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--card-border);
  background: var(--card);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- CTA Band ---------- */
.cta-band {
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  background: radial-gradient(ellipse 90% 120% at 20% 0%, rgba(63,123,255,0.25), transparent 60%),
              var(--bg-2);
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.cta-band p { max-width: 34rem; }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-1); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px; color: var(--text-1);
  font-family: inherit; font-size: 15.5px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select option { background: var(--bg-2); }
.form-note { font-size: 13.5px; color: var(--text-3); }
.form-status { font-size: 15px; font-weight: 600; margin-top: 14px; display: none; }
.form-status.ok { display: block; color: var(--accent-2); }
.form-status.err { display: block; color: #ff7a7a; }

/* ---------- Kontakt-Split ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2.5rem, 6vw, 5rem); }
.contact-info h3 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-info .block { margin-bottom: 32px; }
.contact-info a { font-weight: 600; }

/* ---------- Social Row ---------- */
.social-row { display: flex; gap: 14px; flex-wrap: wrap; }
.social-row a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--card-border);
  color: var(--text-2); font-size: 14.5px; font-weight: 600;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.social-row a:hover { border-color: var(--card-border-hover); color: var(--text-1); transform: translateY(-2px); }
.social-row img { width: 18px; height: 18px; }

/* ---------- Steckbrief ---------- */
.steckbrief { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steckbrief .item {
  padding: 20px 22px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
}
.steckbrief .item span { font-size: 13px; color: var(--text-3); display: block; margin-bottom: 4px; }
.steckbrief .item b { color: var(--text-1); font-family: "Outfit", sans-serif; font-size: 1.05rem; }

/* ---------- iPhone / Spotify Mockup ---------- */
.phone-scene {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone-stage .earpods {
  position: absolute; left: -6%; bottom: -4%; width: 46%;
  z-index: 2; pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  border-radius: 18px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 60%, transparent 100%);
}
.phone {
  width: min(320px, 82vw); border-radius: 48px; padding: 14px;
  background: linear-gradient(180deg, #131829, #0a0e1c);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 90px -10px rgba(63,123,255,0.35),
              0 50px 110px -40px rgba(0,0,0,0.9),
              inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 26px; left: 50%;
  transform: translateX(-50%); width: 108px; height: 28px;
  background: #04060f; border-radius: 999px; z-index: 3;
}
.phone-screen {
  border-radius: 36px; overflow: hidden;
  background: linear-gradient(180deg, #232a44 0%, #0b0f1e 55%, #080b16 100%);
  padding: 70px 22px 30px;
}
.sp-cover { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 40px -10px rgba(0,0,0,0.7); }
.sp-cover img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.sp-meta { margin: 20px 2px 14px; }
.sp-meta b { display: block; color: var(--text-1); font-family: "Outfit", sans-serif; font-size: 1.05rem; }
.sp-meta span { font-size: 13.5px; color: var(--text-3); }
.sp-bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.15); position: relative; margin: 14px 2px; }
.sp-bar i { position: absolute; inset: 0 62% 0 0; background: #fff; border-radius: 4px; }
.sp-times { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-3); margin: 0 2px 12px; }
.sp-controls { display: flex; justify-content: center; align-items: center; gap: 26px; }
.sp-controls svg { display: block; }
.sp-play {
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(255,255,255,0.35);
}
.sparkasse-box {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  margin-top: 26px;
}
.sparkasse-box img { width: 34px; height: 34px; flex-shrink: 0; }
.sparkasse-box p { font-size: 14.5px; margin: 0; }

@media (max-width: 960px) {
  .phone-scene { grid-template-columns: 1fr; }
  .phone-stage { margin-bottom: 1rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--card-border);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem;
}
.footer-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700;
  margin-bottom: 12px;
}
.footer-headline .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem); margin-bottom: 48px; align-items: start;
}
.newsletter-form { display: flex; gap: 12px; margin-top: 20px; max-width: 30rem; }
.newsletter-form input {
  flex: 1; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px; color: var(--text-1); font-family: inherit; font-size: 15px;
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: var(--text-3);
}
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--text-1); }
.footer-wortmarke { height: 34px; width: auto; opacity: 0.9; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 46rem; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-content p, .legal-content li { font-size: 15.5px; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; }

/* ---------- FAQ ---------- */
.faq details {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)), var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq details:hover, .faq details[open] { border-color: var(--card-border-hover); }
.faq summary {
  cursor: pointer; padding: 18px 22px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 1.02rem;
  color: var(--text-1);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--accent); font-size: 1.5rem; line-height: 1;
  flex-shrink: 0; transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 22px 20px; font-size: 15.5px; color: var(--text-2); margin: 0; }

/* ---------- Hero Load-in (zeitversetzt) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero .badge, .hero h1, .hero .hero-sub, .hero .hero-ctas,
  .hero .media-frame, .hero .section-head {
    opacity: 0;
    animation: heroIn 0.9s var(--ease) forwards;
  }
  .hero .badge { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero .hero-sub { animation-delay: 0.3s; }
  .hero .hero-ctas { animation-delay: 0.45s; }
  .hero .media-frame { animation-delay: 0.35s; animation-duration: 1.1s; }
  .hero .section-head { animation-delay: 0.1s; }
  .hero .section-head .hero-sub, .hero .section-head h1 { opacity: 1; animation: none; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* Bilder bekommen zusaetzlich einen sanften Zoom */
.photo-dark.reveal, .media-frame.reveal, .video-embed.reveal { transform: translateY(24px) scale(0.965); }
.photo-dark.reveal.visible, .media-frame.reveal.visible, .video-embed.reveal.visible { transform: none; }

.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.27s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  #hero-canvas { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps, .video-grid, .steckbrief { grid-template-columns: 1fr; }
  .teaser-grid .t-1, .teaser-grid .t-2, .teaser-grid .t-3, .teaser-grid .t-4 { grid-column: span 12; }
  .form-grid { grid-template-columns: 1fr; }
  .site-nav {
    display: none; position: absolute; top: 96px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 12px 24px 20px;
    background: rgba(4,6,15,0.97); border-bottom: 1px solid var(--card-border);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; font-size: 17px; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 16px; }
  .newsletter-form { flex-direction: column; }
}
