@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:        #060608;
  --bg2:       #0c0c10;
  --bg3:       #111118;
  --border:    rgba(255,255,255,0.06);
  --border-h:  rgba(240,62,132,0.4);
  --pink:      #f03e84;
  --pink2:     #f472b6;
  --pink-dim:  rgba(240,62,132,0.18);
  --pink-glow: rgba(240,62,132,0.28);
  --text:      #f1f0f5;
  --muted:     #7a6d82;
  --font:      'Inter', sans-serif;
  --mono:      'JetBrains Mono', monospace;
  --radius:    20px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }


.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,62,165,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,62,165,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.bg-glow {
  position: fixed; top: -15%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 700px;
  background: radial-gradient(ellipse, rgba(255,62,165,0.1) 0%, transparent 68%);
  z-index: 0; pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

section { position: relative; z-index: 1; }
.accent { color: var(--pink); }


.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 14px;
  font-family: var(--font); font-weight: 700; font-size: 0.92rem;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--pink); color: #fff; border-color: var(--pink);
  box-shadow: 0 0 22px rgba(255,62,165,0.35);
}
.btn-primary:hover {
  background: var(--pink2); border-color: var(--pink2);
  box-shadow: 0 0 40px rgba(255,62,165,0.6);
  transform: translateY(-2px);
}
.btn-dashboard-nav {
  background: rgba(0,0,0,0.55) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  box-shadow: 0 0 22px rgba(240,62,132,0.35), 0 0 6px rgba(123,95,245,0.3) !important;
}
.btn-dashboard-nav:hover {
  background: rgba(0,0,0,0.75) !important;
  border-color: rgba(255,255,255,0.25) !important;
  box-shadow: 0 0 34px rgba(240,62,132,0.55), 0 0 10px rgba(123,95,245,0.45) !important;
  transform: translateY(-2px);
}


