/* ============================================
   LANDING-ALT.CSS
   Alternative landing page — "Win More Listings"
   Supplements styles.css
   ============================================ */

/* ── UTILITY ──────────────────────────────── */

.hl {
  color: var(--ping);
  font-weight: 700;
  font-style: normal;
}

/* ── HERO ─────────────────────────────────── */

.alt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.alt-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.alt-hero-content {
  max-width: 520px;
}

.hero-demo-jump {
  border-color: rgba(255, 77, 0, 0.35);
  color: var(--text-primary);
}

.hero-demo-jump:hover {
  border-color: rgba(255, 77, 0, 0.7);
  background: rgba(255, 77, 0, 0.12);
}

/* Dashboard card in hero */
.alt-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.alt-hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, var(--ping-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.alt-dashboard-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alt-dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.alt-dash-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.alt-dash-brand {
  color: var(--text-primary);
  font-family: var(--font-head);
  font-size: 13px;
}

.alt-ping-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid var(--ping-glow-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  animation: ping-pulse 2s ease-in-out infinite;
}

@keyframes ping-pulse {
  0%, 100% { border-color: var(--ping-glow-strong); }
  50% { border-color: var(--ping); box-shadow: 0 0 0 3px var(--ping-glow); }
}

@keyframes rippleOut {
  from {
    transform: scale(0);
    opacity: 0.25;
  }
  to {
    transform: scale(20);
    opacity: 0;
  }
}

.alt-ping-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.alt-ping-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--ping);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alt-ping-msg {
  font-size: 13px;
  color: var(--text-primary);
  margin-top: 3px;
}

.alt-seller-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.alt-seller-row.active-seller {
  border-color: rgba(255, 77, 0, 0.3);
  background: rgba(255, 77, 0, 0.05);
}

.alt-seller-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.alt-seller-addr {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.alt-seller-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.alt-seller-time {
  font-size: 11px;
  color: var(--text-muted);
}

.alt-dash-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.alt-call-btn {
  flex: 1;
  background: var(--ping);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition);
}

.alt-call-btn:hover {
  background: var(--ping-light);
}

.alt-wa-btn {
  flex: 1;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.alt-wa-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ── LEAD PIPELINE PREVIEW ─────────────────── */

.alt-pipeline-preview {
  padding: 96px 0 104px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 300px at 72% 16%, rgba(255, 77, 0, 0.08) 0%, transparent 65%),
    var(--surface);
}

.alt-pipeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.alt-pipeline-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.alt-pipeline-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 660px;
}

.alt-pipeline-kpis {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.alt-pipeline-kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alt-pipeline-kpi-label {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.alt-pipeline-kpi-value {
  font-size: 22px;
  line-height: 1;
  font-family: var(--font-head);
  color: var(--text-primary);
}

.alt-pipeline-cta {
  margin-top: 4px;
  align-self: flex-start;
}

.alt-pipeline-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.alt-pipeline-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.alt-pipeline-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ping);
  border: 1px solid rgba(255, 77, 0, 0.32);
  background: rgba(255, 77, 0, 0.1);
  border-radius: 999px;
  padding: 5px 10px;
}

.alt-pipeline-drag-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.alt-pipeline-board-wrap {
  width: 100%;
  overflow: visible;
  padding-bottom: 0;
}

.alt-pipeline-board-wrap::-webkit-scrollbar {
  height: 8px;
}

.alt-pipeline-board-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.alt-pipeline-board-wrap::-webkit-scrollbar-thumb {
  background: var(--border-bright);
  border-radius: 6px;
}

.alt-pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.alt-pipeline-lane {
  min-width: 0;
  width: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: clip;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.alt-pipeline-lane::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
}

.alt-pipeline-lane.active {
  border-color: rgba(255, 77, 0, 0.45);
  background: rgba(255, 77, 0, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 77, 0, 0.22);
}

.alt-pipeline-lane,
.alt-pipeline-lead,
.alt-ping-alert {
  contain: layout;
}

.alt-pipeline-lane.active::after {
  opacity: 1;
  animation: pipelineLanePulse 1.8s ease-in-out infinite;
}

.alt-pipeline-lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.alt-pipeline-lane-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.alt-pipeline-lane-count {
  min-width: 28px;
  text-align: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  background: rgba(255, 255, 255, 0.03);
}

.alt-pipeline-lane-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  min-height: 164px;
}

.alt-pipeline-lead {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  padding: 10px;
  display: grid;
  gap: 4px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.alt-pipeline-lead:hover {
  border-color: var(--border-bright);
  transform: translateY(-1px);
}

.alt-pipeline-lead-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.alt-pipeline-lead-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.alt-pipeline-lead-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: var(--text-muted);
}

