/* =========================================
   NobleSDR — Custom Theme
   Typography: Syne (display) + IBM Plex Sans (body)
   Palette: Near-black + amber accent + off-white
   ========================================= */

:root {
  --bg: #0C0C0E;
  --surface: #141416;
  --surface2: #1C1C1F;
  --amber: #FFB020;
  --amber-dim: #C88B10;
  --text: #F0EEE8;
  --text-muted: #8A8880;
  --text-dim: #54524E;
  --border: #24242A;
  --font-display: 'Syne', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

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

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

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

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---- HERO ---- */
.hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.label-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
}

/* Agent Card */
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

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

.agent-avatar {
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-info {
  display: flex;
  flex-direction: column;
}

.agent-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.agent-status {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.agent-activity {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.activity-item.done { color: var(--text-dim); }
.activity-item.done .activity-icon { color: #22C55E; }
.activity-item.current { color: var(--text-muted); }
.activity-item.current .activity-icon { color: var(--amber); }

.activity-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-right: 1px solid var(--border);
  gap: 0.2rem;
}

.stat:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- WHAT IT DOES ---- */
.whatitis {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.whatitis-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.pipeline {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 2rem;
  align-items: start;
}

.pipeline-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.step-icon {
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.pipeline-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pipeline-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  color: var(--text-dim);
  font-size: 1.2rem;
  padding-top: 2rem;
}

/* ---- FEATURES ---- */
.features {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.feature-icon-wrap {
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- OBJECTION ---- */
.objection {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.objection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.objection-col h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.objection-col > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.email-example-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.email-example {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.email-to, .email-subject {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.email-subject { font-style: italic; }

.email-body {
  padding: 1.25rem;
}

.email-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.email-meta {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ---- CLOSING ---- */
.closing {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.closing-inner { max-width: 1200px; margin: 0 auto; }

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 2rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2rem 3rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  border-radius: 5px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ---- PRICING PAGE ---- */
.pricing-hero {
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-hero-inner { max-width: 700px; margin: 0 auto; }

.pricing-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Tiers grid */
.pricing-tiers { padding: 4rem 3rem; border-bottom: 1px solid var(--border); }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-card--featured {
  border-color: var(--amber);
  background: var(--surface2);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-header { margin-bottom: 1.5rem; }

.tier-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}

.price-period { font-size: 0.85rem; color: var(--text-muted); }
.tier-tagline { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.tier-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.tier-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-features li .check { color: var(--amber); font-weight: 700; }
.tier-features li .muted { color: var(--text-dim); }
.tier-features li .muted-text { color: var(--text-dim); }

.tier-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  background: var(--amber);
  color: var(--bg);
  transition: opacity 0.15s;
  margin-top: auto;
}

.tier-cta:hover { opacity: 0.85; }

.tier-cta--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.tier-cta--outline:hover { border-color: var(--amber); color: var(--amber); opacity: 1; }

/* Feature table */
.feature-table { padding: 4rem 3rem; border-bottom: 1px solid var(--border); }
.feature-table-inner { max-width: 900px; margin: 0 auto; }

.feature-table h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.comparison-grid {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-header,
.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }

.comparison-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.comparison-row { border-bottom: 1px solid var(--border); }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:nth-child(even) { background: var(--surface); }

.comp-col { padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; }
.comp-col--feature { font-weight: 500; color: var(--text); }

.comparison-header .comp-col {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.comp-col .check { color: var(--amber); font-weight: 700; font-size: 1rem; }
.comp-col .muted { color: var(--text-dim); }

/* FAQ */
.pricing-faq { padding: 4rem 3rem; border-bottom: 1px solid var(--border); }
.faq-inner { max-width: 700px; margin: 0 auto; }

.faq-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.faq-list { display: flex; flex-direction: column; gap: 1.5rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.faq-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* CTA strip */
.pricing-cta-strip { padding: 5rem 3rem; text-align: center; }
.cta-strip-inner { max-width: 600px; margin: 0 auto; }

.cta-strip-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-strip-inner p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; }

.cta-strip-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--amber);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.cta-strip-btn:hover { opacity: 0.85; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 1.25rem; }

.nav-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--text); }

.nav-link--cta {
  background: var(--amber);
  color: var(--bg);
  padding: 0.4rem 0.875rem;
  border-radius: 6px;
  font-weight: 500;
  transition: opacity 0.15s;
}

.nav-link--cta:hover { opacity: 0.85; }

/* Success page */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.success-inner { max-width: 500px; }

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--bg);
}

.success-inner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.success-inner p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--amber);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.85; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner, .objection-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .pipeline-arrow { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
  .how-it-works, .features, .objection, .closing { padding: 3rem 1.5rem; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 420px; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .comp-col { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .pricing-hero, .pricing-tiers, .feature-table, .pricing-faq, .pricing-cta-strip { padding-left: 1.5rem; padding-right: 1.5rem; }
  .compare-hero { padding: 3.5rem 1.5rem 3rem; }
  .compare-table-section { padding: 3rem 1.5rem; }
  .compare-section { padding: 4rem 1.5rem; }
  .compare-cta { padding: 4rem 1.5rem; }
  .competitor-table { overflow-x: auto; display: block; }
  .ct-header, .ct-row { min-width: 700px; }
  /* Feature sections */
  .feature-section { flex-direction: column; gap: 2rem; }
  .feature-section--alt { flex-direction: column; }
  .feature-section--alt .feature-section-visual { order: -1; }
}

@media (max-width: 600px) {
  .pipeline { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; gap: 0.75rem; }
  .closing-ctas { flex-direction: column; }
  .closing-ctas .cta-secondary { text-align: center; }
}

/* ---- HERO ACTIONS ---- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amber);
  color: var(--bg);
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  color: var(--text-muted);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  cursor: pointer;
}

.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

/* Hero image */
.hero-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  display: block;
}

/* Activity queued state */
.activity-item.queued { color: var(--text-dim); }
.activity-item.queued .activity-icon { color: var(--text-dim); }

/* HOW IT WORKS */
.how-it-works {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.how-it-works-inner { max-width: 1200px; margin: 0 auto; }

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* FEATURE SECTIONS */
.feature-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-section:last-of-type { border-bottom: none; }

.feature-section-text { flex: 1; }
.feature-section-visual { flex: 1; }

.feature-section-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feature-section-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Warmup card */
.warmup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.warmup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.warmup-title { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.warmup-pct { font-size: 0.78rem; color: var(--text-muted); }

.warmup-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.warmup-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.warmup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.warmup-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface2);
  border-radius: 8px;
  padding: 0.65rem;
  gap: 0.15rem;
}

.warmup-stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.warmup-stat-label { font-size: 0.65rem; color: var(--text-dim); text-align: center; }

.warmup-status { font-size: 0.75rem; color: var(--text-muted); }

/* Sequence card */
.sequence-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.sequence-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.seq-badge {
  background: rgba(255,176,32,0.15);
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.sequence-steps { display: flex; flex-direction: column; gap: 0; }

.seq-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.seq-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
}

.seq-step--done .seq-step-dot { background: #22C55E; border-color: #22C55E; }
.seq-step--active .seq-step-dot { background: var(--amber); border-color: var(--amber); box-shadow: 0 0 6px var(--amber); }
.seq-step--queued .seq-step-dot { background: var(--surface2); border-color: var(--text-dim); }

.seq-step-info { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 1.25rem; }
.seq-step-label { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.seq-step--done .seq-step-label { color: var(--text-dim); }
.seq-step-time { font-size: 0.72rem; color: var(--text-dim); }
.seq-step--active .seq-step-time { color: var(--amber); }

.seq-connector {
  width: 2px;
  height: 16px;
  background: var(--border);
  margin-left: 5px;
  margin-bottom: 1.25rem;
}
.seq-connector--done { background: #22C55E; }

.seq-cancel-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

/* Booking card */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.booking-header {
  background: var(--surface2);
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.booking-reply { padding: 1.25rem; border-bottom: 1px solid var(--border); }

.reply-from { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 0.5rem; font-weight: 500; }
.reply-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; font-style: italic; }

.booking-analysis { padding: 1.25rem; }

.sentiment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.sentiment-badge--positive { background: rgba(34,197,94,0.15); color: #22C55E; }

.booking-action { background: var(--surface2); border-radius: 8px; padding: 0.75rem 1rem; }

.booking-action-label { font-size: 0.7rem; color: var(--text-dim); margin-bottom: 0.25rem; }
.booking-link-preview { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; justify-content: space-between; }
.booking-status { color: #22C55E; font-size: 0.72rem; font-weight: 600; }

/* Analytics card */
.analytics-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.analytics-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.analytics-period { font-size: 0.75rem; color: var(--text-dim); }

.funnel-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.funnel-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.funnel-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.funnel-bar {
  height: 6px;
  background: var(--surface2);
  border-radius: 4px;
  overflow: hidden;
}

.funnel-fill { height: 100%; background: var(--amber); border-radius: 4px; }

.funnel-label { font-size: 0.72rem; color: var(--text-dim); }

.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.kpi-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.kpi-label { font-size: 0.65rem; color: var(--text-dim); }

/* Import card */
.import-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.import-drop-zone {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed var(--border);
  cursor: pointer;
}

.import-drop-text { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.import-drop-sub { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.25rem; }

.import-preview { padding: 1.25rem; }

.import-preview-header {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.import-badge {
  background: rgba(255,176,32,0.15);
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.import-preview-cols { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }

.col-pill {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.col-pill--mapped { background: rgba(255,176,32,0.1); color: var(--amber); border: 1px solid rgba(255,176,32,0.3); }
.col-pill--skip { background: var(--surface2); color: var(--text-dim); border: 1px solid var(--border); }

.import-preview-count { font-size: 0.78rem; color: var(--text-muted); }

/* Compare strip */
.features-compare-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.compare-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.compare-strip-text { flex: 1; }
.compare-strip-label { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 0.5rem; }
.compare-strip-text h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); line-height: 1.3; }

.compare-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.compare-strip-btn:hover { border-color: var(--amber); color: var(--amber); }

/* Closing CTAs */
.closing-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}

.cta-primary:hover { opacity: 0.85; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.15s;
}

.cta-secondary:hover { color: var(--text); border-color: var(--text-muted); }

/* Waitlist alt */
.waitlist-alt { margin-top: 1rem; }

.waitlist-alt-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

/* ---- COMPARE PAGE ---- */
.compare-hero {
  padding: 4.5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare-hero-inner { max-width: 800px; margin: 0 auto; }
.compare-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1rem;
}
.compare-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.compare-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Feature Table */
.compare-table-section {
  padding: 4rem 3rem;
  border-bottom: 1px solid var(--border);
}
.compare-table-inner { max-width: 1200px; margin: 0 auto; }
.comp-table-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.competitor-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.ct-header, .ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.ct-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.ct-row { border-bottom: 1px solid var(--border); }
.ct-row:last-of-type { border-bottom: none; }
.ct-row:nth-child(even) { background: var(--surface); }
.ct-section-label {
  grid-column: 1 / -1;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.ct-col {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.ct-col--feature { font-weight: 500; color: var(--text); }
.ct-col--lp {
  background: rgba(255,176,32,0.05);
  font-weight: 600;
}
.ct-header .ct-col {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.ct-header .ct-col--lp { color: var(--amber); }
.ct-col .check { color: var(--amber); font-weight: 700; font-size: 1rem; }
.ct-col .x { color: var(--text-dim); }
.ct-col .partial { color: var(--text-muted); font-size: 1rem; }
.ct-legend {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}
.ct-legend .check { color: var(--amber); font-weight: 700; }
.ct-legend .partial { color: var(--text-muted); }

/* Differentiator Sections */
.compare-section {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.compare-section--alt { background: var(--surface); }
.compare-section-inner { max-width: 1100px; margin: 0 auto; }
.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.compare-col--text .compare-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1rem;
}
.compare-col--text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.compare-col--text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}
.compare-col--callout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.callout-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.callout-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.callout-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.callout-icon {
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.compare-col--callout-left { order: -1; }

/* Bottom CTA */
.compare-cta {
  padding: 5rem 3rem;
  text-align: center;
}
.compare-cta-inner { max-width: 600px; margin: 0 auto; }
.compare-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.compare-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.compare-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cta-strip-btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.cta-strip-btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  opacity: 1;
}