/* riftshield.com — styles.css
   Author: Erudite Intelligence LLC
   Date: 2026-03-29
   Redesign: Professional / Established — deep navy + muted gold
   Character: Law firm meets Bloomberg terminal. Serious, calm, trustworthy. */

/* ===================================================================
   1. RESET & BASE
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

/* ===================================================================
   2. CSS VARIABLES
   =================================================================== */
:root {
  /* Backgrounds — deep navy */
  --bg: #080d18;
  --surface: #0f1623;
  --surface-2: #162033;
  --surface-3: #1e2b40;
  --border: #2a3a52;
  --border-subtle: #1e2d42;

  /* Accent — muted gold. Reads as established, premium, not flashy */
  --accent: #c4a052;
  --accent-hover: #ad8c3e;
  --accent-muted: rgba(196,160,82,0.12);
  --accent-glow: rgba(196,160,82,0.2);

  /* Text — cool white with a slight blue tint */
  --text: #d8e3f0;
  --text-2: #7a90aa;
  --text-muted: #7a90aa;
  --text-dim: #445566;

  /* Semantic colours */
  --success: #4a9a6a;
  --success-light: rgba(74,154,106,0.12);
  --danger: #a05858;
  --danger-light: rgba(160,88,88,0.12);
  --warning: #c48a3a;
  --warning-light: rgba(196,138,58,0.12);
  --info: #4a7fa0;
  --info-light: rgba(74,127,160,0.12);

  /* Typography */
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape — sharp corners = professional */
  --radius: 3px;
  --radius-sm: 2px;
  --radius-lg: 6px;
  --transition: 0.15s ease;

  /* Layout */
  --max-width: 1200px;
  --sidebar-width: 240px;
  --nav-height: 64px;

  /* Shadows — subtle, not dramatic */
  --shadow: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);

  /* Legacy aliases so dashboard components continue to work */
  --bg2: var(--surface);
  --surface2: var(--surface-2);
  --border-hover: #3d526e;
  --accent-light: var(--accent-muted);
  --radius-xl: 8px;
}

/* ===================================================================
   3. TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.7; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

small { font-size: 0.8125rem; }

code {
  font-family: "Courier New", "Consolas", monospace;
  font-size: 0.875em;
  background: var(--surface-2);
  color: var(--info);
  padding: 1px 5px;
  border-radius: var(--radius-sm);
}

/* ===================================================================
   4. FOCUS / ACCESSIBILITY
   =================================================================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ===================================================================
   5. LAYOUT UTILITIES
   =================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
main > section { padding: 5rem 0; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

.hidden { display: none !important; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.text-muted { color: var(--text-muted) !important; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.fw-600 { font-weight: 600; }

/* ===================================================================
   6. BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px;
  position: relative;
}

.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Primary — muted gold on dark */
.btn-primary {
  background: var(--accent);
  color: #0a0e1a;
  border-color: var(--accent);
  font-weight: 600;
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #0a0e1a;
}

/* Secondary — outlined */
.btn-secondary {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.btn-secondary:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--text-2);
  background: transparent;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: transparent;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.btn-ghost:hover:not(:disabled) {
  color: var(--text);
  background: var(--surface-2);
}

/* Danger */
.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}
.btn-danger:hover:not(:disabled) {
  background: #8a4a4a;
  border-color: #8a4a4a;
}

/* Sizes */
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; min-height: 48px; }
.btn-sm { padding: 0.4375rem 0.875rem; font-size: 0.875rem; min-height: 34px; }
.btn-full { width: 100%; display: flex; justify-content: center; }
.btn-block { width: 100%; }

/* Loading */
.btn-loading { pointer-events: none; }
.btn-loading .btn-text { opacity: 0; }
.btn-loading::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===================================================================
   7. FORM ELEMENTS
   =================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
label .req { color: var(--danger); margin-left: 2px; }

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=url],
input[type=number],
textarea,
select {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

input.error, textarea.error { border-color: var(--danger) !important; box-shadow: none !important; }
input.valid, textarea.valid { border-color: var(--success) !important; box-shadow: none !important; }

textarea { resize: vertical; min-height: 80px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a90aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--surface-2); }

.form-hint { font-size: 0.8125rem; color: var(--text-dim); }
.form-error { font-size: 0.8125rem; color: var(--danger); display: none; }
.form-error.show { display: block; }