.lead-heat-hot { color: var(--ping); font-weight: 700; }
.lead-heat-warm { color: var(--warm); font-weight: 700; }
.lead-heat-cold { color: var(--cold); font-weight: 700; }

.alt-pipeline-preview.js-enhanced .alt-pipeline-copy,
.alt-pipeline-preview.js-enhanced .alt-pipeline-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.alt-pipeline-preview.js-enhanced .alt-pipeline-card {
  transition-delay: 0.08s;
}

.alt-pipeline-preview.js-enhanced.is-visible .alt-pipeline-copy,
.alt-pipeline-preview.js-enhanced.is-visible .alt-pipeline-card {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pipelineLanePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.16);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.04);
  }
}

[data-theme="light"] .alt-pipeline-preview {
  background:
    radial-gradient(800px 300px at 72% 16%, rgba(255, 77, 0, 0.06) 0%, transparent 65%),
    var(--surface);
}

[data-theme="light"] .alt-pipeline-kpi,
[data-theme="light"] .alt-pipeline-lead,
[data-theme="light"] .alt-pipeline-lane {
  background: #fff;
}

[data-theme="light"] .alt-pipeline-lane.active {
  background: rgba(255, 77, 0, 0.08);
}

@media (max-width: 1024px) {
  .alt-pipeline-copy {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .alt-pipeline-preview {
    padding: 80px 0 88px;
  }

  .alt-pipeline-sub {
    font-size: 16px;
  }

  .alt-pipeline-board-wrap {
    overflow: visible;
    padding-bottom: 0;
  }

  .alt-pipeline-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
  }

  .alt-pipeline-lane {
    width: auto;
  }
}

@media (max-width: 600px) {
  .alt-pipeline-kpis {
    grid-template-columns: 1fr;
  }

  .alt-pipeline-board {
    grid-template-columns: 1fr;
  }

  .alt-pipeline-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alt-pipeline-lane.active::after {
    animation: none !important;
  }

  .alt-pipeline-preview.js-enhanced .alt-pipeline-copy,
  .alt-pipeline-preview.js-enhanced .alt-pipeline-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .alt-pipeline-lead {
    transition: none !important;
  }

  .alt-pipeline-lane.active::after {
    opacity: 0 !important;
  }
}

/* ── PROBLEM ──────────────────────────────── */

.alt-problem {
  padding: 100px 0;
}

.alt-problem-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.alt-problem-header h2 {
  margin-top: 12px;
}

/* Intro line under headline */
.prob-intro-line {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
}

/* ── Reality grid ─── */
.prob-reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prob-reality-item {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}

.prob-reality-item:hover {
  border-color: var(--border-bright);
}

.prob-reality-icon {
  font-size: 28px;
  line-height: 1;
}

.prob-reality-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
}

.prob-reality-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Timeline ─── */
.prob-timeline {
  display: flex;
  align-items: center;
  padding: 36px 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  gap: 0;
}

.prob-tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.prob-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.prob-tl-dot-green {
  background: var(--green);
  box-shadow: 0 0 10px rgba(0, 196, 125, 0.55);
}

.prob-tl-dot-red {
  background: var(--ping);
  box-shadow: 0 0 10px var(--ping-glow-strong);
}

.prob-tl-label {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
  max-width: 110px;
}

.prob-tl-label span {
  color: var(--text-secondary);
  font-weight: 500;
}

.prob-tl-middle {
  flex: 1;
  display: flex;
  align-items: center;
}

.prob-tl-line {
  flex: 1;
  height: 2px;
  background: var(--border-bright);
}

.prob-tl-danger-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 24px;
  background: rgba(255, 77, 0, 0.08);
  border: 1px dashed rgba(255, 77, 0, 0.45);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.prob-tl-danger-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ping);
}

.prob-tl-danger-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Core promise ─── */
.prob-answer {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,77,0,0.08) 0%, rgba(255,77,0,0.03) 100%);
  border: 1px solid rgba(255, 77, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.prob-answer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,77,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.prob-answer-bell {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 10px rgba(255,77,0,0.4));
}

.prob-answer-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prob-answer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ping);
}

.prob-answer-headline {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
}

.prob-answer-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
}

/* ── Without / With ─── */
.prob-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.prob-vs-col {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
}

