/* ============================================================
   Apex Machina — Homepage — Dark Neural Theme
   ============================================================ */

/* ── Variables ── */
:root {
  --bg-primary:    #060a14;
  --bg-secondary:  #0c1220;
  --bg-tertiary:   #121a2e;
  --bg-card:       #141c30;
  --border:        #1e2a44;
  --border-light:  #2a3a5c;
  --text-primary:  #e8ecf4;
  --text-secondary:#8994a8;
  --text-muted:    #5a6478;
  --accent-blue:   #4A9EFF;
  --accent-cyan:   #00D4FF;
  --accent-glow:   rgba(74, 158, 255, 0.3);
  --gradient:      linear-gradient(135deg, #4A9EFF 0%, #00D4FF 100%);
  --gradient-text:  linear-gradient(135deg, #4A9EFF 0%, #00D4FF 50%, #4A9EFF 100%);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --max-width:     1200px;
  --nav-height:    72px;

  /* CRM status colors */
  --status-prospect:  #4A9EFF;
  --status-contacte:  #00D4FF;
  --status-qualifie:  #FFD700;
  --status-client:    #00FF88;
}

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

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gradient text ── */
.gradient-text {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(74, 158, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(74, 158, 255, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-blue);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(6, 10, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(6, 10, 20, 0.95);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.nav-logo-text .accent {
  color: var(--accent-blue);
  font-weight: 400;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  overflow: hidden;
}

#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 158, 255, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 158, 255, 0); }
}

#hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Section common ── */
section {
  padding: 120px 0;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

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

/* ── Features ── */
#features {
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(74, 158, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-blue);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Product showcase ── */
#product {
  background: var(--bg-primary);
}

.product-showcase {
  perspective: 1000px;
}

.product-browser {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(74, 158, 255, 0.06);
  transform: rotateX(2deg);
  transition: transform 0.6s ease;
}

.product-browser:hover {
  transform: rotateX(0deg);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-primary);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.browser-content {
  padding: 0;
}

/* ── Interactive Simulator ── */
.sim { background: #060a14; font-family: var(--font); user-select: none; }

/* Topbar */
.sim-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 8px 16px; background: #0c1220;
  border-bottom: 1px solid #1e2a44;
}
.sim-logo { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #e8ecf4; white-space: nowrap; }
.sim-logo span { color: #4A9EFF; font-weight: 300; }
.sim-search {
  flex: 1; max-width: 260px; padding: 5px 12px;
  background: #121a2e; border: 1px solid #1e2a44; border-radius: 6px;
  font-size: 10px; color: #5a6478;
}
.sim-search-icon { font-size: 10px; margin-right: 4px; }
.sim-pills { display: flex; gap: 8px; margin-left: auto; }
.sim-pill { font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: rgba(255,255,255,0.03); }

/* Body layout */
.sim-body { display: flex; height: 420px; }

/* Sidebar */
.sim-sidebar {
  width: 160px; flex-shrink: 0; padding: 10px 8px;
  background: #0c1220; border-right: 1px solid #1e2a44;
  display: flex; flex-direction: column; gap: 4px; overflow: hidden;
}
.sim-sb-section { background: rgba(255,255,255,0.015); border-radius: 8px; padding: 8px; }
.sim-sb-label { font-size: 8px; font-weight: 600; letter-spacing: 1.2px; color: #5a6478; margin-bottom: 6px; }
.sim-pipeline-row { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.sim-pn { font-size: 13px; font-weight: 700; min-width: 20px; text-align: right; }
.sim-pl { font-size: 9px; color: #8994a8; }
.sim-bar-bg { height: 3px; background: rgba(255,255,255,0.03); border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.sim-bar { height: 100%; border-radius: 2px; opacity: 0.5; }
.sim-camp {
  font-size: 9px; color: #8994a8; padding: 5px 8px;
  background: rgba(255,255,255,0.02); border-radius: 6px;
  margin-bottom: 3px; display: flex; justify-content: space-between;
  border-left: 3px solid transparent;
}
.sim-camp.active { color: #e8ecf4; background: rgba(74,158,255,0.06); border-left-color: #4A9EFF; }
.sim-camp span { color: #5a6478; font-size: 8px; }
.sim-filter { font-size: 9px; color: #8994a8; padding: 3px 4px; }

/* Canvas */
.sim-canvas {
  flex: 1; position: relative; overflow: hidden;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(74,158,255,0.03) 0%, transparent 70%),
    linear-gradient(rgba(30,42,68,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,42,68,0.15) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* Views */
.sim-view {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.95);
}
.sim-view.active { opacity: 1; pointer-events: auto; transform: scale(1); }
.sim-view.zoom-out { opacity: 0; transform: scale(1.1); }

/* ── Sectors view ── */
.sim-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.sim-sector {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: var(--size); height: var(--size);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
}
.sim-sector-glow {
  position: absolute; inset: -40%; border-radius: 50%;
  background: radial-gradient(circle, var(--color) 0%, transparent 70%);
  opacity: 0.08; transition: opacity 0.3s;
}
.sim-sector:hover .sim-sector-glow { opacity: 0.18; }
.sim-sector-orbit {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px dashed var(--color); opacity: 0.15;
  animation: orbit-spin 20s linear infinite;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.sim-sector-core {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--color); box-shadow: 0 0 12px var(--color);
  margin-bottom: 4px; transition: box-shadow 0.3s;
}
.sim-sector:hover .sim-sector-core { box-shadow: 0 0 24px var(--color); }
.sim-sector-info { text-align: center; }
.sim-sector-name { display: block; font-size: 8px; font-weight: 600; letter-spacing: 0.8px; color: #8994a8; }
.sim-sector-count { font-size: 10px; font-weight: 700; color: #e8ecf4; }

.sim-particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #4A9EFF; opacity: 0.3; pointer-events: none;
  animation: particle-pulse 4s ease-in-out infinite;
}
@keyframes particle-pulse { 0%,100% { opacity: 0.15; } 50% { opacity: 0.5; } }

/* ── Companies view ── */
.sim-columns { display: flex; gap: 12px; padding: 16px 12px; height: 100%; overflow-x: auto; }
.sim-col { flex: 1; min-width: 150px; display: flex; flex-direction: column; gap: 8px; }
.sim-col-header {
  font-size: 10px; font-weight: 600; color: var(--col-color);
  padding: 6px 8px; display: flex; align-items: center; gap: 6px;
}
.sim-col-dot { width: 8px; height: 8px; border-radius: 50%; }

.sim-card {
  background: #0a0f1c; border: 1px solid #1e2a44; border-radius: 10px;
  padding: 10px; position: relative; cursor: pointer;
  transition: all 0.3s ease; overflow: hidden;
}
.sim-card:hover { border-color: #2a3a5c; transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.sim-card-border {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--card-color); opacity: 0.5;
  border-radius: 10px 10px 0 0;
}
.sim-card:hover .sim-card-border { opacity: 1; box-shadow: 0 0 8px var(--card-color); }
.sim-card-head { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.sim-card-head strong { font-size: 11px; color: #e8ecf4; flex: 1; }
.sim-card-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sim-ats {
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 8px;
  border: 1px solid; line-height: 1;
}
.sim-ats.hot { color: #00FF88; border-color: #00FF88; }
.sim-ats.warm { color: #FFD700; border-color: #FFD700; }
.sim-ats.cold { color: #FF4466; border-color: #FF4466; }
.sim-card-meta { font-size: 9px; color: #8994a8; margin-bottom: 4px; }
.sim-card-insight { font-size: 9px; color: #00FF88; margin-bottom: 4px; }
.sim-card-contacts { font-size: 8px; color: #5a6478; text-align: right; }

/* ── Contacts view ── */
.sim-contacts-layout { display: flex; height: 100%; }
.sim-company-panel {
  width: 220px; flex-shrink: 0; padding: 16px;
  border-right: 1px solid #1e2a44; overflow-y: auto;
}
.sim-cp-name { font-size: 16px; font-weight: 700; color: #e8ecf4; margin-bottom: 4px; }
.sim-cp-sector { font-size: 8px; letter-spacing: 1px; color: #5a6478; margin-bottom: 12px; }
.sim-cp-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; font-size: 10px; margin-bottom: 12px; }
.sim-cp-dt { color: #5a6478; }
.sim-cp-dd { color: #8994a8; font-weight: 500; }
.sim-cp-insight { font-size: 9px; color: #00FF88; padding: 6px 8px; background: rgba(0,255,136,0.04); border-radius: 6px; }

.sim-orgchart { flex: 1; padding: 20px; display: flex; flex-direction: column; align-items: center; }
.sim-org-title { font-size: 10px; font-weight: 600; color: #5a6478; letter-spacing: 1px; margin-bottom: 24px; }
.sim-org-tree { display: flex; flex-direction: column; align-items: center; }
.sim-contact-card {
  display: flex; align-items: center; gap: 10px;
  background: #0c1220; border: 1px solid #1e2a44; border-radius: 10px;
  padding: 10px 14px; transition: all 0.3s;
}
.sim-contact-card:hover { border-color: #4A9EFF; box-shadow: 0 0 16px rgba(74,158,255,0.1); }
.sim-contact-card.ceo { border-color: #2a3a5c; }
.sim-cc-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #4A9EFF, #00D4FF);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.sim-cc-info strong { display: block; font-size: 11px; color: #e8ecf4; }
.sim-cc-info span { font-size: 9px; color: #8994a8; }

.sim-org-branches {
  display: flex; gap: 16px; margin-top: 12px; position: relative;
}
.sim-org-branches::before {
  content: ''; position: absolute; top: -12px; left: 25%; right: 25%;
  height: 1px; background: #1e2a44;
}
.sim-org-branch { display: flex; flex-direction: column; align-items: center; }
.sim-org-line { width: 1px; height: 12px; background: #1e2a44; }

/* Breadcrumb */
.sim-breadcrumb {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  background: rgba(20,28,48,0.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); padding: 6px 16px;
  border-radius: 20px; font-size: 10px; z-index: 10;
}
.sim-crumb { color: #5a6478; }
.sim-crumb.active { color: #4A9EFF; font-weight: 600; }
.sim-crumb-link { cursor: pointer; transition: color 0.2s; }
.sim-crumb-link:hover { color: #8994a8; }
.sim-crumb-sep { color: #5a6478; font-size: 12px; }

.sim-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: #4A9EFF; opacity: 0.6;
  animation: hint-pulse 2s ease-in-out infinite;
}
@keyframes hint-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }

/* Responsive sim */
@media (max-width: 768px) {
  .sim-sidebar { display: none; }
  .sim-body { height: 350px; }
  .sim-pills { display: none; }
  .sim-columns { gap: 8px; padding: 8px; }
  .sim-col { min-width: 120px; }
  .sim-contacts-layout { flex-direction: column; }
  .sim-company-panel { width: 100%; border-right: none; border-bottom: 1px solid #1e2a44; padding: 10px; }
  .sim-orgchart { padding: 10px; }
  .sim-org-branches { flex-direction: column; gap: 8px; }
  .sim-org-branches::before { display: none; }
}


/* ── How it works ── */
#how-it-works {
  background: var(--bg-secondary);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s ease;
}

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

.step-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(74, 158, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-blue);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* ── Stats ── */
#stats {
  background: var(--bg-primary);
  padding: 100px 0;
}

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

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.stat-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  line-height: 1;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-cyan);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.5;
}

/* ── CTA ── */
#cta {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.cta-card {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(74, 158, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-card .btn {
  position: relative;
}

/* ── Footer ── */
#footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.footer-logo .accent {
  color: var(--accent-blue);
  font-weight: 400;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .steps-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: 100%;
    flex: 1 1 calc(33% - 16px);
    min-width: 240px;
  }

  .mock-stats {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    padding: 8px 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .stat-value {
    font-size: 40px;
  }

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

  .product-browser {
    transform: none;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-topbar {
    padding: 10px 12px;
    gap: 10px;
  }

  .mock-search {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  .step-card {
    min-width: auto;
  }
}


/* ============================================================
   Blog — Index & Article
   ============================================================ */

.blog-page {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 120px;
  min-height: 100vh;
  position: relative;
}

.blog-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(74, 158, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(0, 212, 255, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.blog-page > .container {
  position: relative;
  z-index: 1;
}

/* Blog header */
.blog-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.blog-header .section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(74, 158, 255, 0.25);
  border-radius: 100px;
  background: rgba(74, 158, 255, 0.05);
}

.blog-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pillar filters */
.blog-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 60px;
}

.blog-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.blog-pillar-tag:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.blog-pillar-tag .pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
}

/* Article grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(74, 158, 255, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

.blog-card-pillar {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.blog-card-pillar .pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.blog-card h2 {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.blog-card p {
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.blog-card-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-card-meta .read-arrow {
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.blog-card:hover .read-arrow {
  transform: translateX(4px);
}

/* Coming soon card */
.blog-card.coming-soon {
  opacity: 0.55;
  pointer-events: none;
}

.blog-card.coming-soon::after {
  content: 'Bientôt';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--bg-tertiary);
  border-radius: 100px;
}

/* ============================================================
   Article page
   ============================================================ */

.article-page {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 120px;
  position: relative;
}

.article-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(74, 158, 255, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.article-container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--accent-blue);
}

.article-back svg {
  width: 16px;
  height: 16px;
}

.article-pillar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.article-pillar .pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.article-page h1.article-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.article-meta .meta-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.article-meta .meta-author::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-block;
}

.article-meta .meta-sep {
  color: var(--border-light);
}

/* Article body — long-form prose */
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
}

.article-body > * + * {
  margin-top: 1.4em;
}

.article-body h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 2.4em;
  margin-bottom: 0.6em;
  color: var(--text-primary);
}

.article-body h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

.article-body p {
  color: var(--text-primary);
}

.article-body a {
  color: var(--accent-blue);
  border-bottom: 1px solid rgba(74, 158, 255, 0.3);
  transition: border-color 0.2s ease;
}

.article-body a:hover {
  border-bottom-color: var(--accent-blue);
}

.article-body strong {
  color: #fff;
  font-weight: 600;
}

.article-body em {
  color: var(--text-secondary);
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 0.6em;
  color: var(--text-primary);
}

.article-body li::marker {
  color: var(--accent-blue);
}

.article-body blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent-blue);
  background: rgba(74, 158, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 18px;
  color: var(--text-primary);
  font-style: italic;
}

.article-body blockquote p {
  margin: 0;
}

.article-body code {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Courier New', monospace;
  font-size: 0.9em;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--accent-cyan);
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3em 0;
}

/* Pull quote — opinion tranchée */
.article-body .pull-quote {
  margin: 2.4em 0;
  padding: 32px 36px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.06) 0%, rgba(0, 212, 255, 0.03) 100%);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
}

/* Stat callout — chiffres choc */
.article-body .stat-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 2em 0;
  padding: 20px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-blue);
  border-radius: var(--radius);
}

.article-body .stat-callout .stat-num {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}

.article-body .stat-callout .stat-text {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

@media (max-width: 700px) {
  .article-body .stat-callout {
    align-items: baseline;
  }
}

/* Article CTA */
.article-cta {
  margin-top: 80px;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.article-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.article-cta p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* FAQ block — Schema-friendly */
.article-faq {
  margin-top: 64px;
}

.article-faq h2 {
  font-size: 28px;
  margin-bottom: 32px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-page,
  .article-page {
    padding-top: calc(var(--nav-height) + 40px);
  }

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

  .blog-card {
    padding: 24px;
  }

  .article-container {
    padding: 0 20px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body .pull-quote {
    font-size: 18px;
    padding: 24px;
  }

  .article-cta {
    padding: 32px 24px;
  }
}

/* ──────────────────────────────────────────────────────────────
   Beta access — beta card, form page
   ────────────────────────────────────────────────────────────── */

/* (legacy) tiny lock badge — kept for potential inline use */
.crm-locked-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted, rgba(255, 255, 255, 0.45));
  margin-left: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.crm-locked-note svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

/* Footer disabled CRM link */
.footer-links a.disabled-link {
  color: var(--text-muted, rgba(255, 255, 255, 0.35));
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/* Beta access card — the new primary CTA shown wherever the CRM button lived */
.beta-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.09) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(74, 158, 255, 0.28);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.beta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 158, 255, 0.55);
  box-shadow: 0 8px 32px rgba(74, 158, 255, 0.18);
}
.beta-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74, 158, 255, 0.35);
}
.beta-card-icon svg {
  width: 22px;
  height: 22px;
}
.beta-card-body {
  flex: 1;
  min-width: 0;
}
.beta-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.beta-card-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}
.beta-card-arrow {
  flex-shrink: 0;
  color: var(--accent-blue);
  transition: transform 0.25s ease;
}
.beta-card:hover .beta-card-arrow {
  transform: translateX(4px);
}
.beta-card-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .beta-card {
    padding: 16px 18px;
    gap: 14px;
  }
  .beta-card-icon {
    width: 38px;
    height: 38px;
  }
  .beta-card-title { font-size: 15px; }
  .beta-card-subtitle { font-size: 13px; }
}

/* Hero-specific beta card — centered + wider */
.hero-ctas .beta-card {
  max-width: 520px;
}

/* CTA card variant — beta card inside the final CTA section */
.cta-card .beta-card {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card .beta-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* ──────────────────────────────────────────────────────────────
   Beta form page
   ────────────────────────────────────────────────────────────── */
.beta-page {
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 100vh;
}
.beta-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.beta-page h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 16px 0 28px;
}
.beta-intro {
  margin-bottom: 40px;
}
.beta-intro p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.beta-contact-note {
  list-style: none;
  padding: 18px 22px;
  margin: 20px 0 0;
  background: rgba(74, 158, 255, 0.06);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: var(--radius);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.beta-contact-note li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.beta-contact-note li:last-child { margin-bottom: 0; }
.beta-contact-note li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}
.beta-contact-note strong { color: var(--text-primary); }

/* Form */
.beta-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.form-field .required { color: var(--accent-blue); }
.form-field .optional {
  color: var(--text-muted, rgba(255, 255, 255, 0.45));
  font-weight: 500;
}
.form-field textarea,
.form-field input[type="email"],
.form-field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light, var(--border));
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  resize: vertical;
}
.form-field textarea {
  min-height: 180px;
  resize: vertical;
}
.form-field textarea:focus,
.form-field input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.15);
}
.form-field textarea::placeholder,
.form-field input::placeholder {
  color: var(--text-muted, rgba(255, 255, 255, 0.3));
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-row .form-field { margin-bottom: 0; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .beta-form { padding: 24px 20px; }
}

.beta-form button[type="submit"] {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.beta-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}
.beta-privacy {
  font-size: 12.5px;
  color: var(--text-muted, rgba(255, 255, 255, 0.45));
  text-align: center;
  margin: 18px 0 0;
  line-height: 1.5;
}

/* Success + error states */
.beta-success {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}
.beta-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.12);
  color: #00FF88;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.beta-success h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.beta-success p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
.beta-success a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beta-error {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(255, 68, 102, 0.08);
  border: 1px solid rgba(255, 68, 102, 0.35);
  border-radius: 10px;
  color: #ff6b85;
  font-size: 14px;
}
.beta-error p { margin: 0; }
