:root { --bg: #06070d; --blue: #4fc3f7; --teal: #2dd4bf; --amber: #f59e0b; --green: #34d399; --text: #e2e8f0; --muted: #94a3b8; --surface: rgba(255,255,255,0.04); --surface-2: rgba(255,255,255,0.07); --border: rgba(255,255,255,0.08); --border-t: rgba(255,255,255,0.13); --radius: 16px; --radius-sm: 10px; --ease: cubic-bezier(0.16,1,0.3,1); --nav-h: 64px; --purple: #a78bfa; }

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body { background-color: #06070d; background-image: radial-gradient(80% 50% at 20% -10%, rgba(79, 195, 247, 0.07) 0%, transparent 60%), radial-gradient(60% 40% at 80% 110%, rgba(45, 212, 191, 0.06) 0%, transparent 55%); color: var(--text); font-family: "Space Grotesk", system-ui, sans-serif; font-size: 1rem; line-height: 1.7; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: "Libre Baskerville", Georgia, serif; line-height: 1.22; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }

a:hover { color: rgb(129, 212, 250); }

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

#starfield { position: fixed; inset: 0px; z-index: 0; pointer-events: none; }

.blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform; }

.blob-1 { width: 700px; height: 700px; top: -180px; left: -140px; background: radial-gradient(circle, rgba(79, 195, 247, 0.11) 0%, transparent 65%); animation: 22s ease-in-out 0s infinite alternate none running blob-a; }

.blob-2 { width: 550px; height: 550px; top: 35%; right: -160px; background: radial-gradient(circle, rgba(45, 212, 191, 0.09) 0%, transparent 65%); animation: 28s ease-in-out 0s infinite alternate none running blob-b; }

.blob-3 { width: 450px; height: 450px; bottom: 8%; left: 15%; background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 65%); animation: 18s ease-in-out 0s infinite alternate-reverse none running blob-a; }

@keyframes blob-a { 
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(50px, 35px); }
}

@keyframes blob-b { 
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(-40px, 45px); }
}

.grain { position: fixed; inset: 0px; pointer-events: none; z-index: 1; opacity: 0.032; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>"); background-size: 200px 200px; }

.container { max-width: 1100px; margin: 0px auto; padding: 0px 1.5rem; position: relative; z-index: 2; }

section { padding: 6rem 0px; position: relative; z-index: 2; }

.section-label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.7rem; opacity: 0.9; }

.section-label::before { content: ""; display: block; width: 22px; height: 1.5px; background: linear-gradient(90deg,var(--blue),transparent); flex-shrink: 0; }

.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 1rem; color: var(--text); letter-spacing: -0.02em; }

.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin-bottom: 3rem; line-height: 1.78; }

nav { position: fixed; top: 0px; left: 0px; right: 0px; height: var(--nav-h); z-index: 100; background: rgba(6, 7, 13, 0.4); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: background 0.35s, border-color 0.35s; }

nav.scrolled { background: rgba(6, 7, 13, 0.82); border-bottom-color: var(--border); }

.nav-inner { max-width: 1100px; margin: 0px auto; padding: 0px 1.5rem; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav-logo { font-weight: 700; font-size: 1rem; color: var(--text); letter-spacing: 0.06em; flex-shrink: 0; display: flex; align-items: center; gap: 0.5rem; text-decoration: none; cursor: pointer; }

.nav-logo:hover { color: var(--text); text-decoration: none; }

.nav-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--teal)); box-shadow: rgba(79, 195, 247, 0.6) 0px 0px 8px; animation: 2.5s ease-in-out 0s infinite normal none running pulse-dot; }

@keyframes pulse-dot { 
  0%, 100% { box-shadow: rgba(79, 195, 247, 0.6) 0px 0px 8px; }
  50% { box-shadow: rgba(79, 195, 247, 0.9) 0px 0px 16px, rgba(45, 212, 191, 0.4) 0px 0px 24px; }
}

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

.nav-links a { font-size: 0.79rem; font-weight: 500; color: var(--muted); padding: 0.3rem 0.75rem; border-radius: 6px; transition: color 0.2s, background 0.2s; }

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

