/* ──────────────────────────────────────────────────────────────────────────
   Landing polish: hero sequence + CRE outreach loop panel
   ────────────────────────────────────────────────────────────────────────── */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --ls-bg: var(--bg);
  --ls-panel: var(--surface);
  --card: var(--surface);
  --ls-muted: var(--surface-muted);
  --ls-text: var(--text);
  --ls-subtext: var(--text-muted);
  --ls-accent: var(--accent);
  --ls-accent-dark: var(--accent-hover);
  --ls-border: var(--border);
  --highlight: #3b82f6;
  --warning: #f59e0b;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ls-bg);
  color: var(--ls-text);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ls-accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  backdrop-filter: none;
  background: #fff;
  border-bottom: 1px solid var(--ls-border);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--ls-border);
  background: #eef4f3;
  font-weight: 700;
  color: #0b1b29;
  box-shadow: 0 8px 20px rgba(15, 24, 37, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ls-accent-dark);
}

.logo__icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--ls-subtext);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover {
  background: #f8fafc;
  color: #0b1b29;
  box-shadow: none;
}

.nav-links .primary-link {
  background: var(--ls-accent);
  color: #fff;
  font-weight: 600;
  box-shadow: none;
}

.nav-links .primary-link:hover {
  background: var(--ls-accent-dark);
}

.landing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 64px 0 24px;
  border: none;
  box-shadow: none;
}

.hero__panel {
  align-self: center;
}

.hero__text {
  max-width: 720px;
}

.hero__text h1 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  color: #0b1b29;
}

.hero__text .lede {
  color: var(--ls-subtext);
  max-width: 640px;
  line-height: 1.6;
}

.hero-h1__word {
  display: inline-block;
  color: var(--ls-accent-dark);
  font-weight: 800;
  position: relative;
  padding: 0 2px;
  white-space: nowrap;
}

.hero-h1__word::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.35);
}

.hero-sequence {
  margin: 10px 0 8px;
  max-width: 720px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  color: var(--ls-subtext);
  font-size: 14px;
  line-height: 1.5;
  min-height: 1.5em;
}

.hero-sequence__meta {
  color: var(--ls-subtext);
}

.hero-h1__word,
.hero-sequence__meta,
.hero-demo__kicker,
.hero-demo__title,
.hero-demo__desc,
.hero-demo__screenLabel,
.hero-demo__screenValue,
.hero-demo__snapshot {
  transition: opacity 0.32s ease, transform 0.32s ease;
  will-change: opacity, transform;
}

.hero-h1__word.is-swapping-out,
.hero-sequence__meta.is-swapping-out,
.hero-demo__kicker.is-swapping-out,
.hero-demo__title.is-swapping-out,
.hero-demo__desc.is-swapping-out,
.hero-demo__screenLabel.is-swapping-out,
.hero-demo__screenValue.is-swapping-out,
.hero-demo__snapshot.is-swapping-out {
  opacity: 0;
  transform: translateY(4px);
}

.hero-h1__word.is-swapping-in,
.hero-sequence__meta.is-swapping-in,
.hero-demo__kicker.is-swapping-in,
.hero-demo__title.is-swapping-in,
.hero-demo__desc.is-swapping-in,
.hero-demo__screenLabel.is-swapping-in,
.hero-demo__screenValue.is-swapping-in,
.hero-demo__snapshot.is-swapping-in {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--ls-accent-dark);
  margin: 0;
  font-weight: 700;
}

.lede {
  color: var(--ls-subtext);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}


/* ─── HERO PANEL: animated, clean product highlights ────────────────────── */
.panel-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}

.hero-demo__kicker {
  opacity: 0.9;
}

.hero-demo__title {
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1b29;
  line-height: 1.25;
  min-height: 2.6em;
}

.hero-demo__desc {
  margin: 0;
  color: var(--ls-subtext);
  font-size: 13px;
  line-height: 1.55;
  min-height: 1em;
}

.hero-demo__screen {
  margin-top: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}

.hero-demo__screenHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

.hero-demo__screenLabel,
.hero-demo__screenValue {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.hero-demo__screenValue {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.12);
}

