/* ============================================================
   Vendara — Main stylesheet
   Dark theme, purple accent, Inter typeface
   ============================================================ */

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

:root {
  --bg: #09090f;
  --surface: #13131e;
  --surface2: #1a1a2e;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(139,92,246,0.4);
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-glow: rgba(139,92,246,0.15);
  --text: #f1f0ff;
  --text-muted: #9490b5;
  --text-dim: #6b6894;
  --success: #22c55e;
  --error: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent), #6d28d9);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  border: 1px solid rgba(139,92,246,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: var(--accent-glow); border-color: var(--accent); }

/* ---- HERO ---- */
.hero {
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-light);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.br-desktop { display: none; }
@media (min-width: 600px) { .br-desktop { display: block; } }

/* ---- DEMO WIDGET ---- */
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.demo-input-row {
  display: flex;
  gap: 10px;
}
.demo-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-input::placeholder { color: var(--text-dim); }
.demo-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.demo-btn {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
  min-width: 110px;
}
.demo-btn:hover { opacity: 0.9; }
.demo-btn:active { transform: scale(0.98); }
.demo-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.demo-btn-spinner { display: inline-flex; align-items: center; }
.demo-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  text-align: left;
}
.hint-link {
  color: var(--accent-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hint-link:hover { color: var(--text); }
.demo-error {
  margin-top: 12px;
  font-size: 13px;
  color: var(--error);
  text-align: left;
}

/* Spinner animation */
@keyframes spin { to { stroke-dashoffset: -31.4; } }
.spin { animation: spin 1s linear infinite; }

/* ---- RESULTS CARD ---- */
.results-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
}
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.results-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
}
.results-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.results-section {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.research-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.research-item {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.research-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 2px;
}
.email-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.email-subject-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.email-field-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.email-subject {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.email-body {
  padding: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.email-body p { margin-bottom: 10px; }
.email-body p:last-child { margin-bottom: 0; }
.why-now {
  font-size: 15px;
  color: var(--accent-light);
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
}
.results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--surface2);
}
.powered-by {
  font-size: 11px;
  color: var(--text-dim);
}
.try-another-btn {
  font-size: 13px;
  color: var(--accent-light);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.try-another-btn:hover { color: var(--text); }

/* ---- INLINE CTA ---- */
.inline-cta {
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.07), rgba(109,40,217,0.05));
  border-top: 1px solid rgba(139,92,246,0.2);
}
.inline-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.inline-cta-text strong {
  font-size: 15px;
  color: var(--text);
}
.inline-cta-text span {
  font-size: 13px;
  color: var(--text-muted);
}
.waitlist-form {
  display: flex;
  gap: 8px;
}
.waitlist-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--text-dim); }
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-btn {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.waitlist-btn:hover { opacity: 0.9; }
.waitlist-success {
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--success);
  font-weight: 500;
}

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.how-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.how-step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.how-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 20px;
  color: var(--text-dim);
  align-self: center;
  padding-top: 10px;
}
@media (max-width: 640px) { .step-arrow { display: none; } }

