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

:root {
  /* Palette - Light Mode with Vibrant Accents */
  --hue-primary: 36;
  --c-bg: #FAFAFA;
  --c-surface: #FFFFFF;
  --c-text: #0F172A;
  --c-text-muted: #64748B;
  --c-line: #E2E8F0;
  
  /* Gradients */
  --grad-brand: linear-gradient(135deg, #FF5722 0%, #9C27B0 100%);
  --grad-brand-faint: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  
  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing Scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 8rem;
  
  /* UI */
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -10px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 40px -10px rgba(156, 39, 176, 0.15);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin-bottom: var(--sp-sm); color: var(--c-text-muted); }
a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; display: block; border-radius: var(--radius-lg); }

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}

.hdr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-sm);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-main { display: flex; gap: var(--sp-md); }
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
}
.nav-link:hover { color: #FF5722; }

.hdr-actions { display: flex; gap: var(--sp-sm); }
.btn-ghost {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}
.btn-primary {
  background: var(--grad-brand);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Layout Blocks */
section {
  padding-block: var(--sp-xl);
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9C27B0;
  margin-bottom: var(--sp-sm);
  background: rgba(156, 39, 176, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.hero-title {
  margin-bottom: var(--sp-md);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: var(--sp-md);
}

.hero-btns {
  display: flex;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--grad-brand-faint);
  z-index: -1;
  border-radius: 30px;
  transform: rotate(-2deg);
}

/* Cards Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-md);
}

.feature-card {
  background: var(--c-surface);
  padding: var(--sp-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-line);
  transition: 0.3s;
}
.feature-card:hover {
  border-color: #FF5722;
  transform: translateY(-5px);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-brand);
  border-radius: 12px;
  margin-bottom: var(--sp-sm);
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-lg);
  padding-block: var(--sp-lg);
}

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-weight: 500;
  color: var(--c-text);
}

/* CTA Band */
.cta-band {
  background: #0F172A;
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: var(--sp-sm); }
.cta-band p { color: #94A3B8; margin-bottom: var(--sp-md); }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: var(--sp-md) 0;
}
.faq-q {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}
.faq-a {
  color: var(--c-text-muted);
}

/* Footer */
.site-footer {
  background: #F8FAFC;
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--c-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; color: #94A3B8; margin-bottom: var(--sp-sm); }
.footer-link {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--c-text);
  font-size: 0.95rem;
}
.footer-link:hover { color: #FF5722; }
.footer-bottom {
  padding-block: var(--sp-md);
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

@media (max-width: 768px) {
  .hdr-row { flex-direction: column; gap: var(--sp-sm); }
  .nav-main { gap: var(--sp-sm); flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { text-align: center; }
  .hero-btns { justify-content: center; }
}body{margin:0}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}