/* BidosAI Enterprise SaaS Landing — reference-inspired dark hero + light sections */
:root {
  --landing-bg: #05070d;
  --landing-surface: #0c1220;
  --landing-surface-elevated: #111827;
  --landing-border: rgba(255, 255, 255, 0.1);
  --landing-primary: #3b82f6;
  --landing-primary-dark: #2563eb;
  --landing-accent: #6366f1;
  --landing-success: #34d399;
  --landing-text: #f8fafc;
  --landing-muted: #94a3b8;
  --landing-dim: #64748b;
  --landing-light-bg: #f8fafc;
  --landing-light-surface: #ffffff;
  --landing-light-text: #0f172a;
  --landing-light-muted: #475569;
  --landing-nav-h: 72px;
  --landing-dock-h: 48px;
}

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

html { scroll-behavior: smooth; }

html, body.landing-body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--landing-bg);
  color: var(--landing-text);
  -webkit-font-smoothing: antialiased;
}

body.landing-body { overflow-x: hidden; }

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.landing-shell {
  min-height: 100vh;
  background: var(--landing-bg);
  position: relative;
}

.landing-main--dock {
  padding-bottom: calc(var(--landing-dock-h) + 8px);
}

/* ——— Nav ——— */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 40px;
  height: var(--landing-nav-h);
  background: rgba(5, 7, 13, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--landing-text);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.landing-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.landing-nav-links a {
  color: var(--landing-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.landing-nav-links a:hover { color: var(--landing-text); }

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.landing-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-nav-btn--ghost {
  color: var(--landing-muted);
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
}

.landing-nav-btn--ghost:hover {
  color: var(--landing-text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.landing-nav-btn--try {
  color: #e0e7ff;
  border-color: rgba(129, 140, 248, 0.45);
  background: rgba(99, 102, 241, 0.12);
}

.landing-nav-btn--try:hover {
  color: #fff;
  border-color: rgba(129, 140, 248, 0.7);
  background: rgba(99, 102, 241, 0.22);
  transform: translateY(-1px);
}

.landing-nav-btn--primary {
  color: #fff;
  background: var(--landing-primary);
  border-color: var(--landing-primary);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.landing-nav-btn--primary:hover {
  transform: translateY(-1px);
  background: var(--landing-primary-dark);
  border-color: var(--landing-primary-dark);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.45);
}

.landing-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.landing-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #e2e8f0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.landing-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.landing-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-nav-mobile {
  display: none;
}

.landing-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-nav-mobile-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.landing-nav-mobile-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}

.landing-nav-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-nav-mobile-actions .landing-nav-btn--primary,
.landing-nav-mobile-actions .landing-nav-btn--try {
  grid-column: 1 / -1;
}

.landing-nav-mobile-actions .landing-nav-btn {
  width: 100%;
}

/* ——— Hero ——— */
.landing-hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
}

.landing-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(99, 102, 241, 0.12), transparent 50%);
}

.landing-hero-glow::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 10%;
  width: 70%;
  height: 80%;
  opacity: 0.25;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath d='M0 200 Q200 100 400 200 T800 200' fill='none' stroke='%233b82f6' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M0 250 Q200 150 400 250 T800 250' fill='none' stroke='%236366f1' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E") center/cover no-repeat;
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.landing-pill:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.08);
  color: #f8fafc;
}

.landing-pill-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--landing-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.landing-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #f8fafc;
}

.landing-accent {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-subhead {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 0 28px;
}

.landing-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.landing-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.landing-btn-hero--primary {
  background: var(--landing-primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
}

.landing-btn-hero--primary:hover {
  transform: translateY(-1px);
  background: var(--landing-primary-dark);
  box-shadow: 0 12px 36px rgba(59, 130, 246, 0.5);
}

.landing-btn-hero--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.18);
}

.landing-btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.landing-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.landing-trust-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
}

.landing-trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--landing-primary);
  font-weight: 700;
}

.landing-hero-copy--intel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.landing-headline--compact {
  font-size: clamp(19px, 2.4vw, 29px);
  line-height: 1.15;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
}

