:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --line: #d8dde5;
  --line-strong: #c4cbd6;
  --muted: #667085;
  --text: #111827;
  --accent: #2563eb;
  --accent-dark: #1849c6;
  --success: #168a5b;
  --shadow: 0 24px 70px rgba(31, 41, 55, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
[hidden] { display: none !important; }
::selection { background: #cfe0ff; color: #0f2d68; }
.shell { width: min(1340px, calc(100% - 96px)); margin-inline: auto; }
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: #111827; font-size: 14px; letter-spacing: .14em; font-weight: 750;
}
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid #7ea5f5; border-radius: 9px;
  background: #edf4ff; color: var(--accent); font-size: 12px; letter-spacing: 0;
}
.nav nav { display: flex; gap: 38px; color: #4b5565; font-size: 14px; }
.nav nav a { position: relative; }
.nav nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 0; height: 2px; background: var(--accent); transition: width .25s;
}
.nav nav a:hover::after { width: 100%; }
.button {
  min-height: 50px; padding: 0 24px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  font-weight: 700; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(37,99,235,.22); }
.button-primary:hover { background: var(--accent-dark); box-shadow: 0 13px 30px rgba(37,99,235,.3); }
.button-outline { min-height: 44px; border-color: #9db9f3; color: var(--accent-dark); background: rgba(255,255,255,.72); }
.button-outline:hover { border-color: var(--accent); background: #fff; }
.hero {
  min-height: 790px; position: relative;
  display: grid; grid-template-columns: 46% 54%; align-items: center;
  border-inline: 1px solid #e1e5eb;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(#dfe4ea 1px, transparent 1px), linear-gradient(90deg, #dfe4ea 1px, transparent 1px);
  background-size: 84px 84px; opacity: .55;
  mask-image: linear-gradient(90deg, transparent 28%, #000);
}
.hero-copy { padding: 40px 38px 120px 0; position: relative; z-index: 2; }
.eyebrow {
  color: var(--accent); font-family: "Courier New", monospace;
  letter-spacing: .13em; font-size: 12px; font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(50px, 4.5vw, 70px); line-height: 1;
  letter-spacing: -.05em; margin: 32px 0; max-width: 720px;
}
.lede { color: var(--muted); font-size: 20px; line-height: 1.55; max-width: 590px; }
.hero-actions { display: flex; align-items: center; gap: 44px; margin-top: 38px; }
.text-link {
  background: none; border: 0; border-bottom: 1px solid #9bb2db;
  color: #344054; padding: 10px 0; cursor: pointer;
}
.console-wrap { height: 600px; display: grid; place-items: center; position: relative; z-index: 2; }
.blueprint {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 65% 48%, rgba(37,99,235,.13), transparent 50%);
}
.console {
  width: 94%; padding: 28px; position: relative;
  border: 1px solid #cdd4de; border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg);
  backdrop-filter: blur(10px);
}
.console-head {
  display: flex; justify-content: space-between; margin-bottom: 22px;
  color: #475467; font: 12px "Courier New", monospace; letter-spacing: .1em;
}
.live { color: var(--success); }
.live i {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #20b979; box-shadow: 0 0 0 4px rgba(32,185,121,.13);
}
.dashboard-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.dashboard-kpis div {
  padding: 16px; border: 1px solid #dce1e8; border-radius: 12px;
  display: flex; flex-direction: column; gap: 7px;
  background: #f8fafc;
}
.dashboard-kpis small, .dash-label {
  color: #7b8493; font: 10px "Courier New", monospace; letter-spacing: .08em;
}
.dashboard-kpis strong { color: var(--accent); font: 28px "Courier New", monospace; }
.dashboard-kpis span { color: #667085; font-size: 10px; }
.dashboard-body { display: grid; grid-template-columns: 1.7fr 1fr; gap: 12px; margin-top: 12px; }
.lead-list, .channels {
  border: 1px solid #dce1e8; border-radius: 12px; padding: 16px; background: #fff;
}
.lead-row {
  display: grid; grid-template-columns: 34px 1fr auto;
  align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid #e8ebf0;
}
.lead-row:last-child { border-bottom: 0; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: #e9f0ff; color: var(--accent); font-weight: 700;
}
.lead-row > span:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.lead-row b { font-size: 12px; }
.lead-row small { color: #7b8493; font-size: 10px; }
.lead-row em { color: var(--accent); font: 9px "Courier New", monospace; font-style: normal; }
.channels > div {
  display: flex; align-items: center; gap: 9px; padding: 13px 0;
  border-bottom: 1px solid #e8ebf0; color: #344054; font-size: 12px;
}
.channels div i { width: 7px; height: 7px; background: #20b979; border-radius: 50%; }
.channels div b { margin-left: auto; color: var(--accent); }
.crm-status { display: block; margin-top: 16px; color: var(--success); font: 9px "Courier New", monospace; }
.proof-strip {
  position: absolute; z-index: 3; bottom: 28px; left: 28px; right: 28px;
  border: 1px solid #d4dae3; border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 34px rgba(31,41,55,.07);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.metric {
  min-height: 94px; padding: 22px 30px; display: flex; flex-direction: column;
  gap: 8px; border-right: 1px solid #e0e4ea;
}
.metric:last-child { border: 0; }
.metric strong { color: var(--accent); font: 18px "Courier New", monospace; }
.metric span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.section { padding-top: 130px; padding-bottom: 130px; }
.section-heading {
  display: grid; grid-template-columns: 2fr 1fr; gap: 80px;
  align-items: end; margin: 26px 0 64px;
}
.section h2 {
  font-size: clamp(42px,5vw,68px); line-height: 1.02;
  letter-spacing: -.045em; max-width: 850px;
}
.section-heading p, .pilot-copy > p, .roi-card > div > p {
  color: var(--muted); font-size: 18px; line-height: 1.6;
}
.problem-grid, .steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.problem-grid article, .step {
  padding: 36px; min-height: 270px; background: rgba(255,255,255,.48);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.problem-grid article > span, .step > span { color: var(--accent); font: 12px "Courier New", monospace; }
.problem-grid h3, .step h3 { font-size: 24px; margin: 70px 0 15px; }
.problem-grid p, .step p { color: var(--muted); line-height: 1.6; }
.platform { background: #e9ecf1; border-block: 1px solid var(--line-strong); }
.steps { grid-template-columns: repeat(4,1fr); }
.step { min-height: 320px; background: #f8f9fb; }
.step h3 { margin-top: 90px; }
.integrations { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.integrations span {
  border: 1px solid #c9d0da; border-radius: 99px; padding: 11px 18px;
  background: #f7f8fa; color: #475467; font-size: 12px; letter-spacing: .08em;
}
.products {
  background: #f8f9fb;
  border-bottom: 1px solid var(--line);
}
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.product-card {
  min-height: 320px; padding: 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid #d7dde6; border-radius: 16px;
  background: #fff;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.product-card:hover {
  transform: translateY(-4px); border-color: #aebdd5;
  box-shadow: 0 18px 42px rgba(31,41,55,.08);
}
.product-card-featured {
  grid-column: span 2; min-height: 390px; padding: 38px;
  background:
    radial-gradient(circle at 86% 18%, rgba(37,99,235,.16), transparent 34%),
    linear-gradient(135deg, #ffffff, #edf3ff);
  border-color: #abc3f1;
}
.product-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.product-number { color: var(--accent); font: 12px "Courier New", monospace; }
.product-status {
  padding: 7px 10px; border: 1px solid #d8dee7; border-radius: 99px;
  color: #7b8493; background: #f8fafc;
  font: 10px "Courier New", monospace; letter-spacing: .07em; text-transform: uppercase;
}
.product-status-live { color: var(--success); border-color: #a7dec8; background: #ecfaf4; }
.product-kicker {
  margin-bottom: 10px; color: var(--accent);
  font: 11px "Courier New", monospace; letter-spacing: .1em;
}
.product-card h3 { margin: 0 0 16px; font-size: 27px; letter-spacing: -.03em; }
.product-card-featured h3 { font-size: 42px; }
.product-card p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.product-card-featured p { max-width: 720px; font-size: 17px; }
.product-capabilities { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.product-capabilities span {
  padding: 9px 12px; border: 1px solid #c9d9f7; border-radius: 8px;
  color: #365786; background: rgba(255,255,255,.68); font-size: 11px;
}
.platform-line {
  margin-top: 28px; padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  border: 1px solid #d5dce6; border-radius: 14px; background: #fff;
}
.platform-line span {
  color: var(--accent); font: 10px "Courier New", monospace; letter-spacing: .1em;
}
.platform-line strong { font-size: 14px; }
.platform-line i { color: #9aa4b2; font-style: normal; }
.journey { overflow: hidden; }
.journey-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.journey-step {
  min-height: 285px; padding: 34px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.52); position: relative;
}
.journey-step::after {
  content: "→"; position: absolute; right: -10px; top: 48px; z-index: 2;
  display: grid; place-items: center; width: 20px; height: 20px;
  color: var(--accent); background: var(--bg); font-size: 14px;
}
.journey-step:nth-child(3n)::after, .journey-step:last-child::after { display: none; }
.journey-step > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.journey-step span { color: var(--accent); font: 12px "Courier New", monospace; }
.journey-step small {
  color: #667085; padding: 7px 9px; border-radius: 6px;
  background: #e9edf3; font: 10px "Courier New", monospace; text-transform: uppercase;
}
.journey-step h3 { margin: 76px 0 14px; font-size: 25px; }
.journey-step p { margin-bottom: 0; color: var(--muted); line-height: 1.6; }
.journey-cta {
  margin-top: 28px; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border: 1px solid #cbd3de; border-radius: 14px; background: #eef2f7;
}
.journey-cta p { margin: 0; color: #475467; }
.journey-cta strong { color: var(--text); }
.roi-card {
  padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  border: 1px solid #cdd5df; border-radius: 22px;
  background: radial-gradient(circle at 82% 18%, #dce8ff, #fff 46%);
  box-shadow: 0 18px 55px rgba(31,41,55,.08);
}
.roi-card h2 { font-size: 50px; margin: 24px 0; }
.roi-numbers { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.roi-numbers div:not(.roi-arrow) { display: flex; flex-direction: column; gap: 8px; }
.roi-numbers span, .roi-numbers small { color: var(--muted); }
.roi-numbers strong { color: var(--accent); font: 52px "Courier New", monospace; letter-spacing: -.08em; }
.roi-arrow { color: var(--accent); font-size: 26px; }
.pilot { display: grid; grid-template-columns: 1fr 480px; gap: 100px; align-items: start; }
.pilot-copy h2 { margin: 28px 0; }
.pilot-copy ul {
  list-style: none; padding: 0; margin: 36px 0;
  display: grid; gap: 14px; color: #344054;
}
.pilot-copy li::before { content: "✓"; color: var(--accent); margin-right: 12px; font-weight: 700; }
.price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 20px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.price span { color: var(--muted); }
.price strong { font-size: 34px; color: var(--accent); }
.price small { width: 100%; color: #7b8493; }
.pilot-form {
  min-height: 550px; padding: 40px; display: grid; gap: 20px;
  border: 1px solid #cdd4de; border-radius: 18px;
  background: #fff; box-shadow: 0 18px 55px rgba(31,41,55,.09);
}
#form-fields { display: grid; gap: 20px; }
.pilot-form h3 { font-size: 28px; margin-bottom: 4px; }
.pilot-form label { display: grid; gap: 8px; color: #475467; font-size: 13px; }
.pilot-form input, .pilot-form select {
  width: 100%; height: 50px; padding: 0 14px; outline: 0;
  background: #f8fafc; color: var(--text);
  border: 1px solid #cfd6e0; border-radius: 8px;
}
.pilot-form input:focus, .pilot-form select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.pilot-form small { color: #7b8493; line-height: 1.5; }
.success { margin: auto; text-align: center; }
.success > span {
  display: grid; place-items: center; width: 70px; height: 70px;
  border-radius: 50%; margin: 0 auto 28px;
  background: #dff8ec; color: var(--success); font-size: 30px;
}
.success h3 { font-size: 30px; }
.success p { color: var(--muted); line-height: 1.6; }
.footer {
  min-height: 150px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 1000px) {
  .shell { width: min(100% - 40px,760px); }
  .nav nav { display: none; }
  .nav-cta { padding: 0 14px; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; min-height: auto; }
  .hero-copy { padding-bottom: 35px; }
  .console-wrap { height: auto; padding-bottom: 160px; }
  .console { width: 100%; transform: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric { border-bottom: 1px solid #e0e4ea; }
  .section-heading, .roi-card, .pilot { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card-featured { grid-column: span 2; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .journey-step:nth-child(3n)::after { display: grid; }
  .journey-step:nth-child(2n)::after { display: none; }
  .pilot { gap: 50px; }
  .pilot-form { width: 100%; }
  .footer { flex-wrap: wrap; gap: 20px; padding-block: 35px; }
}

@media (max-width: 620px) {
  .shell { width: calc(100% - 28px); }
  .nav { height: 76px; }
  .brand { font-size: 11px; }
  .nav-cta { display: none; }
  h1 { font-size: 45px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .dashboard-kpis { grid-template-columns: 1fr 1fr; }
  .dashboard-body { grid-template-columns: 1fr; }
  .console { padding: 16px; }
  .proof-strip { position: relative; inset: auto; margin-bottom: 20px; }
  .console-wrap { padding-bottom: 30px; }
  .metric { padding: 18px; }
  .section { padding-block: 90px; }
  .section-heading { gap: 10px; margin-bottom: 42px; }
  .problem-grid article { min-height: 240px; }
  .steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card-featured { grid-column: auto; min-height: 285px; padding: 26px; }
  .product-card-featured h3 { font-size: 34px; }
  .platform-line { align-items: flex-start; flex-direction: column; gap: 12px; }
  .platform-line i { transform: rotate(90deg); }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step { min-height: 250px; }
  .journey-step::after, .journey-step:nth-child(2n)::after, .journey-step:nth-child(3n)::after { display: none; }
  .journey-cta { align-items: stretch; flex-direction: column; }
  .roi-card { padding: 28px; }
  .roi-numbers { gap: 10px; }
  .roi-numbers strong { font-size: 32px; }
  .pilot-form { padding: 24px; }
  .footer p { order: 3; width: 100%; }
}