.hero-demo__snapshot {
  min-height: 172px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.hero-demo__row {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr auto;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 8px;
}

.hero-demo__main {
  font-size: 12px;
  font-weight: 600;
  color: #0b1b29;
}

.hero-demo__sub {
  font-size: 11px;
  color: var(--ls-subtext);
}

.hero-demo__badge {
  justify-self: end;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 700;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.12);
}

/* ─── RESPONSIVE HERO LAYOUT ─────────────────────────────────────────────── */
@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-h1__word,
  .hero-sequence__meta,
  .hero-demo__kicker,
  .hero-demo__title,
  .hero-demo__desc,
  .hero-demo__screenLabel,
  .hero-demo__screenValue,
  .hero-demo__snapshot {
    transition: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--ls-accent);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--ls-accent-dark);
}

.btn-secondary {
  background: #eef4f3;
  border-color: var(--ls-border);
  color: #0b1b29;
}

.btn-secondary:hover {
  background: #e3eeec;
}

.hero__trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--ls-subtext);
  font-weight: 500;
  font-size: 12px;
  border: 1px solid var(--ls-border);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  padding: 12px 14px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  background: #f7f9ff;
  color: var(--ls-subtext);
}

.metric-card strong {
  display: block;
  color: #0b1b29;
  margin-bottom: 4px;
}

.hero__panel {
  align-self: center;
}

.panel-card {
  background: var(--ls-panel);
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.panel-steps {
  display: grid;
  gap: 12px;
  margin: 12px 0 16px;
}

.panel-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--ls-border);
  background: #f7f9ff;
}

.panel-eyebrow {
  color: var(--ls-subtext);
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.panel-footer {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--ls-border);
}

.panel-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ls-subtext);
  font-weight: 600;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
}

.dot-green {
  background: var(--highlight);
}

.dot-blue {
  background: #3b82f6;
}

.dot-orange {
  background: var(--warning);
}

.section {
  margin-top: 72px;
}

.section__header h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 32px);
}

.section__header .lede {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.feature-card {
  background: var(--ls-panel);
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  padding: 18px;
  line-height: 1.6;
  box-shadow: none;
}

.feature-card .icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 6px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ls-accent-dark);
  margin-top: 8px;
}

.feature-link::after {
  content: '→';
  font-size: 12px;
}

.section--muted {
  background: var(--ls-muted);
  border: 1px solid var(--ls-border);
  padding: 32px;
  border-radius: 16px;
  box-shadow: none;
}

.demo-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.demo-card {
  background: var(--ls-panel);
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: none;
}

.demo-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-lede {
  color: var(--ls-subtext);
  margin: 0;
}

.demo-panel {
  background: #f7f9ff;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.demo-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e4e9f5;
}

.demo-step small {
  color: var(--ls-subtext);
}

.demo-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.call-list {
  display: grid;
  gap: 10px;
}

.call-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e4e9f5;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--ls-accent-dark);
  font-weight: 700;
}

.badge-hot {
  background: rgba(37, 99, 235, 0.18);
  color: var(--ls-accent-dark);
}

.badge-cold {
  background: rgba(148, 163, 184, 0.24);
  color: #374151;
}

.script-link {
  color: var(--ls-accent-dark);
  font-weight: 600;
}

.demo-note {
  font-size: 13px;
  color: var(--ls-subtext);
  padding: 8px 10px;
  border-radius: 10px;
  background: #e8f0fe;
  border: 1px dashed rgba(37, 99, 235, 0.4);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.dashboard-metrics strong {
  font-size: 22px;
  display: block;
  color: #0b1b29;
}

.dashboard-metrics span {
  color: var(--ls-subtext);
}

.dashboard-table {
  border: 1px solid var(--ls-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--ls-border);
  align-items: center;
}

.table-head {
  background: var(--ls-muted);
  font-weight: 700;
}

.table-row:last-child {
  border-bottom: none;
}

.status {
  font-weight: 700;
}

.status-hot {
  color: var(--highlight);
}

.status-warm {
  color: #f59e0b;
}

.status-cold {
  color: #6b7280;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.timeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: var(--ls-panel);
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: none;
}

.timeline__step--openable {
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
}

.timeline__summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  cursor: pointer;
}