.nav-links a.page-active { background: rgba(79, 195, 247, 0.07); border-bottom: 2px solid var(--blue); border-radius: 4px 4px 0px 0px; color: var(--blue) !important; }

.nav-hamburger { display: none; background: none; border: 1px solid var(--border); color: var(--text); font-size: 1.15rem; cursor: pointer; padding: 0.3rem 0.65rem; border-radius: 6px; transition: background 0.2s; font-family: inherit; line-height: 1; align-items: center; }

.nav-hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.mobile-menu { position: fixed; inset: 0px; z-index: 500; background: rgba(6, 7, 13, 0.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform .4s var(--ease); pointer-events: none; }

.mobile-menu.mm-open { transform: translateX(0px); pointer-events: all; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2.5rem; text-align: center; }

.mobile-menu a { font-size: 2.2rem; font-weight: 700; color: var(--muted); font-family: "Libre Baskerville", serif; letter-spacing: -0.02em; transition: color 0.2s; text-decoration: none; }

.mobile-menu a:hover, .mobile-menu a.page-active { color: var(--blue); }

.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border); color: var(--muted); cursor: pointer; border-radius: var(--radius-sm); padding: 0.4rem 0.9rem; font-size: 0.85rem; font-weight: 600; font-family: "Space Grotesk", sans-serif; transition: background 0.2s, color 0.2s; }

.mobile-menu-close:hover { background: rgba(255, 255, 255, 0.12); color: var(--text); }

#hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); position: relative; }

.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; padding: 2rem 0px 4rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(79, 195, 247, 0.07); border: 1px solid rgba(79, 195, 247, 0.2); color: var(--blue); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.75rem; box-shadow: rgba(79, 195, 247, 0.08) 0px 0px 20px; }

.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; animation: 2.2s ease-in-out 0s infinite normal none running pulse-dot; }

.hero-title { font-size: clamp(2rem, 5.5vw, 3.6rem); font-weight: 700; line-height: 1.12; margin-bottom: 1.3rem; color: var(--text); letter-spacing: -0.03em; }

.hero-title em { font-style: italic; background: linear-gradient(135deg, #60d8ff 0%, #2196f3 100%) text; -webkit-text-fill-color: transparent; filter: drop-shadow(rgba(79, 195, 247, 0.55) 0px 0px 22px); }

.hero-subtitle { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin-bottom: 2rem; line-height: 1.82; }

.hero-disclaimer { display: flex; align-items: flex-start; gap: 0.85rem; background: rgba(45, 212, 191, 0.05); border: 1px solid rgba(45, 212, 191, 0.16); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: 0.84rem; color: var(--muted); max-width: 500px; line-height: 1.68; }

.hero-disclaimer-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: 0.1rem; }

.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: var(--muted); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; animation: 2.4s ease-in-out 0s infinite normal none running scroll-bounce; }

.hero-scroll-arrow { width: 1px; height: 28px; background: linear-gradient(to bottom,var(--muted),transparent); }

@keyframes scroll-bounce { 
  0%, 100% { transform: translateX(-50%) translateY(0px); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

.radar-wrap { flex-shrink: 0; }

.radar { width: 210px; height: 210px; border-radius: 50%; position: relative; background: radial-gradient(circle, rgba(79, 195, 247, 0.18) 0%, transparent 70%); box-shadow: rgba(79, 195, 247, 0.18) 0px 0px 70px; }

.radar-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(79, 195, 247, 0.35); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: 3s ease-in-out 0s infinite normal none running ring-pulse; }

.radar-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }

.radar-ring:nth-child(2) { width: 66.6%; height: 66.6%; animation-delay: 0.35s; }

.radar-ring:nth-child(3) { width: 33.3%; height: 33.3%; animation-delay: 0.7s; }

@keyframes ring-pulse {
  0%, 100% { border-color: rgba(79, 195, 247, 0.30); }
  50% { border-color: rgba(79, 195, 247, 0.70); }
}

.radar-cross { position: absolute; inset: 0px; border-radius: 50%; overflow: hidden; }

.radar-cross::before, .radar-cross::after { content: ""; position: absolute; background: rgba(79, 195, 247, 0.25); }

.radar-cross::before { width: 1px; height: 100%; left: 50%; }

.radar-cross::after { width: 100%; height: 1px; top: 50%; }

