/* ============================================================
   OmniCoreStudio — Stylesheet (thème ruche 🐝)
   Dark · or miel · hexagones · glassmorphism · animations.
   ============================================================ */

:root {
  --bg: #07070d;
  --bg-soft: #0d0d17;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --text: #edeef4;
  --text-dim: #9b9cb2;
  --gold: #fec200;
  --amber: #f59e0b;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --grad: linear-gradient(110deg, #fec200, #f59e0b 40%, #7c3aed 100%);
  --grad-gold: linear-gradient(120deg, #ffd23f, #f59e0b);
  --grad-cool: linear-gradient(120deg, #7c3aed, #06b6d4);
  --radius: 18px;
  --shadow: 0 24px 70px -24px rgba(245, 158, 11, 0.4);
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Fonds ---------- */
#particles { position: fixed; inset: 0; z-index: -3; }
.bg-gradient {
  position: fixed; inset: 0; z-index: -4;
  background:
    radial-gradient(55vw 55vw at 12% 8%, rgba(254, 194, 0, 0.16), transparent 60%),
    radial-gradient(48vw 48vw at 88% 18%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(50vw 50vw at 50% 100%, rgba(6, 182, 212, 0.12), transparent 60%);
  animation: floatBg 20s ease-in-out infinite alternate;
}
@keyframes floatBg { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-3%) scale(1.08); } }

/* Motif nid d'abeille */
.bg-hex {
  position: fixed; inset: 0; z-index: -5; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1' d='M28 0l28 16v32L28 64 0 48V16zM28 64l28 16v32L28 128 0 112V80z'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, #000 25%, transparent 78%);
}

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 400px; height: 400px;
  margin: -200px 0 0 -200px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(254,194,0,0.13), transparent 60%);
  transition: opacity .3s; opacity: 0; will-change: transform;
}
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 100; box-shadow: 0 0 12px rgba(254,194,0,0.6); }