.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 0.875rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none; font-size: 1rem;
}
.input-wrap input { padding-left: 2.5rem; }
.input-action {
  position: absolute; right: 0.875rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: var(--text-dim);
  cursor: pointer; padding: 2px; font-size: 1rem;
}
.input-action:hover { color: var(--text); }

/* Password strength */
.pw-strength-bar { height: 3px; border-radius: 2px; background: var(--border); margin-top: 0.375rem; overflow: hidden; }
.pw-strength-fill { height: 100%; border-radius: 2px; width: 0; transition: width 0.3s, background-color 0.3s; }
.pw-hint { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.25rem; }

/* ===================================================================
   8. NAVIGATION
   =================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
}

/* Logo — serif, authoritative */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; color: var(--text); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font);
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--text);
  border-bottom-color: var(--border);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  font-family: var(--font);
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.nav-login:hover { color: var(--text); }

.nav-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #0a0e1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  margin: 3px 0;
  transition: all 0.2s ease;
  border-radius: 1px;
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  z-index: 99;
}
.nav-mobile-open .nav-mobile-menu { display: flex; }
.nav-mobile-menu a {
  padding: 0.75rem 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.nav-mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
.nav-mobile-menu a:hover { color: var(--accent); }

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

/* ===================================================================
   9. HERO
   =================================================================== */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}

/* Remove orb entirely */
.hero-orb { display: none; }

.hero .container { position: relative; z-index: 1; }

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* Gradient text — disabled. Plain gold only. */
.gradient-text {
  color: var(--accent);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero-sub {
  font-family: var(--font);
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* hero-trust element removed */

/* ===================================================================
   10. BADGE
   =================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 3px 10px;
}

.badge-accent {
  background: var(--accent-muted);
  color: var(--accent);
  border: 1px solid rgba(196,160,82,0.25);
  letter-spacing: 0.02em;
}

.badge-success { background: var(--success-light); color: var(--success); }
.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-danger  { background: var(--danger-light);  color: var(--danger);  }
.badge-info    { background: var(--info-light);    color: var(--info);    }
.badge-muted   { background: var(--surface-2);     color: var(--text-muted); }

/* ===================================================================
   11. STATS BAR
   =================================================================== */
.stats-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .stats-section .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===================================================================
   12. SECTION COMMON
   =================================================================== */
.section-label {
  display: block;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.875rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-sub {
  font-family: var(--font);
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-header { margin-bottom: 3rem; }

/* ===================================================================
   13. HOW IT WORKS
   =================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.step-card:hover { border-color: var(--accent); }

/* Step number — square, not circle. No transform on hover. */
.step-number {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--accent-muted);
  border: 1px solid rgba(196,160,82,0.3);
  color: var(--accent);
  font-family: var(--font);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 600;
  margin-bottom: 0.75rem; color: var(--text);
}

.step-desc {
  font-family: var(--font);
  color: var(--text-2); line-height: 1.7; font-size: 0.9375rem;
}

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

/* ===================================================================
   14. FEATURES GRID
   =================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.feature-card:hover { border-color: var(--accent); }

/* Small accent-coloured square block */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent-muted);
  border: 1px solid rgba(196,160,82,0.2);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 600;
  margin-bottom: 0.5rem; color: var(--text);
}

.feature-desc {
  font-family: var(--font);
  font-size: 0.9375rem; color: var(--text-2); line-height: 1.65;
}

/* ===================================================================
   15. BUSINESS TYPES GRID
   =================================================================== */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) { .biz-grid { grid-template-columns: repeat(4, 1fr); } }

.biz-card {
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
  display: block;
  color: var(--text);
}
.biz-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  color: var(--text);
}

.biz-icon { font-size: 1.75rem; display: block; margin-bottom: 0.625rem; line-height: 1; }

.biz-name {
  font-family: var(--font);
  font-size: 0.875rem; font-weight: 500; color: var(--text); line-height: 1.4;
}

/* ===================================================================
   16. PRICING
   =================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: start;
}

@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

/* Recommended: thin gold top border — no glow, no gradient bg */
.pricing-popular {
  border-color: var(--border);
  border-top: 3px solid var(--accent);
}
.pricing-popular::before { display: none; }

.pricing-popular-badge { margin-bottom: 1rem; text-align: left; }

@media (min-width: 900px) { .pricing-popular { padding-top: 1.75rem; } }

.pricing-plan {
  font-family: var(--font);
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim); margin-bottom: 1.25rem;
}

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

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 700;
  line-height: 1; letter-spacing: -0.01em; color: var(--text);
}

