:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --ink: #0f172a;
  --text: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --brand: #4f46e5;
  --brand-dark: #4338ca;
  --brand-soft: #eef2ff;
  --success: #059669;
  --shadow: 0 24px 60px rgba(15, 23, 42, .10);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.85);
}
.nav-wrap { height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; width: fit-content; }
.brand-logo {
  width: 34px;
  height: 34px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 500; color: var(--text); }
.site-nav a:hover, .text-link:hover { color: var(--ink); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.text-link { font-size: 14px; font-weight: 500; color: var(--text); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--ink); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  transition: .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--brand); box-shadow: 0 10px 24px rgba(79,70,229,.22); }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary { background: var(--surface); border-color: var(--border); color: var(--ink); }
.button-secondary:hover { border-color: #cbd5e1; background: #fbfdff; }
.button-small { min-height: 40px; padding: 0 17px; font-size: 14px; }
.full { width: 100%; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(79,70,229,.10), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  padding: 36px 0 90px;
}
.hero-tagline { text-align: center; margin-bottom: 40px; }
.hero-tagline h1 { white-space: nowrap; font-size: clamp(24px, 4.2vw, 52px); }
@media (max-width: 760px) {
  .hero-tagline h1 { white-space: normal; font-size: clamp(28px, 7vw, 40px); }
}
.hero-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 48px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; color: var(--brand); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 99px; background: var(--brand); box-shadow: 0 0 0 6px var(--brand-soft); }
h1 { margin: 0; line-height: 1.05; letter-spacing: -.05em; }
.hero-lead { margin: 26px 0 0; color: var(--text); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: var(--muted); font-size: 13px; }

section { padding: 108px 0; }
.section-heading h2, .output-copy h2, .comparison-section h2, .vision-card h2, .final-cta h2 {
  margin: 9px 0 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.12; letter-spacing: -.04em;
}
.section-heading p:not(.kicker), .comparison-section .section-heading > p:last-child { margin: 20px auto 0; color: var(--text); line-height: 1.7; font-size: 17px; }
.centered { text-align: center; }
.narrow { max-width: 760px; }
.centered.narrow { margin-inline: auto; }

.pain-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.pain-grid article { padding: 30px 27px; min-height: 230px; border-right: 1px solid var(--border); }
.pain-grid article:last-child { border-right: 0; }
.metric-icon { width: 35px; height: 35px; border-radius: 9px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); font-size: 11px; font-weight: 700; }
.pain-grid h3 { margin: 22px 0 11px; font-size: 18px; }
.pain-grid p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.65; }
.pain-statement { margin-top: 30px; text-align: center; font-size: 19px; color: var(--text); }
.pain-statement strong { color: var(--ink); }