.radar-sweep { position: absolute; inset: 0px; border-radius: 50%; background: conic-gradient(transparent 0deg, rgba(79, 195, 247, 0.45) 45deg, transparent 45deg); animation: 4s linear 0s infinite normal none running sweep; }

@keyframes sweep { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-blip { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue),0 0 18px rgba(79,195,247,.5); opacity: 0; }

.radar-blip:nth-child(5) { top: 32%; left: 58%; animation: 4s ease-out 0.4s infinite normal none running blip-appear; }

.radar-blip:nth-child(6) { top: 63%; left: 28%; animation: 4s ease-out 2s infinite normal none running blip-appear; }

.radar-blip:nth-child(7) { top: 22%; left: 42%; animation: 4s ease-out 3.2s infinite normal none running blip-appear; }

@keyframes blip-appear { 
  0% { opacity: 0; transform: scale(0); }
  12%, 28% { opacity: 1; transform: scale(1); }
  65% { opacity: 0; transform: scale(0.4); }
  100% { opacity: 0; }
}

.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3.5rem; }

.stat-card { background: linear-gradient(135deg, rgba(79, 195, 247, 0.07) 0%, rgba(79, 195, 247, 0.02) 100%); border-width: 1px; border-style: solid; border-color: rgba(79, 195, 247, 0.25) rgba(79, 195, 247, 0.15) rgba(79, 195, 247, 0.15); border-image: initial; border-radius: var(--radius); padding: 1.75rem 1.5rem; text-align: center; box-shadow: rgba(79, 195, 247, 0.04) 0px 0px 30px; }

.stat-number { font-size: 2.6rem; font-weight: 700; display: block; letter-spacing: -0.03em; background: linear-gradient(135deg, rgb(79, 195, 247) 0%, rgb(129, 212, 250) 100%) text; -webkit-text-fill-color: transparent; filter: drop-shadow(rgba(79, 195, 247, 0.45) 0px 0px 18px); }

.stat-label { font-size: 0.83rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.5; }

.debuter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.debuter-card { border-right-color: ; border-right-style: ; border-right-width: ; border-bottom-color: ; border-bottom-style: ; border-bottom-width: ; border-left-color: ; border-left-style: ; border-left-width: ; border-image-source: ; border-image-slice: ; border-image-width: ; border-image-outset: ; border-image-repeat: ; border-top: 3px solid var(--border-t); border-radius: var(--radius); padding: 1.75rem 1.5rem; background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%); opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease),transform .5s var(--ease),box-shadow .25s; }

.debuter-card.revealed { opacity: 1; transform: translateY(0px); }

.debuter-card.revealed:hover { box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 32px; transform: translateY(-3px); }

.debuter-card-blue { border-top-color: var(--blue); }

.debuter-card-purple { border-top-color: var(--purple); }

.debuter-card-amber { border-top-color: var(--amber); }

.debuter-card-teal { border-top-color: var(--teal); }

.debuter-icon { font-size: 2.4rem; margin-bottom: 0.9rem; display: block; }

.debuter-profil { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.3rem; }

.debuter-head { font-family: "Libre Baskerville", serif; font-size: 1.05rem; color: var(--text); margin-bottom: 0.35rem; }

.debuter-sub { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }

.debuter-steps { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.debuter-step { display: flex; align-items: flex-start; gap: 0.65rem; }

.debuter-num { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.67rem; font-weight: 700; margin-top: 0.12rem; }

.debuter-card-blue .debuter-num { background: rgba(79, 195, 247, 0.15); color: var(--blue); }

.debuter-card-purple .debuter-num { background: rgba(167, 139, 250, 0.15); color: var(--purple); }

.debuter-card-amber .debuter-num { background: rgba(245, 158, 11, 0.15); color: var(--amber); }

.debuter-card-teal .debuter-num { background: rgba(45, 212, 191, 0.15); color: var(--teal); }

.debuter-step-text { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

.debuter-step-text a { color: var(--blue); font-weight: 500; }

.debuter-result { margin-top: 1.1rem; padding: 0.8rem 1rem; background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); line-height: 1.62; font-style: italic; }

.explorer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.explorer-card { display: block; text-decoration: none; color: inherit; background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%); border-right-color: ; border-right-style: ; border-right-width: ; border-bottom-color: ; border-bottom-style: ; border-bottom-width: ; border-left-color: ; border-left-style: ; border-left-width: ; border-image-source: ; border-image-slice: ; border-image-width: ; border-image-outset: ; border-image-repeat: ; border-top: 3px solid var(--border-t); border-radius: var(--radius); padding: 2rem 1.75rem; transition: background .2s,border-color .2s,box-shadow .25s,transform .2s var(--ease); opacity: 0; transform: translateY(18px); }