.landing-kpi-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.landing-kpi-card {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-kpi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.landing-kpi-icon {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

.landing-kpi-card--violet .landing-kpi-icon { color: #a78bfa; }
.landing-kpi-card--blue .landing-kpi-icon { color: #60a5fa; }
.landing-kpi-card--cyan .landing-kpi-icon { color: #22d3ee; }
.landing-kpi-card--indigo .landing-kpi-icon { color: #818cf8; }
.landing-kpi-card--amber .landing-kpi-icon { color: #fbbf24; }
.landing-kpi-card--pink .landing-kpi-icon { color: #f472b6; }

.landing-kpi-title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: #e2e8f0;
}

.landing-kpi-title strong {
  font-weight: 800;
  color: #f8fafc;
}

.landing-kpi-sub {
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.3;
  color: #64748b;
}

.landing-intel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.landing-intel-card {
  position: relative;
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-intel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.landing-intel-num {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.06em;
}

.landing-intel-glyph {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
}

.landing-intel-card--violet .landing-intel-glyph { color: #a78bfa; }
.landing-intel-card--blue .landing-intel-glyph { color: #60a5fa; }
.landing-intel-card--amber .landing-intel-glyph { color: #fbbf24; }
.landing-intel-card--emerald .landing-intel-glyph { color: #34d399; }
.landing-intel-card--orange .landing-intel-glyph { color: #fb923c; }
.landing-intel-card--indigo .landing-intel-glyph { color: #818cf8; }

.landing-intel-card h3 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.landing-intel-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: #94a3b8;
}

.landing-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding-top: 4px;
}

.landing-pipeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.landing-pipeline-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.landing-pipeline-step--violet .landing-pipeline-icon { color: #a78bfa; box-shadow: 0 0 16px rgba(167, 139, 250, 0.25); }
.landing-pipeline-step--blue .landing-pipeline-icon { color: #60a5fa; box-shadow: 0 0 16px rgba(96, 165, 250, 0.25); }
.landing-pipeline-step--amber .landing-pipeline-icon { color: #fbbf24; box-shadow: 0 0 16px rgba(251, 191, 36, 0.25); }
.landing-pipeline-step--emerald .landing-pipeline-icon { color: #34d399; box-shadow: 0 0 16px rgba(52, 211, 153, 0.25); }
.landing-pipeline-step--orange .landing-pipeline-icon { color: #fb923c; box-shadow: 0 0 16px rgba(251, 146, 60, 0.25); }
.landing-pipeline-step--indigo .landing-pipeline-icon { color: #818cf8; box-shadow: 0 0 16px rgba(129, 140, 248, 0.25); }

.landing-pipeline-step span:last-child {
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: capitalize;
}

.landing-pipeline-arrow {
  flex-shrink: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1;
  margin-top: -18px;
}

/* ——— Hero product stage ——— */
.landing-hero-visual {
  position: relative;
}

.landing-product-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-product-frame {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #080d18;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(59, 130, 246, 0.1);
  overflow: hidden;
}

.landing-product-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.landing-product-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.landing-product-dot:nth-child(1) { background: #f87171; }
.landing-product-dot:nth-child(2) { background: #fbbf24; }
.landing-product-dot:nth-child(3) { background: #34d399; }

.landing-product-url {
  margin-left: 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.landing-product-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0f1a;
}

.landing-product-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
  pointer-events: none;
}

.landing-product-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.landing-product-caption {
  padding: 0 4px;
  min-height: 72px;
}

.landing-product-caption-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-product-caption strong {
  display: block;
  font-size: 16px;
  color: #f8fafc;
  margin-bottom: 4px;
}

.landing-product-caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
}

.landing-product-dots {
  display: flex;
  gap: 8px;
  padding: 0 4px;
}

.landing-product-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.landing-product-dots button.is-active {
  width: 40px;
  background: var(--landing-primary);
}

.landing-product-dots button:hover {
  background: rgba(59, 130, 246, 0.6);
}

/* ——— Product showcase stack ——— */
.landing-showcase-stack {
  position: relative;
  background: var(--landing-light-bg);
  color: var(--landing-light-text);
}

.landing-showcase-panel {
  padding: 88px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-showcase-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-showcase-panel:nth-child(even) {
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.landing-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.landing-showcase-panel--flip .landing-showcase-grid {
  direction: rtl;
}

.landing-showcase-panel--flip .landing-showcase-grid > * {
  direction: ltr;
}

.landing-showcase-step {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--landing-primary);
}

.landing-showcase-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--landing-light-text);
}

.landing-showcase-copy p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--landing-light-muted);
  max-width: 480px;
}

.landing-showcase-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-showcase-points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}

.landing-showcase-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.landing-showcase-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: #fff;
  transform: translateX(24px);
  opacity: 0;
  transition: opacity 0.9s ease 0.15s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.landing-showcase-panel--flip .landing-showcase-visual {
  transform: translateX(-24px);
}

.landing-showcase-panel.is-visible .landing-showcase-visual {
  opacity: 1;
  transform: translateX(0);
}

.landing-showcase-visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.landing-showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), transparent 45%);
}

/* ——— Hero product mockup (legacy) ——— */

.hero-mockup {
  min-height: 520px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #080d18;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(59, 130, 246, 0.08);
  overflow: hidden;
}

.hero-mockup-shell {
  display: flex;
  flex-direction: column;
}

.hero-mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c1220;
}

.hero-mockup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hero-mockup-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.hero-mockup-app {
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
}

.hero-mockup-context {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup-ready {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #34d399;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.hero-mockup-layout {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 172px;
}

.hero-mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a101c;
}

.hero-mockup-nav-item {
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.25;
}

.hero-mockup-nav-item.is-active {
  color: #f8fafc;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.hero-mockup-main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0a0f1a;
}

.hero-mockup-metrics {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 8px;
}

.hero-mockup-metrics--five {
  grid-template-columns: 1.1fr repeat(4, 1fr);
}

.hero-mockup-metric {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-mockup-metric-label {
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e1;
}

.hero-mockup-metric-value {
  font-size: 22px;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-mockup-metric-value--ok { color: #6ee7b7; }

.hero-mockup-metric--primary {
  border-color: rgba(96, 165, 250, 0.4);
  background: linear-gradient(160deg, #151d33, #111827);
}

.hero-mockup-metric--primary .hero-mockup-metric-value {
  font-size: 28px;
  color: #dbeafe;
}

.hero-mockup-metric--risk .hero-mockup-metric-value { color: #fca5a5; }

.hero-mockup-metric--save {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(160deg, #0f1f1a, #111827);
}

.hero-mockup-matrix {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f1628;
  overflow: hidden;
}

.hero-mockup-matrix-head,
.hero-mockup-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) 0.5fr 0.55fr;
  gap: 6px;
  align-items: center;
  padding: 7px 10px;
}

.hero-mockup-matrix--wide .hero-mockup-matrix-head,
.hero-mockup-matrix--wide .hero-mockup-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) 0.45fr 0.5fr;
}

.hero-mockup-matrix-head {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  background: #131b2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mockup-row {
  font-size: 12px;
  color: #f1f5f9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.hero-mockup-req {
  font-weight: 500;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup-pill {
  justify-self: start;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.hero-mockup-pill--ok {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.hero-mockup-pill--warn {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.14);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.hero-mockup-response {
  font-size: 11px;
  font-weight: 500;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup-response--warn { color: #fcd34d; }

.hero-mockup-conf {
  font-size: 14px;
  font-weight: 700;
}

.hero-mockup-conf--high { color: #6ee7b7; }
.hero-mockup-conf--mid { color: #fcd34d; }

.hero-mockup-status {
  font-size: 12px;
  font-weight: 600;
}

.hero-mockup-status--ok { color: #6ee7b7; }
.hero-mockup-status--warn { color: #fcd34d; }

.hero-mockup-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-mockup-widget {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
}

.hero-mockup-widget-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 6px;
}

.hero-mockup-widget-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

.hero-mockup-widget-label {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
}

.hero-mockup-widget-value {
  font-size: 14px;
  font-weight: 700;
  color: #dbeafe;
}

.hero-mockup-widget-value small {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
}

.hero-mockup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hero-mockup-tags span {
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.hero-mockup-tags--compact span {
  font-size: 9px;
  padding: 2px 5px;
}

.hero-mockup-effort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
}

.hero-mockup-effort-grid div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-mockup-effort-grid span {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
}

.hero-mockup-effort-grid strong {
  font-size: 11px;
  font-weight: 700;
  color: #f1f5f9;
}

.hero-mockup-side {
  padding: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c1220;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-mockup-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
}

.hero-mockup-side-card {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-mockup-side-card--ready {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(160deg, #0f1f1a, #111827);
}

.hero-mockup-side-card--insight p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 500;
  color: #cbd5e1;
}

.hero-mockup-side-label {
  font-size: 11px;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-mockup-side-status {
  font-size: 15px;
  font-weight: 700;
  color: #6ee7b7;
}

.hero-mockup-side-status--ok { color: #93c5fd; }

.hero-mockup-download {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
}

.hero-mockup-chart-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: 8px;
}

.hero-mockup-chart-card,
.hero-mockup-readiness {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
}

.hero-mockup-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.hero-mockup-chart-title {
  font-size: 13px;
  font-weight: 600;
  color: #f8fafc;
}

.hero-mockup-chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #cbd5e1;
}

.hero-mockup-legend-line {
  display: inline-block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  margin-right: 3px;
  vertical-align: middle;
}

.hero-mockup-legend-line--primary { background: #60a5fa; }
.hero-mockup-legend-line--accent { background: #f87171; }

.hero-mockup-chart {
  width: 100%;
  height: 64px;
  display: block;
}

.hero-mockup-readiness {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hero-mockup-readiness-label {
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e1;
}

.hero-mockup-readiness-value {
  font-size: 18px;
  font-weight: 700;
  color: #6ee7b7;
}

.hero-mockup-readiness-meta {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
}

.hero-mockup-assistant {
  padding: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c1220;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-mockup-assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
}

.hero-mockup-assistant-badge {
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.hero-mockup-kb-card,
.hero-mockup-gap-card {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-mockup-kb-label,
.hero-mockup-gap-label {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-mockup-kb-text,
.hero-mockup-gap-text {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  color: #f1f5f9;
}

.hero-mockup-kb-match {
  font-size: 14px;
  font-weight: 700;
  color: #93c5fd;
}

.hero-mockup-gap-risk {
  font-size: 12px;
  font-weight: 600;
  color: #fca5a5;
}

.hero-mockup-insight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(59, 130, 246, 0.1);
}

.hero-mockup-insight p {
  margin: 0;
  flex: 1;
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.4;
}

.hero-mockup-insight-icon {
  color: #60a5fa;
  font-size: 14px;
}

.hero-mockup-insight-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.2);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: default;
}

/* ——— Logo cloud ——— */
.landing-logos {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.landing-logos-label {
  margin: 0 0 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.landing-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}

.landing-logos-row span {
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: -0.02em;
}

/* ——— Light sections ——— */
.landing-light-section {
  background: var(--landing-light-bg);
  padding: 72px 0;
  color: var(--landing-light-text);
}

.landing-light-section + .landing-light-section {
  border-top: 1px solid #e2e8f0;
}

.landing-section-head {
  margin-bottom: 32px;
}

.landing-section-head--center {
  text-align: center;
  margin-bottom: 48px;
}

.landing-section-head--center .landing-light-lead {
  margin-left: auto;
  margin-right: auto;
}

.landing-light-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--landing-light-text);
}

.landing-light-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--landing-light-muted);
  max-width: 640px;
}

/* Workflow */
.landing-workflow--horizontal {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.landing-workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--landing-light-text);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-workflow-step:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.landing-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--landing-primary);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Top 20 bid process features */
.landing-bid-features {
  padding-top: 80px;
  padding-bottom: 80px;
}

.landing-bid-phase {
  margin-bottom: 36px;
}

.landing-bid-phase:last-of-type {
  margin-bottom: 0;
}

.landing-bid-phase-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--landing-light-text);
}

.landing-bid-phase-title span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--landing-primary);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.landing-bid-phase[data-phase="assess"] .landing-bid-phase-title span {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.22);
}

.landing-bid-phase[data-phase="plan"] .landing-bid-phase-title span {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
}

.landing-bid-phase[data-phase="submit"] .landing-bid-phase-title span {
  color: #d97706;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.landing-bid-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.landing-bid-feature {
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-bid-feature:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.landing-bid-feature-num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.landing-bid-feature h4 {
  margin: 6px 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--landing-light-text);
}

.landing-bid-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--landing-light-muted);
}

.landing-bid-proof {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.landing-enterprise-stats--inline {
  margin: 0;
}

.landing-testimonials--inline {
  margin: 0;
}

/* Features split */
.landing-features-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.landing-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.landing-feature-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-feature-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1);
}

.landing-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 14px;
}

.landing-feature-icon--purple { background: rgba(99, 102, 241, 0.12); }
.landing-feature-icon--blue { background: rgba(59, 130, 246, 0.12); }
.landing-feature-icon--green { background: rgba(52, 211, 153, 0.12); }
.landing-feature-icon--amber { background: rgba(251, 191, 36, 0.12); }

.landing-feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--landing-light-text);
}

.landing-feature-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--landing-light-muted);
}

.landing-feature-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--landing-primary);
  text-decoration: none;
}

.landing-feature-card a:hover { text-decoration: underline; }

.landing-enterprise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 28px;
}

.landing-enterprise-stat {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.landing-enterprise-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--landing-primary);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.landing-enterprise-stat span {
  font-size: 13px;
  font-weight: 500;
  color: var(--landing-light-muted);
}

.landing-testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-testimonial {
  margin: 0;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 14px;
  color: var(--landing-light-muted);
  line-height: 1.55;
}

.landing-testimonial cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
  font-style: normal;
  font-weight: 600;
}

/* Differentiators */
.landing-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.landing-diff-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-diff-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.landing-diff-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.landing-diff-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--landing-light-muted);
}

.landing-diff-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--landing-primary);
  text-decoration: none;
}

/* FAQ */
.landing-faq-inner {
  max-width: 720px;
}

.landing-faq details {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  background: #fff;
}

.landing-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--landing-light-text);
}

