:root {
  --bg: #08070c;
  --bg-alt: #0d0b14;
  --panel: #131019;
  --panel-2: #17131f;
  --panel-border: #262032;
  --ink: #ece7f5;
  --ink-dim: #948aa8;
  --ink-faint: #574f68;
  --accent: #b990ff;
  --accent-dim: #8c5fe0;
  --accent-glow: rgba(185, 144, 255, 0.2);
  --amber: #ffb454;
  --amber-glow: rgba(255, 180, 84, 0.18);
  --warn: #ff5f7a;
  --owner: #ff9f45;
  --owner-glow: rgba(255, 159, 69, 0.16);
  --radius: 16px;
  --mono: 'JetBrains Mono', monospace;
  --display: 'Space Grotesk', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-shield {
  width: 52px; height: 52px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
.loader-shield svg { width: 100%; height: 100%; fill: none; stroke: var(--accent); stroke-width: 2.5; filter: drop-shadow(0 0 12px var(--accent-glow)); }
@keyframes loader-pulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.08); opacity: 1; } }
.loader-bar { width: 160px; height: 2px; background: var(--panel-border); border-radius: 2px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: loader-sweep 1.2s ease-in-out infinite; }
@keyframes loader-sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

#fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55; }

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(185, 144, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 80%);
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.scan-line {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.35;
  animation: scan-move 9s linear infinite;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 14px var(--accent-glow);
}
@keyframes scan-move {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 0.4; }
  95% { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

#sidenav {
  position: fixed;
  top: 0; left: 0;
  width: 288px;
  height: 100vh;
  background: var(--bg-alt);
  border-right: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  z-index: 50;
  padding: 30px 22px;
  transition: transform 0.4s var(--ease-out);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }

.shield-icon {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 7px var(--accent-glow));
}
.shield-icon.small { stroke-width: 3; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 700; font-size: 17px; letter-spacing: 2px; }
.brand-sub { font-family: var(--mono); font-size: 9px; letter-spacing: 3px; color: var(--accent); margin-top: 3px; }

.invite-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #0c0616;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 4px 22px -6px var(--accent-glow);
}
.invite-btn:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 9px 28px -6px rgba(185,144,255,0.45); }
.invite-btn:active { transform: translateY(0) scale(0.98); }
.invite-icon { font-size: 14px; transform: rotate(-45deg); display: inline-block; }
.invite-shine {
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 3.4s ease-in-out infinite;
}
@keyframes shine-sweep {
  0% { left: -60%; }
  35%, 100% { left: 130%; }
}

.dashboard-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--panel-border);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.dashboard-btn:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.dashboard-icon { width: 15px; height: 15px; display: flex; }
.dashboard-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }

.nav-search { position: relative; margin-bottom: 18px; }
.search-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; fill: none; stroke: var(--ink-faint); stroke-width: 2; pointer-events: none; }
.nav-search input {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 9px 12px 9px 32px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.nav-search input::placeholder { color: var(--ink-faint); }

.nav-list {
  list-style: none;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-list::-webkit-scrollbar { width: 4px; }
.nav-list::-webkit-scrollbar-thumb { background: var(--panel-border); border-radius: 2px; }

.nav-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12.5px;
  font-family: var(--mono);
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-list a:hover, .nav-list a.active { background: var(--panel); color: var(--accent); padding-left: 13px; }
.nav-list a.owner-link:hover, .nav-list a.owner-link.active { color: var(--owner); }
.nav-list a .nav-letter {
  font-size: 9px;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--panel-border);
  border-radius: 5px;
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
}
.nav-list a:hover .nav-letter, .nav-list a.active .nav-letter { border-color: var(--accent); color: var(--accent); }
.nav-list a.owner-link:hover .nav-letter, .nav-list a.owner-link.active .nav-letter { border-color: var(--owner); color: var(--owner); }

.nav-divider {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--owner);
  padding: 14px 10px 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,159,69,0.35), transparent); }

.nav-footer {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  padding-top: 14px;
  border-top: 1px solid var(--panel-border);
  display: flex; align-items: center; gap: 6px;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); } 50% { opacity: 0.6; box-shadow: 0 0 0 5px transparent; } }

#navToggle {
  display: none;
  position: fixed;
  top: 18px; left: 18px;
  z-index: 60;
  width: 42px; height: 42px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 11px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
#navToggle span { width: 18px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
#navToggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#navToggle.open span:nth-child(2) { opacity: 0; }
#navToggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main { margin-left: 288px; position: relative; z-index: 2; }