.explorer-card.revealed { opacity: 1; transform: translateY(0px); }

.explorer-card.revealed:hover { background: linear-gradient(160deg, rgba(79, 195, 247, 0.08) 0%, rgba(79, 195, 247, 0.024) 100%); border-right-color: rgba(79, 195, 247, 0.3); border-bottom-color: rgba(79, 195, 247, 0.3); border-left-color: rgba(79, 195, 247, 0.3); border-top-color: var(--blue); box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 32px, rgba(79, 195, 247, 0.07) 0px 0px 40px; transform: translateY(-4px); text-decoration: none; }

.explorer-icon { font-size: 2.5rem; margin-bottom: 0.9rem; display: block; }

.explorer-title { font-family: "Libre Baskerville", serif; font-size: 1.2rem; color: var(--text); margin-bottom: 0.6rem; }

.explorer-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.72; margin-bottom: 1rem; }

.explorer-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.explorer-badge { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.2rem 0.6rem; border-radius: 100px; background: rgba(255, 255, 255, 0.07); color: var(--muted); border: 1px solid var(--border); }

footer { position: relative; z-index: 2; border-top: 1px solid var(--border); padding: 2.5rem 0px; background: linear-gradient(rgba(79, 195, 247, 0.016) 0%, transparent 100%); }

.footer-inner { max-width: 1100px; margin: 0px auto; padding: 0px 1.5rem; display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.25rem; }

.footer-brand { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.footer-brand strong { color: var(--text); font-weight: 600; }

.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; list-style: none; }

.footer-links a { font-size: 0.81rem; color: var(--muted); font-family: "Space Grotesk", monospace; transition: color 0.2s; }

.footer-links a:hover { color: var(--blue); }

.footer-mention { font-size: 0.78rem; color: var(--muted); opacity: 0.65; font-style: italic; width: 100%; }

.stat-card, .debuter-card, .explorer-card, .hero-disclaimer { backdrop-filter: blur(10px); }

.debuter-card { background: linear-gradient(160deg, rgba(8, 10, 20, 0.72) 0%, rgba(6, 7, 13, 0.55) 100%); }

section .container::before { content: ""; position: absolute; inset: -3rem -2rem; background: radial-gradient(120% 100%, rgba(6, 7, 13, 0.38) 0%, transparent 75%); pointer-events: none; z-index: 0; }

section .container > * { position: relative; z-index: 1; }

.section-title, .hero-title { text-shadow: rgba(6, 7, 13, 0.9) 0px 2px 28px; }

.section-desc, .hero-subtitle { text-shadow: rgba(6, 7, 13, 0.92) 0px 1px 18px; }

@media (max-width: 800px) {
  section { padding: 4.5rem 0px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .radar-wrap { display: flex; justify-content: center; order: -1; }
  .radar { width: 100px; height: 100px; }
  .stats-band { grid-template-columns: 1fr; gap: 1rem; }
  .nav-links { display: none; }
  .hero-scroll { display: none; }
  .nav-hamburger { display: flex; }
  .debuter-grid { grid-template-columns: 1fr; }
  .explorer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 1.85rem; }
}