.pricing-period {
  font-family: var(--font);
  font-size: 1rem; color: var(--text-2); font-weight: 400;
}

.pricing-convos {
  font-family: var(--font);
  font-size: 0.9375rem; color: var(--text-2);
  margin: 1rem 0; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features { list-style: none; margin: 1.5rem 0; padding: 0; }

.pricing-feature-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font); font-size: 0.9375rem; color: var(--text-2);
}

.pricing-check {
  color: var(--success); flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pricing-check svg { width: 16px; height: 16px; }

.pricing-note {
  font-family: var(--font);
  text-align: center; color: var(--text-dim);
  font-size: 0.875rem; margin-top: 2rem; line-height: 1.6;
}

/* ===================================================================
   17. DEMO SECTION
   =================================================================== */
.demo-section {
  padding: 5rem 0;
  background: var(--surface);
}

.demo-inner { max-width: 600px; margin: 0 auto; text-align: center; }

.demo-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 2.5rem; text-align: left;
}

.demo-mock-header {
  padding: 1rem 1.25rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem;
}

.demo-mock-avatar { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
.demo-mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.demo-mock-title, .demo-mock-name { font-family: var(--font); font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.demo-mock-status { font-family: var(--font); font-size: 0.75rem; color: var(--success); }

.demo-bubble, .demo-mock-body {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}

.demo-msg {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-family: var(--font);
  font-size: 0.9375rem; max-width: 85%; line-height: 1.55;
}

.demo-msg-bot, .demo-msg.bot {
  background: var(--surface-2);
  color: var(--text); align-self: flex-start;
}

/* User bubble — gold tint instead of purple */
.demo-msg-user, .demo-msg.user {
  background: var(--accent-muted);
  border: 1px solid rgba(196,160,82,0.2);
  color: var(--text); align-self: flex-end;
}

.demo-cta { font-family: var(--font); font-size: 0.875rem; color: var(--text-2); margin-top: 1.5rem; line-height: 1.5; }

/* ===================================================================
   18. FINAL CTA SECTION
   =================================================================== */
.cta-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 1rem;
}

.cta-section p {
  font-family: var(--font);
  font-size: 1.0625rem; color: var(--text-2);
  margin-bottom: 2rem; line-height: 1.65;
}

/* ===================================================================
   19. FOOTER
   =================================================================== */
.footer {
  padding: 3.5rem 0 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap;
}

.footer-brand { flex: 0 0 auto; max-width: 240px; }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.125rem; color: var(--text);
  display: block; margin-bottom: 0.5rem; text-decoration: none;
}

.footer-tagline { font-family: var(--font); font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

.footer-links { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font); font-size: 0.875rem; color: var(--text-dim);
  text-decoration: none; transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-2); }

.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-family: var(--font); font-size: 0.8125rem; color: var(--text-dim); }

/* ===================================================================
   20. CARDS & ALERTS & DIVIDER
   =================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid;
  font-family: var(--font); font-size: 0.9rem; margin-bottom: 1rem;
}
.alert-error   { background: var(--danger-light);  border-color: rgba(160,88,88,0.3);  color: var(--danger);  }
.alert-success { background: var(--success-light); border-color: rgba(74,154,106,0.3); color: var(--success); }
.alert-info    { background: var(--info-light);    border-color: rgba(74,127,160,0.3); color: var(--info);    }

.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

/* ===================================================================
   21. SPINNER & LOADING
   =================================================================== */
.spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  margin: 2rem auto;
}
.loading-state { display: flex; align-items: center; justify-content: center; padding: 3rem; }

.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state-icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.35; }
.empty-state h3 { font-family: var(--font-display); color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.875rem; }

/* ===================================================================
   22. MODAL
   =================================================================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.modal-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--text); }
.modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; border-radius: var(--radius-sm); font-size: 1.25rem; line-height: 1; }
.modal-close:hover { color: var(--text); background: var(--surface-2); }
.modal-footer { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.25rem; }

/* ===================================================================
   23. TOAST NOTIFICATIONS
   =================================================================== */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 300; display: flex; flex-direction: column; gap: 0.625rem;
}
.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-family: var(--font); font-size: 0.9rem; color: var(--text);
  box-shadow: var(--shadow);
  animation: slideInRight 0.2s ease;
  max-width: 340px;
}
.toast-success { border-left: 3px solid var(--success); }
.toast-error   { border-left: 3px solid var(--danger); }
.toast-info    { border-left: 3px solid var(--info); }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ===================================================================
   24. DASHBOARD LAYOUT
   =================================================================== */
