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

:root {
  --ink:     #101D52;
  --primary: #1E3A8A;
  --cyan:    #33C2E6;
  --paper:   #FAFAFC;
  --white:   #FFFFFF;
  --n100:    #F0F0F5;
  --n200:    #E6E6EA;
  --n400:    #9696A0;
  --n600:    #4A4A5A;
  --n800:    #1E1E2E;
  --gold:    #F59E0B;
  --red:     #EF4444;
  --green:   #10B981;
  --purple:  #8B5CF6;
  --orange:  #F97316;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16,29,82,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51,194,230,0.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 32px; height: 32px; border-radius: 9px; }
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 6px 10px; border-radius: 6px; transition: color 0.18s, background 0.18s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--cyan); color: var(--ink); font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; text-decoration: none;
  padding: 8px 16px; border-radius: 8px; transition: opacity 0.18s, transform 0.18s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a1238 0%, #101D52 40%, #162060 70%, #0e2a5a 100%);
  padding: 96px 24px 100px; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: rgba(51,194,230,0.12); top: -80px; right: -60px; }
.blob-2 { width: 320px; height: 320px; background: rgba(139,92,246,0.1); bottom: -60px; left: -40px; }
.blob-3 { width: 240px; height: 240px; background: rgba(245,158,11,0.08); top: 50%; left: 60%; transform: translate(-50%,-50%); }
.pokeball-deco { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.05); pointer-events: none; }
.pokeball-deco::after { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.05); transform: translateY(-50%); }
.pb1 { width: 300px; height: 300px; top: 10%; right: 5%; animation: floatY 8s ease-in-out infinite; }
.pb2 { width: 180px; height: 180px; bottom: 15%; left: 8%; animation: floatY 11s ease-in-out infinite reverse; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(51,194,230,0.15); border: 1px solid rgba(51,194,230,0.3);
  color: var(--cyan); font-family: 'JetBrains Mono', monospace; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.85); } }

.hero h1 {
  font-size: clamp(36px, 6vw, 68px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; color: #fff; margin-bottom: 20px;
  animation: fadeInDown 0.6s 0.1s ease both;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--cyan), #7dd3fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px); color: rgba(255,255,255,0.65);
  max-width: 580px; margin: 0 auto 40px;
  animation: fadeInDown 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  animation: fadeInDown 0.6s 0.3s ease both;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cyan); color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  padding: 14px 28px; border-radius: 12px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(51,194,230,0.35);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(51,194,230,0.5); }
.hero-pills {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
  animation: fadeInDown 0.6s 0.4s ease both;
}
.hero-pill { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.4); display: inline-flex; align-items: center; gap: 6px; }
.hero-pill-sep { width: 3px; height: 3px; background: rgba(255,255,255,0.18); border-radius: 50%; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--n200); }
.stats-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; align-items: center; gap: 12px; padding: 22px 32px; border-right: 1px solid var(--n200); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 28px; line-height: 1; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-label { font-size: 12px; color: var(--n400); margin-top: 2px; }

/* ── SECTION BASE ── */
.section { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.section-kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 6px; margin-bottom: 16px;
}
.section-kicker-cyan   { background: rgba(51,194,230,0.12); color: var(--cyan); }
.section-kicker-purple { background: rgba(139,92,246,0.12); color: var(--purple); }
.section-kicker-gold   { background: rgba(245,158,11,0.12); color: var(--gold); }
.section-title { font-size: clamp(26px, 4vw, 40px); letter-spacing: -0.025em; color: var(--ink); margin-bottom: 12px; }
.section-sub { font-size: 17px; color: var(--n600); max-width: 560px; margin-bottom: 48px; }

