/* ClientBeacon Labs — responsive static site */
:root {
  --blue: #1D4ED8;
  --blue-dark: #163EA9;
  --ink: #101828;
  --muted: #667085;
  --line: #E4E7EC;
  --surface: #FFFFFF;
  --soft: #F8FAFC;
  --dark: #0F172A;
  --dark-soft: #172033;
  --success: #157347;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 88px 0; }
.section-muted { background: #F5F8FC; }
.section-dark {
  background:
    radial-gradient(circle at top right, rgba(29,78,216,.24), transparent 34%),
    var(--dark);
  color: white;
}
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading h2, .problem h2, .sample-promo h2, .cta-band h2, .form-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section-heading p:last-child,
.problem p,
.sample-promo p,
.form-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}
.eyebrow-light { color: #AFC6FF; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(228,231,236,.9);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--blue);
  color: white;
  font-size: .72rem;
  box-shadow: 0 8px 24px rgba(29,78,216,.22);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .94rem;
  font-weight: 700;
}
.desktop-nav a {
  text-decoration: none;
  color: #344054;
}
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}
.mobile-nav { display: none; }

/* Hero */
.hero {
  padding-top: 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29,78,216,.10), transparent 30%),
    linear-gradient(#fff, #fbfdff);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 62px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 24px;
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: .98;
  letter-spacing: -0.055em;
}
.hero-lead {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #475467;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 26px rgba(29,78,216,.22);
}
.button-primary:hover { background: var(--blue-dark); }
.button-secondary {
  background: white;
  color: var(--ink);
  border-color: #D0D5DD;
}
.button-secondary:hover { border-color: #98A2B3; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: #667085;
  font-size: .9rem;
  font-weight: 700;
}
.trust-row span::before {
  content: "✓";
  color: var(--success);
  margin-right: 7px;
}

.pipeline-card {
  border: 1px solid #E1E7F0;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  padding: 32px;
}
.card-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.pipeline-card h2 {
  margin: 0 0 26px;
  font-size: 1.85rem;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.pipeline-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pipeline-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid #EEF1F5;
}
.pipeline-steps li:first-child { border-top: 0; padding-top: 0; }
.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #EEF4FF;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
}
.pipeline-steps strong, .pipeline-steps span { display: block; }
.pipeline-steps div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .92rem;
}

/* Problem */
.narrow-copy { max-width: 920px; }
.problem { border-block: 1px solid #EDF0F4; }
.problem h2 { max-width: 900px; }

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.service-card {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 25px;
  min-height: 230px;
}
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}
.service-number {
  display: inline-block;
  margin-bottom: 38px;
  color: #98A2B3;
  font-weight: 850;
  font-size: .8rem;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}

/* Pilot */
.pilot-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: start;
}
.section-dark h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.pilot-lead {
  max-width: 560px;
  margin: 0;
  color: #CBD5E1;
  font-size: 1.08rem;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 34px;
}
.price {
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}
.price-caption { color: #CBD5E1; font-weight: 700; }
.small-note { color: #CBD5E1; }
.pilot-list-panel {
  background: var(--dark-soft);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 30px;
}
.pilot-list-panel h3 { margin-top: 0; font-size: 1.32rem; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 13px 24px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.check-list li { color: #E2E8F0; }
.check-list li::before {
  content: "✓";
  color: #8FB0FF;
  margin-right: 9px;
  font-weight: 900;
}

/* Sample promo */
.sample-promo {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
}
.sample-promo p { max-width: 760px; }
.sample-promo-action { padding-bottom: 8px; }

/* Markets */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.market-pill {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 20px 22px;
  background: white;
  border: 1px solid #E1E6EF;
  border-radius: 18px;
  font-size: 1.04rem;
  font-weight: 800;
}
.market-pill::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 50%;
  background: #EEF4FF;
  color: var(--blue);
  font-size: .8rem;
}

/* CTA band */
.cta-band { background: white; }
.cta-grid {
  border-radius: 28px;
  padding: 42px;
  background: linear-gradient(135deg, #F4F7FF, #EEF4FF);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 38px;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

/* Form */
.form-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(29,78,216,.08), transparent 24%),
    white;
}
.form-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  align-items: start;
}
.what-next {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.what-next h3 { margin: 0 0 15px; }
.what-next ol {
  padding-left: 22px;
  color: var(--muted);
}
.what-next li { margin: 9px 0; }

.lead-form {
  background: white;
  border: 1px solid #DFE4EB;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: .92rem;
  font-weight: 800;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #D0D5DD;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,78,216,.10);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #667085;
  font-size: .84rem;
  margin: 8px 0 18px;
}
.consent input { margin-top: 4px; }
.form-button { width: 100%; border: 0; }
.form-note {
  margin: 14px 0 0;
  text-align: center;
  color: #667085;
  font-size: .8rem;
}
.form-note a { color: var(--blue); }

/* Footer */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.footer-brand { color: white; }
.site-footer p {
  margin: 13px 0 0;
  color: #94A3B8;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #CBD5E1;
  font-size: .9rem;
  text-align: right;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }

/* Privacy / Thank You */
.simple-page {
  min-height: 100vh;
  background: white;
}
.simple-main {
  padding: 80px 0 100px;
}
.simple-content {
  max-width: 820px;
}
.simple-content h1 {
  font-size: clamp(2.7rem, 7vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.simple-content h2 { margin-top: 36px; }
.simple-content p, .simple-content li { color: #475467; }
.simple-content .button { margin-top: 18px; }

/* Responsive */
@media (max-width: 980px) {
  .section { padding: 70px 0; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav {
    padding: 8px 24px 18px;
    background: white;
    border-top: 1px solid var(--line);
  }
  .mobile-nav.open {
    display: grid;
    gap: 4px;
  }
  .mobile-nav a {
    padding: 10px 0;
    text-decoration: none;
    font-weight: 750;
  }

  .hero-grid,
  .pilot-grid,
  .form-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 40px; }
  .pipeline-card { max-width: 680px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
  .sample-promo { grid-template-columns: 1fr; align-items: start; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { max-width: 520px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 58px 0; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.15rem); }
  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button { width: 100%; }
  .pipeline-card { padding: 24px; }
  .service-grid,
  .market-grid,
  .check-list {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 24px; }
  .pilot-list-panel, .lead-form { padding: 22px; }
  .cta-grid { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}