.video-shell { position: relative; display: block; width: 100%; max-width: 980px; aspect-ratio: 16/8.6; margin: 52px auto 0; border-radius: 20px; overflow: hidden; background: #020617; box-shadow: var(--shadow); }
.video-shell video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-grid .video-shell { max-width: none; margin: 0; }

.outputs-section { background: #fff; }
.split-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 85px; }
.doc-window { border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.doc-top { height: 54px; display: flex; justify-content: space-between; align-items: center; padding: 0 18px; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 600; }
.ready { padding: 6px 9px; border-radius: 99px; background: #ecfdf5; color: #047857; font-size: 9px; }
.doc-layout { display: grid; grid-template-columns: 150px 1fr; min-height: 360px; }
.doc-layout aside { padding: 25px 18px; display: flex; flex-direction: column; gap: 18px; border-right: 1px solid var(--border); background: #fbfdff; font-size: 10px; color: var(--muted); }
.doc-layout aside b { color: var(--brand); }
.doc-content { padding: 35px; }
.doc-content small { color: var(--brand); text-transform: uppercase; letter-spacing: .1em; font-size: 8px; font-weight: 700; }
.doc-content h4 { margin: 10px 0 15px; font-size: 23px; }
.doc-content p { color: var(--text); font-size: 12px; line-height: 1.7; }
.logic-box { margin-top: 27px; padding: 17px; border-radius: 10px; background: var(--brand-soft); border-left: 3px solid var(--brand); }
.logic-box b, .logic-box span { display: block; }
.logic-box b { color: var(--brand-dark); font-size: 10px; margin-bottom: 7px; }
.logic-box span { color: var(--text); font-size: 10px; line-height: 1.5; }
.feature-list { display: grid; gap: 4px; margin-top: 34px; }
.feature-list article { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.feature-list article > span { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); font-size: 10px; font-weight: 700; }
.feature-list h3 { margin: 0 0 6px; font-size: 16px; }
.feature-list p { margin: 0; color: var(--text); font-size: 14px; }

.comparison-section { background: linear-gradient(180deg, #f8fafc, #eef2ff); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.comparison-card { border-radius: var(--radius); padding: 32px; }
.comparison-card small { text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.comparison-card ul { margin: 25px 0 0; padding: 0; display: grid; gap: 16px; list-style: none; }
.comparison-card li { position: relative; padding-left: 28px; color: var(--text); font-size: 15px; }
.comparison-card li:before { position: absolute; left: 0; top: -1px; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; font-size: 10px; }
.comparison-card.muted { background: rgba(255,255,255,.65); border: 1px solid var(--border); }
.comparison-card.muted li:before { content: "×"; background: #f1f5f9; color: #64748b; }
.comparison-card.highlighted { background: #fff; border: 1px solid #c7d2fe; box-shadow: 0 18px 42px rgba(79,70,229,.10); }
.comparison-card.highlighted small { color: var(--brand); }
.comparison-card.highlighted li:before { content: "✓"; background: var(--brand-soft); color: var(--brand); }
.grounded-note { margin-top: 25px; padding: 18px 22px; border-radius: 12px; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; gap: 13px; color: var(--text); font-size: 14px; }
.grounded-note span { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px #ccfbf1; }

.vision-section { padding: 70px 0; }
.vision-card { padding: 55px; border-radius: 20px; background: var(--ink); color: #fff; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.vision-card .kicker { color: #a5b4fc; }
.vision-card p:last-child { margin: 0; color: #cbd5e1; font-size: 16px; line-height: 1.8; }

.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; align-items: stretch; }
.price-card { position: relative; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.price-card small { color: var(--brand); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.trial-card small { color: var(--success); }
.price-card.featured { border-color: #a5b4fc; background: var(--brand-soft); box-shadow: 0 20px 46px rgba(79,70,229,.10); transform: translateY(-7px); }

.final-cta { padding: 85px 0; background: var(--brand-soft); border-top: 1px solid #c7d2fe; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.final-cta h2 { max-width: 690px; }
.final-cta p:not(.kicker) { margin: 13px 0 0; color: var(--text); font-size: 18px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

footer { background: #fff; border-top: 1px solid var(--border); }
.footer-inner { min-height: 110px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 13px; text-align: center; }
.footer-inner > div { display: flex; gap: 20px; color: var(--text); font-size: 13px; }

@media (max-width: 960px) {
  .hero-grid, .split-layout, .vision-card { grid-template-columns: 1fr; }
  .hero { padding-top: 30px; }
  .hero-grid { gap: 55px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid article:nth-child(2) { border-right: 0; }
  .pain-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .split-layout { gap: 55px; }
  .output-copy { max-width: 700px; }
  .vision-card { gap: 25px; }
  .footer-inner { grid-template-columns: 1fr; padding: 35px 0; justify-items: center; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav, .nav-actions {
    display: none;
    position: absolute;
    left: 14px; right: 14px;
    background: white;
  }
  .site-nav.open { display: grid; top: 72px; padding: 18px; border: 1px solid var(--border); border-radius: 12px 12px 0 0; gap: 18px; }
  .nav-actions.open { display: flex; top: 222px; padding: 16px 18px 18px; border: 1px solid var(--border); border-top: 0; border-radius: 0 0 12px 12px; justify-content: space-between; }
  .hero { padding: 24px 0 64px; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .trust-line { display: grid; gap: 9px; }
  section { padding: 76px 0; }
  .pain-grid, .comparison-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pain-grid article, .pain-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--border); }
  .pain-grid article:last-child { border-bottom: 0; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc-layout aside { display: none; }
  .doc-content { padding: 28px; }
  .vision-card { padding: 36px 28px; }
  .price-card.featured { transform: none; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
}
.ready { background: #ecfdf5; color: #047857; }
.logic-box { background: #eef2ff; border-left-color: #4f46e5; }
.logic-box b { color: #4338ca; }
.comparison-card.highlighted { border-color: #c7d2fe; box-shadow: 0 18px 42px rgba(79,70,229,.10); }
.comparison-card.highlighted li:before { background: #eef2ff; color: #4338ca; }
.vision-card .kicker { color: #a5b4fc; }
.final-cta { background: #eef2ff; }

/* Security and FAQ */
.security-section{background:white;border-top:1px solid var(--border)}.security-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:48px}.security-grid article{padding:26px;border:1px solid var(--border);border-radius:15px;background:#fbfdff}.security-icon{width:34px;height:34px;border-radius:9px;display:grid;place-items:center;background:#020617;color:#a5b4fc;font-size:10px;font-weight:700}.security-grid h3{margin:18px 0 10px;font-size:17px}.security-grid p{margin:0;color:var(--text);font-size:13px;line-height:1.65}
.faq-section{background:var(--bg);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.faq-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:72px;align-items:start}.faq-intro h2{margin:9px 0 16px;font-size:clamp(34px,4vw,48px);line-height:1.12;letter-spacing:-.04em}.faq-intro p:last-child{color:var(--text);line-height:1.7}.faq-list{display:grid;gap:12px}.faq-list details{background:white;border:1px solid var(--border);border-radius:13px;padding:0 19px}.faq-list summary{position:relative;cursor:pointer;list-style:none;padding:20px 34px 20px 0;font-size:14px;font-weight:600}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary:after{content:"+";position:absolute;right:0;top:17px;width:24px;height:24px;border-radius:50%;display:grid;place-items:center;background:#f1f5f9;color:var(--text);font-size:16px}.faq-list details[open] summary:after{content:"−"}.faq-list details p{margin:0;padding:0 34px 20px 0;color:var(--text);font-size:13px;line-height:1.7}
@media(max-width:1080px){.security-grid{grid-template-columns:1fr 1fr}.faq-layout{grid-template-columns:1fr;gap:40px}}
@media(max-width:700px){.security-grid{grid-template-columns:1fr}}


/* Pain-to-solution bridge */
.pain-solution {
  margin-top: 46px;
  padding: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
  border: 1px solid #c7d2fe;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 55%, #f7fffb 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.pain-solution-copy h3 {
  margin: 9px 0 12px;
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: -.035em;
}

.pain-solution-copy p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.pain-solution-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.pain-solution-flow > div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
}

.pain-solution-flow span {
  width: 28px;
  height: 28px;
  margin-bottom: 15px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #020617;
  color: #a5b4fc;
  font-size: 9px;
  font-weight: 700;
}

.pain-solution-flow strong {
  display: block;
  font-size: 12px;
  line-height: 1.45;
}

.pain-solution-flow i {
  color: #94a3b8;
  font-style: normal;
}

@media (max-width: 960px) {
  .pain-solution {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pain-solution {
    padding: 24px;
  }

  .pain-solution-flow {
    grid-template-columns: 1fr;
  }

  .pain-solution-flow i {
    transform: rotate(90deg);
    justify-self: center;
  }
}


/* Stronger solution impact section */
.impact-solution {
  display: block;
  padding: 46px;
  background:
    radial-gradient(circle at 8% 10%, rgba(79,70,229,.10), transparent 26%),
    radial-gradient(circle at 92% 85%, rgba(110,231,183,.10), transparent 25%),
    #ffffff;
  border: 1px solid #c7d2fe;
}

.impact-header {
  max-width: 790px;
  margin: 0 auto 36px;
  text-align: center;
}

.impact-header h3 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.impact-header p:last-child {
  margin: 0 auto;
  max-width: 680px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.impact-steps {
  display: grid;
  grid-template-columns: 1fr 34px 1.15fr 34px 1fr;
  align-items: stretch;
  gap: 12px;
}

.impact-steps article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.impact-steps article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #020617;
  color: #a5b4fc;
  font-size: 10px;
  font-weight: 700;
}

.impact-steps h4 {
  margin: 24px 0 10px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.impact-steps p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
}

.impact-steps article:nth-of-type(2) {
  border-color: #c7d2fe;
  background: linear-gradient(180deg, #ffffff, #f8f9ff);
}

.impact-result {
  border-color: #a7f3d0 !important;
  background: linear-gradient(180deg, #ffffff, #f3fff9) !important;
}

.impact-arrow {
  align-self: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: #fff;
  color: #64748b;
  font-weight: 700;
}

.impact-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.impact-proof strong {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 13px;
}

.impact-proof strong:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
}

@media (max-width: 900px) {
  .impact-solution { padding: 34px; }
  .impact-steps { grid-template-columns: 1fr; }
  .impact-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 600px) {
  .impact-solution { padding: 26px 20px; }
  .impact-header h3 { font-size: 32px; }
}


/* Final copy simplification */
.impact-header h3 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 3.2vw, 40px);
}

.output-copy h2 {
  max-width: 560px;
}


/* Final concise differentiation section */
.concise-why {
  padding: 92px 0;
}

.concise-why .section-heading {
  max-width: 860px;
}

.concise-why .section-heading h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.concise-why .section-heading p:last-child {
  max-width: 720px;
}

.concise-grounded {
  max-width: 760px;
  margin: 34px auto 0;
  justify-content: center;
  text-align: center;
}


/* Stronger proof-oriented demo */
.proof-flow div {
  display: grid;
  gap: 5px;
}
.proof-flow div small {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.proof-flow div strong {
  font-size: 10px;
}

/* Repository integrations */
.integrations-section {
  background: #fff;
  border-top: 1px solid var(--border);
}
.integrations-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 72px;
}
.integrations-copy h2 {
  margin: 9px 0 18px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.integrations-copy > p:not(.kicker) {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.integration-note {
  font-size: 12px !important;
  color: var(--muted) !important;
}
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.integration-grid article {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
}
.integration-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #020617;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.gitlab-mark { color: #fdba74; }
.bitbucket-mark { color: #a5b4fc; }
.local-mark { color: #6ee7b7; }
.integration-grid strong,
.integration-grid span { display: block; }
.integration-grid strong { margin-bottom: 5px; font-size: 14px; }
.integration-grid span { color: var(--muted); font-size: 11px; }

/* Security callout */
.security-callout {
  margin-top: 24px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-radius: 13px;
  background: #020617;
  color: #fff;
}
.security-callout strong {
  font-size: 14px;
}
.security-callout a {
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .integrations-layout { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 620px) {
  .integration-grid { grid-template-columns: 1fr; }
  .security-callout { align-items: flex-start; flex-direction: column; }
}


/* Final subscription pricing */
.pricing-section .section-heading > p:last-child {
  max-width: 680px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 22px 0 14px;
}

.price-line strong {
  font-size: 34px;
  letter-spacing: -.045em;
}

.price-line span {
  color: var(--muted);
  font-size: 12px;
}

.price-highlights {
  display: grid;
  gap: 12px;
  min-height: 150px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.price-highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.price-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.enterprise-card {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(165,180,252,.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(110,231,183,.12), transparent 28%),
    #020617;
  border-color: #1e293b;
  box-shadow: 0 24px 55px rgba(15,23,42,.20);
}

.enterprise-card small {
  color: #a5b4fc;
}

.enterprise-card .price-highlights li {
  color: #cbd5e1;
}

.enterprise-card .price-highlights li:before {
  color: #6ee7b7;
}

.enterprise-price strong {
  color: #fff;
}

.enterprise-button {
  color: #020617;
  background: #fff;
  border-color: #fff;
}

.enterprise-button:hover {
  background: #e2e8f0;
}

.pricing-footnote {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 960px) {
  .price-highlights {
    min-height: auto;
  }
}


/* Repository connector strip */
.repo-strip {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.repo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.repo-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.repo-strip-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.repo-strip-copy strong {
  font-size: 13px;
  line-height: 1.4;
}

.repo-strip-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.repo-chip {
  min-width: 92px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fafc;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.github-chip { color: #0f172a; }
.gitlab-chip { color: #c2410c; background: #fff7ed; }
.bitbucket-chip { color: #1d4ed8; background: #eff6ff; }
.local-chip { color: #047857; background: #ecfdf5; }

.nav-actions {
  gap: 0;
}

@media (max-width: 760px) {
  .repo-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .repo-strip-logos {
    width: 100%;
    justify-content: flex-start;
  }

  .repo-chip {
    flex: 1 1 calc(50% - 10px);
  }
}


/* Keep connector row as proof, not a second process step */
.repo-strip {
  padding: 14px 0;
  background: #fbfdff;
}

.repo-strip-copy strong {
  font-size: 12px;
  font-weight: 600;
}

.repo-strip-label {
  color: #94a3b8;
}

.repo-strip .repo-chip {
  min-width: 84px;
  padding: 8px 11px;
  box-shadow: none;
}


/* Compact desktop layout for 13-inch laptops */
@media (min-width: 961px) and (max-width: 1440px) {
  .container {
    width: min(1080px, calc(100% - 44px));
  }

  .site-header .nav-wrap {
    height: 64px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-logo {
    width: 31px;
    height: 31px;
  }

  .site-nav {
    gap: 24px;
    font-size: 13px;
  }

  .button {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 9px;
  }

  .button-small {
    min-height: 38px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero {
    padding: 30px 0 70px;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-lead {
    max-width: 610px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 27px;
  }

  .trust-line {
    margin-top: 19px;
    gap: 12px;
    font-size: 11px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 10px;
  }

  .repo-strip {
    padding: 11px 0;
  }

  .repo-strip-copy strong {
    font-size: 11px;
  }

  .repo-chip {
    min-width: 76px;
    padding: 7px 9px;
    font-size: 10px;
  }

  section {
    padding: 78px 0;
  }

  .section-heading h2,
  .output-copy h2,
  .comparison-section h2,
  .vision-card h2,
  .final-cta h2 {
    font-size: clamp(30px, 3.2vw, 40px);
  }

  .section-heading p:not(.kicker),
  .comparison-section .section-heading > p:last-child {
    margin-top: 15px;
    font-size: 15px;
  }

  .pain-grid {
    margin-top: 38px;
  }

  .pain-grid article {
    min-height: 195px;
    padding: 23px 21px;
  }

  .pain-grid h3 {
    margin-top: 17px;
    font-size: 16px;
  }

  .pain-grid p {
    font-size: 12px;
  }

  .pain-statement {
    margin-top: 22px;
    font-size: 16px;
  }

  .impact-solution {
    margin-top: 34px;
    padding: 33px;
  }

  .impact-header {
    margin-bottom: 27px;
  }

  .impact-header h3 {
    font-size: clamp(26px, 3vw, 36px);
  }

  .impact-header p:last-child {
    font-size: 14px;
  }

  .impact-steps article {
    min-height: 180px;
    padding: 21px;
  }

  .impact-steps h4 {
    margin-top: 18px;
    font-size: 16px;
  }

  .impact-steps p {
    font-size: 12px;
  }

  .video-shell {
    max-width: 880px;
    margin-top: 38px;
  }

  .concise-why {
    padding: 72px 0;
  }

  .vision-section {
    padding: 54px 0;
  }

  .vision-card {
    padding: 40px;
    gap: 50px;
  }

  .vision-card p:last-child {
    font-size: 14px;
  }

  .pricing-grid {
    margin-top: 40px;
  }

  .price-card {
    padding: 25px;
  }

  .price-line strong {
    font-size: 29px;
  }

  .price-highlights {
    min-height: 132px;
    margin: 19px 0 24px;
    gap: 9px;
  }

  .price-highlights li {
    font-size: 11px;
  }

  .security-grid {
    margin-top: 38px;
  }

  .security-grid article {
    padding: 22px;
  }

  .security-grid h3 {
    font-size: 15px;
  }

  .security-grid p {
    font-size: 11px;
  }

  .faq-layout {
    gap: 54px;
  }

  .faq-list summary {
    padding: 17px 32px 17px 0;
    font-size: 13px;
  }

  .faq-list details p {
    font-size: 12px;
  }

  .final-cta {
    padding: 66px 0;
  }

  .footer-inner {
    min-height: 92px;
  }
}


/* Refined 13-inch hero alignment */
@media (min-width: 961px) and (max-width: 1440px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .eyebrow {
    margin-top: 0;
    margin-bottom: 14px;
  }
}

/* Extra tightening for typical 13-inch viewport widths */
@media (min-width: 1100px) and (max-width: 1366px) {
  .container {
    width: min(1040px, calc(100% - 36px));
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-lead {
    font-size: 15px;
  }
}


/* Narrow laptop correction only — preserves larger MacBook layouts */
@media (min-width: 1100px) and (max-width: 1366px) {
  .container {
    width: min(1060px, calc(100% - 32px));
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.55;
  }
}


/* Revised hero hierarchy */
.hero-subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 650;
}

.hero-lead {
  margin-top: 18px;
}

@media (min-width: 961px) and (max-width: 1440px) {
  .hero-subtitle {
    max-width: 620px;
    font-size: clamp(19px, 2vw, 25px);
    margin-top: 14px;
  }

  .hero-lead {
    margin-top: 15px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .hero-subtitle {
    font-size: 21px;
  }
}

/* Lead capture modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .55);
}

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

.modal-dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover { background: var(--border); }

.modal-plan {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.modal-dialog h3 { margin: 0 0 8px; font-size: 21px; }

.modal-subtext {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

#lead-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

#lead-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: inherit;
  color: var(--ink);
}

#lead-form input:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

#lead-form button[type="submit"] { margin-top: 8px; }

.modal-error {
  margin: 14px 0 0;
  color: #be123c;
  font-size: 13px;
}

.modal-thankyou h3 { margin: 0 0 10px; font-size: 21px; }
.modal-thankyou p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.65; }