.nav-action-wrap {
  position: relative;
  display: inline-flex; align-items: stretch; gap: 6px;
}
.nav-action-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-action-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}
.nav-action-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-action-toggle svg { transition: transform 0.2s ease; }
.nav-action-toggle-dash {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.nav-action-toggle-dash:hover {
  background: rgba(0,0,0,0.75);
  border-color: rgba(255,255,255,0.25);
}
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(10,10,12,0.97);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 150px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1200;
}
.nav-dropdown-panel.open {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-panel .btn { width: 100%; justify-content: center; }


.nav-profile-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 50px; padding: 5px 12px 5px 5px;
  font-family: var(--font); font-size: 0.85rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: border-color 0.2s, background 0.2s, box-shadow 0.25s;
  outline: none; letter-spacing: -0.01em;
}
.nav-profile-btn:hover {
  border-color: var(--border-h);
  background: rgba(240,62,132,0.07);
  box-shadow: 0 0 18px rgba(240,62,132,0.12);
}
.nav-profile-btn[aria-expanded="true"] {
  border-color: rgba(240,62,132,0.45);
  background: rgba(240,62,132,0.09);
}
.nav-profile-av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink-dim);
  border: 1.5px solid rgba(240,62,132,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--pink);
  overflow: hidden;
}
.nav-profile-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-profile-name { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-profile-caret {
  width: 12px; height: 12px; color: var(--muted);
  transition: transform 0.22s; flex-shrink: 0;
}
.nav-profile-btn[aria-expanded="true"] .nav-profile-caret { transform: rotate(180deg); }


.nav-dropdown-panel.nav-dropdown-panel--menu { min-width: 190px; padding: 6px; }
.nav-menu-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 9px 10px; border-radius: 9px;
  background: transparent; border: none;
  font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  cursor: pointer; text-align: left; transition: background 0.15s, color 0.15s;
}
.nav-menu-item:hover { background: rgba(255,255,255,0.06); }
.nav-menu-item img, .nav-menu-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.85; }
.nav-menu-item--danger { color: #ff7070; }
.nav-menu-item--danger:hover { background: rgba(255,80,80,0.1); }
.nav-menu-divider { height: 1px; background: var(--border); margin: 6px 4px; }


.nav-bell-wrap { position: relative; }
.nav-bell-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-bell-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}
.nav-bell-btn[aria-expanded="true"] {
  border-color: rgba(240,62,132,0.45);
  background: rgba(240,62,132,0.09);
  color: var(--text);
}
.nav-bell-dot {
  position: absolute; top: -3px; right: -3px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 2.5px var(--bg2), 0 0 8px rgba(240,62,132,0.7);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 0.63rem; font-weight: 800; color: #fff;
  line-height: 1;
}
.nav-bell-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 392px; max-width: calc(100vw - 32px);
  background: rgba(10,10,12,0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1200;
  overflow: hidden;
}
.nav-bell-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-bell-header {
  padding: 13px 16px 11px;
  font-size: 0.82rem; font-weight: 800; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
}
.nav-bell-list { max-height: 420px; overflow-y: auto; padding: 8px; }
.nav-bell-empty {
  padding: 22px 14px; text-align: center;
  font-size: 0.8rem; color: var(--muted);
}
.nav-bell-item {
  display: block; padding: 14px 15px; border-radius: 12px;
  transition: background 0.15s;
}
.nav-bell-item:hover { background: rgba(255,255,255,0.04); }
.nav-bell-item + .nav-bell-item {
  margin-top: 4px; padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-bell-item-top {
  display: flex; align-items: center; gap: 7px; margin-bottom: 8px;
  flex-wrap: wrap;
}
.nav-bell-chip {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 50px;
  flex-shrink: 0;
}
.nav-bell-chip--info  { background: rgba(88,101,242,0.18);  color: #aab0ff; }
.nav-bell-chip--news  { background: rgba(240,62,132,0.18);  color: #f472b6; }
.nav-bell-chip--warn  { background: rgba(245,197,66,0.18);  color: #f5c542; }
.nav-bell-chip--alert { background: rgba(255,80,80,0.18);   color: #ff7070; }
.nav-bell-title {
  font-size: 0.87rem; font-weight: 700; color: var(--text);
  flex: 1 1 auto; min-width: 0;
}
.nav-bell-date {
  font-family: var(--mono); font-size: 0.65rem; color: var(--muted);
  margin-left: auto; flex-shrink: 0;
}
.nav-bell-body {
  font-size: 0.85rem; color: var(--muted2, var(--muted));
  line-height: 1.65; margin-bottom: 4px;
  white-space: normal; word-wrap: break-word;
}
.nav-bell-link { font-size: 0.76rem; font-weight: 700; color: var(--pink2); text-decoration: none; }
.nav-bell-link:hover { text-decoration: underline; }


.nav-bell-body .ann-p { margin: 0 0 12px; }
.nav-bell-body .ann-p:last-child { margin-bottom: 0; }
.nav-bell-body .ann-h {
  color: var(--text); font-weight: 800; letter-spacing: -0.01em;
  margin: 16px 0 8px; line-height: 1.35;
  display: flex; align-items: center; gap: 6px;
}
.nav-bell-body .ann-h:first-child { margin-top: 0; }
.nav-bell-body .ann-h1 { font-size: 1.05rem; }
.nav-bell-body .ann-h2 { font-size: 0.96rem; }
.nav-bell-body .ann-h3 { font-size: 0.88rem; }
.nav-bell-body strong { color: var(--text); font-weight: 700; }
.nav-bell-body em { font-style: italic; }
.nav-bell-body u { text-decoration: underline; }
.nav-bell-body s { text-decoration: line-through; opacity: 0.75; }
.nav-bell-body code {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 1px 5px; font-family: var(--mono);
  font-size: 0.78rem; color: #f0c674;
}
.nav-bell-body .ann-list { margin: 0 0 12px; padding-left: 20px; }
.nav-bell-body .ann-list:last-child { margin-bottom: 0; }
.nav-bell-body .ann-list li { margin: 5px 0; }


.legal-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 640px; margin: 0 auto;
  background: rgba(10,10,12,0.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 16px;
  z-index: 1400;
  transform: translateY(140%);
  transition: transform 0.3s var(--ease);
}
.legal-banner.show { transform: translateY(0); }
.legal-banner-text {
  flex: 1 1 auto; font-size: 0.82rem; line-height: 1.55; color: var(--muted2, var(--muted));
}
.legal-banner-text a { color: var(--pink2); font-weight: 700; text-decoration: none; }
.legal-banner-text a:hover { text-decoration: underline; }
.legal-banner-close {
  flex-shrink: 0;
  background: var(--pink); color: #fff; border: 1.5px solid var(--pink);
  font-family: var(--font); font-weight: 700; font-size: 0.82rem;
  padding: 9px 18px; border-radius: 12px; cursor: pointer;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.legal-banner-close:hover { background: var(--pink2); border-color: var(--pink2); }
@media (max-width: 560px) {
  .legal-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .legal-banner-close { width: 100%; text-align: center; }
}

.btn-ghost {
  background: transparent; color: var(--muted); border-color: transparent;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 13px 30px; font-size: 1rem; }


.section-label {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--pink); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; line-height: 1.7; }
.section-title-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.section-title-row .section-title { margin-bottom: 0; }
.section-title-row img { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; }


.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(6,6,8,0.93);
  backdrop-filter: blur(18px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  max-width: 1180px; margin: 0 auto; height: 66px;
}
.nav-logo {
  font-family: var(--mono); font-size: 1.1rem; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: 0.04em; flex-shrink: 0;
}
.logo-bracket { color: var(--pink); }
.logo-dot     { color: var(--pink2); }
.nav-links {
  display: flex; gap: 26px; list-style: none; margin-left: 8px;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 14px 0 20px;
  border-top: 1px solid var(--border);
  background: rgba(6,6,8,0.97);
}
.mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 4px; color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: 0.95rem; transition: color 0.2s;
}
.mobile-menu a img { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }
.mobile-dash-link {
  background: rgba(0,0,0,0.55) !important;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(240,62,132,0.3), 0 0 6px rgba(123,95,245,0.25);
  margin: 2px 0;
}
.mobile-dash-link:hover {
  background: rgba(0,0,0,0.75) !important;
  border-color: rgba(255,255,255,0.25);
}


.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,62,165,0.08);
  border: 1px solid rgba(255,62,165,0.22);
  border-radius: 50px; padding: 6px 16px;
  font-family: var(--mono); font-size: 0.75rem; color: var(--pink);
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}
.badge-dot {
  width: 8px; height: 8px; background: #3ddc84;
  border-radius: 50%; box-shadow: 0 0 8px #3ddc84;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 22px;
  animation: fadeUp 0.85s 0.1s ease both;
}
.hero-accent {
  background: linear-gradient(130deg, var(--pink), var(--pink2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 540px; font-size: 1.05rem; color: var(--muted);
  line-height: 1.72; margin-bottom: 36px;
  animation: fadeUp 0.85s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 60px;
  animation: fadeUp 0.85s 0.3s ease both;
}
.hero-stats-row {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  animation: fadeUp 0.85s 0.42s ease both;
}
.hs {
  padding: 18px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hs-num {
  font-family: var(--mono); font-size: 1.45rem; font-weight: 700; color: var(--pink);
}
.hs span:last-child { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; }
.hs-divider { width: 1px; height: 44px; background: var(--border); }


.how {
  padding: 100px 5%;
  max-width: 1100px; margin: 0 auto;
}
.steps-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 52px; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 220px; max-width: 300px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(28px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.step-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease,
              border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 10px 36px rgba(255,62,165,0.1);
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: var(--mono); font-size: 2.4rem; font-weight: 700;
  color: rgba(255,62,165,0.15); line-height: 1; margin-bottom: 14px;
}
.step-icon {
  color: var(--pink); margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.step-card code {
  background: rgba(255,62,165,0.12); color: var(--pink2);
  padding: 2px 6px; border-radius: 8px;
  font-family: var(--mono); font-size: 0.82em;
}
.step-arrow {
  font-size: 1.6rem; color: rgba(255,62,165,0.35); flex-shrink: 0;
}


.features {
  padding: 100px 5%;
  max-width: 1180px; margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px; margin-top: 50px;
}
.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 26px 22px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(28px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-h); box-shadow: 0 10px 36px rgba(255,62,165,0.1); }
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 48px; height: 48px;
  background: rgba(255,62,165,0.08); border: 1px solid rgba(255,62,165,0.15);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: var(--pink); margin-bottom: 16px; transition: background 0.3s;
}
.feature-card:hover .fc-icon { background: rgba(255,62,165,0.15); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.feature-card code {
  background: rgba(255,62,165,0.1); color: var(--pink2);
  padding: 2px 6px; border-radius: 8px;
  font-family: var(--mono); font-size: 0.82em;
}
.fc-tag {
  font-family: var(--mono); font-size: 0.65rem;
  color: var(--pink); background: rgba(255,62,165,0.08);
  border: 1px solid rgba(255,62,165,0.15);
  border-radius: 8px; padding: 3px 8px;
  display: inline-block; letter-spacing: 0.09em;
}


.faq {
  padding: 100px 5%;
  max-width: 780px; margin: 0 auto;
}
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-h); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 19px 22px; cursor: pointer;
  font-family: var(--font); font-size: 0.96rem; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-arrow {
  font-size: 1.4rem; color: var(--pink); flex-shrink: 0;
  font-weight: 400; line-height: 1; transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 180px; }
.faq-a p { padding: 0 22px 18px; font-size: 0.9rem; color: var(--muted); line-height: 1.72; }
.faq-a code {
  background: rgba(255,62,165,0.1); color: var(--pink2);
  padding: 2px 6px; border-radius: 8px;
  font-family: var(--mono); font-size: 0.82em;
}


.cta-section {
  padding: 120px 5%; text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,62,165,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 16px;
}
.cta-inner p { color: var(--muted); font-size: 1.03rem; margin-bottom: 34px; }


.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 5% 30px; position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; gap: 56px; flex-wrap: wrap;
  padding-bottom: 44px; border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo {
  font-family: var(--mono); font-size: 1.05rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em;
  display: inline-block; margin-bottom: 12px;
}
.footer-brand p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; max-width: 250px; }
.footer-links { display: flex; gap: 44px; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: 9px; }
.fl-col h4 {
  font-size: 0.75rem; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; margin-bottom: 3px;
}
.fl-col a { font-size: 0.86rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.fl-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1180px; margin: 26px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  font-size: 0.78rem; color: var(--muted); font-family: var(--mono);
}


@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-14px)} to{opacity:1;transform:translateY(0)} }