.landing-faq p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--landing-light-muted);
  line-height: 1.55;
}

/* CTA band */
.landing-cta-band {
  padding: 48px 0 80px;
  background: var(--landing-light-bg);
}

.landing-cta-band-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.landing-cta-cube {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  position: relative;
}

.landing-cta-cube-face {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  transform: rotate(-8deg);
}

.landing-cta-copy {
  flex: 1;
}

.landing-cta-copy h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.landing-cta-copy p {
  margin: 0;
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.5;
}

.landing-cta-band .landing-btn-hero--primary {
  flex-shrink: 0;
}

/* Footer */
.landing-footer {
  background: #fff;
  padding: 32px 0 48px;
  border-top: 1px solid #e2e8f0;
}

.landing-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.landing-brand--footer .landing-brand-name {
  color: var(--landing-light-text);
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.landing-footer-links a {
  color: var(--landing-light-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.landing-footer-links a:hover { color: var(--landing-primary); }

.landing-footer-social {
  display: flex;
  gap: 12px;
}

.landing-footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  color: var(--landing-light-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.landing-footer-social a:hover {
  border-color: #93c5fd;
  color: var(--landing-primary);
}

.landing-footer--minimal {
  padding: 28px 0 36px;
  background: var(--landing-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer-minimal {
  text-align: center;
}

.landing-footer-minimal p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* ——— Fixed bottom dock (slim full-width) ——— */
.landing-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  pointer-events: none;
}

.landing-dock-bar {
  pointer-events: auto;
  height: var(--landing-dock-h);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 9, 16, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.landing-dock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  text-decoration: none;
  color: var(--landing-text);
  flex-shrink: 0;
}

.landing-logo-mark--dock {
  width: 26px;
  height: 26px;
  font-size: 9px;
  border-radius: 7px;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.35);
}

.landing-dock-brand-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-dock-group {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 3px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  max-width: 520px;
  margin: 0 auto;
}

.landing-dock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #cbd5e1;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.landing-dock-pill-icon {
  flex-shrink: 0;
  opacity: 0.75;
}

.landing-dock-pill:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.07);
}

.landing-dock-pill--primary {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.35);
}

