:root {
  --ink: #182233;
  --muted: #667085;
  --line: #d9e2ec;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --green: #167a5a;
  --green-strong: #0f6449;
  --blue: #2457a6;
  --gold: #d89b2b;
  --dark: #101722;
  --shadow: 0 18px 45px rgba(24, 34, 51, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 42px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand-icon-img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  color: #14233a;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-text span {
  color: #f97316;
}

.brand-text em {
  color: #249fe6;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.nav-demo {
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  border-radius: 6px;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 44px;
  align-items: center;
  padding: 70px 42px 58px;
  background: #eef3f7;
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-text,
.page-hero p,
.section-heading p,
.split-section p,
.cta p {
  color: var(--muted);
  font-size: 18px;
}

.fine-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px !important;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-strong);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
}

.hero-facts dt {
  font-weight: 900;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 23, 34, .25);
}

.product-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  object-position: center top;
}

.shot-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #141d2a;
  color: #d7e1ec;
  font-size: 13px;
}

.shot-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d89b2b;
}

.shot-topbar span:nth-child(2) {
  background: #4bb98a;
}

.shot-topbar span:nth-child(3) {
  background: #6d8edb;
  margin-right: 10px;
}

.shot-grid {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 430px;
}

.shot-menu {
  padding: 22px 16px;
  background: #0f1620;
}

.shot-menu span {
  display: block;
  height: 13px;
  margin-bottom: 18px;
  border-radius: 3px;
  background: #273344;
}

.shot-panel {
  padding: 22px;
  background: #1a2230;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.metric-row div {
  min-height: 88px;
  padding: 18px;
  border-radius: 7px;
  background: #222c3c;
  border-left: 4px solid var(--gold);
}

.metric-row b {
  display: block;
  color: #fff;
  font-size: 22px;
}

.metric-row small {
  color: #aeb9c8;
}

.chart-bars {
  min-height: 210px;
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 22px;
  border-radius: 7px;
  background: #f8fafc;
}

.chart-bars span {
  flex: 1;
  min-width: 18px;
  background: var(--blue);
  border-radius: 4px 4px 0 0;
}

.chart-bars span:nth-child(even) {
  background: var(--gold);
}

.chart-bars span:nth-child(3n) {
  background: #d84d3c;
}

.table-lines {
  margin-top: 20px;
}

.table-lines span {
  display: block;
  height: 16px;
  margin-bottom: 10px;
  border-radius: 3px;
  background: #273344;
}

.section,
.split-section,
.cta,
.page-hero,
.pricing-grid,
.billing-section,
.payment-table-section {
  padding: 78px 42px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.differential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.differential-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 34, 51, .06);
}

.differential-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.differential-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-grid article,
.price-card,
.note-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-grid article {
  min-height: 220px;
}

.feature-grid.compact article {
  min-height: 160px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e5f4ed;
  color: var(--green);
  font-weight: 900;
}

.feature-grid p,
.price-card p,
.price-card li,
.note-card p {
  color: var(--muted);
}

.screenshot-section {
  background: #fff;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 34, 51, .08);
}

.screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--line);
}

.screenshot-grid figcaption {
  padding: 13px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  background: #fbfcfe;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  padding-left: 18px;
  color: #344054;
}

.check-list li {
  margin-bottom: 8px;
}

.note-card {
  box-shadow: var(--shadow);
}

.note-shot {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: left top;
}

.note-card a {
  color: var(--green);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green-strong);
  text-decoration: underline;
}

.section-muted {
  background: var(--soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.steps strong {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: #fff;
}

.cta p,
.cta .eyebrow {
  color: #d8e4ef;
}

.cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.page-hero {
  background: var(--soft);
}

.page-hero h1 {
  font-size: 52px;
}

.page-hero p {
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.billing-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.billing-section p {
  color: var(--muted);
  font-size: 18px;
}

.billing-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.billing-options div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.billing-options strong,
.billing-options span {
  display: block;
}

.billing-options strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.billing-options span {
  color: var(--green);
  font-weight: 900;
}

.price-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(22, 122, 90, .45);
  box-shadow: var(--shadow);
}

.price-head {
  min-height: 96px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink) !important;
  margin-bottom: 8px;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
}

.annual-price {
  margin-bottom: 18px;
  padding: 9px 11px;
  border-radius: 6px;
  background: #e5f4ed;
  color: var(--green-strong) !important;
  font-size: 13px;
  font-weight: 900;
}

.price-card li {
  margin-bottom: 9px;
}

.price-card .btn {
  margin-top: auto;
}

.consult-card {
  background: #fbfcfe;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.payment-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.payment-table th,
.payment-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.payment-table th {
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
}

.payment-table td {
  color: #344054;
  font-weight: 700;
}

.payment-table tr:last-child td {
  border-bottom: 0;
}

.vertical-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 78px 42px;
  background: var(--soft);
}

.vertical-hero p {
  color: var(--muted);
  font-size: 18px;
}

.vertical-hero h1 {
  max-width: 780px;
  font-size: 52px;
}

.vertical-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.vertical-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .brand-icon-img {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 22px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 22px;
  }

  .product-shot {
    max-width: 760px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .differential-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .vertical-hero,
  .billing-section {
    grid-template-columns: 1fr;
  }

  .billing-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-facts,
  .metric-row,
  .differential-grid,
  .feature-grid,
  .pricing-grid,
  .steps,
  .billing-options {
    grid-template-columns: 1fr;
  }

  .shot-grid {
    grid-template-columns: 1fr;
  }

  .shot-menu {
    display: none;
  }

  .section,
  .split-section,
  .cta,
  .page-hero,
  .vertical-hero,
  .pricing-grid,
  .billing-section,
  .payment-table-section {
    padding: 54px 22px;
  }

  .cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
