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

:root {
  /* Palette: Deep Violet, Neon Pink, Electric Blue */
  --hue-primary: 324;
  
  --c-bg-deep: #09080E;
  --c-bg-surface: #14111F;
  --c-bg-surface-alt: #1E1A2B;
  --c-bg-glass: rgba(255, 255, 255, 0.04);
  
  --c-text-main: #E2E0F0;
  --c-text-muted: #958FA6;
  --c-text-heading: #FFFFFF;
  
  --c-accent-pink: #FF2E93;
  --c-accent-blue: #00F0FF;
  --c-accent-violet: #7000FF;
  
  --grad-primary: linear-gradient(135deg, var(--c-accent-pink) 0%, var(--c-accent-violet) 100%);
  --grad-text: linear-gradient(90deg, var(--c-accent-blue), var(--c-accent-pink));
  --grad-glow: radial-gradient(circle at 50% 0%, rgba(112, 0, 255, 0.25), transparent 60%);

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Spacing & Layout */
  --container-width: 1200px;
  --container-pad: clamp(1.5rem, 5vw, 3rem);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  /* Effects */
  --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px rgba(255, 46, 147, 0.3);
  --transition-std: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--c-bg-deep);
  color: var(--c-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--c-text-heading);
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p { margin-bottom: 1.5rem; color: var(--c-text-muted); }
p.lead { font-size: 1.25rem; color: var(--c-text-main); font-weight: 300; }

a { text-decoration: none; color: inherit; transition: var(--transition-std); }
ul { list-style: none; }

/* Container Pattern (MANDATORY) */
.c-wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: var(--transition-std);
  font-size: 1rem;
  border: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 46, 147, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 8, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
}

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

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-logo span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-muted);
}
.nav-link:hover { color: white; }

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

/* Hero Component */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
@media(min-width: 900px) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(112, 0, 255, 0.15);
  color: var(--c-accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(112, 0, 255, 0.3);
}

.hero-title {
  margin-bottom: 1.5rem;
}
.hero-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  background: #000;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cards / Features */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--c-bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition-std);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 46, 147, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.2), rgba(112, 0, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-accent-blue);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 3rem;
  margin: 0;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* CTA Band */
.cta-band {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 4rem 2rem;
  margin: 4rem var(--container-pad); /* Inset look */
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.cta-band .btn { background: white; color: var(--c-accent-pink); }
.cta-band .btn:hover { background: #f0f0f0; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.faq-question {
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}
.faq-answer {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #050408;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: white;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--c-text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--c-accent-pink); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--c-text-muted);
  font-size: 0.85rem;
}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
