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

:root {
  --brand: #00d4aa;
  --brand-dim: #00d4aa66;
  --brand-10: #00d4aa1a;
  --brand-20: #00d4aa33;
  --gold: #f5a623;
  --gold-dim: #f5a62366;
  --gold-10: #f5a6231a;
  --surface-0: #0a0a0f;
  --surface-1: #111118;
  --surface-2: #1a1a24;
  --surface-3: #232330;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.1);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface-0);
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background-color: #00d4aa44;
  color: #fff;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 768px;
}

.text-gradient-brand {
  background: linear-gradient(135deg, #00d4aa, #00e5c3, #4dffc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #f5a623, #fbbf24, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  font-size: 14px;
}

.btn-primary {
  background: var(--brand);
  color: var(--surface-0);
}
.btn-primary:hover {
  background: #00e5be;
  box-shadow: 0 8px 32px #00d4aa33;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--surface-0);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}
.btn-white:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-orb-1 {
  top: 20%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: #00d4aa0d;
}

.hero-orb-2 {
  bottom: 20%;
  right: 20%;
  width: 350px;
  height: 350px;
  background: #f5a62308;
  animation-delay: 1.5s;
}

.hero-orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: #00d4aa05;
  filter: blur(120px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--brand-20);
  background: var(--brand-10);
  margin-bottom: 32px;
  color: #4dffc4;
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  animation: slideUp 0.6s ease-out;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  animation: slideUp 0.6s ease-out 0.15s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: slideUp 0.6s ease-out 0.3s both;
  position: relative;
  z-index: 2;
}

/* Dashboard Preview */
.hero-dashboard {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.dashboard-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(to right, #00d4aa33, transparent, #f5a62322);
  border-radius: 24px;
  filter: blur(24px);
  opacity: 0.4;
  pointer-events: none;
}

.dashboard {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ef444499; }
.dot-yellow { background: #eab30899; }
.dot-green { background: #22c55e99; }

.dashboard-title {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: 'SF Mono', 'Fira Code', monospace;
  margin-left: 12px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.stat-card {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.stat-change {
  font-size: 12px;
  color: var(--brand);
  margin-top: 4px;
}

.dashboard-chart {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 16px;
}

.chart-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.chart-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulseGlow 2s ease-in-out infinite;
}

.chart-label {
  font-size: 12px;
  color: #4dffc4;
  font-weight: 500;
}

.chart-bars {
  display: flex;
  gap: 4px;
  height: 48px;
  align-items: flex-end;
}

.chart-bar {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(to top, #00d4aa66, #00d4aacc);
  min-height: 4px;
}

/* Stats Bar */
.stats-bar {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 17, 24, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
}

.stat-item-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(17, 17, 24, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--brand-20);
  transform: translateY(-4px);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to bottom, var(--brand-10), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 12px;
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  color: var(--brand);
}

.step-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.06);
}

.step-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.step-desc {
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* Campaigns */
.campaigns-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campaign-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.campaign-card-brand { border-color: #00d4aa33; }
.campaign-card-blue { border-color: #3b82f633; }
.campaign-card-violet { border-color: #8b5cf633; }
.campaign-card-gold { border-color: #f5a62333; }
.campaign-card-rose { border-color: #f4336833; }

.campaign-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.campaign-icon-brand { background: #00d4aa1a; color: #00d4aa; }
.campaign-icon-blue { background: #3b82f61a; color: #3b82f6; }
.campaign-icon-violet { background: #8b5cf61a; color: #8b5cf6; }
.campaign-icon-gold { background: #f5a6231a; color: #f5a623; }
.campaign-icon-rose { background: #f433681a; color: #f43368; }

.campaign-content {
  flex: 1;
}

.campaign-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.campaign-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.campaign-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.campaign-card:hover .campaign-dot {
  opacity: 1;
}

.campaign-dot-brand { background: #00d4aa; }
.campaign-dot-blue { background: #3b82f6; }
.campaign-dot-violet { background: #8b5cf6; }
.campaign-dot-gold { background: #f5a623; }
.campaign-dot-rose { background: #f43368; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--brand-20);
  transform: translateY(-4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-10);
  border: 1px solid var(--brand-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 16px;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--brand-20);
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card-featured {
  border: 2px solid #00d4aa4d;
  box-shadow: 0 20px 40px #00d4aa0d;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--brand);
  color: var(--surface-0);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: #fff;
}

.pricing-period {
  color: var(--text-tertiary);
  font-size: 14px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #d4d4d8;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

.faq-question span {
  padding-right: 16px;
}

.faq-chevron {
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cta-orb-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: #00d4aa12;
}

.cta-orb-2 {
  top: 50%;
  left: 33%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: #f5a6230d;
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 360px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: #52525b;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 60px 16px 20px;
  }

  .hero-dashboard {
    margin-top: 40px;
  }

  .dashboard {
    padding: 16px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    flex-direction: flex-start;
    gap: 12px;
  }

  .campaign-dot {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