.prob-vs-without {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.prob-vs-with {
  background: rgba(255, 77, 0, 0.06);
  border: 1px solid rgba(255, 77, 0, 0.28);
}

.prob-vs-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.prob-vs-rtb-label {
  color: var(--ping);
}

.prob-vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prob-vs-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.prob-vs-cross {
  color: #FF4D4D;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.prob-vs-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.prob-vs-arrow {
  font-size: 26px;
  color: var(--ping);
  font-weight: 700;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .prob-reality-grid {
    grid-template-columns: 1fr;
  }

  .prob-timeline {
    padding: 28px 24px;
  }

  .prob-tl-danger-box {
    padding: 10px 12px;
    font-size: 12px;
  }

  .prob-vs {
    grid-template-columns: 1fr;
  }

  .prob-vs-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .prob-answer {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
  }

  .prob-answer-headline {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .prob-timeline {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .prob-tl-middle {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 0;
  }

  .prob-tl-line {
    width: 2px;
    height: 20px;
    flex: none;
  }
}

/* ── HOW IT WORKS ─────────────────────────── */

.alt-how {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}

.alt-how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.alt-how::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.alt-how-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.7;
}

.centered {
  text-align: center;
}

/* Steps */
.alt-step {
  padding: 80px 0;
}

.alt-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.alt-step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.alt-step-flip .alt-step-inner {
  direction: rtl;
}

.alt-step-flip .alt-step-inner > * {
  direction: ltr;
}

.alt-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ping-glow);
  border: 1px solid var(--ping);
  margin-bottom: 20px;
}

.alt-step-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ping);
}

.alt-step-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.alt-step-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Magic callout */
.alt-magic-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 22px 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 77, 0, 0.06);
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.alt-magic-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alt-magic-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ping);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.alt-magic-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Ping moment callout */
.alt-ping-moment {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border-bright);
}

.alt-ping-moment-icon {
  font-size: 24px;
}

.alt-ping-moment p {
  font-size: 16px;
  color: var(--text-primary);
}

/* Step visuals */
.alt-step-visual {
  display: flex;
  justify-content: center;
}

/* Step 1 live pre-appraisal preview */
.alt-preapp-preview {
  width: 100%;
  max-width: 540px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alt-preapp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 0;
}

.alt-preapp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.alt-preapp-open {
  font-size: 12px;
  font-weight: 600;
  color: var(--ping);
  text-decoration: none;
}

.alt-preapp-open:hover {
  color: var(--ping-light);
}

.alt-preapp-frame-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0b0f17;
}

.alt-preapp-iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  background: #0b0f17;
}

/* Welcome card */
.alt-welcome-card {
  width: 100%;
  max-width: 360px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alt-wc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alt-wc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ping);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.alt-wc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.alt-wc-agency {
  font-size: 12px;
  color: var(--text-muted);
}

.alt-wc-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 12px;
}

.alt-wc-divider {
  height: 1px;
  background: var(--border);
}