.timeline__summary::-webkit-details-marker {
  display: none;
}

.timeline__summary::marker {
  content: "";
}

.timeline__summary::after {
  content: '+';
  align-self: center;
  justify-self: end;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ls-border);
  display: grid;
  place-items: center;
  color: var(--ls-accent-dark);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.timeline__step--openable[open] .timeline__summary::after {
  content: '−';
}

.timeline__summary:focus-visible {
  outline: 2px solid var(--ls-accent-dark);
  outline-offset: 2px;
  border-radius: 12px;
}

.timeline__details {
  border-top: 1px solid var(--ls-border);
  padding: 14px 16px 16px;
  background: rgba(248, 250, 252, 0.65);
}

.timeline__value {
  margin: 0 0 8px;
  color: #1f2937;
}


.timeline__proof {
  margin: 0;
  border-radius: 10px;
  border: 1px solid #dbe3f0;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 12px;
}

/* Timeline proof should feel like real product UI, not a text block. */
.timeline__proof--ui {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  line-height: inherit;
}

.proof-ui {
  display: grid;
  gap: 8px;
}

.proof-ui__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.proof-ui__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #1d4ed8;
}

.proof-ui__note {
  font-size: 11px;
  font-weight: 600;
  color: var(--ls-subtext);
}

.proof-ui__window {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}

.proof-ui__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

.proof-ui__title {
  font-size: 12px;
  font-weight: 900;
  color: #0b1b29;
}

.proof-ui__metaText {
  font-size: 11px;
  font-weight: 700;
  color: var(--ls-subtext);
}

.proof-ui__rows {
  padding: 10px;
  display: grid;
  gap: 8px;
}

.proof-ui__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 8px;
}

.proof-ui__rowMain {
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  color: #0b1b29;
}

.proof-ui__rowSub {
  min-width: 0;
  font-size: 11px;
  color: var(--ls-subtext);
}

.proof-ui__rowBadge {
  justify-self: end;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 800;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.12);
}

.proof-ui__foot {
  padding: 8px 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.proof-ui__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #1d4ed8;
}

.proof-ui__chip--muted {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.12);
  color: #0b1b29;
}

@media (max-width: 520px) {
  .proof-ui__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-ui__row {
    grid-template-columns: 1fr;
  }

  .proof-ui__rowBadge {
    justify-self: start;
  }
}

.timeline__proof p {
  margin: 0;
}

.timeline__proof p + p {
  margin-top: 6px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: var(--ls-accent-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.crm-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  color: var(--ls-subtext);
}

.checklist li::before {
  content: '✔';
  color: var(--highlight);
  margin-right: 8px;
}

.crm-card {
  background: var(--ls-panel);
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--ls-accent-dark);
  font-weight: 700;
  font-size: 12px;
}

.crm-card__item {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--ls-border);
  color: var(--ls-subtext);
}

.cta {
  margin-top: 64px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--ls-border);
  background: #fff;
  box-shadow: none;
}

.queue-grid {
  margin-top: 8px;
}

.cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer {
  max-width: 1100px;
  margin: 32px auto;
  padding: 16px 20px 32px;
  display: flex;
  justify-content: space-between;
  color: var(--ls-subtext);
  border-top: 1px solid var(--ls-border);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 16px;
    top: 66px;
    background: #fff;
    border: 1px solid var(--ls-border);
    box-shadow: 0 16px 40px rgba(15, 24, 37, 0.18);
    border-radius: 14px;
    padding: 12px;
    width: min(320px, 90vw);
    gap: 8px;
    text-align: right;
  }

  .nav-links a {
    display: block;
  }

  .nav-links.is-open {
    display: grid;
  }

  .hero,
  .crm-grid,
  .cta__content {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 640px) {
  .landing {
    padding: 24px 16px 60px;
  }

  .hero {
    padding: 40px 0 16px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .panel-step,
  .demo-panel,
  .feature-card,
  .demo-card,
  .timeline__step,
  .cta {
    padding: 12px;
  }

  .call-row,
  .demo-step,
  .table-row,
  .cta__content {
    grid-template-columns: 1fr;
  }

  .dashboard-table {
    overflow-x: auto;
  }
}