.hero {
  padding: 96px 64px 76px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  align-items: center;
  gap: 44px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(185,144,255,0.07), transparent 70%);
}

.hero-bg-glyphs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: grayscale(1);
  overflow: hidden;
}
.hero-bg-glyphs span {
  position: absolute;
  font-size: 90px;
  opacity: 0.04;
  will-change: transform;
}

.hero-inner { max-width: 640px; position: relative; flex-shrink: 0; }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 8px var(--accent); animation: pulse 2s infinite; }

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .accent { color: var(--accent); }

.hero-desc {
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0c0616;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 13px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 8px 26px -6px var(--accent-glow);
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -6px rgba(185,144,255,0.5); }
.hero-cta .cta-arrow { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform 0.25s; }
.hero-cta:hover .cta-arrow { transform: translateX(4px); }

.hero-dashboard {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--amber);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 13px;
  border: 1px solid rgba(255, 180, 84, 0.4);
  transition: transform 0.25s var(--ease-spring), background 0.25s, box-shadow 0.25s;
}
.hero-dashboard:hover { transform: translateY(-3px); background: var(--amber-glow); box-shadow: 0 12px 30px -8px rgba(255,180,84,0.35); }
.hero-dashboard .cta-arrow { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform 0.25s; }
.hero-dashboard:hover .cta-arrow { transform: translateX(4px); }

.hero-secondary {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--mono);
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-secondary:hover { color: var(--accent); border-color: var(--accent); }

.hero-stats { display: flex; gap: 44px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--mono); font-size: 32px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 11px; color: var(--ink-faint); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.hero-shield-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-shield {
  width: 60px; height: 60px;
  fill: var(--accent-glow);
  stroke: var(--accent);
  stroke-width: 2;
  filter: drop-shadow(0 0 22px var(--accent-glow));
  z-index: 2;
  animation: shield-float 4s ease-in-out infinite;
}
@keyframes shield-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
}
.ring-1 { width: 140px; height: 140px; animation: orbit-spin 20s linear infinite; }
.ring-2 { width: 200px; height: 200px; border-style: dashed; border-color: rgba(185,144,255,0.16); animation: orbit-spin 34s linear infinite reverse; }
.ring-3 { width: 260px; height: 260px; animation: orbit-spin 46s linear infinite; }
.ring-1::before, .ring-2::before {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  top: -2.5px; left: 50%;
  box-shadow: 0 0 9px var(--accent);
}
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.command-sections { padding: 64px 64px 40px; max-width: 1000px; }

.letter-group { margin-bottom: 54px; }

.letter-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.letter-heading .letter-badge {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  width: 38px; height: 38px;
  border: 1px solid var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-glow);
}
.letter-heading .letter-rule { flex: 1; height: 1px; background: var(--panel-border); }

.cmd-card {
  background: linear-gradient(165deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.cmd-card:hover { border-color: var(--accent-dim); box-shadow: 0 12px 38px -14px rgba(0,0,0,0.6); }

.cmd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.cmd-card:hover::before { opacity: 1; }

.cmd-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.cmd-name {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmd-name .cmd-emoji { font-size: 20px; }
.cmd-name .cmd-slash { color: var(--accent); }

.cmd-perm {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.perm-owner { background: rgba(255, 180, 84, 0.12); color: var(--amber); border: 1px solid rgba(255, 180, 84, 0.35); }
.perm-admin { background: rgba(185, 144, 255, 0.12); color: var(--accent); border: 1px solid rgba(185, 144, 255, 0.35); }
.perm-any   { background: rgba(120, 220, 190, 0.1); color: #6fe0bd; border: 1px solid rgba(120, 220, 190, 0.3); }
.perm-botowner { background: rgba(255, 95, 122, 0.12); color: var(--warn); border: 1px solid rgba(255, 95, 122, 0.35); }

.cmd-tagline { color: var(--ink-dim); font-size: 14px; margin-bottom: 16px; }

.cmd-body { font-size: 14px; line-height: 1.75; color: var(--ink); }
.cmd-body p { margin-bottom: 12px; }
.cmd-body p:last-child { margin-bottom: 0; }
.cmd-body strong { color: var(--accent); font-weight: 600; }
.cmd-body code {
  font-family: var(--mono);
  background: rgba(185, 144, 255, 0.1);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 12.5px;
}

.cmd-options {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cmd-option-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  padding: 8px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--panel-border);
  border-radius: 9px;
  transition: border-color 0.2s, transform 0.2s;
}
.cmd-option-row:hover { border-color: var(--accent-dim); transform: translateX(3px); }
.cmd-option-row .opt-key { font-family: var(--mono); color: var(--amber); white-space: nowrap; flex-shrink: 0; }
.cmd-option-row .opt-desc { color: var(--ink-dim); }

.cmd-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-faint);
  border-left: 2px solid var(--panel-border);
  padding-left: 12px;
  font-style: italic;
}

.cmd-cookie-highlight {
  border-color: var(--owner) !important;
  background: linear-gradient(150deg, rgba(255,159,69,0.07), var(--panel));
}
.cmd-cookie-highlight::before { background: linear-gradient(180deg, var(--owner), transparent) !important; opacity: 1 !important; }
.cmd-cookie-highlight .cmd-name .cmd-slash { color: var(--owner); }

.owner-section {
  margin-top: 20px;
  padding-top: 50px;
  border-top: 1px dashed var(--panel-border);
}

.owner-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.owner-badge {
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 159, 69, 0.4);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--owner-glow);
  font-size: 19px;
  flex-shrink: 0;
}
.owner-heading h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.owner-heading .owner-rule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,159,69,0.3), transparent); }