.alt-wc-greeting {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.alt-wc-video {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.alt-wc-play {
  width: 30px;
  height: 30px;
  background: var(--ping);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.alt-wc-video p {
  font-size: 12px;
  color: var(--text-secondary);
}

.alt-wc-reviews {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alt-wc-review {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  padding: 8px 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--border-bright);
}

.alt-wc-timeline-q {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid var(--border);
}

.alt-wc-q-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.alt-wc-q-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.alt-wc-q-opt {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-bright);
  color: var(--text-secondary);
  cursor: pointer;
}

.alt-wc-q-selected {
  border-color: var(--ping);
  background: rgba(255, 77, 0, 0.1);
  color: var(--ping);
  font-weight: 600;
}

/* Nurture card */
.alt-nurture-card {
  width: 100%;
  max-width: 380px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alt-nc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alt-nc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.alt-nc-status {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.alt-nc-from {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
}

.alt-nc-from-label {
  color: var(--text-muted);
}

.alt-nc-from-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.alt-nc-emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alt-nc-email {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.alt-nc-live {
  border-color: rgba(255, 77, 0, 0.3);
  background: rgba(255, 77, 0, 0.05);
}

.alt-nc-email-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.alt-nc-email-dot.sent { background: var(--green); }
.alt-nc-email-dot.live { background: var(--ping); box-shadow: 0 0 6px var(--ping-glow-strong); }
.alt-nc-email-dot.upcoming { background: var(--border-bright); }

.alt-nc-email-subject {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.alt-nc-email-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.alt-nc-email-meta-live {
  font-size: 11px;
  color: var(--ping);
  font-weight: 600;
  margin-top: 2px;
}

/* Step 3 interactive send-link demo */
.alt-send-demo {
  --send-accent: #4da6ff;
  --send-accent-strong: #8cc8ff;
  --send-accent-soft: rgba(77, 166, 255, 0.12);
  --send-accent-glow: rgba(77, 166, 255, 0.28);
  width: 100%;
  max-width: 390px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(77, 166, 255, 0.32);
  background:
    radial-gradient(120% 145% at 100% 0%, rgba(77, 166, 255, 0.2) 0%, rgba(77, 166, 255, 0.02) 46%, transparent 72%),
    linear-gradient(165deg, rgba(18, 23, 34, 0.9) 0%, rgba(23, 23, 23, 0.95) 56%);
  box-shadow:
    0 0 0 1px rgba(77, 166, 255, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(77, 166, 255, 0.2);
}

.alt-send-demo-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alt-send-demo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--send-accent-strong);
}

.alt-send-demo-note {
  font-size: 12px;
  color: var(--text-muted);
}

.alt-send-lead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(77, 166, 255, 0.32);
  border-radius: var(--radius-sm);
  background: var(--send-accent-soft);
  padding: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.alt-send-lead-row.ping-active {
  border-color: rgba(77, 166, 255, 0.7);
  box-shadow: 0 0 0 2px var(--send-accent-glow);
  transform: translateY(-1px);
}

.alt-send-lead-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.alt-send-lead-address {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.alt-send-lead-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.alt-send-lead-time {
  font-size: 11px;
  color: var(--text-muted);
}

.alt-send-activity {
  background: rgba(15, 20, 30, 0.78);
  border: 1px solid rgba(77, 166, 255, 0.24);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}

.alt-send-activity-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.alt-send-activity-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.alt-send-btn {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #2c85f2 0%, #4da6ff 65%, #7dc1ff 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(77, 166, 255, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.alt-send-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(77, 166, 255, 0.4);
}

.alt-send-subtext {
  margin-top: -4px;
  font-size: 11px;
  color: var(--text-muted);
}

.alt-send-success {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 196, 125, 0.35);
  background: rgba(0, 196, 125, 0.12);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alt-send-modal .alt-send-success {
  margin-top: 12px;
}

.alt-send-modal .alt-send-preview-btn {
  width: 100%;
  margin-top: 10px;
  color: var(--cold);
  border-color: rgba(77, 166, 255, 0.42);
  background: transparent;
}

.alt-send-modal .alt-send-preview-btn:hover {
  border-color: rgba(77, 166, 255, 0.8);
  background: rgba(77, 166, 255, 0.12);
}

.alt-send-success-title {
  font-size: 13px;
  color: #c4ffe4;
  font-weight: 700;
}

.alt-send-success-copy {
  font-size: 12px;
  color: var(--text-secondary);
}

.alt-send-preview-btn {
  border: 1px solid rgba(77, 166, 255, 0.42);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--send-accent-strong);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.alt-send-preview-btn:hover {
  border-color: rgba(77, 166, 255, 0.8);
  background: rgba(77, 166, 255, 0.12);
}

.alt-send-ping-toast {
  border: 1px solid rgba(255, 77, 0, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 77, 0, 0.1);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.alt-send-ping-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.alt-send-demo,
.alt-preapp-preview,
.alt-preview-shell,
.alt-send-modal {
  contain: content;
}

[data-theme="light"] .alt-send-demo {
  --send-accent: #2f7fe6;
  --send-accent-strong: #173f7a;
  --send-accent-soft: rgba(47, 127, 230, 0.11);
  --send-accent-glow: rgba(47, 127, 230, 0.24);
  border-color: rgba(47, 127, 230, 0.34);
  background:
    radial-gradient(120% 145% at 100% 0%, rgba(47, 127, 230, 0.16) 0%, rgba(47, 127, 230, 0.06) 46%, transparent 72%),
    linear-gradient(165deg, #ffffff 0%, #f3f8ff 56%, #edf5ff 100%);
  box-shadow:
    0 0 0 1px rgba(47, 127, 230, 0.12),
    0 18px 36px rgba(17, 41, 78, 0.16),
    0 0 26px rgba(47, 127, 230, 0.14);
}

[data-theme="light"] .alt-send-demo .alt-send-lead-name {
  color: #17385e;
}

[data-theme="light"] .alt-send-demo .alt-send-demo-label {
  color: #173f7a;
}

[data-theme="light"] .alt-send-demo .alt-send-demo-note,
[data-theme="light"] .alt-send-demo .alt-send-lead-address,
[data-theme="light"] .alt-send-demo .alt-send-lead-time,
[data-theme="light"] .alt-send-demo .alt-send-activity-label,
[data-theme="light"] .alt-send-demo .alt-send-subtext {
  color: #4f6785;
}

[data-theme="light"] .alt-send-demo .alt-send-lead-row {
  border-color: rgba(47, 127, 230, 0.28);
  background: rgba(47, 127, 230, 0.1);
}

[data-theme="light"] .alt-send-demo .alt-send-activity {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 79, 157, 0.24);
}

[data-theme="light"] .alt-send-demo .alt-send-activity-text {
  color: #15395f;
}

[data-theme="light"] .alt-send-demo .alt-send-btn {
  box-shadow: 0 12px 24px rgba(47, 127, 230, 0.28);
}

[data-theme="light"] .alt-send-demo .alt-send-success {
  border-color: rgba(0, 122, 90, 0.32);
  background: rgba(0, 122, 90, 0.12);
}

[data-theme="light"] .alt-send-demo .alt-send-success-title {
  color: #05543a;
}

[data-theme="light"] .alt-send-demo .alt-send-success-copy {
  color: #264f43;
}

[data-theme="light"] .alt-send-modal .alt-send-preview-btn {
  color: #173f7a;
  border-color: rgba(47, 127, 230, 0.36);
  background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .alt-send-modal .alt-send-preview-btn:hover {
  border-color: rgba(47, 127, 230, 0.56);
  background: rgba(47, 127, 230, 0.12);
}

[data-theme="light"] .alt-send-demo .alt-send-preview-btn {
  color: #173f7a;
  border-color: rgba(47, 127, 230, 0.36);
  background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .alt-send-demo .alt-send-preview-btn:hover {
  border-color: rgba(47, 127, 230, 0.56);
  background: rgba(47, 127, 230, 0.12);
}

[data-theme="light"] .alt-send-demo .alt-send-ping-toast {
  border-color: rgba(255, 77, 0, 0.26);
  background: rgba(255, 77, 0, 0.08);
  color: #8e330f;
}

[data-theme="light"] .alt-send-demo .hot-badge {
  background: rgba(255, 77, 0, 0.16);
  color: #b33f16;
}

.alt-send-success[hidden],
.alt-send-preview-btn[hidden],
.alt-send-ping-toast[hidden],
.alt-send-modal-overlay[hidden],
.alt-preview-lightbox[hidden] {
  display: none !important;
}

.alt-send-modal-overlay,
.alt-preview-lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.alt-send-modal-overlay.open,
.alt-preview-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.alt-send-modal {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 30px 26px 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.alt-send-modal-overlay.open .alt-send-modal {
  transform: translateY(0);
}

.alt-send-modal-close,
.alt-preview-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alt-send-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.alt-send-modal-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ping);
  margin-bottom: 8px;
}

.alt-send-modal-title {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.alt-send-modal-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.alt-send-field {
  margin-bottom: 12px;
}

.alt-send-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.alt-send-field input,
.alt-send-field select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
}

.alt-send-field input:focus,
.alt-send-field select:focus {
  outline: none;
  border-color: var(--ping);
  box-shadow: 0 0 0 2px var(--ping-glow);
}

.alt-send-form-status {
  font-size: 12px;
  color: #ffb08c;
  margin-top: 2px;
  margin-bottom: 10px;
}

.alt-send-submit {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--ping);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.alt-send-submit:hover {
  filter: brightness(1.1);
}

.alt-send-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.alt-preview-shell {
  width: min(980px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.4);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.alt-preview-lightbox.open .alt-preview-shell {
  transform: translateY(0);
}

.alt-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.alt-preview-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.alt-preview-iframe {
  width: 100%;
  height: min(72vh, 760px);
  border: 0;
  background: #0b0f17;
}

/* ── WHY US ───────────────────────────────── */

.alt-why {
  padding: 100px 0;
}

.alt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.alt-why-card {
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.alt-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.alt-why-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.alt-why-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.alt-why-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── BETA ─────────────────────────────────── */

.alt-beta {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}

.alt-beta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.alt-beta-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 16px auto 48px;
  text-align: center;
  line-height: 1.7;
}

.alt-beta-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* Beta card */
.alt-beta-card {
  padding: 40px 40px 32px;
  position: relative;
}

.alt-bc-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 28px;
  margin-top: 12px;
}

.alt-bc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.alt-bc-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.alt-bc-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alt-bc-features li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.alt-bc-features li p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.alt-urgency-banner {
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ping);
  margin-bottom: 20px;
  text-align: center;
}

/* Beta aside stats */
.alt-beta-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alt-ba-item {
  padding: 24px;
  text-align: center;
}

.alt-ba-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.alt-ba-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.alt-ba-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.alt-ba-was {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
}

.alt-ba-was span { font-size: 13px; }

.alt-ba-arrow {
  color: var(--ping);
  font-size: 16px;
}

.alt-ba-now {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-head);
}

.alt-ba-now span { font-size: 14px; font-weight: 600; }

.alt-ba-big {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-head);
  margin-bottom: 6px;
}

.alt-ba-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
}

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 900px) {
  .alt-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .alt-hero-content {
    max-width: 100%;
  }

  .alt-dashboard-card {
    max-width: 100%;
  }

  .alt-problem-body {
    padding: 28px 24px;
  }

  .alt-tl-danger {
    padding: 8px 10px;
    font-size: 12px;
  }

  .alt-vs {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .alt-vs-divider {
    transform: rotate(90deg);
  }

  .alt-step-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .alt-step-flip .alt-step-inner {
    direction: ltr;
  }

  .alt-step-flip .alt-step-inner .alt-step-visual {
    order: -1;
  }

  .alt-why-grid {
    grid-template-columns: 1fr;
  }

  .alt-beta-layout {
    grid-template-columns: 1fr;
  }

  .alt-beta-aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .alt-preapp-iframe {
    height: 560px;
  }

  .alt-send-demo {
    max-width: 100%;
  }

  .alt-preview-iframe {
    height: min(68vh, 620px);
  }
}

/* ── TEAM SHOWCASE ─────────────────────────── */

.alt-team-showcase {
  padding: 100px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.alt-ts-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.alt-ts-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.alt-ts-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
}

/* Agency header row */
.alt-ts-agency-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
}

.alt-ts-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.alt-tsa {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.alt-tsa:first-child { margin-left: 0; }
.alt-tsa-img, .alt-tsm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}
.alt-tsa-1 { background: #1B2A4A; z-index: 5; }
.alt-tsa-2 { background: #2D3748; z-index: 4; }
.alt-tsa-3 { background: #1A3228; z-index: 3; }
.alt-tsa-4 { background: #2C2C2C; z-index: 2; }
.alt-tsa-more { background: #888; z-index: 1; font-size: 10px; }

.alt-ts-agency-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 2px;
}

.alt-ts-agency-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Individual team members */
.alt-ts-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.alt-ts-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.alt-tsm-photo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.alt-tsm-1 { background: #1B2A4A; }
.alt-tsm-2 { background: #2D3748; }
.alt-tsm-3 { background: #1A3228; }
.alt-tsm-4 { background: #2C2C2C; }

.alt-tsm-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.alt-tsm-role {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

/* Stats bar */
.alt-ts-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 14px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.alt-ts-sep { color: var(--text-muted); opacity: 0.5; }

.alt-ts-caption {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -8px;
}

/* Feature bullets */
.alt-ts-features {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.alt-ts-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.alt-ts-feat-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alt-ts-feat p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 600px) {
  .alt-timeline-strip {
    padding: 24px 16px;
    flex-direction: column;
    gap: 16px;
  }

  .alt-tl-gap {
    flex-direction: column;
    width: 100%;
  }

  .alt-tl-line {
    width: 2px;
    height: 20px;
    flex: none;
  }

  .alt-vs {
    grid-template-columns: 1fr;
  }

  .alt-beta-aside {
    grid-template-columns: 1fr;
  }

  .alt-preapp-preview {
    padding: 10px;
  }

  .alt-preapp-iframe {
    height: 480px;
  }

  .hero-demo-jump {
    font-size: 14px;
    padding: 12px 16px;
  }

  .alt-send-demo {
    padding: 18px;
  }

  .alt-send-modal-overlay,
  .alt-preview-lightbox {
    padding: 12px;
  }

  .alt-send-modal {
    padding: 28px 20px 20px;
  }

  .alt-preview-head {
    padding: 10px 12px;
  }

  .alt-preview-iframe {
    height: 76vh;
  }

  .alt-ts-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alt-ts-card {
    padding: 20px;
  }

  .alt-ts-agency-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alt-send-btn,
  .alt-send-preview-btn,
  .alt-send-ping-toast,
  .alt-send-lead-row,
  .alt-send-modal-overlay,
  .alt-send-modal,
  .alt-preview-lightbox,
  .alt-preview-shell {
    transition: none;
    animation: none;
  }
}

/* ── SOCIAL PROOF ──────────────────────────── */

.alt-social-proof {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.alt-social-proof .section-headline {
  margin-bottom: 48px;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.sp-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.sp-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.sp-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.sp-quote::before {
  content: '"';
  font-size: 28px;
  color: var(--ping);
  line-height: 0;
  vertical-align: -10px;
  margin-right: 3px;
  font-style: normal;
  font-family: Georgia, serif;
}

.sp-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.sp-av-1 { background: #1B2A4A; }
.sp-av-2 { background: #1A3228; }
.sp-av-3 { background: #2D3748; }

.sp-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.sp-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

/* ── FAQ ───────────────────────────────────── */

.alt-faq {
  padding: 100px 0;
}

.alt-faq .section-headline {
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-bright);
}

.faq-q {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
}

.faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ── PRICING ───────────────────────────────── */

.alt-pricing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.alt-pricing-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 16px auto 56px;
  text-align: center;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

/* Individual card */
.pricing-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Featured beta card */
.pricing-card-featured {
  border-color: rgba(255, 77, 0, 0.4);
  background: rgba(255, 77, 0, 0.04);
  box-shadow: 0 0 0 1px rgba(255,77,0,0.18), 0 24px 60px rgba(0,0,0,0.3);
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ping);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Standard muted card */
.pricing-card-standard {
  opacity: 0.6;
}

/* Badge */
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ping);
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  width: fit-content;
}

.pricing-badge-muted {
  color: var(--text-muted);
  background: transparent;
  border-color: var(--border);
}

/* Price block */
.pricing-price-block {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 12px;
}

.pricing-currency {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 10px;
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 76px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 14px;
}

.pricing-currency-muted,
.pricing-amount-muted {
  color: var(--text-muted);
}

.pricing-period-muted {
  color: var(--text-muted);
}

/* Locked note */
.pricing-locked {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pricing-locked::before {
  content: '✓';
  font-weight: 800;
}

.pricing-locked-muted {
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-locked-muted::before {
  display: none;
}

/* Feature list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pf-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-check-muted {
  color: var(--text-muted);
}

.pricing-features-muted li {
  color: var(--text-muted);
}

/* Seat note */
.pricing-seat-note {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

.pricing-seat-note-muted {
  opacity: 0.7;
}

/* CTA button */
.btn-pricing {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

/* Spots line */
.pricing-spots {
  font-size: 12px;
  color: var(--ping);
  text-align: center;
  font-weight: 600;
}

.pricing-spots-muted {
  color: var(--text-muted);
  font-weight: 400;
}

/* Footer note */
.pricing-footer-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 48px auto 0;
  line-height: 1.7;
}

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

  .pricing-card-standard {
    opacity: 1;
  }

  .pricing-amount {
    font-size: 60px;
  }

  .pricing-card {
    padding: 32px 28px;
  }
}

/* ── CLOSING CTA ───────────────────────────── */

.alt-closing-cta {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.closing-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,77,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.closing-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.closing-cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
}

.btn-lg {
  font-size: 17px;
  padding: 16px 36px;
  margin-top: 8px;
}

.closing-cta-fine {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -4px;
}

@media (max-width: 600px) {
  .closing-cta-inner {
    padding: 40px 28px;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 14px 24px;
  }
}

/* ── PHASE 2 MAP TEASER ───────────────────── */

.alt-market-map-ps {
  padding: 96px 0 104px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(1200px 420px at 70% 5%, rgba(255, 77, 0, 0.08) 0%, transparent 65%),
    var(--base);
}

.alt-market-map-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 46px;
  align-items: center;
}

.alt-market-map-content .section-headline {
  margin-top: 12px;
  margin-bottom: 18px;
  max-width: 700px;
}

.alt-market-map-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

.alt-market-map-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
}

.alt-market-map-note strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.alt-market-map-bullets {
  list-style: none;
  margin: 22px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alt-market-map-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.alt-market-map-check {
  color: var(--green);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.alt-market-map-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alt-market-map-microcopy {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.alt-market-map-visual {
  display: flex;
  justify-content: center;
}

.alt-map-card {
  width: 100%;
  max-width: 520px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.alt-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 84% 4%, rgba(255, 77, 0, 0.14) 0%, transparent 62%);
  pointer-events: none;
}

.alt-map-head {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}

.alt-map-headline {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.alt-map-headsub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.alt-map-canvas {
  position: relative;
  z-index: 2;
  height: 260px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #0b1220;
  overflow: hidden;
}

.alt-map-live {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.alt-map-live.leaflet-container {
  background: #0b1220;
  font-family: var(--font-body);
}

.alt-map-live.map-dark .leaflet-tile-pane {
  filter: saturate(0.82) brightness(0.6) contrast(1.2) hue-rotate(168deg);
}

.alt-map-live.map-light .leaflet-tile-pane {
  filter: none;
}

.alt-map-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 196, 125, 0.11) 0%, transparent 46%),
    radial-gradient(circle at 82% 74%, rgba(255, 77, 0, 0.1) 0%, transparent 48%),
    linear-gradient(160deg, rgba(8, 12, 20, 0.16), rgba(6, 9, 16, 0.44));
  pointer-events: none;
}

.alt-map-live .leaflet-control-attribution {
  background: rgba(10, 14, 22, 0.72);
  color: #c4cddd;
  border-radius: 8px 0 0 0;
  padding: 2px 7px;
  font-size: 10px;
  line-height: 1.2;
}

.alt-map-live .leaflet-control-attribution a {
  color: #eef4ff;
}

.alt-map-live .leaflet-control-zoom {
  display: none;
}

.alt-map-marker-wrap {
  background: transparent !important;
  border: 0 !important;
}

.alt-map-marker {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.36);
}

.alt-map-marker-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  background: rgba(8, 12, 18, 0.76);
}

.alt-map-marker-win {
  background: var(--green);
}

.alt-map-marker-nurture {
  background: var(--warm);
}

.alt-map-marker-risk {
  background: var(--ping);
}

.alt-map-marker-ping {
  background: #ff9a66;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.36);
}

.alt-map-marker-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 145, 99, 0.72);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: mapLivePing 2.2s ease-out infinite;
}

.alt-map-legend {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.alt-map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-win { background: var(--green); }
.legend-nurture { background: var(--warm); }
.legend-risk { background: var(--ping); }
.legend-ping {
  background: #ffd4c4;
  box-shadow: 0 0 8px rgba(255, 77, 0, 0.7);
}

[data-theme="light"] .alt-map-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .alt-map-card::before {
  background: radial-gradient(ellipse at 84% 4%, rgba(255, 77, 0, 0.08) 0%, transparent 62%);
}

[data-theme="light"] .alt-map-headsub,
[data-theme="light"] .alt-map-legend-item {
  color: #555;
}

[data-theme="light"] .alt-map-canvas {
  background: #dfe7f2;
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .alt-map-grid {
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 196, 125, 0.06) 0%, transparent 44%),
    radial-gradient(circle at 82% 74%, rgba(255, 77, 0, 0.05) 0%, transparent 44%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.28));
}

[data-theme="light"] .alt-map-live .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.9);
  color: #3a4150;
}

[data-theme="light"] .alt-map-live .leaflet-control-attribution a {
  color: #1f3f7a;
}

[data-theme="light"] .alt-map-marker {
  border-color: rgba(0, 0, 0, 0.22);
}

[data-theme="light"] .alt-map-marker-dot {
  background: rgba(255, 255, 255, 0.86);
}

[data-theme="light"] .legend-ping {
  background: #ffb799;
  box-shadow: 0 0 6px rgba(255, 77, 0, 0.45);
}

@keyframes mapLivePing {
  0% { transform: translate(-50%, -50%) rotate(45deg) scale(0.7); opacity: 0.9; }
  75% { transform: translate(-50%, -50%) rotate(45deg) scale(1.55); opacity: 0; }
  100% { transform: translate(-50%, -50%) rotate(45deg) scale(1.55); opacity: 0; }
}

@media (max-width: 1024px) {
  .alt-market-map-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .alt-map-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .alt-market-map-ps {
    padding: 82px 0 94px;
  }

  .alt-market-map-body {
    font-size: 16px;
  }

  .alt-map-canvas {
    height: 230px;
  }
}

@media (max-width: 480px) {
  .alt-map-card {
    padding: 18px;
  }

  .alt-map-legend {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .alt-map-canvas {
    height: 210px;
  }

  .alt-market-map-cta {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alt-map-marker-ring {
    animation: none !important;
  }
}

/* ── MOBILE STICKY CTA ─────────────────────── */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 20px 20px;
  background: linear-gradient(to top, var(--base) 60%, transparent);
}

.mobile-sticky-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 14px;
}

@supports (content-visibility: auto) {
  .alt-pipeline-preview,
  .alt-problem,
  .alt-how,
  .alt-team-showcase,
  .alt-social-proof,
  .alt-faq,
  .alt-pricing,
  .alt-closing-cta,
  .alt-market-map-ps,
  .alt-beta {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alt-send-lead-row,
  .alt-send-ping-toast,
  .alt-send-modal-overlay,
  .alt-send-modal,
  .alt-preview-lightbox,
  .alt-preview-shell,
  .alt-ping-alert,
  .alt-pipeline-lane::after,
  .alt-map-marker-ring,
  .alt-send-demo,
  .alt-send-btn,
  .alt-send-preview-btn {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  /* Give the page enough bottom padding so the sticky bar doesn't cover content */
  body {
    padding-bottom: 80px;
  }
}