/* ── LEGAL PAGES ── */
.legal-page-header { padding-top: calc(var(--nav-h) + 5rem); padding-bottom: 3rem; text-align: center; position: relative; z-index: 2; }
.legal-tag { display: inline-flex; align-items: center; gap: .55rem; background: rgba(79,195,247,.07); border: 1px solid rgba(79,195,247,.2); color: var(--blue); font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.5rem; }
.legal-h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); letter-spacing: -.02em; margin-bottom: .9rem; font-family: "Libre Baskerville", Georgia, serif; }
.legal-lead { color: var(--muted); font-size: 1.02rem; max-width: 580px; margin: 0 auto; line-height: 1.78; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 0 0 7rem; position: relative; z-index: 2; }
.legal-body h2 { font-size: 1.22rem; color: var(--text); margin: 2.8rem 0 .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); font-family: "Libre Baskerville", Georgia, serif; }
.legal-body h3 { font-size: .97rem; color: var(--text); margin: 1.6rem 0 .55rem; font-family: "Space Grotesk", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.legal-body p { color: var(--muted); font-size: .91rem; line-height: 1.82; margin-bottom: .95rem; }
.legal-body ul, .legal-body ol { color: var(--muted); font-size: .91rem; line-height: 1.82; margin-bottom: .95rem; padding-left: 1.4rem; }
.legal-body li { margin-bottom: .3rem; }
.legal-body a { color: var(--blue); }
.legal-body a:hover { color: rgb(129,212,250); }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-date { display: inline-block; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--muted); font-size: .76rem; padding: .25rem .8rem; border-radius: 100px; margin-bottom: 2.5rem; }
.legal-toc { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.75rem; margin-bottom: 3rem; backdrop-filter: blur(10px); }
.legal-toc-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: .7rem !important; }
.legal-toc ol { padding-left: 1.2rem; }
.legal-toc li { margin-bottom: .25rem; }
.legal-toc a { color: var(--muted); font-size: .88rem; }
.legal-toc a:hover { color: var(--blue); }
.legal-box { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin-bottom: 1rem; backdrop-filter: blur(8px); }
.legal-box p { margin-bottom: 0 !important; }
.legal-placeholder { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.3); color: #f59e0b; border-radius: 4px; padding: .1rem .45rem; font-size: .82rem; font-family: monospace; }
.legal-highlight { background: rgba(79,195,247,.05); border-left: 3px solid rgba(79,195,247,.35); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: .9rem 1.2rem; margin-bottom: 1rem; }
.legal-highlight p { margin-bottom: 0 !important; }

