/* LeadSixty — clean, professional B2B */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F8FAFC;
  --bg-card:      #FFFFFF;
  --border:       #E5E7EB;
  --border-soft:  #F1F5F9;
  --ink:          #0F172A;     /* slate-900 */
  --ink-2:        #1E293B;     /* slate-800 */
  --muted:        #475569;     /* slate-600 */
  --muted-2:      #64748B;     /* slate-500 */
  --faint:        #94A3B8;     /* slate-400 */
  --accent:       #2E6BFF;     /* teal-700 — calmer, more professional than blue */
  --accent-2:     #1B54E8;     /* teal-600 */
  --accent-soft:  #EEF3FF;     /* teal-50 */
  --accent-ink:   #1E40AF;     /* teal-900 */
  --green:        #16A34A;
  --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.02);
  --shadow-md:    0 4px 14px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg:    0 18px 40px -16px rgba(15, 23, 42, 0.18), 0 4px 10px -2px rgba(15, 23, 42, 0.06);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

img, svg { display: block; max-width: 100%; }

/* ─────────────── Layout primitives ─────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 88px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* eyebrow removed by design audit — section heads carry themselves */
.eyebrow { display: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.022em; line-height: 1.1; }
h1 { font-size: clamp(36px, 5.4vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.028em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: -0.018em; }

p { margin: 0; color: var(--muted); }
p.lead { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 640px; }

/* ─────────────── Header / Nav ─────────────── */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.nav-links {
  display: none;
  gap: 32px;
}
@media (min-width: 880px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 180ms;
}
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms, box-shadow 220ms, background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-lg { padding: 14px 22px; font-size: 15.5px; border-radius: 12px; }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 220ms;
  font-weight: 500;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ─────────────── Hero ─────────────── */
.hero {
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .hero { padding: 56px 0 40px; } }

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(15, 118, 110, 0.18);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { margin: 0 auto 36px; }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* trust strip below hero */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: 1fr; gap: 16px; padding: 24px 16px; }
  .trust-strip .trust-cell { border-right: none !important; padding: 8px 0; }
}
.trust-cell {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-soft);
}
.trust-cell:last-child { border-right: none; }
.trust-cell .v {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-cell .v .accent { color: var(--accent); }
.trust-cell .k {
  font-size: 13.5px;
  color: var(--muted);
}

/* ─────────────── Problem section ─────────────── */
.problem {
  background: var(--bg-soft);
}
/* Section heads — left-aligned, asymmetric width. No more centered template. */
.section-head {
  max-width: 820px;
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.section-head h2 { letter-spacing: -0.025em; }
.section-head p { margin: 0; max-width: 640px; }
.section-head .num {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  font-weight: 500;
  display: block;
  margin-bottom: -4px;
}
.section-head .num .slash { color: var(--accent); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms, box-shadow 220ms;
}
.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.problem-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-card h3 { margin-bottom: 10px; font-size: 19px; }
.problem-card p { font-size: 15px; line-height: 1.6; }

/* ─────────────── Solution section ─────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 980px) { .solution-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 200ms;
}
.solution-card:hover { background: var(--bg-soft); }
.solution-card:nth-child(3n) { border-right: none; }
.solution-card:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 980px) {
  .solution-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .solution-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .solution-card:nth-child(2n) { border-right: none; }
  .solution-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .solution-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .solution-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .solution-card:last-child { border-bottom: none !important; }
}
.solution-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.solution-card h3 { margin-bottom: 8px; font-size: 17px; }
.solution-card p { font-size: 14.5px; line-height: 1.55; }

/* ─────────────── How it works ─────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
}
.step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 19px; }
.step p { font-size: 15px; line-height: 1.6; }

/* ─────────────── Industries ─────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .industry-grid { grid-template-columns: 1fr; } }

.industry {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 200ms, box-shadow 220ms, transform 220ms;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  position: relative;
}
.industry:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.industry.disabled {
  opacity: 0.7;
  pointer-events: none;
}
.industry .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.industry h3 { font-size: 18px; }
.industry .industry-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.industry .industry-status .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
}
.industry.disabled .industry-status { color: var(--faint); }
.industry.disabled .industry-status .dot { background: var(--faint); }

/* ─────────────── Case Study ─────────────── */
.case {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .case { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
}
.case .case-eyebrow {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.case h2 { color: #fff; margin-bottom: 16px; }
.case p { color: rgba(255, 255, 255, 0.78); font-size: 16px; margin-bottom: 24px; }
.case .quote {
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 16px;
  border-left: 3px solid var(--accent-2);
  margin-bottom: 8px;
}
.case .quote-attrib {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case-stats .stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 20px;
}
.case-stats .stat .v {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.case-stats .stat .v .u { color: var(--accent-2); }
.case-stats .stat .k {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ─────────────── FAQ ─────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary .toggle {
  width: 24px; height: 24px;
  flex: none;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 220ms, background 220ms, color 220ms;
}
.faq details[open] summary .toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq details .answer {
  padding-top: 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 680px;
}

/* ─────────────── Final CTA ─────────────── */
.final-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}
@media (max-width: 720px) { .final-cta { padding: 40px 24px; } }
.final-cta h2 { color: #fff; margin-bottom: 14px; position: relative; }
.final-cta p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 17px;
  position: relative;
}
.final-cta .btn {
  position: relative;
}
.final-cta .btn-primary {
  background: #fff;
  color: var(--accent-ink);
}
.final-cta .btn-primary:hover { background: var(--ink); color: #fff; }
.final-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.final-cta .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* ─────────────── Footer ─────────────── */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 5px 0; }
footer ul li a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 180ms;
}
footer ul li a:hover { color: var(--accent); }
footer .footer-tag {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 360px;
  margin-top: 12px;
  line-height: 1.55;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--muted-2);
}

/* ─────────────── Problem v2: numbered editorial rows ─────────────── */
.problem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.problem-row {
  display: grid;
  grid-template-columns: 60px minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(20px, 4vw, 56px);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (max-width: 720px) {
  .problem-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
}
.problem-row .pno {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0;
  padding-top: 5px;
}
.problem-row .ptitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1.18;
}
.problem-row .pbody {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─────────────── What We Do v2: no icon tiles ─────────────── */
.solution-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 980px) { .solution-grid-v2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .solution-grid-v2 { grid-template-columns: 1fr; } }
.sol-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 200ms;
}
.sol-card:hover { background: var(--bg-soft); }
.sol-card:nth-child(3n) { border-right: none; }
.sol-card:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 980px) {
  .sol-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .sol-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .sol-card:nth-child(2n) { border-right: none; }
  .sol-card:nth-last-child(-n+2) { border-bottom: none; }
  .sol-card:nth-last-child(3) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .sol-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .sol-card:last-child { border-bottom: none !important; }
}
.sol-card .sno {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.sol-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.022em;
  line-height: 1.2;
}
.sol-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─────────────── Hero v2: two-column with visual ─────────────── */
.hero-v2 .hero-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  text-align: left;
}
@media (max-width: 980px) {
  .hero-v2 .hero-grid-v2 { grid-template-columns: 1fr; text-align: center; }
  .hero-v2 .hero-visual { order: 2; margin-top: 8px; }
}
.hero-v2 .hero-text { max-width: 600px; }
.hero-v2 h1 { font-size: clamp(36px, 4.8vw, 60px); margin-bottom: 22px; }
.hero-v2 p.lead { margin: 0 0 32px; max-width: 540px; }
.hero-v2 .hero-ctas { justify-content: flex-start; margin-bottom: 0; }
@media (max-width: 980px) {
  .hero-v2 .hero-ctas { justify-content: center; }
  .hero-v2 .hero-text { margin: 0 auto; }
  .hero-v2 p.lead { margin-left: auto; margin-right: auto; }
}
.hero-v2 .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-v2 .trio-wrap {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
@media (max-width: 720px) { .hero-v2 .trio-wrap { margin-top: 40px; } }
.trio-wrap .trio {
  margin: 0 auto;
  max-width: 880px;
}

/* ─────────────── See it in action — 2x2 demo grid ─────────────── */
.demos-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) { .demos-2x2 { grid-template-columns: 1fr; } }
.demo-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, box-shadow 220ms;
}
.demo-block:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.demo-block .demo-eyebrow {
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}
.demo-block h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -0.022em; }
.demo-block p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
.demo-block .visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background:
    radial-gradient(circle at 20% 0%, rgba(15,118,110,0.04), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(15,118,110,0.03), transparent 40%),
    var(--bg-soft);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

