/* ============================================================
   DREAMII — DISCORD BOT COMING SOON
   © 2026 DreamZoockers | Coded by NicooZoocktHD
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:    #7c3aed;
  --purple-l:  #a78bfa;
  --blue:      #2563eb;
  --blue-l:    #60a5fa;
  --cyan:      #06b6d4;
  --cyan-l:    #67e8f9;
  --pink:      #ec4899;
  --bg:        #080814;
  --bg-2:      #0d0d1f;
  --bg-3:      #111129;
  --surface:   #161630;
  --surface-2: #1e1e42;
  --border:    rgba(124,58,237,.18);
  --border-l:  rgba(124,58,237,.35);
  --text:      #f0f0ff;
  --text-muted: #8888aa;
  --gradient:  linear-gradient(135deg, var(--purple-l), var(--cyan));
  --shadow:    0 8px 48px rgba(124,58,237,.25);
  --glow:      0 0 60px rgba(124,58,237,.35);
  --radius:    16px;
  --radius-sm: 10px;
  --trans:     .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-l);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s, background .2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(124,58,237,.6);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s ease, width .2s, height .2s, border-color .2s;
  background: transparent;
}
body.cursor-hover .cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--cyan);
}
body.cursor-hover .cursor-dot {
  background: var(--cyan);
  transform: translate(-50%,-50%) scale(1.8);
}

/* ─── CANVAS & OVERLAYS ─────────────────────────────────────── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
  z-index: 1;
}
.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(8,8,20,.82);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-l);
  transition: box-shadow var(--trans);
}
.nav-logo:hover .nav-logo-img { box-shadow: 0 0 20px rgba(124,58,237,.6); }
.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  position: relative;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.5); }
.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.nav-cta:hover .btn-glow { opacity: 1; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 26px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--trans);
}

/* ─── GRADIENT TEXT ──────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ─── HERO SECTION ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate;
}
.glow-purple {
  width: 700px; height: 700px;
  background: rgba(124,58,237,.2);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.glow-blue {
  width: 500px; height: 500px;
  background: rgba(37,99,235,.18);
  bottom: -100px; right: -100px;
  animation-delay: -3s;
}
.glow-cyan {
  width: 400px; height: 400px;
  background: rgba(6,182,212,.15);
  top: 40%; left: 60%;
  animation-delay: -6s;
}
@keyframes floatGlow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px,60px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Coming soon badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-l);
  background: rgba(124,58,237,.1);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--purple-l);
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px #22c55e;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .7; }
}

/* Hero logo */
.hero-logo-wrapper {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 48px;
  filter: drop-shadow(0 0 60px rgba(124,58,237,.5));
}
.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 { width: 220px; height: 220px; border-color: rgba(124,58,237,.4); animation-delay: 0s; }
.ring-2 { width: 270px; height: 270px; border-color: rgba(124,58,237,.2); animation-delay: .8s; }
.ring-3 { width: 330px; height: 330px; border-color: rgba(124,58,237,.1); animation-delay: 1.6s; }
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%,-50%) scale(1.06); opacity: .5; }
}
.hero-logo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: heroFloat 6s ease-in-out infinite;
  border: 3px solid rgba(124,58,237,.5);
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%       { transform: translateY(-16px) rotate(1deg); }
  70%       { transform: translateY(-8px) rotate(-1deg); }
}

/* Hero title */
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal .7s cubic-bezier(.4,0,.2,1) forwards;
  animation-fill-mode: forwards;
}
.title-line.aos-animate {
  opacity: 1 !important;
}
.line-1 { animation-delay: .5s; }
.line-2 { animation-delay: .7s; }
.line-3 { animation-delay: .9s; }
@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Glitch effect on gradient text */
.gradient-text.glitch-active {
  animation: glitchAnim .4s steps(2) 1;
}
@keyframes glitchAnim {
  0%  { text-shadow: 2px 0 var(--cyan), -2px 0 var(--pink); clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); }
  25% { text-shadow: -3px 0 var(--purple), 3px 0 var(--cyan); clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
  50% { text-shadow: 4px 0 var(--pink), -4px 0 var(--blue); clip-path: polygon(0 5%, 100% 5%, 100% 25%, 0 25%); }
  75% { text-shadow: -1px 0 var(--cyan), 1px 0 var(--purple); clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%); }
  100% { text-shadow: none; clip-path: none; }
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .7s ease .9s forwards;
}
.hero-description em { color: var(--purple-l); font-style: normal; }