.dash-layout { display: flex; min-height: 100vh; padding-top: var(--nav-height); }

.dash-sidebar {
  width: var(--sidebar-width); flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: fixed; top: var(--nav-height); bottom: 0; left: 0;
  overflow-y: auto; z-index: 50;
  display: flex; flex-direction: column;
}

.dash-nav { padding: 1rem 0.75rem; flex: 1; }

.dash-nav-label {
  font-family: var(--font);
  font-size: 0.6875rem; font-weight: 700; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.625rem 0.75rem 0.375rem; display: block;
}

.dash-nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5625rem 0.875rem; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem; font-weight: 400;
  color: var(--text-2);
  cursor: pointer; transition: all var(--transition);
  border: none; background: none; width: 100%;
  text-align: left; margin-bottom: 1px;
}
.dash-nav-item:hover { background: var(--surface-2); color: var(--text); }
.dash-nav-item.active { background: var(--accent-muted); color: var(--accent); font-weight: 500; }

.dash-nav-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.dash-nav-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.dash-sidebar-footer { padding: 1rem 0.75rem; border-top: 1px solid var(--border); }

.dash-main { flex: 1; margin-left: var(--sidebar-width); overflow-x: hidden; }
.dash-content { padding: 1.75rem; max-width: 1060px; }

/* Page header */
.page-header { margin-bottom: 1.75rem; }
.page-header h1 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); margin-bottom: 0.25rem; }
.page-header p { font-size: 0.875rem; }
.page-header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* ===================================================================
   25. DASHBOARD STATS
   =================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
}
.stat-label { font-family: var(--font); font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.375rem; }
.stat-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 0.25rem; }
.stat-change { font-family: var(--font); font-size: 0.75rem; }
.stat-up { color: var(--success); }
.stat-down { color: var(--danger); }
.stat-neutral { color: var(--text-dim); }

/* ===================================================================
   26. SECTION CARDS (dashboard)
   =================================================================== */
.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.25rem;
}
.section-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.section-card-title { font-family: var(--font); font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.section-card-body { padding: 1.25rem; }

/* ===================================================================
   27. TABLES
   =================================================================== */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-family: var(--font); font-size: 0.875rem; }
thead th {
  text-align: left; padding: 0.625rem 1rem;
  font-size: 0.6875rem; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border); white-space: nowrap;
  background: var(--surface-2);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); cursor: pointer; }
tbody tr:hover { background: var(--surface-2); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 0.875rem 1rem; color: var(--text-muted); vertical-align: middle; }
tbody td:first-child { color: var(--text); font-weight: 500; }

/* ===================================================================
   28. CONVERSATION LIST & THREAD
   =================================================================== */
.conv-list { display: flex; flex-direction: column; }
.conv-item {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background var(--transition);
}
.conv-item:last-child { border-bottom: none; }
.conv-item:hover { background: var(--surface-2); }
.conv-item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.25rem; }
.conv-item-name { font-family: var(--font); font-weight: 600; font-size: 0.9rem; color: var(--text); }
.conv-item-time { font-size: 0.75rem; color: var(--text-dim); flex-shrink: 0; }
.conv-item-preview { font-family: var(--font); font-size: 0.8375rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.conv-item-footer { display: flex; gap: 0.5rem; margin-top: 0.375rem; align-items: center; }

.conv-thread-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.conv-thread-back { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.25rem; padding: 4px; }
.conv-thread-back:hover { color: var(--text); }
.conv-thread-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

.msg { display: flex; flex-direction: column; max-width: 75%; }
.msg.user { align-self: flex-end; align-items: flex-end; }
.msg.ai   { align-self: flex-start; align-items: flex-start; }
.msg-bubble {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-lg);
  font-family: var(--font); font-size: 0.875rem; line-height: 1.6;
}
.msg.user .msg-bubble { background: var(--accent-muted); border: 1px solid rgba(196,160,82,0.2); color: var(--text); border-bottom-right-radius: var(--radius-sm); }
.msg.ai   .msg-bubble { background: var(--surface-2); color: var(--text); border-bottom-left-radius: var(--radius-sm); }
.msg-time { font-size: 0.6875rem; color: var(--text-dim); margin-top: 3px; }

/* ===================================================================
   29. KNOWLEDGE BASE
   =================================================================== */
