@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  --black: #02040a;
  --white: #ffffff;
  --off: #030712;
  --grey: #94a3b8;
  --line: rgba(59, 130, 246, 0.12);
  
  /* Dark Blue Mashup Variables */
  --bg-deep: #030712;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-hover: rgba(30, 41, 59, 0.65);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  /* Gradient mashups */
  --grad-primary: linear-gradient(135deg, #3b82f6, #6366f1, #a855f7);
  --grad-text: linear-gradient(135deg, #ffffff 20%, #60a5fa 60%, #a78bfa 100%);
  --grad-accent: linear-gradient(135deg, #06b6d4, #3b82f6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  background-image: 
    radial-gradient(at 0% 0%, rgba(30, 58, 138, 0.35) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(109, 40, 217, 0.25) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(59, 130, 246, 0.2) 0px, transparent 50%),
    radial-gradient(circle at 50% 50%, #030712 0%, #02040a 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(99, 102, 241, 0.35);
  color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #02040a;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid #02040a;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 100;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark img {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.logo-mark span {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--white);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.1);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 14px;
}

/* hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-m {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  height: 110vh;
  opacity: 0.08;
  pointer-events: none;
  filter: drop-shadow(0 0 60px rgba(59, 130, 246, 0.3)) hue-rotate(20deg);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(59, 130, 246, 0.06);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 26px;
  width: fit-content;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: blink 2s infinite ease-in-out;
  box-shadow: 0 0 8px #10b981;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  margin-top: 24px;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn-solid {
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 600;
  padding: 15px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5), 0 0 10px rgba(59, 130, 246, 0.2);
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-weight: 500;
  padding: 15px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.stat-row {
  display: flex;
  gap: 56px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat .num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

/* generic block */
section.block {
  padding: 100px 0;
}

.block-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.block-lead {
  max-width: 56ch;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill-grid span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--line);
  background: rgba(59, 130, 246, 0.04);
  padding: 9px 16px;
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.pill-grid span:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--white);
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

/* creators */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 28px 22px;
  border-radius: 8px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.creator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15), 0 0 15px rgba(99, 102, 241, 0.1);
  background: var(--bg-card-hover);
}

.ccat {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60a5fa;
  font-weight: 500;
}

.creator-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 10px 0 6px;
  color: var(--white);
}

.creator-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* creator avatar inside card */
.creator-card .creator-avatar {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  float: right;
  margin-left: 12px;
}

/* Carousel behavior for creators */
.card-grid.carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  align-items: stretch;
}

.creator-card {
  min-width: 300px;
  flex: 0 0 auto;
}

/* bots */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bot-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.bot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 14px 30px -8px rgba(59, 130, 246, 0.18), 0 0 18px rgba(99, 102, 241, 0.12);
  background: var(--bg-card-hover);
}

.bot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bot-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
}

.status-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.bot-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack span {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--line);
  background: rgba(59, 130, 246, 0.03);
  padding: 5px 9px;
  border-radius: 2px;
}

.bot-stats {
  display: flex;
  gap: 22px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.bot-stats .num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
}

.bot-stats .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}

/* services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
  margin-top: 40px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 8px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Decorative SVGs for sections */
#bots, #services {
  position: relative;
}

.decor-svg {
  position: absolute;
  pointer-events: none;
  width: 280px;
  height: auto;
  right: 40px;
  top: 20px;
  opacity: 0.08;
  filter: blur(6px) saturate(120%);
  transform-origin: center center;
}

.decor-services {
  width: 160px;
  left: 40px;
  right: auto;
  top: 40px;
  opacity: 0.06;
}

@media (max-width: 900px) {
  .decor-svg { display: none; }
}

.service-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 14px 30px -8px rgba(59, 130, 246, 0.18), 0 0 18px rgba(99, 102, 241, 0.12);
  background: var(--bg-card-hover);
}

.service-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* faq */
.faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: var(--grey);
  transition: transform .25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #3b82f6;
}

.faq-item p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 60ch;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 40px;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 9px;
  font-weight: 500;
}

