/* ============================================
   Claw Affiliate — Global Stylesheet
   Dark theme | Indigo/Purple brand | Inter font
   ============================================ */

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --card: #1a1a26;
  --card-hover: #1f1f30;
  --border: #2a2a3a;
  --border-light: #3a3a50;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #8b5cf6;
  --accent: #a78bfa;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --glow: 0 0 40px rgba(99,102,241,0.15);
  --transition: 0.2s ease;
}

*, *::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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(99,102,241,0.3); color: var(--text); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ---- Utilities ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(99,102,241,0.45);
  color: #fff;
}
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--card-hover); border-color: var(--border-light); color: var(--text); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover { background: rgba(99,102,241,0.1); color: var(--primary); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Badges & Tags ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary { background: rgba(99,102,241,0.15); color: var(--primary); border: 1px solid rgba(99,102,241,0.3); }
.badge-success { background: rgba(16,185,129,0.15); color: var(--success); border: 1px solid rgba(16,185,129,0.3); }
.badge-warning { background: rgba(245,158,11,0.15); color: var(--warning); border: 1px solid rgba(245,158,11,0.3); }
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.nav-scrolled {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--text); }
.nav-logo svg { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--card); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 16px; border-radius: var(--radius); color: var(--text-muted); font-weight: 500; }
.mobile-menu a:hover { background: var(--card); color: var(--text); }

/* ---- Hero ---- */
.hero {
  padding: 160px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; animation: pulse-glow 2s infinite; }