/* ── SCREENSHOT SHOWCASE ── */
.showcase-section { background: var(--n100); padding: 80px 24px 0; text-align: center; overflow: hidden; }
.showcase-section .section-title { margin-bottom: 10px; }
.triptych { display: flex; align-items: flex-end; justify-content: center; gap: 12px; max-width: 700px; margin: 0 auto; }
.tri-phone { display: flex; flex-direction: column; align-items: center; gap: 18px; flex-shrink: 0; transition: transform 0.35s ease, opacity 0.35s ease; }
.tri-phone.side-l { transform: rotate(-6deg) translateY(52px); opacity: 0.78; }
.tri-phone.side-r { transform: rotate(6deg) translateY(52px); opacity: 0.78; }
.tri-phone.center { z-index: 2; }
.tri-phone.side-l:hover { transform: rotate(-3deg) translateY(32px); opacity: 1; }
.tri-phone.side-r:hover { transform: rotate(3deg) translateY(32px); opacity: 1; }

.phone-shell {
  border-radius: 38px; background: #06091a; border: 8px solid #141e45;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 40px 80px rgba(10,18,60,0.3), 0 0 0 1px rgba(0,0,0,0.15);
  overflow: hidden; position: relative; width: 162px; cursor: zoom-in;
}
.tri-phone.center .phone-shell {
  width: 196px; border-color: #1E3A8A;
  box-shadow: inset 0 0 0 1px rgba(51,194,230,0.1), 0 0 0 2px rgba(51,194,230,0.18), 0 56px 100px rgba(10,18,60,0.42);
}
.phone-shell::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 14px; background: #06091a; border-radius: 0 0 10px 10px; z-index: 2; }
.tri-phone.center .phone-shell::after { width: 60px; height: 16px; }
.phone-shell img { width: 100%; display: block; user-select: none; }
.tri-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--n400); }
.tri-phone.center .tri-label { font-size: 11px; color: var(--cyan); }

/* ── CAROUSEL ── */
.carousel-section { background: #07102a; padding: 0 0 64px; overflow: hidden; position: relative; }
.carousel-section::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 100px; background: linear-gradient(to right, transparent, #07102a); pointer-events: none; z-index: 1; }
.carousel-head { max-width: 1100px; margin: 0 auto; padding: 52px 48px 28px; }
.carousel-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -0.02em; }
.carousel-sub { font-size: 14px; color: rgba(255,255,255,0.4); }
.carousel-scroll {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 8px 48px 24px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
  cursor: grab; user-select: none;
}
.carousel-scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-scroll::-webkit-scrollbar { height: 3px; }
.carousel-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
.carousel-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }
.c-item { flex-shrink: 0; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; gap: 11px; }
.c-shell {
  border-radius: 28px; background: #06091a; border: 6px solid #1a2558;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5); overflow: hidden; width: 142px; position: relative;
  transition: transform 0.22s, box-shadow 0.22s; cursor: zoom-in;
}
.c-shell:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.7); }
.c-shell::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 36px; height: 10px; background: #06091a; border-radius: 0 0 7px 7px; z-index: 2; }
.c-shell img { width: 100%; display: block; }
.c-label { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); text-align: center; white-space: nowrap; }
.c-cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }
.c-cat.cat-community { color: var(--cyan); }
.c-cat.cat-tools     { color: var(--purple); }
.c-cat.cat-raids     { color: var(--red); }
.c-cat.cat-handel    { color: var(--green); }
.c-cat.cat-events    { color: var(--gold); }
.c-cat.cat-profil    { color: rgba(255,255,255,0.38); }
.c-cat.cat-labor     { color: var(--cyan); }
.c-cat.cat-aktiv     { color: var(--orange); }