.landing-dock-pill--primary .landing-dock-pill-icon {
  opacity: 1;
}

.landing-dock-pill--primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #4338ca 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.45);
}

.landing-dock-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.landing-dock-link {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-dock-link:hover {
  color: #cbd5e1;
}

.landing-dock-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.landing-dock-copy {
  font-size: 10px;
  font-weight: 500;
  color: #475569;
  letter-spacing: 0.03em;
}

/* ——— Sign-in modal ——— */
.landing-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
}

.landing-modal[hidden] { display: none; }

.landing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 13, 0.75);
  backdrop-filter: blur(8px);
}

.landing-modal-panel {
  position: relative;
  width: min(420px, 100%);
  z-index: 1;
  animation: landing-modal-in 0.25s ease both;
}

.landing-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #1e293b;
  color: #f8fafc;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.landing-login-card {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, #111827, #0c1220);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.landing-login-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.landing-login-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.landing-login-head h2 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
}

.landing-login-head p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.landing-field {
  display: block;
  margin-bottom: 14px;
}

.landing-field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.landing-field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #f8fafc;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-field input:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.landing-field-password { position: relative; }
.landing-field-password input { padding-right: 56px; }

.landing-pw-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
}

.landing-robot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 14px;
  color: #cbd5e1;
}

