:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --fg: #e8e6e3;
  --fg-muted: #8a8890;
  --accent: #f97316;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --card-bg: #16161f;
  --card-border: #1f1f2e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 3rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

.proof-item { text-align: center; }

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.proof-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

/* ---- EMAIL CAPTURE ---- */
.capture-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
  width: 100%;
  max-width: 480px;
}

.capture-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
}

.capture-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.capture-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}

.capture-input:focus {
  border-color: var(--accent);
}

.capture-input::placeholder {
  color: var(--fg-muted);
}

.capture-btn {
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-display);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.capture-btn:hover { opacity: 0.88; }
.capture-btn:disabled { opacity: 0.5; cursor: default; }

.capture-sub {
  font-size: 0.8rem;
  margin: 0;
}

.capture-done {
  flex-direction: column;
  text-align: center;
}

.capture-done-icon {
  font-size: 2rem;
  color: var(--accent);
  margin: 0;
}

.capture-done-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.capture-done-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .capture-form { flex-direction: column; }
  .capture-btn { width: 100%; }
}

/* ---- PROBLEM ---- */
.problem {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
}

.stat-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- HOW ---- */
.how {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.2s;
}

.step:hover {
  border-color: var(--accent);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- PRICING ---- */
.pricing {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.price-card.featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 0 40px var(--accent-glow);
}

.price-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.price-card ul {
  list-style: none;
  text-align: left;
}

.price-card ul li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--card-border);
}

.price-card ul li:last-child {
  border-bottom: none;
}

.price-card ul li::before {
  content: '\2713';
  color: var(--accent);
  margin-right: 0.75rem;
  font-weight: 600;
}

/* ---- CLOSING ---- */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: border-color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
}

/* ---- APP SHELL ---- */
.app-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.app-logo span {
  color: var(--accent);
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.app-nav a {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.app-nav a:hover { color: var(--fg); }

.app-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ---- AUTH MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(4px);
}

.modal {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

/* ---- PROPOSAL CARDS ---- */
.proposals-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.proposal-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.proposal-card:hover {
  border-color: var(--accent);
}

.proposal-meta {
  flex: 1;
}

.proposal-meta h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.proposal-meta p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.proposal-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ---- GENERATED PROPOSAL DISPLAY ---- */
.proposal-output {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  white-space: pre-wrap;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--fg);
}

/* ---- USAGE METER ---- */
.usage-bar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.usage-bar-fill-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.usage-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s;
}

.usage-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ---- PAYWALL BANNER ---- */
.paywall-banner {
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.paywall-banner h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.paywall-banner p {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.paywall-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- TABS ---- */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.tab-btn.active {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

/* ---- ALERTS ---- */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}

.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
}

/* ---- SPINNER ---- */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

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

/* ---- PRICING PAGE STYLES ---- */
.pricing-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.pricing-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pricing-page .sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.price-card .btn-primary {
  display: block;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}

/* ---- FOUNDING BANNER ---- */
.founding-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #1a0e04 0%, #2a1505 50%, #1a0e04 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.founding-icon {
  font-size: 1rem;
}

.founding-text {
  color: var(--fg-muted);
}

.founding-text strong {
  color: var(--accent);
}

.founding-cta {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}

.founding-cta:hover {
  background: rgba(249, 115, 22, 0.22);
}

.founding-close {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  margin-left: auto;
  transition: color 0.15s;
}

.founding-close:hover {
  color: var(--fg);
}

/* ---- HERO PRICING PILL ---- */
.hero-pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 0.45rem 1.25rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-pill-free {
  color: var(--fg-muted);
}

.pricing-pill-sep {
  color: var(--card-border);
}

.pricing-pill-paid {
  color: var(--fg);
}

.pricing-pill-paid strong {
  color: var(--accent);
}

/* ---- GUARANTEE BADGE ---- */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.guarantee-icon {
  font-size: 0.95rem;
}

/* ---- HERO CTA ROW ---- */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-free-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 0;
  margin-top: 0;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-alt);
}

.trust-label {
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-right: 0.25rem;
}

.trust-item {
  font-size: 0.85rem;
  color: var(--fg);
  font-weight: 500;
  font-family: var(--font-display);
}

.trust-sep {
  color: var(--card-border);
  font-size: 0.9rem;
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-mobile-cta {
  display: none; /* shown via JS when visible class added */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 25%);
  pointer-events: none;
}

.sticky-mobile-cta.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-btn {
  pointer-events: auto;
  width: 100%;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.3);
}

@media (min-width: 769px) {
  .sticky-mobile-cta { display: none !important; }
}

/* ---- EXIT-INTENT MODAL ---- */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  backdrop-filter: blur(6px);
  padding: 1.5rem;
}

.exit-modal {
  background: var(--card-bg);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.1);
}

.exit-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}

.exit-modal-close:hover {
  color: var(--fg);
}

.exit-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.exit-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.exit-modal-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.exit-capture-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.exit-modal-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0;
}

.exit-modal-note {
  font-size: 0.82rem;
  margin: 0;
}

.exit-no-thanks {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.exit-no-thanks a {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.exit-no-thanks a:hover {
  color: var(--fg);
}

/* ---- FOOTER NICHE LINKS ---- */
.footer-niche-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-niche-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-right: 0.25rem;
}

.footer-niche-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.15s;
}

.footer-niche-link:hover,
.footer-niche-link.active {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ---- SOCIAL PROOF: ACTIVITY COUNTER ---- */
.activity-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(249, 115, 22, 0.07);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 1.25rem auto 0;
  width: fit-content;
}

.activity-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse-ring 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.activity-text strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

/* ---- SOCIAL PROOF: SHARED SECTION HEADINGS ---- */
.section-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ---- SOCIAL PROOF: SAMPLE CAROUSEL ---- */
.carousel-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-wrap {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-template-columns: 1fr;
}

.sample-tile {
  display: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: border-color 0.2s;
  animation: fadeIn 0.35s ease;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.sample-tile.active {
  display: block;
}

.sample-tile:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tile-vertical {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.tile-names {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.tile-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.tile-rate {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}

.tile-sep {
  color: var(--card-border);
}

.tile-timeline {
  color: var(--fg-muted);
}

.tile-brief {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tile-cta {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.15s;
}

.tile-cta:hover { opacity: 0.75; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--card-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ---- SOCIAL PROOF: TESTIMONIALS ---- */
.testimonials-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

.testimonial-score-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.testimonial-before {
  font-size: 1.6rem;
  color: var(--fg-muted);
}

.testimonial-arrow {
  color: var(--accent);
  font-size: 1.1rem;
}

.testimonial-after {
  font-size: 1.6rem;
  color: var(--accent);
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.testimonial-type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-sep { color: var(--card-border); }

/* Coming-soon slot */
.testimonial-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  opacity: 0.7;
}

.testimonial-placeholder-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.testimonial-placeholder-text {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

/* ---- SOCIAL PROOF: GRADER CTA STRIP (no-testimonials fallback) ---- */
.grader-cta-strip {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.grader-cta-inner {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(249,115,22,0.05) 100%);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.grader-cta-copy h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.grader-cta-copy p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 440px;
}

@media (max-width: 768px) {
  .grader-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .grader-cta-copy p { max-width: 100%; }

  .sample-tile { padding: 1.75rem; }

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