/* ---------- Navbar ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; gap: 24px; padding: 18px max(24px, 5vw); transition: .3s; border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(7,7,13,0.75); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 9px; font-size: 1.15rem; font-weight: 700; }
.brand-hex { color: var(--gold); font-size: 1.3rem; animation: spin 9s linear infinite; display: inline-block; filter: drop-shadow(0 0 6px rgba(254,194,0,.5)); }
@keyframes spin { to { transform: rotate(360deg); } }
.nav-links { margin-left: auto; display: flex; gap: 26px; }
.nav-links a { color: var(--text-dim); font-size: .95rem; position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); transition: width .25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 9px 18px; font-size: .9rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border-radius: 999px; font-weight: 600; font-family: 'Space Grotesk'; transition: transform .2s, box-shadow .2s, background .2s; border: 1px solid transparent; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--grad-gold); color: #1a1206; box-shadow: var(--shadow); padding: 11px 22px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 28px 80px -20px rgba(245,158,11,0.7); }
.btn-ghost { background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 11px 22px; }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-discord { background: #5865F2; color: #fff; }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 130px 24px 70px; position: relative; }
.hero-inner { max-width: 900px; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; font-size: .85rem; color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); margin-bottom: 28px; }
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .4; transform: scale(1.4); } }
.hero-title { font-size: clamp(2.7rem, 7.5vw, 5.2rem); line-height: 1.04; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-dim); max-width: 640px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.hero-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 22px; min-width: 120px; }
.hero-stat b { font-family: 'Space Grotesk'; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-stat span { font-size: .8rem; color: var(--text-dim); }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint span { width: 22px; height: 34px; border: 2px solid var(--border); border-radius: 14px; position: relative; }
.scroll-hint span::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 6px; } 50% { opacity: 1; } 100% { opacity: 0; top: 18px; } }

/* ---------- Bandeau stack ---------- */
.tech-band { border-block: 1px solid var(--border); background: rgba(255,255,255,0.02); overflow: hidden; padding: 16px 0; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.tech-track { display: flex; gap: 48px; width: max-content; animation: marquee 26s linear infinite; }
.tech-track span { font-family: 'Space Grotesk'; font-weight: 600; color: var(--text-dim); white-space: nowrap; font-size: 1.05rem; }
.tech-track span::before { content: '⬡'; color: var(--gold); margin-right: 12px; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 110px max(24px, 5vw); position: relative; }
.section-alt { max-width: none; background: linear-gradient(180deg, transparent, rgba(254,194,0,0.035), transparent); }
.section-alt > * { max-width: var(--max); margin-inline: auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.section-head h2, .stats-text h2, .flagship-text h2, .join-card h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.section-desc { color: var(--text-dim); }

/* ---------- Flagship / OmniHive ---------- */
.flagship-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.flagship-sub { font-size: 1.15rem; color: var(--gold); font-weight: 500; margin-bottom: 14px; }
.flagship-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 28px; }
.flagship-features li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text); }
.flagship-features .fx { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--surface-2); flex-shrink: 0; }
.flagship-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.flagship-visual { position: relative; display: grid; place-items: center; min-height: 340px; }
.hive-card { position: relative; width: 100%; max-width: 420px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); padding: 6px; box-shadow: var(--shadow); }
.hive-glow { position: absolute; inset: -2px; border-radius: 20px; background: var(--grad); opacity: .25; filter: blur(28px); z-index: -1; }
.hive-window { background: var(--bg-soft); border-radius: 15px; padding: 18px; border: 1px solid var(--border); }
.hive-dots { display: flex; gap: 7px; margin-bottom: 16px; }
.hive-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-2); }
.hive-dots span:nth-child(1) { background: #ff5f57; }
.hive-dots span:nth-child(2) { background: #febc2e; }
.hive-dots span:nth-child(3) { background: #28c840; }
.hive-line { font-family: 'Space Grotesk'; font-weight: 600; color: var(--gold); margin-bottom: 14px; font-size: .92rem; }
.hive-rows { display: flex; flex-direction: column; gap: 10px; }
.hive-row { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-dim); padding: 9px 12px; background: var(--surface); border-radius: 10px; border: 1px solid var(--border); }
.hive-row .hx { color: var(--gold); }
.hex-deco { position: absolute; color: var(--gold); opacity: .14; font-size: 5rem; animation: bob 6s ease-in-out infinite; }
.hex-deco.hex1 { top: -10px; right: 10px; }
.hex-deco.hex2 { bottom: 0; left: -10px; font-size: 3.5rem; animation-delay: 1.5s; }
.hex-deco.hex3 { top: 40%; right: -16px; font-size: 2.5rem; animation-delay: .8s; color: var(--violet); }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* ---------- Filtres ---------- */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); cursor: pointer; font-size: .88rem; transition: .2s; font-family: 'Inter'; }
.filter-btn:hover { color: var(--text); border-color: rgba(254,194,0,0.4); }
.filter-btn.active { background: var(--grad-gold); color: #1a1206; border-color: transparent; font-weight: 600; }

/* ---------- Cartes projets ---------- */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.project-card { position: relative; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: transform .25s, border-color .25s; transform-style: preserve-3d; }
.project-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%); }
.project-card:hover::before { opacity: 1; }
.project-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.pc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.pc-cat { font-size: .78rem; color: var(--text-dim); letter-spacing: .05em; text-transform: uppercase; }
.pc-status { font-size: .72rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.pc-status.live { background: rgba(34,197,94,.15); color: #4ade80; }
.pc-status.beta { background: rgba(6,182,212,.15); color: #38bdf8; }
.pc-status.wip { background: rgba(245,158,11,.15); color: #fbbf24; }
.pc-status.archived { background: rgba(255,255,255,.08); color: var(--text-dim); }
.project-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.pc-tagline { color: var(--accent); font-size: .9rem; font-weight: 500; margin-bottom: 12px; }
.pc-desc { color: var(--text-dim); font-size: .92rem; margin-bottom: 18px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-tag { font-size: .75rem; padding: 4px 10px; border-radius: 8px; background: var(--surface-2); color: var(--text-dim); }
.pc-glow { position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--accent); filter: blur(60px); opacity: .35; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.service-card { padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: .25s; }
.service-card:hover { transform: translateY(-6px); background: var(--surface-2); border-color: rgba(254,194,0,0.35); }
.service-icon { font-size: 1.7rem; width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 16px; background: var(--surface-2); border: 1px solid var(--border); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: .92rem; }

/* ---------- Workflow ---------- */
.workflow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.workflow-card { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: .25s; }
.workflow-card:hover { transform: translateY(-6px); border-color: rgba(254,194,0,0.4); background: var(--surface-2); }
.wf-step { font-family: 'Space Grotesk'; font-weight: 700; font-size: 3rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 14px; }
.workflow-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.workflow-card p { color: var(--text-dim); font-size: .92rem; }

/* ---------- Valeurs ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.value-card { display: flex; gap: 16px; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: .25s; }
.value-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,0.4); }
.value-ico { font-size: 1.5rem; width: 52px; height: 52px; flex-shrink: 0; display: grid; place-items: center; background: var(--surface-2); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value-card p { color: var(--text-dim); font-size: .9rem; }

/* ---------- Stats ---------- */
.stats-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bot-status { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); }
.status-led { width: 10px; height: 10px; border-radius: 50%; }
.status-led.on { background: #4ade80; box-shadow: 0 0 12px #4ade80; animation: pulse 1.8s infinite; }
.status-led.off { background: #ef4444; }
.status-label { font-size: .9rem; color: var(--text-dim); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: center; transition: .25s; }
.stat-card:hover { border-color: rgba(254,194,0,0.45); transform: translateY(-4px); }
.stat-value { font-family: 'Space Grotesk'; font-size: 2.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--text-dim); font-size: .9rem; margin-top: 6px; }

/* ---------- Équipes ---------- */
.teams-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.team-card { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: .25s; }
.team-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.team-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.team-icon { font-size: 1.5rem; width: 50px; height: 50px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 20%, transparent); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.team-card h3 { font-size: 1.2rem; }
.team-count { font-size: .75rem; color: var(--text-dim); }
.team-desc { color: var(--text-dim); font-size: .9rem; margin-bottom: 18px; }
.team-members { display: flex; flex-direction: column; gap: 10px; }
.member { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; display: grid; place-items: center; font-size: .8rem; font-weight: 700; font-family: 'Space Grotesk'; color: #1a1206; background: var(--grad-gold); flex-shrink: 0; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.avatar-img { object-fit: cover; }
.member-name { font-weight: 600; font-size: .92rem; }
.member-role { color: var(--text-dim); font-size: .8rem; }
.team-empty { color: var(--text-dim); font-size: .85rem; font-style: italic; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(254,194,0,0.4); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.02rem; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--text-dim); }
.faq-a p { padding: 0 22px 20px; font-size: .94rem; }

/* ---------- CTA / Join ---------- */
.join-card { position: relative; text-align: center; padding: 64px 40px; border-radius: 28px; background: linear-gradient(135deg, rgba(254,194,0,0.1), rgba(124,58,237,0.1)); border: 1px solid var(--border); overflow: hidden; }
.join-card h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.join-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.join-hexes { position: absolute; inset: 0; pointer-events: none; }
.join-hexes span { position: absolute; color: var(--gold); opacity: .12; font-size: 4rem; animation: bob 7s ease-in-out infinite; }
.join-hexes span:nth-child(1) { top: 10%; left: 8%; }
.join-hexes span:nth-child(2) { bottom: 12%; left: 18%; font-size: 2.5rem; animation-delay: 1s; color: var(--violet); }
.join-hexes span:nth-child(3) { top: 18%; right: 12%; font-size: 3rem; animation-delay: .5s; }
.join-hexes span:nth-child(4) { bottom: 16%; right: 9%; font-size: 5rem; animation-delay: 1.8s; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); margin-top: 40px; padding: 50px max(24px,5vw) 24px; background: rgba(7,7,13,0.6); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-brand { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.2rem; }
.footer-brand p { font-family: 'Inter'; font-weight: 400; color: var(--text-dim); font-size: .9rem; margin-top: 8px; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--text-dim); font-size: .9rem; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { max-width: var(--max); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--text-dim); font-size: .85rem; }
.footer-legal a { color: var(--text-dim); transition: color .2s; }
.footer-legal a:hover { color: var(--text); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .flagship-wrap, .stats-wrap { grid-template-columns: 1fr; gap: 40px; }
  .flagship-visual { order: -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(7,7,13,0.97); backdrop-filter: blur(16px); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border); }
  .burger { display: flex; margin-left: auto; }
}
@media (max-width: 560px) {
  .flagship-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .join-card { padding: 44px 22px; }
}