/* ── IV SPOTLIGHT ── */
.iv-spotlight {
  background: linear-gradient(135deg, rgba(139,92,246,0.07) 0%, rgba(51,194,230,0.05) 100%);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 24px; padding: 48px 48px 48px 52px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  margin-bottom: 32px;
  position: relative; overflow: hidden;
}
.iv-spotlight::before {
  content: '';
  position: absolute; top: -40px; right: 220px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%);
  pointer-events: none;
}
.iv-spot-title {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1.08; margin: 12px 0 16px;
}
.iv-spot-title span {
  background: linear-gradient(90deg, var(--purple), #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.iv-spot-desc { font-size: 16px; color: var(--n600); line-height: 1.72; margin-bottom: 22px; max-width: 500px; }
.iv-spot-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.iv-tag {
  background: rgba(139,92,246,0.1); color: var(--purple);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 6px;
}
.iv-spot-phone { flex-shrink: 0; }
.iv-spot-phone .phone-shell {
  width: 185px !important;
  border-color: rgba(139,92,246,0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(139,92,246,0.1), 0 0 0 2px rgba(139,92,246,0.18), 0 32px 64px rgba(16,29,82,0.2) !important;
}
.iv-spot-phone .phone-shell::after { background: #06091a !important; }

/* ── HIGHLIGHTS ── */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.highlight-card {
  background: var(--white); border: 1px solid var(--n200); border-radius: 16px; padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; overflow: hidden;
}
.highlight-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 16px 16px 0 0; }
.highlight-card.cyan::before   { background: linear-gradient(90deg, var(--cyan), #7dd3fc); }
.highlight-card.purple::before { background: linear-gradient(90deg, var(--purple), #c4b5fd); }
.highlight-card.gold::before   { background: linear-gradient(90deg, var(--gold), #fcd34d); }
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(16,29,82,0.1); border-color: var(--n100); }
.highlight-emoji { font-size: 40px; line-height: 1; margin-bottom: 16px; display: block; }
.highlight-title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.highlight-desc { font-size: 14.5px; color: var(--n600); line-height: 1.7; }

/* ── INFO BANNER ── */
.info-banner {
  background: linear-gradient(135deg, rgba(51,194,230,0.08) 0%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(51,194,230,0.2); border-radius: 20px; padding: 40px 48px;
  display: flex; align-items: center; gap: 32px; margin-top: 40px;
}
.info-banner-icon { font-size: 56px; flex-shrink: 0; }
.info-banner-title { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.info-banner-text { font-size: 15px; color: var(--n600); line-height: 1.7; }
.info-banner-steps { display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.info-step {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.info-step-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--cyan); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── FEATURES ── */
.features-wrap { background: var(--n100); padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 48px; }
.feature-chip {
  background: var(--white); border: 1px solid var(--n200); border-radius: 12px; padding: 18px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; cursor: default;
}
.feature-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(16,29,82,0.08); border-color: var(--cyan); }
.feature-chip-icon { font-size: 24px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.feature-chip-name { font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.feature-chip-tag {
  display: inline-block; margin-top: 5px;
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 6px; border-radius: 4px;
}
.tag-community { background: rgba(51,194,230,0.12);  color: var(--cyan); }
.tag-raid      { background: rgba(239,68,68,0.1);    color: var(--red); }
.tag-trade     { background: rgba(16,185,129,0.1);   color: var(--green); }
.tag-tools     { background: rgba(139,92,246,0.1);   color: var(--purple); }
.tag-collection{ background: rgba(245,158,11,0.1);   color: var(--gold); }
.tag-events    { background: rgba(249,115,22,0.1);   color: var(--orange); }

/* ── FINAL CTA ── */
.final-cta-wrap {
  background: linear-gradient(135deg, #0f1e5a 0%, #162b6e 50%, #0f1e5a 100%);
  padding: 96px 24px; text-align: center; position: relative; overflow: hidden;
}
.final-cta-wrap::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0); background-size: 28px 28px; }
.final-cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.final-cta-emoji { font-size: 56px; margin-bottom: 20px; display: block; }
.final-cta-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-bottom: 14px; }
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }

/* ── LIGHTBOX ── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(5,8,25,0.93);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  animation: lbFadeIn 0.18s ease;
}
.lb-overlay[hidden] { display: none; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img {
  max-height: 78vh; max-width: min(360px, 80vw);
  border-radius: 24px; box-shadow: 0 48px 100px rgba(0,0,0,0.85);
  animation: lbPop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none; display: block;
}
@keyframes lbPop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-caption {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85); text-align: center;
}
.lb-caption-cat {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em;
  display: block; margin-bottom: 4px;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s; user-select: none;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-counter {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,18,56,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: modalFadeIn 0.2s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--paper); border-radius: 20px; width: 100%; max-width: 800px;
  height: 82vh; max-height: 860px; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4); animation: modalSlideUp 0.22s ease;
}
@keyframes modalSlideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--n200); background: var(--white); flex-shrink: 0; }
.modal-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--n400); }
.modal-close { width: 32px; height: 32px; border-radius: 8px; border: none; cursor: pointer; background: var(--n100); color: var(--n600); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s; }
.modal-close:hover { background: var(--n200); color: var(--ink); }
.modal-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--paper); }
@media (max-width: 600px) { .modal-overlay { padding: 0; align-items: flex-end; } .modal-box { border-radius: 20px 20px 0 0; height: 90vh; max-height: none; } }

/* ── FOOTER ── */
footer { background: var(--n800); padding: 36px 0; }
.foot-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(255,255,255,0.22); }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s; }
.foot-links a:hover { color: #fff; }
.foot-version { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan); opacity: 0.55; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: linear-gradient(90deg, #0d1a4a 0%, #101D52 40%, #0a1a40 100%);
  border-bottom: 1px solid rgba(51,194,230,0.2);
  padding: 11px 24px;
}
.announce-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.announce-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--cyan); animation: pulse 2s ease infinite;
}
.announce-text {
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.4; text-align: center;
}
.announce-text strong { color: #fff; font-weight: 700; }
.announce-text em { color: var(--cyan); font-style: normal; font-weight: 600; }
.announce-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--ink); background: var(--cyan);
  padding: 6px 16px; border-radius: 8px; text-decoration: none; white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s; flex-shrink: 0;
}
.announce-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 18px 20px; border-right: none; border-bottom: 1px solid var(--n200); }
  .stat-item:last-child { border-bottom: none; }
  .info-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .nav-links .nav-link { display: none; }
  .tri-phone.side-l, .tri-phone.side-r { display: none; }
  .iv-spotlight { grid-template-columns: 1fr; padding: 32px 28px; }
  .iv-spot-phone { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 16px 72px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .foot-inner { flex-direction: column; text-align: center; }
  .section { padding: 56px 16px; }
  .carousel-scroll { padding: 8px 24px 24px; gap: 12px; }
  .carousel-head { padding: 40px 24px 24px; }
  .info-banner-steps { flex-direction: column; gap: 12px; }
}
@media (max-width: 380px) { .features-grid { grid-template-columns: 1fr; } }

/* ── LEGAL-INHALT (per fetch() in Modal geladen) ── */
.page { max-width: 860px; margin: 0 auto; padding: 56px 24px 80px; }
.page-kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--cyan); display: inline-block; margin-bottom: 12px;
}
.page-kicker::before { content: '// '; color: var(--n400); }
.page h1 { font-size: 34px; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 8px; }
.page-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--n400); margin-bottom: 48px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 17px; font-weight: 600; color: var(--primary);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--n200);
}
.legal-section h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin: 18px 0 6px; }
.legal-section p { font-size: 14.5px; color: var(--n600); line-height: 1.75; margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 18px; margin-bottom: 10px; }
.legal-section ul li { font-size: 14.5px; color: var(--n600); line-height: 1.75; margin-bottom: 4px; }
.legal-section a { color: var(--primary); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.provider-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(30,58,138,0.08); color: var(--primary);
  border: 1px solid rgba(30,58,138,0.15);
  border-radius: 5px; padding: 2px 7px; margin-bottom: 10px;
}
.info-box {
  background: rgba(51,194,230,0.07);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px; margin: 12px 0;
  font-size: 14px; color: var(--n600); line-height: 1.7;
}
.rights-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px; margin: 16px 0;
}
.right-item {
  background: var(--white); border: 1px solid var(--n200);
  border-radius: 10px; padding: 14px 16px;
}
.right-art {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan);
  display: block; margin-bottom: 4px;
}
.right-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink);
  display: block; margin-bottom: 4px;
}
.right-item p { font-size: 13px; color: var(--n400); margin: 0; line-height: 1.5; }