/* ─────────────── Results v2 — visual-led ─────────────── */
.results-v2 .results-main {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .results-v2 .results-main { grid-template-columns: 1fr; } }
.results-v2 .results-main .visual {
  background:
    radial-gradient(circle at 20% 0%, rgba(15,118,110,0.04), transparent 40%),
    var(--bg-soft);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border);
}
.results-v2 .results-main .copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.022em;
  margin-bottom: 14px;
}
.results-v2 .results-main .copy p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.results-v2 .results-main .big-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 14px;
  color: var(--accent-ink);
  font-weight: 600;
}
.results-v2 .results-main .big-stat .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.018em;
}
.results-v2 .results-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 880px) { .results-v2 .results-secondary { grid-template-columns: 1fr; } }
.results-v2 .results-secondary .demo-block .visual {
  min-height: 240px;
}

/* ─────────────── Reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/* ─────── LeadSixty logo lockup ─────── */
.brand-lockup { height: 34px; width: auto; display: block; }
.brand-lockup-footer { height: 38px; }
.brand-suffix { color: var(--muted-2); font-weight: 500; font-size: 15px; letter-spacing: 0; }
@media (max-width: 560px) { .brand-lockup { height: 28px; } .brand-suffix { display: none; } }


/* ─────── Careers · job listings ─────── */
.jobs { display: flex; flex-direction: column; gap: 22px; max-width: 860px; margin: 0 auto; }
.job {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 36px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, border-color 200ms;
}
.job:hover { box-shadow: var(--shadow-md); border-color: #D9DEE7; }
.job-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.job-head h3 { font-size: 22px; }
.job-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.job-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid rgba(46, 107, 255, 0.18);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.job-summary { margin: 16px 0 4px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.job h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 22px 0 12px;
}
.job ul { margin: 0; padding-left: 0; list-style: none; }
.job li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.job li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}
.job .btn { margin-top: 26px; }
@media (max-width: 560px) {
  .job { padding: 26px 22px; }
  .job-head h3 { font-size: 20px; }
}


