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

  :root {
    --bg: #0d0f14;
    --bg2: #13161e;
    --bg3: #1a1e28;
    --surface: #1e2332;
    --surface2: #252a3a;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --text: #e8eaf2;
    --text2: #8b92a8;
    --text3: #545c75;
    --purple: #7c6af7;
    --purple-light: #a89af9;
    --purple-dim: rgba(124, 106, 247, 0.15);
    --purple-glow: rgba(124, 106, 247, 0.3);
    --yt: #ff2d2d;
    --tw: #9147ff;
    --nf: #e50914;
    --ytm: #ff6d00;
    --discord-status: #23a55a;
    --radius: 12px;
    --radius-sm: 8px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 60px;
    background: rgba(13,15,20,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 32px; height: 32px;
    background: var(--purple);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }

  .nav-logo-icon svg { width: 18px; height: 18px; fill: #fff; }

  .nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: var(--text);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--purple);
    color: #fff !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
  }
  .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,106,247,0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--purple-dim);
    border: 1px solid rgba(124,106,247,0.35);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--purple-light);
    margin-bottom: 2rem;
  }

  .hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--purple-light);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 9vw, 96px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    position: relative;
  }

  .hero-title-accent { color: var(--purple); }

  .hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text2);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--purple);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 0 32px rgba(124,106,247,0.35);
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-secondary:hover { background: var(--surface2); transform: translateY(-2px); }

  /* ── DISCORD CARD (hero demo) ── */
  .hero-demo {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .discord-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 14px;
    text-align: left;
  }

  .dc-banner {
    height: 60px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  }

  .dc-header {
    padding: 0 16px 12px;
    position: relative;
  }

  .dc-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-top: -28px;
    margin-bottom: 8px;
  }

  .dc-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7289da, #5865f2);
    border: 4px solid var(--bg2);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .dc-status-dot {
    position: absolute;
    bottom: 4px; right: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--discord-status);
    border: 3px solid var(--bg2);
  }

  .dc-username {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
  }
  .dc-tag { color: var(--text2); font-size: 13px; }

  .dc-presence {
    margin: 12px 16px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.5s ease;
  }

  .dc-presence-icon {
    width: 44px; height: 44px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    position: relative;
  }

  .dc-presence-icon-small {
    position: absolute;
    bottom: -4px; right: -4px;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--bg2);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
  }

  .dc-presence-info { flex: 1; min-width: 0; }

  .dc-presence-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }

  .dc-presence-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dc-presence-detail {
    font-size: 12px;
    color: var(--text2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dc-presence-time {
    font-size: 11px;
    color: var(--text3);
    margin-top: 4px;
  }

  /* ── SERVICES TABS ── */
  .services-tabs {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
  }

  .svc-tab {
    flex: 1;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: var(--text2);
    transition: all 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .svc-tab.active { border-color: var(--active-color, var(--purple)); color: #fff; background: rgba(255,255,255,0.07); }
  .svc-tab:hover:not(.active) { background: var(--surface); color: var(--text); }

  .svc-tab span { font-size: 16px; }

  /* ── SECTION COMMON ── */
  section { padding: 6rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    color: var(--text);
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 16px;
    color: var(--text2);
    max-width: 500px;
    line-height: 1.7;
  }

  /* ── FEATURES ── */
  .features-bg {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .features-header { margin-bottom: 3.5rem; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .feature-card:hover { border-color: var(--border2); transform: translateY(-3px); }

  .feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0.4rem;
    color: var(--text);
  }

  .feature-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  @media (min-width: 700px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.25s;
    cursor: default;
  }

  .svc-card:hover {
    transform: translateY(-4px);
    border-color: var(--svc-color, var(--purple));
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  .svc-logo {
    font-size: 40px;
    margin-bottom: 0.75rem;
    display: block;
  }

  .svc-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 0.25rem;
  }

  .svc-detail { font-size: 13px; color: var(--text2); }

  .svc-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── HOW IT WORKS ── */
  .steps { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }

  .step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
  }

  .step:last-child { border-bottom: 1px solid var(--border); }

  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--purple);
    line-height: 1;
    min-width: 56px;
    opacity: 0.6;
  }

  .step-content {}

  .step-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0.4rem;
    color: var(--text);
  }

  .step-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

  .step-code {
    margin-top: 10px;
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    color: var(--purple-light);
    display: inline-block;
    word-break: break-all;
  }

  /* ── SECURITY ── */
  .security-bg {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  @media (max-width: 700px) {
    .security-grid { grid-template-columns: 1fr; gap: 2rem; }
  }

  .security-items { display: flex; flex-direction: column; gap: 1.25rem; }

  .security-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .security-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(35, 165, 90, 0.15);
    border: 1px solid rgba(35, 165, 90, 0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .security-item-title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
  .security-item-desc { font-size: 13px; color: var(--text2); line-height: 1.5; }

  .security-visual {
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 1.5rem;
  }

  .crypto-block {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
    color: #888;
    line-height: 1.8;
  }

  .crypto-comment { color: #4d5566; }
  .crypto-key { color: var(--purple-light); }
  .crypto-val { color: #69d985; }
  .crypto-fn { color: #f7b733; }

  /* ── CTA ── */
  .cta-section {
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .cta-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,106,247,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    margin-bottom: 1.25rem;
    position: relative;
  }

  .cta-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 420px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
  }

  .cta-meta {
    margin-top: 1.5rem;
    font-size: 13px;
    color: var(--text3);
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap;
  }
  .cta-meta span { display: flex; align-items: center; gap: 5px; }
	
  .nav-logo-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

  /* ── FOOTER ── */
  footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 13px;
    color: var(--text3);
  }

  footer a { color: var(--text2); text-decoration: none; }
  footer a:hover { color: var(--text); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .anim-in { animation: fadeUp 0.6s ease both; }
  .anim-delay-1 { animation-delay: 0.1s; }
  .anim-delay-2 { animation-delay: 0.2s; }
  .anim-delay-3 { animation-delay: 0.3s; }
  .anim-delay-4 { animation-delay: 0.45s; }

  @media (max-width: 640px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.25rem; }
  }

  /* scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 3px; }

/* ── Extra styles ── */

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg2);
}
.ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
}
.ticker-item span { font-size: 18px; }
.ticker-sep { color: var(--text3); font-size: 20px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover { border-color: rgba(124,106,247,0.35); transform: translateY(-3px); }
.testi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--text); }
.testi-tag  { font-size: 12px; color: var(--text3); }
.testi-discord-logo { margin-left: auto; opacity: 0.5; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.65; }
.testi-emoji-row { margin-top: 12px; font-size: 18px; letter-spacing: 4px; }

/* FAQ */
.faq-list { margin-top: 2.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple-light); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text3);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--purple-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.1rem; }
.faq-a p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* Scroll reveal */
.reveal, .feature-card, .svc-card, .step, .testi-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible, .feature-card.visible, .svc-card.visible, .step.visible, .testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger children in grid */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.07s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.14s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.21s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.28s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.35s; }
.testi-card:nth-child(2) { transition-delay: 0.1s; }
.testi-card:nth-child(3) { transition-delay: 0.2s; }

/* Mobile nav */
#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#burger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: 0.3s; }

#mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(13,15,20,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  backdrop-filter: blur(12px);
}
#mobile-nav.open { display: flex; }
#mobile-nav a { font-size: 16px; color: var(--text2); text-decoration: none; font-weight: 500; }
#mobile-nav a:hover { color: var(--text); }
#mobile-nav .nav-cta { text-align: center; justify-content: center; margin-top: 0.5rem; }

@media (max-width: 640px) {
  #burger { display: flex; }
  nav .nav-links { display: none !important; }
}