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

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --purple:        #B084FF;
  --purple-dim:    rgba(176, 132, 255, 0.15);
  --purple-glow:   rgba(176, 132, 255, 0.25);
  --teal:          #00F0FF;
  --teal-dim:      rgba(0, 240, 255, 0.12);
  --copper:        #E5B582;
  --bg:            #000000;
  --surface-1:     #0d0d0d;
  --surface-2:     #141414;
  --surface-3:     #1e1e1e;
  --border:        rgba(255, 255, 255, 0.06);
  --border-accent: rgba(176, 132, 255, 0.25);
  --text-1:        #ffffff;
  --text-2:        #a0a0a0;
  --text-3:        #606060;
  --font:          'Manrope', sans-serif;
  --mono:          'Space Mono', monospace;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.4px; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--text-2); font-size: 1.05rem; }

.highlight {
  color: var(--purple);
  text-shadow: 0 0 40px rgba(176, 132, 255, 0.5);
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 7rem 0; }

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.section-sub {
  max-width: 540px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.1rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #000;
  box-shadow: 0 0 24px rgba(176, 132, 255, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(176, 132, 255, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text-1);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn-large { padding: 1rem 2rem; font-size: 1.05rem; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--purple) 0%, #7c3aff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(176, 132, 255, 0.4);
}

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

.nav-links a:not(.btn) {
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--text-1); }

.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-1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}
.mobile-menu a {
  padding: 0.9rem 1.5rem;
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-1); }
.mobile-menu.open { display: flex; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(176, 132, 255, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,132,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,132,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-accent);
  background: var(--purple-dim);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 2s infinite;
}

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

.hero h1 { max-width: 800px; }

.hero-sub {
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--text-2);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.3rem;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Products ────────────────────────────────────────────────────────────── */
.products { background: var(--surface-1); }

.products h2, .products .section-label { text-align: center; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.product-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.product-card:hover { transform: translateY(-6px); }

.product-card.flagship {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(176, 132, 255, 0.06) 0%, rgba(0,0,0,0) 60%);
}

.product-card.flagship:hover { border-color: rgba(176, 132, 255, 0.45); }

.product-card.coming-soon {
  background: var(--surface-2);
  display: flex;
  align-items: center;
}

.product-card-inner {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(176, 132, 255, 0.1) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-icon img { width: 100%; height: 100%; object-fit: cover; }

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.product-tag {
  font-size: 0.7rem;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-dim);
  border: 1px solid var(--border-accent);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.product-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: var(--mono);
}

.product-status.live { color: #4ade80; }

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.product-desc { font-size: 0.95rem; flex: 1; }

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.25rem 0.7rem;
}

.product-cta { margin-top: auto; align-self: flex-start; }

.coming-soon-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}

.stealth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-family: var(--mono);
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-top: auto;
}

/* ── Mission ─────────────────────────────────────────────────────────────── */
.mission { background: var(--bg); }

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mission-text h2 { text-align: left; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-1);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; }

.value-card h4 { color: var(--text-1); }
.value-card p  { font-size: 0.88rem; margin: 0; }

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(176, 132, 255, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-content h2 { max-width: 500px; }
.cta-content p  { max-width: 420px; margin: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 280px;
}

.footer-brand p { font-size: 0.9rem; margin: 0; }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all 0.2s ease;
}
.social-links a:hover {
  color: var(--purple);
  border-color: var(--border-accent);
}
.social-links svg { width: 16px; height: 16px; }

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--mono);
  color: var(--text-3);
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.product-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.values-grid  .value-card:nth-child(2) { transition-delay: 0.05s; }
.values-grid  .value-card:nth-child(3) { transition-delay: 0.1s; }
.values-grid  .value-card:nth-child(4) { transition-delay: 0.15s; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-grid    { grid-template-columns: 1fr; }
  .mission-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top      { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links    { gap: 2rem; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats {
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-stats { display: none; }
}