@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-stats-row { flex-direction: column; }
  .hs-divider { width: 70px; height: 1px; }
  .steps-row { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2.6rem; }
}


.nav-pfp {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(240,62,132,0.4);
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}


.hero-pfp-wrap {
  position: relative;
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  animation: fadeDown 0.7s ease both;
}
.hero-pfp {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240,62,132,0.35);
  box-shadow: 0 0 32px rgba(240,62,132,0.25);
  position: relative; z-index: 1;
}
.hero-pfp-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(240,62,132,0.2);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1);   opacity: 0.5; }
  50%      { transform: scale(1.06); opacity: 1; }
}


.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-pfp {
  width: 32px; height: 32px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(240,62,132,0.3);
}
.footer-brand .nav-logo { margin-bottom: 0; }


.hero-video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,8,0.5) 0%,
    rgba(6,6,8,0.2) 40%,
    rgba(6,6,8,0.7) 100%
  );
}


.bg-grid  { z-index: 1; }
.bg-glow  { z-index: 1; }
.navbar   { z-index: 1000; }
section   { z-index: 2; }
.footer   { z-index: 2; }


.hero-brand {
  display: block;
  font-size: 0.38em;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.9;
}


.nav-servers-btn {
  display: inline-flex !important;
  align-items: center; gap: 5px;
  background: rgba(240,62,132,0.08);
  border: 1px solid rgba(240,62,132,0.2) !important;
  border-radius: 12px; padding: 4px 10px;
  color: var(--pink) !important;
  font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-servers-btn:hover {
  background: rgba(240,62,132,0.15) !important;
  border-color: rgba(240,62,132,0.4) !important;
  color: var(--pink) !important;
}


.nav-links a, .nav-pill {
  display: inline-flex !important;
  align-items: center; gap: 5px;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 12px; padding: 5px 12px !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important; font-weight: 500 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.nav-pill img {
  width: 15px !important; height: 15px !important;
  flex-shrink: 0; object-fit: contain; display: block;
}
.nav-links a:hover, .nav-pill:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: var(--text) !important;
}
.nav-pill-active {
  background: rgba(240,62,132,0.08) !important;
  border-color: rgba(240,62,132,0.22) !important;
  color: var(--pink) !important;
}
.nav-pill-active:hover {
  background: rgba(240,62,132,0.14) !important;
  border-color: rgba(240,62,132,0.4) !important;
  color: var(--pink) !important;
}




.bg-grid {
  background-image:
    linear-gradient(rgba(240,62,132,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,62,132,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}


.hero {
  padding: 150px 5% 100px;
}
.hero-title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-brand {
  font-size: 0.3em;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  opacity: 1;
}
.hero-sub {
  font-size: 1rem;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-btns {
  gap: 12px;
  margin-bottom: 56px;
}


.btn {
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-primary {
  box-shadow: 0 2px 20px rgba(240,62,132,0.4), 0 0 0 1px rgba(240,62,132,0.2);
}
.btn-primary:hover {
  box-shadow: 0 4px 32px rgba(240,62,132,0.6), 0 0 0 1px rgba(240,62,132,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 16px;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }


.hero-pfp-wrap { margin-bottom: 32px; }
.hero-pfp {
  width: 88px; height: 88px;
  box-shadow: 0 0 0 3px rgba(240,62,132,0.15), 0 0 40px rgba(240,62,132,0.2);
}


.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 400;
}


.how {
  padding: 90px 5%;
}
.steps-row { gap: 8px; margin-top: 44px; }
.step-card {
  border-radius: 22px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(240,62,132,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.step-card:hover {
  border-color: rgba(240,62,132,0.25);
  box-shadow: 0 8px 32px rgba(240,62,132,0.08);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(240,62,132,0.06) 100%);
}
.step-num {
  font-size: 3.5rem;
  color: rgba(240,62,132,0.08);
  margin-bottom: 12px;
}
.step-icon { color: var(--pink); margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.step-card code {
  background: rgba(240,62,132,0.1);
  color: var(--pink2);
  padding: 1px 5px; border-radius: 8px;
  font-family: var(--mono); font-size: 0.82em;
}
.step-arrow { color: rgba(240,62,132,0.25); font-size: 1.4rem; }


.faq { padding: 90px 5%; }
.faq-list { margin-top: 44px; gap: 8px; }
.faq-item {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(240,62,132,0.02) 100%);
}
.faq-item:hover { border-color: rgba(240,62,132,0.2); }
.faq-q {
  padding: 18px 22px;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--pink); }
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.87rem; line-height: 1.75;
  color: var(--muted);
}
.faq-a code {
  background: rgba(240,62,132,0.1);
  color: var(--pink2);
  padding: 1px 5px; border-radius: 8px;
  font-family: var(--mono); font-size: 0.82em;
}


.navbar.scrolled {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-inner { height: 62px; }


.footer { padding: 72px 5% 36px; }
.footer-bottom {
  font-size: 0.76rem;
  opacity: 0.5;
}
.fl-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.fl-col a { font-size: 0.85rem; }


::-webkit-scrollbar { width: 3px; }


.mid-cta {
  position: relative; z-index: 1;
  padding: 0 5% 80px;
}
.mid-cta-inner {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(240,62,132,0.06) 0%, rgba(240,62,132,0.02) 100%);
  border: 1px solid rgba(240,62,132,0.18);
  border-radius: 26px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,62,132,0.5), transparent);
}
.mid-cta-label {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--pink); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.mid-cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 12px;
}
.mid-cta-sub {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 30px;
}
.mid-cta-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}