/* ── COOKIE CONSENT MODAL ── */
html.cb-locked, html.cb-locked body { overflow: hidden; }
#cookie-scrim { position: fixed; inset: 0; z-index: 398; background: rgba(6,7,13,.78); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
#cookie-scrim.cs-visible { opacity: 1; pointer-events: auto; }
#cookie-banner { position: fixed; top: 50%; left: 50%; z-index: 399; width: calc(100% - 2.5rem); max-width: 540px; max-height: calc(100vh - 3rem); overflow-y: auto; background: rgba(10,12,20,.98); border: 1px solid var(--border-t); border-radius: var(--radius); backdrop-filter: blur(20px); padding: 1.7rem 1.85rem; box-shadow: 0 24px 64px rgba(0,0,0,.5); transform: translate(-50%,-50%) scale(.94); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .35s var(--ease); }
#cookie-banner.cb-visible { transform: translate(-50%,-50%) scale(1); opacity: 1; pointer-events: auto; }
.cb-inner { max-width: none; margin: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.cb-title { font-family: "Space Grotesk",sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.cb-text { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.cb-text a { color: var(--blue); text-decoration: underline; }
.cb-actions { display: flex; gap: .65rem; align-items: center; flex-wrap: wrap; }
.cb-btn-ok { background: linear-gradient(135deg,var(--blue),var(--teal)); color: #06070d; border: none; font-family: "Space Grotesk",sans-serif; font-size: .84rem; font-weight: 700; padding: .65rem 1.35rem; border-radius: 7px; cursor: pointer; transition: opacity .2s; white-space: nowrap; }
.cb-btn-ok:hover { opacity: .85; }
.cb-btn-info { font-size: .8rem; color: var(--muted); background: none; border: 1px solid var(--border); border-radius: 7px; padding: .6rem 1.15rem; cursor: pointer; font-family: "Space Grotesk",sans-serif; transition: color .2s,border-color .2s; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; }
.cb-btn-info:hover { color: var(--text); border-color: var(--border-t); }

/* ── FOOTER LEGAL BAR ── */
.footer-legal { width: 100%; border-top: 1px solid rgba(255,255,255,.06); padding-top: .9rem; display: flex; flex-wrap: wrap; gap: .35rem .9rem; align-items: center; }
.footer-legal a { color: rgba(148,163,184,.48); font-size: .75rem; transition: color .2s; text-decoration: none; }
.footer-legal a:hover { color: var(--blue); }
.footer-legal-sep { color: rgba(255,255,255,.12); font-size: .65rem; line-height: 1; }
.footer-copy { font-size: .72rem; color: rgba(148,163,184,.28); width: 100%; padding-top: .15rem; }

@media (max-width: 600px) {
  #cookie-banner { width: calc(100% - 1.5rem); padding: 1.4rem 1.5rem; }
  .cb-actions { width: 100%; }
  .cb-actions .cb-btn-ok, .cb-actions .cb-btn-info { flex: 1; justify-content: center; text-align: center; }
}

/* ── CONTENT PAGE HERO ── */
.content-hero { min-height: 44vh; display: flex; align-items: flex-end; padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; position: relative; z-index: 2; }

/* ── TIMELINE CARDS (dossier/histoire) ── */
.timeline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.timeline-card { background: linear-gradient(160deg,rgba(8,10,20,.72) 0%,rgba(6,7,13,.55) 100%); border-top: 3px solid var(--border-t); border-radius: var(--radius); padding: 1.5rem; opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease),transform .5s var(--ease); backdrop-filter: blur(10px); }
.timeline-card.revealed { opacity: 1; transform: translateY(0); }
.timeline-card-blue { border-top-color: var(--blue); }
.timeline-card-teal { border-top-color: var(--teal); }
.timeline-card-amber { border-top-color: var(--amber); }
.timeline-card-purple { border-top-color: var(--purple); }
.timeline-card-green { border-top-color: var(--green); }
.timeline-year { font-size: .7rem; font-weight: 700; letter-spacing: .14em; color: var(--blue); text-transform: uppercase; margin-bottom: .45rem; }
.timeline-event { font-family: "Libre Baskerville",serif; font-size: 1rem; color: var(--text); margin-bottom: .45rem; line-height: 1.3; }
.timeline-desc { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ── ACTOR CARDS ── */
.actor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.actor-card { background: linear-gradient(160deg,rgba(255,255,255,.055) 0%,rgba(255,255,255,.02) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease),transform .5s var(--ease); backdrop-filter: blur(10px); }
.actor-card.revealed { opacity: 1; transform: translateY(0); }
.actor-role { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); margin-bottom: .4rem; }
.actor-name { font-family: "Libre Baskerville",serif; font-size: 1.02rem; color: var(--text); margin-bottom: .45rem; }
.actor-desc { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ── CAS CARDS ── */
.cas-grid { display: grid; gap: 1.5rem; }
.cas-card { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; background: linear-gradient(160deg,rgba(255,255,255,.04) 0%,rgba(255,255,255,.015) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease),transform .5s var(--ease); backdrop-filter: blur(10px); }
.cas-card.revealed { opacity: 1; transform: translateY(0); }
.cas-meta { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; padding-top: .1rem; }
.cas-year-badge { font-size: .7rem; font-weight: 700; background: rgba(79,195,247,.1); border: 1px solid rgba(79,195,247,.25); color: var(--blue); padding: .22rem .65rem; border-radius: 100px; letter-spacing: .04em; white-space: nowrap; }
.cas-pays { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.cas-status { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .18rem .55rem; border-radius: 100px; }
.cas-status-confirmed { background: rgba(52,211,153,.08); border: 1px solid rgba(52,211,153,.22); color: var(--green); }
.cas-status-documented { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.22); color: var(--amber); }
.cas-title { font-family: "Libre Baskerville",serif; font-size: 1.08rem; color: var(--text); margin-bottom: .45rem; }
.cas-body { font-size: .87rem; color: var(--muted); line-height: 1.72; margin-bottom: .6rem; }
.cas-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.cas-tag { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .17rem .55rem; border-radius: 100px; background: rgba(255,255,255,.06); color: var(--muted); border: 1px solid var(--border); }

/* ── SOURCE CARDS ── */
.source-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.source-card { display: flex; gap: 1rem; align-items: flex-start; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; text-decoration: none; color: inherit; transition: background .2s,border-color .2s; }
.source-card:hover { background: rgba(79,195,247,.05); border-color: rgba(79,195,247,.22); }
.source-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .05rem; }
.source-name { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: .2rem; }
.source-desc { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.source-url { font-size: .74rem; color: var(--blue); margin-top: .25rem; font-family: monospace; }

/* ── BOOK CARDS ── */
.book-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.book-card { background: linear-gradient(160deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.02) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.book-author { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; color: var(--purple); margin-bottom: .3rem; }
.book-title { font-family: "Libre Baskerville",serif; font-size: 1rem; color: var(--text); font-style: italic; margin-bottom: .15rem; }
.book-year { font-size: .72rem; color: var(--muted); margin-bottom: .6rem; }
.book-desc { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ── GLOSSARY ── */
.glossary-grid { display: grid; gap: .6rem; }
.glossary-item { display: grid; grid-template-columns: 190px 1fr; gap: 1.25rem; align-items: baseline; padding: .85rem 1rem; background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.glossary-term { font-weight: 700; font-size: .88rem; color: var(--text); }
.glossary-abbr { font-size: .7rem; color: var(--blue); display: block; margin-top: .12rem; font-weight: 400; }
.glossary-def { font-size: .86rem; color: var(--muted); line-height: 1.65; }

/* ── FOLLOW CARDS ── */
.follow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.follow-card { display: flex; gap: .85rem; align-items: flex-start; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; text-decoration: none; color: inherit; transition: background .2s,border-color .2s; }
.follow-card:hover { background: rgba(79,195,247,.05); border-color: rgba(79,195,247,.22); }
.follow-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(79,195,247,.15); border: 1px solid rgba(79,195,247,.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.follow-handle { font-weight: 700; font-size: .9rem; color: var(--blue); }
.follow-bio { font-size: .79rem; color: var(--muted); line-height: 1.55; margin-top: .12rem; }

/* ── REVEAL CARD UPDATE ── */
.orga-card { background: linear-gradient(160deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.02) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease),transform .5s var(--ease); backdrop-filter: blur(10px); }
.orga-card.revealed { opacity: 1; transform: translateY(0); }
.orga-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.orga-flag { font-size: 1.6rem; margin-bottom: .65rem; display: block; }
.orga-name { font-weight: 700; font-size: .97rem; color: var(--text); margin-bottom: .35rem; }
.orga-pays { font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .5rem; }
.orga-desc { font-size: .83rem; color: var(--muted); line-height: 1.65; }
.orga-link { font-size: .8rem; color: var(--blue); display: inline-block; margin-top: .5rem; }

/* ── HIGHLIGHT BOX ── */
.pursue-box { background: linear-gradient(135deg,rgba(79,195,247,.06) 0%,rgba(45,212,191,.04) 100%); border: 1px solid rgba(79,195,247,.2); border-radius: var(--radius); padding: 2rem 2.25rem; margin-bottom: 2.5rem; }
.pursue-box .section-label { margin-bottom: .5rem; }
.pursue-box h2 { font-family: "Libre Baskerville",serif; font-size: 1.55rem; color: var(--text); margin-bottom: .75rem; }
.pursue-box p { font-size: .91rem; color: var(--muted); line-height: 1.8; margin-bottom: .9rem; }
.pursue-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
.pursue-link-btn { display: inline-flex; align-items: center; gap: .5rem; background: rgba(79,195,247,.1); border: 1px solid rgba(79,195,247,.28); color: var(--blue); font-size: .82rem; font-weight: 700; padding: .55rem 1.2rem; border-radius: 8px; text-decoration: none; transition: background .2s; }
.pursue-link-btn:hover { background: rgba(79,195,247,.18); color: var(--blue); }

@media (max-width: 800px) {
  .content-hero { min-height: 36vh; padding-bottom: 3rem; }
  .timeline-grid { grid-template-columns: 1fr; }
  .actor-grid { grid-template-columns: 1fr; }
  .cas-card { grid-template-columns: 1fr; gap: .85rem; }
  .cas-meta { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .source-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .glossary-item { grid-template-columns: 1fr; gap: .35rem; }
  .follow-grid { grid-template-columns: 1fr; }
  .orga-grid { grid-template-columns: 1fr; }
}
