@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0e1a;
  --bg2: #0f1424;
  --card: #131929;
  --border: #1e2a3a;
  --fg: #e8edf5;
  --muted: #6b7a8d;
  --primary: #22c997;
  --primary-dim: rgba(34,201,151,0.1);
  --primary-border: rgba(34,201,151,0.2);
  --green: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --blue: #3b82f6;
  --purple: #a855f7;
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
code { font-family: 'JetBrains Mono', monospace; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.text-gradient {
  background: linear-gradient(135deg, #22c997, #34d399, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* Grid */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Components */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--primary-border); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { opacity: 0.9; box-shadow: 0 0 30px -5px rgba(34,201,151,0.3); }
.btn-outline { background: var(--card); color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--bg2); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.tag-green { background: rgba(34,197,94,0.15); color: #4ade80; }
.tag-yellow { background: rgba(245,158,11,0.15); color: #fbbf24; }
.tag-red { background: rgba(239,68,68,0.15); color: #f87171; }
.tag-blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.tag-purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.tag-muted { background: rgba(255,255,255,0.06); color: var(--muted); }

.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-green { background: var(--green); }
.status-yellow { background: var(--yellow); }
.status-red { background: var(--red); }

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box-primary {
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  color: var(--primary);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(20px);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.15s;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--primary); background: var(--primary-dim); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

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

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 260px;
  margin-top: 16px;
}
.footer-certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-cert {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34,201,151,0.04), transparent);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34,201,151,0.08), transparent 70%);
}
.hero-content {
  position: relative;
  text-align: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 24px auto 0;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 64px auto 0;
}
.stat-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(19,25,41,0.5);
  padding: 20px;
  text-align: center;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Section */
.section {
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.section.bg-alt { background: rgba(19,25,41,0.3); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
}
.section-header p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
}

/* Feature cards */
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
}
.feature-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

/* Flow diagram */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 48px 32px;
}
.flow-step { text-align: center; }
.flow-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 28px;
}
.flow-icon-muted {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.flow-icon-primary {
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  box-shadow: 0 0 60px -12px rgba(34,201,151,0.3);
}
.flow-step h3 { margin-top: 16px; font-size: 18px; font-weight: 600; }
.flow-step p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.flow-arrow { color: var(--muted); font-size: 24px; }
.flow-tags { display: flex; gap: 8px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.flow-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  color: var(--primary);
}
.flow-tag-muted { background: rgba(255,255,255,0.04); border: none; color: var(--muted); }
.flow-code {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

/* Compliance list */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(19,25,41,0.5);
}
.compliance-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.compliance-item span { font-size: 14px; }

/* CTA */
.cta-box {
  border-radius: 24px;
  border: 1px solid var(--primary-border);
  background: linear-gradient(135deg, rgba(34,201,151,0.08), var(--card), var(--card));
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,201,151,0.15), transparent);
  filter: blur(80px);
}
.cta-box h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; position: relative; }
.cta-box p { color: var(--muted); font-size: 18px; max-width: 550px; margin: 16px auto 0; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 32px; position: relative; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { position: relative; }
.pricing-card.popular { border-color: rgba(34,201,151,0.4); box-shadow: 0 0 40px -10px rgba(34,201,151,0.15); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-card h3 { font-size: 20px; font-weight: 600; }
.pricing-price { margin-top: 16px; }
.pricing-price span:first-child { font-size: 40px; font-weight: 700; }
.pricing-price span:last-child { color: var(--muted); }
.pricing-mins { color: var(--primary); font-size: 14px; margin-top: 4px; }
.pricing-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pricing-feature svg { color: var(--primary); flex-shrink: 0; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Tables */
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.03); }
tr:hover td { background: rgba(255,255,255,0.015); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.form-input:focus { border-color: var(--primary); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 100px; }

/* Page header */
.page-header { padding: 96px 0 48px; }
.page-header h1 { font-size: 48px; font-weight: 700; }
.page-header p { color: var(--muted); font-size: 18px; margin-top: 16px; line-height: 1.7; }

/* Status page */
.status-list { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.status-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid var(--border); }
.status-item:last-child { border-bottom: none; }
.status-name { display: flex; align-items: center; gap: 12px; }
.status-name span { font-weight: 500; }
.status-info { display: flex; align-items: center; gap: 24px; }
.status-latency { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); }
.status-ok { color: #4ade80; font-size: 14px; font-weight: 500; }

/* Code blocks */
.code-block { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.code-header { border-bottom: 1px solid var(--border); padding: 10px 20px; background: rgba(255,255,255,0.02); font-size: 13px; font-weight: 500; }
.code-content { padding: 20px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); overflow-x: auto; white-space: pre; line-height: 1.7; }

/* API endpoints */
.api-list { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.api-header { border-bottom: 1px solid var(--border); padding: 12px 20px; background: rgba(255,255,255,0.02); display: flex; justify-content: space-between; }
.api-header span:first-child { font-size: 14px; font-weight: 600; }
.api-header code { color: var(--primary); font-size: 14px; }
.api-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.api-item:last-child { border-bottom: none; }
.api-item code { font-size: 13px; }
.api-item span:last-child { color: var(--muted); font-size: 13px; }

/* Certification cards */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.cert-card { display: flex; justify-content: space-between; align-items: flex-start; }
.cert-card h3 { font-weight: 600; }

@media (max-width: 768px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

/* AUP lists */
.aup-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; margin-bottom: 8px; }
.aup-prohibited { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.15); }
.aup-permitted { background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.15); }
.aup-item svg { flex-shrink: 0; }
.aup-item span { font-size: 14px; }

/* Alert box */
.alert { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; }
.alert-warning { background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.2); }
.alert-warning .alert-title { font-weight: 600; color: #fbbf24; font-size: 14px; }
.alert-warning .alert-text { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* Retention table */
.retention-table { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.retention-header { border-bottom: 1px solid var(--border); padding: 12px 20px; background: rgba(255,255,255,0.02); font-weight: 600; font-size: 14px; }
.retention-row { display: flex; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 14px; }
.retention-row:last-child { border-bottom: none; }
.retention-row span:last-child { color: var(--primary); font-weight: 500; }

/* Dashboard specific */
.dash-layout { display: flex; height: 100vh; overflow: hidden; }
.dash-sidebar { width: 240px; border-right: 1px solid var(--border); background: rgba(19,25,41,0.5); display: flex; flex-direction: column; flex-shrink: 0; }
.dash-sidebar-header { height: 64px; display: flex; align-items: center; gap: 10px; padding: 0 20px; border-bottom: 1px solid var(--border); }
.dash-sidebar-logo { width: 32px; height: 32px; border-radius: 8px; background: var(--primary-dim); border: 1px solid var(--primary-border); display: flex; align-items: center; justify-content: center; }
.dash-sidebar-brand { font-family: 'Instrument Sans'; font-size: 18px; font-weight: 600; }
.dash-project { margin: 12px; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); display: flex; align-items: center; gap: 8px; font-size: 14px; }
.dash-project-icon { width: 24px; height: 24px; border-radius: 6px; background: var(--primary-dim); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--primary); }
.dash-nav { flex: 1; padding: 4px 12px; display: flex; flex-direction: column; gap: 2px; }
.dash-nav-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all 0.15s; }
.dash-nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.dash-nav-link.active { color: var(--primary); background: var(--primary-dim); border: 1px solid var(--primary-border); }
.dash-user { padding: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.dash-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, rgba(34,201,151,0.3), rgba(34,201,151,0.5)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.dash-user-info { flex: 1; }
.dash-user-name { font-size: 13px; font-weight: 500; }
.dash-user-email { font-size: 11px; color: var(--muted); }

.dash-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.dash-header { height: 64px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: rgba(19,25,41,0.3); }
.dash-search { position: relative; width: 320px; }
.dash-search input { width: 100%; padding: 8px 16px 8px 36px; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--fg); font-size: 14px; }
.dash-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.dash-content { flex: 1; overflow: auto; padding: 24px; }