.hero-demo {
  width: 100%; max-width: 420px;
  margin: 0 auto 56px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(240,62,132,0.06);
  animation: fadeUp 0.85s 0.32s ease both;
}
.hero-demo-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.hero-demo-dots { display: flex; gap: 6px; }
.hero-demo-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.hero-demo-chan {
  margin-left: 4px;
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--muted);
}
.hero-demo-body {
  position: relative;
  min-height: 190px;
  padding: 18px 16px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.hero-demo-msg {
  display: flex; align-items: flex-start; gap: 10px;
  opacity: 0;
}
.hero-demo-av {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-demo-av-user {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #f03e84);
  flex-shrink: 0;
}
.hero-demo-name {
  font-size: 0.8rem; font-weight: 700; margin-bottom: 2px;
}
.hero-demo-name .tag {
  font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
  background: var(--pink); color: #fff;
  border-radius: 4px; padding: 1px 5px; margin-left: 6px;
  vertical-align: middle;
}
.hero-demo-text { font-size: 0.84rem; color: var(--text); line-height: 1.5; }
.hero-demo-text code {
  font-family: var(--mono); background: rgba(255,255,255,0.06);
  padding: 1px 6px; border-radius: 6px; color: var(--pink2);
}
.hero-demo-embed {
  margin-top: 6px;
  border-left: 3px solid var(--pink);
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-demo-embed b { color: var(--text); }
.hero-demo-code {
  font-family: var(--mono); font-size: 1rem; font-weight: 700;
  color: var(--pink2); letter-spacing: 0.08em; margin-top: 4px;
  display: inline-block;
}
.hero-demo-check {
  display: inline-flex; align-items: center; gap: 6px;
  color: #3ddc84; font-weight: 700; font-size: 0.84rem;
}

.hd-msg1 { animation: heroDemoMsg1 9s ease infinite; }
.hd-msg2 { animation: heroDemoMsg2 9s ease infinite; }
.hd-msg3 { animation: heroDemoMsg3 9s ease infinite; }
.hd-typing { animation: heroDemoTyping 9s ease infinite; }

@keyframes heroDemoMsg1 {
  0%, 3%   { opacity: 0; transform: translateY(6px); }
  8%, 82%  { opacity: 1; transform: translateY(0); }
  94%,100% { opacity: 0; transform: translateY(0); }
}
@keyframes heroDemoTyping {
  0%, 17%  { opacity: 0; }
  20%, 30% { opacity: 1; }
  36%,100% { opacity: 0; }
}
@keyframes heroDemoMsg2 {
  0%, 34%  { opacity: 0; transform: translateY(6px); }
  40%, 82% { opacity: 1; transform: translateY(0); }
  94%,100% { opacity: 0; transform: translateY(0); }
}
@keyframes heroDemoMsg3 {
  0%, 60%  { opacity: 0; transform: translateY(6px); }
  66%, 82% { opacity: 1; transform: translateY(0); }
  94%,100% { opacity: 0; transform: translateY(0); }
}
.hero-demo-typing-dots {
  display: inline-flex; gap: 3px; align-items: center;
}
.hero-demo-typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--muted);
  animation: heroDemoBounce 1s ease-in-out infinite;
}
.hero-demo-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.hero-demo-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes heroDemoBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-3px); opacity: 1; }
}