/* Hero tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .7s ease 1.1s forwards;
}
.tag {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(124,58,237,.08);
  font-size: .82rem;
  color: var(--text-muted);
  transition: var(--trans);
  cursor: default;
}
.tag:hover { border-color: var(--purple-l); color: var(--text); background: rgba(124,58,237,.18); transform: translateY(-2px); }

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp .7s ease 1.3s forwards;
}
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(124,58,237,.55); }
.btn-primary .btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,20,.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 0;
  transition: opacity var(--trans);
  border-radius: 50px;
}
.btn-primary:hover .btn-coming-soon-overlay { opacity: 1; }
.btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid var(--border-l);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--trans);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(124,58,237,.12); border-color: var(--purple-l); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(124,58,237,.25); }
.btn-ghost {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-l); }

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: .78rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border-radius: 12px;
  border: 2px solid var(--border-l);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--purple-l);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── STATUS SECTION ────────────────────────────────────────── */
.status-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 2;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.status-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(22,22,48,.6);
  backdrop-filter: blur(12px);
  transition: var(--trans);
}
.status-card:hover { border-color: var(--border-l); transform: translateY(-3px); box-shadow: var(--shadow); }
.status-icon { font-size: 1.8rem; }
.status-info { flex: 1; }
.status-label { display: block; font-size: .75rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.status-value { display: block; font-size: 1.2rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.status-indicator {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-indicator.developing {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
  animation: pulseDot 2s ease-in-out infinite;
}

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple-l);
  background: rgba(124,58,237,.12);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURES SECTION ────────────────────────────────────────── */
.features-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17,17,41,.7);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: var(--trans);
  grid-column: span 3;
}
.feature-card--large { grid-column: span 6; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-l); box-shadow: var(--shadow); }
.feature-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0 0, rgba(124,58,237,.08), transparent 70%);
  pointer-events: none;
}
.feature-card-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(124,58,237,.08);
  filter: blur(40px);
  transition: var(--trans);
  pointer-events: none;
}
.feature-card:hover .feature-card-glow { background: rgba(124,58,237,.2); }
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(124,58,237,.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--trans);
}
.feature-card:hover .feature-icon-wrap { background: rgba(124,58,237,.28); border-color: var(--border-l); transform: scale(1.1) rotate(5deg); }
.feature-icon { font-size: 1.6rem; }
.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.feature-tags span {
  font-size: .74rem;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(124,58,237,.12);
  border: 1px solid var(--border);
  color: var(--purple-l);
}
.feature-progress { margin-top: auto; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.progress-bar {
  height: 4px;
  background: rgba(124,58,237,.15);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(.4,0,.2,1);
}

/* ─── INTEGRATIONS SECTION ────────────────────────────────────── */
.integrations-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(11,11,28,.8), transparent);
}
.integrations-showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.integration-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.integration-item--reverse { direction: rtl; }
.integration-item--reverse > * { direction: ltr; }

/* Mockup window */
.integration-mockup {
  perspective: 1000px;
}
.mockup-window {
  background: rgba(13,13,31,.9);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
  animation: mockupFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes mockupFloat {
  0%, 100% { transform: rotateX(2deg) rotateY(-3deg) translateY(0); }
  50%       { transform: rotateX(-2deg) rotateY(3deg) translateY(-12px); }
}
.mockup-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,20,.5);
}
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: .85rem;
}
.mock-cmd {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(124,58,237,.08);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn .4s ease forwards;
}
.mock-cmd.delay-1 { animation-delay: 1.5s; }
.mock-prefix { color: var(--purple-l); font-weight: 700; font-size: 1rem; }
.mock-text { color: var(--text); font-weight: 600; }
.mock-subtext { color: var(--text-muted); }
.mock-response {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  background: rgba(22,22,48,.6);
  border-radius: var(--radius-sm);
  opacity: 0;
  animation: fadeIn .4s ease .5s forwards;
  border-left: 3px solid var(--purple);
}
.mock-response.delay-2 { animation-delay: 2s; }
.mock-bot-icon { font-size: 1.4rem; flex-shrink: 0; }
.mock-message { color: var(--text-muted); line-height: 1.5; }
.mock-message strong { color: var(--text); }
.roll-crit { color: #f59e0b; font-weight: 900; font-size: 1.2em; text-shadow: 0 0 10px #f59e0b; }
.status-online { color: #22c55e; font-weight: 600; }
.mock-server-status {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(22,22,48,.6);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn .4s ease .3s forwards;
}
.mc-status-icon { font-size: 2rem; }
.mc-status-info { color: var(--text-muted); font-size: .85rem; }
.mc-status-info strong { color: var(--text); }
.mc-modes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeIn .4s ease .8s forwards;
}
.mc-mode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: rgba(22,22,48,.4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .84rem;
  color: var(--text-muted);
}
.mode-count { font-weight: 700; color: var(--cyan); background: rgba(6,182,212,.1); padding: 2px 8px; border-radius: 50px; font-size: .78rem; }

/* Integration info */
.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(124,58,237,.1);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 700;
  color: var(--purple-l);
  margin-bottom: 20px;
}
.integration-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.integration-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.integration-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.integration-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.check { color: var(--cyan); font-weight: 700; filter: drop-shadow(0 0 4px var(--cyan)); }