.dash-page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.dash-page-header h1 { font-size: 24px; font-weight: 700; }
.dash-page-header p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.dash-stat { padding: 16px; }
.dash-stat-value { font-size: 24px; font-weight: 700; }
.dash-stat-label { font-size: 13px; color: var(--muted); }

.route-card { margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.route-info { display: flex; align-items: center; gap: 16px; }
.route-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.route-icon-blue { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: #60a5fa; }
.route-icon-purple { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); color: #c084fc; }
.route-icon-yellow { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: #fbbf24; }
.route-meta { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 13px; color: var(--muted); }
.route-stats { text-align: right; }
.route-stats div:first-child { font-weight: 600; }
.route-stats div:last-child { font-size: 12px; color: var(--muted); }

.ivr-flow { display: flex; align-items: center; gap: 16px; padding: 16px 0; overflow-x: auto; }
.ivr-step { padding: 12px 20px; border-radius: 10px; text-align: center; flex-shrink: 0; }
.ivr-step-primary { background: var(--primary-dim); border: 1px solid var(--primary-border); }
.ivr-step-muted { border: 1px solid var(--border); }
.ivr-step-icon { font-size: 20px; }
.ivr-step-label { font-size: 12px; font-weight: 500; margin-top: 4px; }
.ivr-branches { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.ivr-branch { padding: 6px 16px; border-radius: 8px; font-size: 12px; }
.ivr-branch-green { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); }
.ivr-branch-blue { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); }
.ivr-branch-yellow { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); }

.settings-layout { display: flex; gap: 24px; }
.settings-nav { width: 180px; flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; }
.settings-content { flex: 1; }

.toggle { width: 48px; height: 24px; border-radius: 12px; position: relative; cursor: pointer; }
.toggle.on { background: var(--primary); }
.toggle.off { background: var(--border); }
.toggle-knob { width: 18px; height: 18px; border-radius: 50%; background: #fff; position: absolute; top: 3px; transition: left 0.15s; }
.toggle.on .toggle-knob { left: 27px; }
.toggle.off .toggle-knob { left: 3px; }

.country-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.country-btn { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-radius: 10px; cursor: pointer; transition: all 0.15s; }
.country-btn.active { background: var(--primary-dim); border: 1px solid var(--primary-border); }
.country-btn.inactive { border: 1px solid var(--border); background: var(--card); }
.country-info { display: flex; align-items: center; gap: 10px; }
.country-flag { font-size: 20px; }
.country-name { font-size: 14px; font-weight: 500; }
.country-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.country-check.active { border: 2px solid var(--primary); background: var(--primary); color: var(--bg); font-size: 12px; font-weight: 700; }
.country-check.inactive { border: 2px solid var(--muted); }

.credential-field { margin-bottom: 16px; }
.credential-field label { font-size: 14px; font-weight: 500; display: block; margin-bottom: 8px; }
.credential-value { display: block; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-family: 'JetBrains Mono', monospace; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.6s ease-out forwards; }
.delay-1 { animation-delay: 100ms; opacity: 0; }
.delay-2 { animation-delay: 200ms; opacity: 0; }
.delay-3 { animation-delay: 300ms; opacity: 0; }

/* Pulse dot */
.pulse-dot { position: relative; width: 8px; height: 8px; display: inline-block; }
.pulse-dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--primary); animation: ping 1.5s infinite; }
.pulse-dot::after { content: ''; position: relative; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

@media (max-width: 768px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}