.landing-robot input {
  width: 16px;
  height: 16px;
  accent-color: var(--landing-primary);
}

.landing-login-error {
  color: #f87171;
  font-size: 13px;
  margin: 0 0 12px;
}

.landing-auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.landing-btn {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: 1px solid transparent;
  font-family: inherit;
}

.landing-btn-primary {
  background: var(--landing-primary);
  color: #fff;
  box-shadow: 0 6px 22px rgba(59, 130, 246, 0.38);
}

.landing-btn-secondary {
  background: rgba(59, 130, 246, 0.08);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.35);
}

.landing-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.landing-btn-primary:not(:disabled):hover {
  transform: translateY(-1px);
  background: var(--landing-primary-dark);
}

.landing-btn-secondary:not(:disabled):hover {
  transform: translateY(-1px);
  background: rgba(59, 130, 246, 0.16);
  color: #fff;
}

.landing-btn.is-loading .landing-btn-text { opacity: 0; }

.landing-btn-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: landing-spin 0.7s linear infinite;
}

.landing-btn-spinner--muted {
  border-color: rgba(148, 163, 184, 0.35);
  border-top-color: #93c5fd;
}

.landing-login-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.landing-login-footer a {
  color: #93c5fd;
  text-decoration: none;
}

.landing-login-footer a:hover { text-decoration: underline; }

