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

:root {
  --black: #ffffff;
  --panel: #f6f7f8;
  --panel-border: #e6e8eb;
  --blue: #29ABE2;
  --blue-dim: #1c7ba3;
  --white: #0a0a0a;
  --grey: #55606b;
  --grey-dim: #8a949e;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav .brand img { height: 34px; width: auto; }
.nav .links { display: flex; gap: 36px; align-items: center; }
.nav .links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: color .2s ease;
}
.nav .links a:hover { color: var(--white); }
.nav .cta {
  background: var(--blue);
  color: #05121a;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  transition: transform .15s ease, background .2s ease;
}
.nav .cta:hover { background: #45bdf0; transform: translateY(-1px); }
.nav .burger { display: none; }

/* ---------- HERO ---------- */
.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--panel-border);
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(41,171,226,0.16) 0%, rgba(41,171,226,0) 68%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue);
  background: rgba(41,171,226,0.08);
  border: 1px solid rgba(41,171,226,0.3);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 820px;
}
.hero h1 span { color: var(--blue); }

.hero p.lead {
  margin-top: 26px;
  font-size: 19px;
  color: var(--grey);
  max-width: 560px;
  font-weight: 300;
}

.hero .actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #05121a;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .15s ease, background .2s ease;
  display: inline-block;
}
.btn-primary:hover { background: #45bdf0; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--panel-border);
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(41,171,226,0.06); }

.hero .stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 620px;
}
.hero .stats .num {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
}
.hero .stats .label {
  font-size: 13px;
  color: var(--grey-dim);
  margin-top: 4px;
}

/* ---------- SECTION HEADERS ---------- */
.section { padding: 100px 0; border-bottom: 1px solid var(--panel-border); }
.section.tight { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head .kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 16px;
  color: var(--grey);
  font-size: 16px;
  font-weight: 300;
}

/* ---------- PROBLEM / SOLUTION ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.split .card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 36px;
}
.split .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.split .card.problem h3::before { content: "✕"; color: #e2544a; font-size: 16px; }
.split .card.solution h3::before { content: "✓"; color: var(--blue); font-size: 16px; }
.split .card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.split .card li {
  font-size: 15px;
  color: var(--grey);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}
.split .card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--grey-dim);
}

/* ---------- FEATURE GRID ---------- */
.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-card:hover { border-color: var(--blue-dim); transform: translateY(-3px); }
.feature-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(41,171,226,0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--grey); font-weight: 300; line-height: 1.6; }

/* ---------- FUNNEL / STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps .step {
  position: relative;
  padding: 0 20px 0 0;
}
.steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--panel-border);
}
.steps .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--blue-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 22px;
}
.steps h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.steps p { font-size: 13.5px; color: var(--grey); font-weight: 300; line-height: 1.6; }

/* ---------- ROI ---------- */
.roi-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.roi-panel h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.roi-panel p { color: var(--grey); font-size: 15px; font-weight: 300; margin-bottom: 10px; }
.roi-note {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--grey-dim);
  border-left: 2px solid var(--blue-dim);
  padding-left: 14px;
}
.roi-table { display: flex; flex-direction: column; gap: 14px; }
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 16px 20px;
}
.roi-row .tag { font-size: 13px; color: var(--grey); }
.roi-row .val { font-size: 15px; font-weight: 600; color: var(--blue); }

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.cta-band h2 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
}
.cta-band p { color: var(--grey); font-size: 16px; margin-bottom: 40px; font-weight: 300; }

/* ---------- PATHS (Sign Up vs Schedule Demo) ---------- */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  background: var(--black);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.path-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(41,171,226,0.10); }
.path-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(41,171,226,0.08), var(--black) 60%);
}
.path-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.path-card h3 { font-size: 23px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.path-card p { color: var(--grey); font-size: 14.5px; font-weight: 300; margin-bottom: 24px; flex-grow: 1; }
.path-card .btn-primary { width: 100%; text-align: center; }
.path-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--panel-border);
  font-size: 12.5px;
  color: var(--grey-dim);
}

/* ---------- FOOTER ---------- */
footer { padding: 60px 0 40px; }
footer .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
footer .brand-col img { height: 30px; margin-bottom: 14px; }
footer .brand-col p { color: var(--grey-dim); font-size: 13px; max-width: 260px; font-weight: 300; }
footer .col h4 { font-size: 13px; font-weight: 600; margin-bottom: 16px; color: var(--white); }
footer .col a { display: block; font-size: 13.5px; color: var(--grey); margin-bottom: 10px; transition: color .2s; }
footer .col a:hover { color: var(--blue); }
footer .bottom {
  border-top: 1px solid var(--panel-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--grey-dim);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav .links { display: none; }
  .split { grid-template-columns: 1fr; }
  .grid-features { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps .step::after { display: none; }
  .roi-panel { grid-template-columns: 1fr; padding: 32px; }
  .hero .stats { grid-template-columns: 1fr 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 60px; }
  .section { padding: 70px 0; }
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  padding: 70px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}
.legal h1 { font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--grey-dim); font-size: 13px; margin-bottom: 46px; }
.legal h2 { font-size: 19px; font-weight: 600; margin: 40px 0 14px; color: var(--blue); }
.legal p, .legal li { color: var(--grey); font-size: 15px; font-weight: 300; line-height: 1.75; margin-bottom: 14px; }
.legal ul { padding-left: 20px; margin-bottom: 14px; }
.legal a.inline { color: var(--blue); text-decoration: underline; }

/* ---------- REVENUE CALCULATOR ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.calc-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 34px;
}
.calc-panel h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.calc-panel .sub { font-size: 13px; color: var(--grey-dim); margin-bottom: 28px; font-weight: 300; }

.calc-field { margin-bottom: 28px; }
.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.calc-field label .val { color: var(--blue); font-weight: 700; }

.calc-field input[type="number"] {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.calc-field input[type="number"]:focus,
.calc-field input[type="range"]:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--panel-border);
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 1px var(--blue-dim);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 1px var(--blue-dim);
}

.calc-warning {
  display: none;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: #96590a;
  background: #fff4e3;
  border: 1px solid #ffdca3;
  padding: 11px 14px;
  border-radius: 8px;
  line-height: 1.5;
}
.calc-warning.show { display: block; }

.calc-output {
  margin-top: 6px;
  background: var(--black);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.calc-output .amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.calc-output .caption {
  font-size: 12.5px;
  color: var(--grey-dim);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 860px) {
  .calc-grid { grid-template-columns: 1fr; }
}