.owner-desc {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 30px;
  padding-left: 58px;
}
.owner-desc strong { color: var(--owner); }

.owner-card {
  border-color: rgba(255, 159, 69, 0.22) !important;
}
.owner-card::before { background: linear-gradient(180deg, var(--owner), transparent) !important; }
.owner-card .cmd-name .cmd-slash { color: var(--owner); }

.site-footer {
  padding: 52px 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--panel-border);
  color: var(--ink-faint);
  font-size: 13px;
}
.footer-shield { width: 22px; height: 22px; opacity: 0.5; }
.footer-invite {
  margin-left: auto;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12.5px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.footer-invite:hover { border-color: var(--accent); }

#cookieFab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--owner);
  font-size: 26px;
  cursor: pointer;
  z-index: 60;
  box-shadow: 0 0 0 0 rgba(255, 159, 69, 0.4);
  animation: cookie-breathe 3s ease-in-out infinite;
  transition: transform 0.2s var(--ease-spring);
}
#cookieFab:hover { transform: scale(1.1) rotate(-8deg); }
@keyframes cookie-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 159, 69, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(255, 159, 69, 0); }
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 4, 10, 0.9);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-overlay.show { display: flex; }

.cookie-overlay-inner {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  padding: 40px;
  max-width: 460px;
  text-align: center;
  position: relative;
  animation: cookie-pop 0.4s var(--ease-spring);
}
@keyframes cookie-pop {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.cookie-anim-stage {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 20px;
}
.cookie-svg {
  width: 100%; height: 100%;
  animation: cookie-bite-cycle 2.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes cookie-bite-cycle {
  0%, 15% { transform: scale(1) rotate(0deg); }
  20% { transform: scale(0.97) rotate(-3deg); }
  25%, 40% { transform: scale(1) rotate(0deg); }
  45% { transform: scale(0.97) rotate(3deg); }
  50%, 100% { transform: scale(1) rotate(0deg); }
}

.crumb {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: #b3762c;
  border-radius: 1px;
  opacity: 0;
  animation: crumb-fly 2.6s ease-in infinite;
}
@keyframes crumb-fly {
  0%, 18% { opacity: 0; transform: translate(0,0) scale(0.5); }
  22% { opacity: 1; transform: translate(0,0) scale(1); }
  48% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.3); }
  100% { opacity: 0; }
}

.cookie-overlay-inner h3 { font-size: 20px; margin-bottom: 12px; color: var(--owner); }
.cookie-overlay-inner p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.7; margin-bottom: 22px; }
.cookie-overlay-inner code { font-family: var(--mono); color: var(--accent); background: rgba(185,144,255,0.1); padding: 2px 6px; border-radius: 5px; font-size: 12px; }
#closeCookie {
  background: var(--owner);
  color: #1a0f04;
  border: none;
  padding: 10px 28px;
  border-radius: 11px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: transform 0.15s var(--ease-spring);
}
#closeCookie:hover { transform: scale(1.05); }

@media (max-width: 900px) {
  #sidenav { transform: translateX(-100%); }
  #sidenav.open { transform: translateX(0); }
  #navToggle { display: flex; }
  main { margin-left: 0; }
  .hero { padding: 90px 24px 50px; flex-direction: column; text-align: left; }
  .hero h1 { font-size: 36px; }
  .hero-shield-orbit { display: none; }
  .command-sections { padding: 40px 20px; }
  .owner-desc { padding-left: 0; }
  .site-footer { padding: 30px 24px; flex-wrap: wrap; }
  .footer-invite { margin-left: 0; width: 100%; }
}