.hero-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s 0.1s ease both;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.5s 0.2s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.5s 0.3s ease both;
}
.hero-code {
  margin: 64px auto 0;
  max-width: 640px;
  animation: fadeInUp 0.5s 0.4s ease both;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.stat-item svg, .stat-item .icon { width: 18px; height: 18px; color: var(--primary); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* ---- Steps Grid ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover { border-color: var(--primary); box-shadow: var(--glow); }
.step-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-description { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--border-light); box-shadow: var(--glow); }
.feature-icon { font-size: 24px; margin-bottom: 12px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-description { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ---- API Grid ---- */
.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.api-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
}
.api-card:hover { border-color: var(--border-light); }
.api-method {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: fit-content;
}
.api-method.post { background: rgba(99,102,241,0.2); color: var(--primary); }
.api-method.get  { background: rgba(16,185,129,0.2); color: var(--success); }
.api-method.del  { background: rgba(239,68,68,0.2);  color: var(--danger); }
.api-endpoint {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  word-break: break-all;
}
.api-description { font-size: 13px; color: var(--text-muted); }

/* ---- Pricing (homepage section) ---- */
.pricing-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card-home {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition);
}
.pricing-card-home.featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
  border-color: var(--primary);
  box-shadow: var(--glow);
  position: relative;
}
.pricing-card-home.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.pricing-features-home { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features-home li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-features-home li::before { content: '\2713'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ---- Terminal ---- */
.terminal {
  background: #0d0d14;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--mono);
  box-shadow: var(--shadow-lg);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: #ef4444; }
.terminal-dot:nth-child(2) { background: #f59e0b; }
.terminal-dot:nth-child(3) { background: #10b981; }
.terminal-title { font-size: 12px; color: var(--text-faint); margin-left: 8px; }
.terminal-body { padding: 20px; font-size: 13px; line-height: 1.8; }
.terminal-line { display: block; }
.terminal-prompt { color: var(--primary); }
.terminal-prompt::before { content: '$ '; color: var(--success); }
.terminal-output { color: var(--text-muted); }
.terminal-output.success { color: var(--success); }
.terminal-output.warn { color: var(--warning); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
  text-align: center;
}
.cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card:hover { border-color: var(--border-light); box-shadow: var(--glow); transform: translateY(-2px); }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-faint); }
.blog-title { font-size: 18px; font-weight: 700; line-height: 1.4; }
.blog-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.6; flex: 1; }
.blog-read-more { color: var(--primary); font-size: 13px; font-weight: 600; }

/* ---- Docs ---- */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.docs-sidebar {
  position: sticky;
  top: 80px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.docs-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.docs-nav a { display: block; padding: 8px 12px; border-radius: var(--radius); font-size: 13px; color: var(--text-muted); transition: all var(--transition); }
.docs-nav a:hover, .docs-nav a.active { background: rgba(99,102,241,0.1); color: var(--primary); }
.docs-content h2 { font-size: 28px; font-weight: 700; margin: 48px 0 16px; padding-top: 48px; border-top: 1px solid var(--border); }
.docs-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.docs-content h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.docs-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.docs-content pre {
  background: #0d0d14;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-family: var(--mono);
  font-size: 13px;
  overflow-x: auto;
  margin: 16px 0;
  color: var(--text);
}
.docs-content code { font-family: var(--mono); font-size: 13px; background: var(--card); padding: 2px 6px; border-radius: 4px; color: var(--accent); }

/* ---- Forms ---- */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-input, .form-textarea, .form-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ---- Changelog ---- */
.changelog-list { display: flex; flex-direction: column; gap: 32px; }
.changelog-entry { display: grid; grid-template-columns: 180px 1fr; gap: 32px; }
.changelog-meta { text-align: right; padding-top: 4px; }
.changelog-version { font-size: 18px; font-weight: 700; color: var(--primary); }
.changelog-date { font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.changelog-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.changelog-content ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.changelog-content ul li { font-size: 14px; color: var(--text-muted); padding-left: 16px; position: relative; }
.changelog-content ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--text-faint); }

/* ---- Footer ---- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; }
  .changelog-entry { grid-template-columns: 1fr; }
  .changelog-meta { text-align: left; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 64px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-bar .container { gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 12px 20px; font-size: 15px; }
}

/* ============================================================
   SIGNUP PAGE
   ============================================================ */
.signup-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
}
.signup-container {
  max-width: 1100px;
  margin: 0 auto;
}
.signup-header {
  text-align: center;
  margin-bottom: 64px;
}
.signup-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
  color: #f1f5f9;
}
.signup-header p {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .signup-grid { grid-template-columns: 1fr; }
}
.signup-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}
.signup-form .form-group {
  margin-bottom: 24px;
}
.signup-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 8px;
}
.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f1f5f9;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  outline: none;
  border-color: #818cf8;
}
.signup-form select option { background: #0f172a; }
.btn-full { width: 100%; text-align: center; justify-content: center; }
.form-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 12px;
}
.signup-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #818cf8, #a855f7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  margin: 0 auto 24px;
}
.signup-benefits h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 28px;
}
.benefits-list {
  list-style: none;
  padding: 0; margin: 0 0 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.benefits-list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefits-list strong {
  display: block;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 4px;
}
.benefits-list p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.signup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-page {
  min-height: 100vh;
  padding: 80px 24px;
}
.pricing-header {
  text-align: center;
  padding: 60px 24px 48px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
  color: #f1f5f9;
}
.pricing-header p {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.7;
}
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: 0.9375rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}
.toggle-label.active { color: #f1f5f9; font-weight: 600; }
.pricing-toggle {
  width: 56px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}
.toggle-pill {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #818cf8, #a855f7);
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: transform 0.3s ease;
}
.pricing-container { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card-featured {
  background: rgba(129,140,248,0.08);
  border-color: rgba(129,140,248,0.3);
  transform: scale(1.02);
}
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #818cf8, #a855f7);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 12px;
}
.pricing-amount {
  margin-bottom: 16px;
}
.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f1f5f9;
}
.price-prefix {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-suffix {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 4px;
}
.pricing-card-header p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 24px;
}
.pricing-features {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #cbd5e1;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li.disabled { color: #475569; }
.check { color: #818cf8; font-weight: 700; flex-shrink: 0; }
.x { color: #475569; flex-shrink: 0; }
.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #475569;
  margin-top: 12px;
}
.pricing-faq {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 0 24px;
}
.pricing-faq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 12px;
}
.faq-item p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}
.pricing-cta {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.pricing-cta p {
  color: #94a3b8;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.nav a.active { color: #818cf8; }