/* ─── ABOUT SECTION ────────────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.about-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 64px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(17,17,41,.5);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}
.about-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.15), transparent 70%);
  pointer-events: none;
}
.about-logo {
  flex-shrink: 0;
  width: 200px; height: 200px;
}
.about-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--border-l);
  animation: heroFloat 8s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(124,58,237,.4);
}
.about-text .section-eyebrow { display: inline-block; }
.about-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.about-text p { color: var(--text-muted); line-height: 1.75; max-width: 500px; margin-bottom: 32px; }
.team-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.team-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(22,22,48,.6);
  transition: var(--trans);
}
.team-card:hover { border-color: var(--border-l); transform: translateY(-2px); }
.team-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.team-avatar.tm {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}
.team-info strong { display: block; font-size: .92rem; }
.team-info span { display: block; font-size: .78rem; color: var(--text-muted); }
.about-links { display: flex; gap: 14px; flex-wrap: wrap; }
.link-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1px solid var(--border-l);
  background: rgba(124,58,237,.08);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}
.link-reveal-btn svg { width: 16px; height: 16px; }
.link-reveal-btn:hover { background: rgba(124,58,237,.2); border-color: var(--purple-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.25); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  z-index: 2;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,58,237,.12), transparent 70%);
  pointer-events: none;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo { width: 32px; height: 32px; object-fit: cover; border-radius: 50%; }
.footer-meta p { font-size: .88rem; color: var(--text-muted); }
.footer-meta p strong { color: var(--text); }
.footer-sub { margin-top: 4px; font-size: .8rem; }
.footer-link {
  background: none;
  border: none;
  color: var(--purple-l);
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(22,22,48,.6);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}
.social-btn:hover { border-color: var(--purple-l); color: var(--text); background: rgba(124,58,237,.15); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(124,58,237,.3); }

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.modal-overlay.visible { opacity: 1; pointer-events: all; }
.modal {
  position: relative;
  width: 480px;
  max-width: 92vw;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--border-l);
  background: rgba(13,13,31,.95);
  backdrop-filter: blur(32px);
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 80px rgba(124,58,237,.2);
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
.modal-overlay.visible .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(22,22,48,.6);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 2;
  line-height: 1;
}
.modal-close:hover { border-color: var(--purple-l); color: var(--text); background: rgba(124,58,237,.15); }
.modal-content { position: relative; z-index: 1; text-align: center; }
.modal-icon { font-size: 3rem; margin-bottom: 16px; animation: modalIconBounce .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes modalIconBounce { from { transform: scale(0) rotate(-30deg); } to { transform: scale(1) rotate(0); } }
.modal h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal p { color: var(--text-muted); margin-bottom: 16px; }
.modal-url {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(8,8,20,.6);
  font-family: monospace;
  font-size: .88rem;
  color: var(--cyan);
  word-break: break-all;
  margin-bottom: 28px;
  transition: var(--trans);
}
.modal-actions { display: flex; gap: 12px; justify-content: center; }
.modal-confirm { font-size: .95rem; }
.modal-glitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}
.modal-glitch-lines::before,
.modal-glitch-lines::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: .4;
  animation: scanline 4s linear infinite;
}
.modal-glitch-lines::after { animation-delay: -2s; opacity: .2; }
@keyframes scanline {
  0%   { top: -1px; }
  100% { top: 100%; }
}

/* ─── AOS ANIMATIONS ─────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1);
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="fade-left"]  { transform: translateX(50px); }
[data-aos="zoom-in"]    { transform: scale(.85); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ─── UTILITY ────────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { grid-column: span 1 !important; }
  .integration-item { grid-template-columns: 1fr; gap: 40px; }
  .integration-item--reverse { direction: ltr; }
  .about-inner { flex-direction: column; padding: 40px; gap: 40px; text-align: center; }
  .about-logo { width: 140px; height: 140px; }
  .team-row { justify-content: center; }
  .about-links { justify-content: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 16px 60px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-logo-wrapper { width: 130px; height: 130px; }
  .ring-1 { width: 160px; height: 160px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { display: none; }
  .modal { padding: 32px 24px; }
}