.field input, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.35);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  padding: 12px 10px;
  color: var(--text-primary);
  outline: none;
  transition: border-color .25s ease, background-color .25s ease;
  border-radius: 4px 4px 0 0;
}

.field input:focus, .field textarea:focus {
  border-color: #3b82f6;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 14px;
}

.contact-socials {
  display: flex;
  flex-direction: column;
}

.social-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.social-line:first-child {
  border-top: 1px solid var(--line);
}

.social-line .platform {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}

.social-line .handle {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.social-line .go {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}

.social-line .go:hover {
  color: #3b82f6;
  border-color: #3b82f6;
}

/* ================= CINEMATIC SCROLL & GSAP STYLES ================= */
@media (min-width: 901px) {
  html.lenis {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }

  body {
    overflow-x: hidden;
  }

  /* Animation Initial States */
  .hero, #about, #creators, #bots, #services, #faq, #contact {
    will-change: transform, opacity, clip-path, filter;
  }

  /* 3D Container for Bots */
  #bots {
    perspective: 2000px;
    overflow: visible;
  }
  .bot-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }

  /* Services Grid Assembly Prep */
  .service-card {
    will-change: transform, opacity;
  }

  /* Magnetic Button Prep */
  .btn-solid, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Cinematic Overlays */
  .cinematic-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 30%, rgba(2, 4, 10, 0.4) 100%);
    z-index: 99;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  body.scrolling .cinematic-vignette {
    opacity: 1;
  }

  /* Section-specific reveal containers */
  #about {
    clip-path: circle(100% at 50% 50%);
  }
  
  #contact {
    clip-path: inset(0 0 0 0);
  }
}

footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: rgba(2, 4, 10, 0.4);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.mono {
  font-size: 0.78rem;
  color: var(--grey);
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

/* Discord Widget */
.discord-card {
  background: rgba(10, 15, 30, 0.7);
  border: 1px solid rgba(114, 137, 218, 0.25);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(114, 137, 218, 0.1);
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.discord-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 137, 218, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(114, 137, 218, 0.2);
}

.discord-banner {
  height: 90px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #5865f2;
}

.discord-avatar-container {
  position: relative;
  margin-top: -38px;
  margin-left: 20px;
  display: inline-block;
  width: 76px;
  height: 76px;
}

.discord-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #030712;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.discord-decoration {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
  z-index: 2;
}

.discord-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #23a55a; /* Discord online color */
  border: 3.5px solid #030712;
  z-index: 3;
}

.discord-info {
  padding: 15px 20px 20px;
}

.discord-global-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.discord-username {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.discord-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 15px 0;
}

.discord-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.discord-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.discord-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.discord-value {
  font-size: 0.85rem;
  color: var(--white);
  font-family: monospace;
}

.discord-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.discord-btn-primary {
  background: #5865f2;
  color: var(--white);
}

.discord-btn-primary:hover {
  background: #4752c4;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.35);
}

.discord-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bot-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding: 0 22px;
  }
  header {
    padding: 16px 22px;
  }
}

/* Modal for sending messages */
#send-modal { display: none; position: fixed; inset: 0; z-index: 2200; }
#send-modal .modal-backdrop { position: absolute; inset: 0; background: rgba(2,4,10,0.7); }
#send-modal .modal-box { position: relative; max-width: 880px; margin: 6vh auto; background: var(--bg-card); border: 1px solid var(--line); padding: 20px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); color: var(--text-primary); }
#send-modal .modal-box h3 { margin: 0 0 12px; font-size: 1.15rem; }
#send-modal textarea#send-payload { width: 100%; height: 320px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', 'Courier New', monospace; padding: 12px; background: rgba(2,4,10,0.45); color: var(--text-primary); border-radius: 8px; border: 1px solid rgba(255,255,255,0.03); resize: vertical; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 12px; }
#send-modal .btn-outline { background: transparent; }
#send-modal .form-note { margin-top: 10px; color: var(--text-secondary); font-size: 0.85rem; }

/* Discord JSON debug (hidden) */
.discord-json { display: none; }