/* ——— Motion ——— */
.landing-animate-in {
  animation: landing-fade-up 0.7s ease both;
}

@keyframes landing-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes landing-modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

@media (prefers-reduced-motion: reduce) {
  .landing-showcase-panel,
  .landing-showcase-visual,
  .landing-product-carousel img {
    transition: none;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .landing-showcase-panel {
    opacity: 1;
  }
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .landing-nav { padding: 0 20px; }
  .landing-container { padding: 0 24px; }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-hero-visual { order: -1; }

  .landing-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing-showcase-panel--flip .landing-showcase-grid {
    direction: ltr;
  }

  .landing-showcase-panel {
    padding: 64px 0;
  }

  .landing-showcase-visual {
    transform: translateY(20px);
  }

  .landing-showcase-panel--flip .landing-showcase-visual {
    transform: translateY(20px);
  }

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

  .landing-features-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-feature-cards {
    grid-template-columns: 1fr;
  }

  .landing-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-workflow--horizontal {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-mockup-layout {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .hero-mockup-metrics,
  .hero-mockup-metrics--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-mockup-metric--primary { grid-column: 1 / -1; }

  .hero-mockup-bottom-row {
    grid-template-columns: 1fr;
  }

  .hero-mockup-side {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-mockup-side-card {
    flex: 1 1 140px;
  }
}

@media (max-width: 700px) {
  .landing-dock-bar {
    padding: 0 14px;
    gap: 10px;
  }

  .landing-dock-brand {
    min-width: auto;
  }

  .landing-dock-brand-text {
    display: none;
  }

  .landing-dock-group {
    max-width: none;
    flex: 1;
    gap: 4px;
    padding: 2px;
  }

  .landing-dock-pill {
    flex: 1;
    padding: 0 8px;
    font-size: 11px;
    height: 28px;
  }

  .landing-dock-pill-icon {
    display: none;
  }

  .landing-dock-meta .landing-dock-link,
  .landing-dock-meta .landing-dock-divider {
    display: none;
  }

  .landing-dock-meta {
    min-width: auto;
  }

  .landing-headline,
  .landing-headline--compact { font-size: 22px; }

  .landing-kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-intel-grid {
    grid-template-columns: 1fr;
  }

  .landing-pipeline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .landing-pipeline-arrow {
    display: none;
  }

  .landing-hero-ctas {
    flex-direction: column;
  }

  .landing-btn-hero {
    width: 100%;
    justify-content: center;
  }

  .landing-kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-intel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-trust-list {
    flex-direction: column;
    gap: 10px;
  }

  .landing-workflow--horizontal {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-bid-features {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .landing-enterprise-stats--inline {
    grid-template-columns: 1fr;
  }

  .landing-diff-grid,
  .landing-enterprise-stats {
    grid-template-columns: 1fr;
  }

  .landing-cta-band-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .landing-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .landing-auth-actions {
    grid-template-columns: 1fr;
  }
}