/* ---- BOTTOM CTA ---- */
.bottom-cta {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.bottom-cta-inner { max-width: 560px; margin: 0 auto; }
.bottom-cta h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.bottom-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.cta-scroll-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
}
.cta-scroll-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ---- MOBILE ---- */
@media (max-width: 520px) {
  .hero { padding: 48px 16px 64px; }
  .demo-input-row { flex-direction: column; }
  .demo-btn { width: 100%; }
  .waitlist-form { flex-direction: column; }
  .waitlist-btn { width: 100%; }
  .results-footer { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-step { max-width: 100%; min-width: unset; width: 100%; }
}

/* ============================================================
   Prospect Engine pages
   ============================================================ */

/* NAV extras */
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link-active { color: var(--accent-light) !important; }

/* Hero for prospect page */
.pe-hero { padding: 60px 24px 0; text-align: center; }
.pe-hero-inner { max-width: 640px; margin: 0 auto; }

/* Search form */
.pe-main { padding: 40px 24px 80px; }
.pe-form-wrap { max-width: 580px; margin: 0 auto; }
.pe-alert {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.pe-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pe-field-group { display: flex; flex-direction: column; gap: 8px; }
.pe-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pe-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pe-select, .pe-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.pe-select { cursor: pointer; }
.pe-select:focus, .pe-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.pe-select option { background: var(--surface2); }
.pe-input::placeholder { color: var(--text-dim); }
.pe-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  resize: vertical;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.55;
}
.pe-textarea::placeholder { color: var(--text-dim); }
.pe-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.pe-field-hint { font-size: 12px; color: var(--text-dim); }
.pe-size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pe-size-option { cursor: pointer; user-select: none; }
.pe-size-option input { display: none; }
.pe-size-option span {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  transition: all 0.15s;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
}
.pe-size-option input:checked + span {
  background: rgba(139,92,246,0.15);
  border-color: var(--accent);
  color: var(--accent-light);
}
.pe-size-option:hover span { border-color: var(--border-hover); color: var(--text); }
.pe-error { font-size: 13px; color: var(--error); }
.pe-submit-btn {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 4px;
}
.pe-submit-btn:hover { opacity: 0.9; }
.pe-submit-btn:active { transform: scale(0.99); }
.pe-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.submit-text, .submit-spinner { display: flex; align-items: center; gap: 8px; }
.pe-disclaimer { font-size: 12px; color: var(--text-dim); text-align: center; line-height: 1.5; }

/* ---- Results page ---- */
.results-page { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }
.search-summary { border-bottom: 1px solid var(--border); padding: 20px 0; margin-bottom: 32px; }
.search-summary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.search-profile { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.profile-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}
.profile-chip-dim { color: var(--text-dim); font-style: italic; }
.search-meta { display: flex; align-items: center; gap: 16px; }
.meta-count { font-size: 13px; font-weight: 600; color: var(--accent-light); }
.new-search-link { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.new-search-link:hover { color: var(--text); }

.prospects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 20px;
}
.prospect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.prospect-card:hover { border-color: var(--border-hover); }
.prospect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.prospect-header-left { display: flex; align-items: center; gap: 12px; }
.prospect-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.prospect-name { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.prospect-domain { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent-light); margin-top: 2px; }
.prospect-visit-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.prospect-visit-btn:hover { border-color: var(--accent); color: var(--accent-light); }
.prospect-section { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.prospect-section:last-child { border-bottom: none; }
.section-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section-label-row .section-label { margin-bottom: 0; }
.copy-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent-light); }

.results-bottom-cta {
  margin-top: 56px;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(139,92,246,0.07), rgba(109,40,217,0.04));
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius);
  text-align: center;
}
.results-bottom-cta-inner { max-width: 480px; margin: 0 auto; }
.results-bottom-cta h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.results-bottom-cta p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.results-bottom-cta .waitlist-form { justify-content: center; }

@keyframes spin-submit { to { stroke-dashoffset: -31.4; } }
.pe-submit-btn .spin { animation: spin-submit 1s linear infinite; }

@media (max-width: 640px) {
  .pe-form { padding: 20px 16px; }
  .prospects-grid { grid-template-columns: 1fr; }
  .search-summary-inner { flex-direction: column; align-items: flex-start; }
  .results-bottom-cta .waitlist-form { flex-direction: column; }
  .results-bottom-cta .waitlist-btn { width: 100%; }
  .nav-link { display: none; }
}

/* ============================================================
   Lead gate — blur + email capture overlay
   ============================================================ */

/* Sections that blur when gate is active */
.gated-section {
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.gated-section.blurred {
  filter: blur(5px);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

/* Gate container */
.lead-gate {
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(109,40,217,0.06));
  border-top: 1px solid rgba(139,92,246,0.25);
  border-bottom: 1px solid rgba(139,92,246,0.25);
}
.lead-gate-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.45;
}
.lead-gate-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.lead-gate-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.lead-gate-skip {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.lead-gate-skip:hover { color: var(--text-muted); }

@media (max-width: 520px) {
  .lead-gate-form { flex-direction: column; }
  .lead-gate-form .waitlist-btn { width: 100%; }
}

/* ---- PRICING CTA BAR (demo results) ---- */
.pricing-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pricing-cta-text {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.pricing-cta-link:hover { color: var(--text); }