.kb-list { display: flex; flex-direction: column; gap: 0.75rem; }
.kb-item { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; }
.kb-item-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; }
.kb-item-title { font-family: var(--font); font-weight: 600; font-size: 0.9375rem; color: var(--text); }
.kb-item-meta { font-size: 0.75rem; color: var(--text-dim); margin-top: 3px; }
.kb-item-body { font-family: var(--font); font-size: 0.875rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.6; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.kb-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ===================================================================
   30. ANALYTICS CHART
   =================================================================== */
.chart-wrap { margin-bottom: 1.75rem; }
.chart-title { font-family: var(--font); font-size: 0.9375rem; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.bar-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 160px; padding: 0 0 1.75rem;
  position: relative; border-bottom: 1px solid var(--border);
}
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; min-width: 0; }
.bar {
  width: 100%; min-width: 8px; max-width: 40px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--accent);
  min-height: 2px; opacity: 0.7; cursor: default; position: relative;
}
.bar:hover { opacity: 1; }
.bar-label { font-family: var(--font); font-size: 0.6875rem; color: var(--text-dim); text-align: center; }
.bar-val   { font-family: var(--font); font-size: 0.6875rem; color: var(--text-muted); text-align: center; }

/* Usage bar */
.usage-bar-wrap { margin: 0.875rem 0; }
.usage-bar-label { display: flex; justify-content: space-between; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.usage-bar-track { height: 6px; background: var(--surface-2); border-radius: 99px; overflow: hidden; border: 1px solid var(--border); }
.usage-bar-fill { height: 100%; border-radius: 99px; background: var(--accent); transition: width 0.6s ease; }
.usage-bar-fill.warn { background: var(--warning); }
.usage-bar-fill.over { background: var(--danger); }

/* ===================================================================
   31. SEARCH
   =================================================================== */
.search-bar { position: relative; }
.search-bar input { padding-left: 2.5rem; }
.search-bar-icon { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--text-dim); pointer-events: none; font-size: 0.875rem; }

/* ===================================================================
   32. LEADS
   =================================================================== */
.lead-status { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font); font-size: 0.8125rem; }
.lead-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.lead-status.new::before       { background: var(--info); }
.lead-status.contacted::before { background: var(--warning); }
.lead-status.qualified::before { background: var(--success); }
.lead-status.closed::before    { background: var(--text-dim); }

/* ===================================================================
   33. MOBILE DASHBOARD BOTTOM NAV
   =================================================================== */
.dash-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 max(0.5rem, env(safe-area-inset-bottom));
}
.dash-bottom-items { display: flex; justify-content: space-around; }
.dash-bottom-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 0.25rem 0.5rem; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.625rem; font-weight: 600;
  color: var(--text-dim);
  cursor: pointer; border: none; background: none; min-width: 48px;
  transition: color var(--transition);
}
.dash-bottom-item.active { color: var(--accent); }
.dash-bottom-item-icon { font-size: 1.25rem; line-height: 1; }

/* ===================================================================
   34. SIGNUP FLOW
   =================================================================== */
.signup-wrapper {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2rem) 1rem 3rem;
  display: flex; flex-direction: column; align-items: center;
}

.signup-progress { width: 100%; max-width: 640px; margin-bottom: 2rem; }
.progress-track { height: 3px; background: var(--surface-2); border-radius: 2px; overflow: hidden; margin-bottom: 1.25rem; }
.progress-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.35s ease; }
.progress-steps { display: flex; justify-content: space-between; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.progress-step-dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 0.6875rem; font-weight: 700; color: var(--text-dim);
  transition: all 0.25s ease;
}
.progress-step.done .progress-step-dot   { background: var(--accent); border-color: var(--accent); color: #0a0e1a; }
.progress-step.active .progress-step-dot { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 3px var(--accent-muted); }
.progress-step-label { font-family: var(--font); font-size: 0.6875rem; color: var(--text-dim); white-space: nowrap; }
.progress-step.active .progress-step-label { color: var(--accent); font-weight: 600; }
.progress-step.done  .progress-step-label { color: var(--text-muted); }

.signup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  width: 100%; max-width: 640px;
  box-shadow: var(--shadow);
}
.signup-card h2 { color: var(--text); margin-bottom: 0.375rem; }
.step-subtitle { font-family: var(--font); color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.75rem; display: block; }
.signup-actions { display: flex; gap: 0.75rem; margin-top: 1.75rem; align-items: center; }
.signup-actions .btn-primary { flex: 1; }