/* ─────── Hero: centered stack + motion showcase ─────── */
.hero-v2 .hero-stack { text-align: center; }
.hero-v2 .hero-stack .hero-text { max-width: 760px; margin: 0 auto; }
.hero-v2 .hero-stack .hero-ctas { justify-content: center; margin-bottom: 0; }
.hero-v2 .hero-stack p.lead { margin: 0 auto 32px; max-width: 620px; }
.hero-eyebrow {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-motion {
  max-width: 1000px;
  margin: 52px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #FBFBF9;
}
.hero-motion iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) {
  .hero-motion { margin-top: 34px; border-radius: 14px; }
}


/* ─────── Hero visual: motion on desktop, phone on mobile ─────── */
.hero-phone-mobile { display: none; }
@media (max-width: 640px) {
  .hero-motion { display: none; }
  .hero-phone-mobile { display: flex; justify-content: center; margin-top: 30px; }
}

/* ─────────────── Long-form / GEO additions (2026-09) ─────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.02em; margin: 56px 0 14px; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 32px 0 10px; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose .callout { background: var(--accent-soft); border-left: 3px solid var(--accent); padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 24px 0; }
.prose .callout p { margin: 0; color: var(--ink-2); }
.updated { font-size: 13px; color: var(--faint); margin-top: 10px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0 8px; border: 1px solid var(--border); border-radius: 14px; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; background: var(--bg-card); }
table.cmp th, table.cmp td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border-soft); vertical-align: top; line-height: 1.5; }
table.cmp th { background: var(--bg-soft); font-weight: 600; color: var(--ink); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.04em; }
table.cmp tr:last-child td { border-bottom: 0; }
table.cmp td:first-child { font-weight: 600; color: var(--ink); }
table.cmp td.hl { background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.table-note { font-size: 13px; color: var(--faint); margin: 8px 0 0; }

.convo { max-width: 520px; margin: 28px auto; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 20px; padding: 22px; }
.convo .msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 15px; line-height: 1.5; margin-bottom: 10px; }
.convo .them { background: #fff; border: 1px solid var(--border); color: var(--ink-2); border-bottom-left-radius: 6px; }
.convo .us { background: var(--accent); color: #fff; margin-left: auto; border-bottom-right-radius: 6px; }
.convo .sys { font-size: 12.5px; color: var(--faint); text-align: center; margin: 12px 0 2px; }
.convo .stamp { font-size: 12px; color: var(--faint); text-align: center; margin-bottom: 14px; }

.lead-form { display: grid; gap: 12px; max-width: 520px; margin: 28px auto 0; text-align: left; }
.lead-form label { font-size: 13.5px; font-weight: 600; color: var(--ink); display: grid; gap: 6px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--ink); }
.lead-form textarea { min-height: 88px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .lead-form .row { grid-template-columns: 1fr; } }
.lead-form .consent { font-size: 12.5px; color: var(--muted-2); font-weight: 400; display: flex; gap: 8px; align-items: flex-start; }
.lead-form .consent input { width: auto; margin-top: 3px; }
.lead-form .form-ok { background: var(--accent-soft); color: var(--accent-ink); padding: 16px 18px; border-radius: 12px; font-weight: 600; }
.final-cta .lead-form label, .final-cta .lead-form .consent { color: #fff; }
.final-cta .lead-form .form-ok { background: rgba(255,255,255,0.15); color: #fff; }
.or { text-align: center; font-size: 13px; color: var(--faint); margin: 18px 0 6px; }
.final-cta .or { color: rgba(255,255,255,0.7); }

.sources { max-width: 760px; margin: 0 auto; font-size: 13.5px; color: var(--muted-2); line-height: 1.6; }
.sources ol { padding-left: 20px; }
.sources a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

.crumbs { font-size: 13px; color: var(--muted-2); margin-bottom: 18px; }
.crumbs a { color: var(--muted-2); }
.crumbs span { margin: 0 6px; color: var(--faint); }

/* ─────────────── On-site assistant ─────────────── */
.ls-chat { position: fixed; right: 20px; bottom: 20px; z-index: 9000; font-family: inherit; }
.ls-chat-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; border: 0; border-radius: 999px; padding: 12px 18px; font: inherit; font-weight: 600; font-size: 15px; box-shadow: var(--shadow-lg); cursor: pointer; }
.ls-chat-panel { width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 40px)); background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; }
.ls-chat-head { padding: 14px 16px; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto; row-gap: 2px; }
.ls-chat-head strong { font-size: 15px; color: var(--ink); }
.ls-chat-head span { grid-column: 1; font-size: 12.5px; color: var(--muted-2); }
.ls-chat-close { grid-column: 2; grid-row: 1 / span 2; background: none; border: 0; font-size: 24px; line-height: 1; color: var(--muted); cursor: pointer; }
.ls-chat-log { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; background: var(--bg-soft); }
.ls-msg { max-width: 86%; padding: 10px 13px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }
.ls-bot { background: #fff; border: 1px solid var(--border); color: var(--ink-2); border-bottom-left-radius: 5px; }
.ls-user { background: var(--accent); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.ls-msg a { color: inherit; text-decoration: underline; }
.ls-chat-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--border); background: #fff; }
.ls-chat-form input { flex: 1; font: inherit; font-size: 14.5px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; }
.ls-chat-form button { background: var(--accent); color: #fff; border: 0; border-radius: 10px; padding: 0 14px; font: inherit; font-weight: 600; cursor: pointer; }

/* ─────────────── Mobile pass (2026-09-07) ─────────────── */
/* Section links become a scrollable strip under the brand row instead of disappearing */
@media (max-width: 879px) {
  .nav-row { flex-wrap: wrap; height: auto; padding: 10px 0 0; row-gap: 4px; }
  .nav-row .btn { order: 2; }
  .nav-links { display: flex; order: 3; width: 100%; overflow-x: auto; gap: 18px; padding: 6px 0 10px; white-space: nowrap; scrollbar-width: none; -ms-overflow-style: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 13.5px; flex: none; }
}
/* Tell the reader a table scrolls */
@media (max-width: 640px) {
  .table-wrap { position: relative; }
  .table-wrap::before { content: "Swipe sideways to see the full table"; display: block; font-size: 12px; color: var(--faint); padding: 8px 14px 0; }
}
/* Small phones: keep brand and button on one row */
@media (max-width: 420px) {
  .nav-row .btn { padding: 9px 12px; font-size: 13px; }
  .brand-lockup { height: 24px; }
}
/* Grid children must be allowed to shrink below their content width on small phones */
.demos-2x2 > *, .industry-grid > *, .solution-grid > *, .solution-grid-v2 > *, .problem-grid > *, .steps > * { min-width: 0; }
.demo-block .visual { max-width: 100%; overflow: hidden; }
@media (max-width: 400px) { .demo-block { padding: 20px 16px 24px; } }