/* Business type grid */
.biz-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.875rem; }
.biz-type-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1rem;
  text-align: center; cursor: pointer; transition: border-color var(--transition);
  user-select: none;
}
.biz-type-card:hover { border-color: var(--border-hover); }
.biz-type-card.selected { border-color: var(--accent); background: var(--accent-muted); }
.biz-type-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.biz-type-label { font-family: var(--font); font-size: 0.8125rem; font-weight: 500; color: var(--text); line-height: 1.3; }

/* FAQ editor */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.75rem; }
.faq-item { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.875rem; }
.faq-item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.625rem; }
.faq-item-num { font-family: var(--font); font-size: 0.75rem; font-weight: 700; color: var(--text-dim); }
.faq-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 2px 6px; border-radius: var(--radius-sm); font-size: 1rem; line-height: 1; }
.faq-remove:hover { background: var(--danger-light); color: var(--danger); }
.faq-item label { font-size: 0.75rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; display: block; }
.faq-item input, .faq-item textarea { background: var(--surface); font-size: 1rem; padding: 0.5rem 0.625rem; margin-bottom: 0.5rem; }
.faq-item textarea { min-height: 64px; margin-bottom: 0; }

/* Plan cards */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.plan-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  cursor: pointer; transition: border-color var(--transition);
  position: relative; user-select: none;
}
.plan-card:hover { border-color: var(--border-hover); }
.plan-card.selected { border-color: var(--accent); background: var(--accent-muted); }
.plan-card.popular { border-top: 2px solid var(--accent); }
.plan-card.popular::before { display: none; }
.plan-name  { font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.plan-price { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 0.25rem; }
.plan-price sub { font-family: var(--font); font-size: 0.875rem; font-weight: 400; color: var(--text-muted); vertical-align: baseline; }
.plan-desc { font-family: var(--font); font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; min-height: 2.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.plan-features li { font-family: var(--font); font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-features li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Install step */
.code-block {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-family: "Courier New", "Consolas", monospace; font-size: 0.8125rem;
  color: var(--info); word-break: break-all; line-height: 1.7;
  position: relative; padding-right: 5rem;
}
.copy-btn {
  position: absolute; top: 0.625rem; right: 0.625rem;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.3rem 0.75rem;
  font-family: var(--font); font-size: 0.75rem; color: var(--text-muted);
  cursor: pointer; font-weight: 500; transition: all var(--transition);
}
.copy-btn:hover { color: var(--text); border-color: var(--border-hover); }
.copy-btn.copied { color: var(--success); border-color: var(--success); background: var(--success-light); }

.platform-steps { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1.25rem; }
.platform-step { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.platform-step-head {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem; cursor: pointer; user-select: none;
}
.platform-step-head:hover { background: var(--surface); }
.platform-step-icon  { font-size: 1.125rem; flex-shrink: 0; }
.platform-step-title { font-family: var(--font); font-size: 0.9rem; font-weight: 600; color: var(--text); flex: 1; }
.platform-step-chevron { color: var(--text-dim); font-size: 0.75rem; transition: transform 0.2s; }
.platform-step.open .platform-step-chevron { transform: rotate(180deg); }
.platform-step-body {
  display: none; padding: 0.875rem 1rem; padding-top: 0;
  font-family: var(--font); font-size: 0.8375rem; color: var(--text-muted); line-height: 1.7;
}
.platform-step.open .platform-step-body { display: block; }
.platform-step-body ol { padding-left: 1.5rem; }
.platform-step-body li { margin-bottom: 0.35rem; }
.platform-step-body code { background: var(--bg); padding: 1px 5px; border-radius: var(--radius-sm); font-size: 0.8125rem; color: var(--info); font-family: monospace; }

/* Success */
.success-icon  { font-size: 3rem; text-align: center; margin-bottom: 0.75rem; }
.success-title { text-align: center; margin-bottom: 0.375rem; }
.success-sub   { font-family: var(--font); text-align: center; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===================================================================
   35. ANIMATIONS (minimal, purposeful)
   =================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.4s ease forwards; }

/* ===================================================================
   36. RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0 !important; }
  .dash-bottom-nav { display: block; }
  .dash-content { padding: 1rem; padding-bottom: 5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  h1 { font-size: 1.5rem; }
  .plan-grid { grid-template-columns: 1fr; }
  .biz-type-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-card { padding: 1.25rem; }
  .progress-step-label { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 3.5rem 0 3rem; }
  .pricing-amount { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
