:root {
  --navy: #071426;
  --navy-2: #0b1f3a;
  --teal: #1fc7b6;
  --cyan: #79e7f2;
  --blue: #2563eb;
  --purple: #7c3aed;
  --ink: #101828;
  --muted: #667085;
  --line: #dbe3ee;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(11, 31, 58, 0.14);
  color-scheme: light;
}

* { 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(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 238, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 148px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--navy-2);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(31, 199, 182, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 5vw, 74px);
  min-height: calc(100vh - 82px);
  padding: clamp(56px, 7vw, 112px) clamp(20px, 7vw, 96px);
  background:
    radial-gradient(circle at 82% 24%, rgba(31, 199, 182, 0.25), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3fbff 45%, #eaf8f7 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #087d7a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #475467;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--navy);
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(31, 199, 182, 0.28);
}

.button--secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button--dark {
  color: var(--white);
  background: var(--navy-2);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero__proof span {
  padding: 9px 12px;
  border: 1px solid rgba(31, 199, 182, 0.35);
  border-radius: 999px;
  color: #0f5f61;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero__visual {
  min-width: 0;
}

.laptop {
  position: relative;
  padding: 18px 18px 30px;
  border-radius: 26px;
  background: linear-gradient(145deg, #17283f, #06101f);
  box-shadow: var(--shadow);
}

.laptop::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #eef4fb;
}

.dashboard-preview aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.dashboard-preview aside strong {
  color: var(--cyan);
  font-size: 24px;
}

.dashboard-preview section {
  padding: 24px;
}

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

.preview-top div,
.preview-table,
.mini-screen,
.feature-card,
.price-card,
.contact-card,
.legal-block {
  border: 1px solid rgba(219, 227, 238, 0.9);
  background: var(--white);
}

.preview-top div {
  padding: 18px;
  border-radius: 12px;
}

.preview-top small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.preview-top strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 22px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 190px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 14px;
  background: var(--white);
}

.chart-bars span {
  flex: 1;
  min-width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), #1d6eea);
}

.preview-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
}

.preview-table span {
  height: 12px;
  border-radius: 999px;
  background: #d8e2ee;
}

.section {
  padding: clamp(76px, 8vw, 118px) clamp(20px, 7vw, 96px);
}

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

.section__head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section__head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.icon-grid,
.solution-grid,
.pricing-grid,
.mockup-grid,
.steps {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}

.icon-grid,
.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 8px;
}

.feature-card--lift {
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}

.feature-card p,
.price-card li,
.steps p,
.contact-card p,
.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--navy);
  background: #e9fbf9;
  font-size: 13px;
  font-weight: 900;
}

.icon--green { background: #dffbf4; color: #08665f; }
.icon--blue { background: #e3efff; color: #1d4ed8; }
.icon--purple { background: #f0e8ff; color: #6d28d9; }
.icon--dark { background: #e8edf5; color: var(--navy); }

.statement {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 22px;
  border-left: 4px solid var(--teal);
  color: var(--navy);
  background: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.07);
}

.price-card--featured {
  border-color: rgba(31, 199, 182, 0.8);
  transform: translateY(-12px);
  box-shadow: 0 26px 70px rgba(31, 199, 182, 0.2);
}

.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #064e4b;
  background: #dffbf4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  color: var(--navy);
  font-size: 44px;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
}

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

.demo-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
}

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

.mini-screen {
  min-height: 250px;
  padding: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-screen__header {
  height: 24px;
  margin: -18px -18px 20px;
  border-radius: 8px 8px 0 0;
  background: var(--navy);
}

.mini-chart {
  height: 116px;
  margin-top: 24px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.55) 18% 20%, transparent 20% 38%, rgba(255,255,255,0.55) 38% 40%, transparent 40% 58%, rgba(255,255,255,0.55) 58% 60%, transparent 60% 78%, rgba(255,255,255,0.55) 78% 80%, transparent 80%),
    linear-gradient(180deg, #c7f8f2, #dbeafe);
}

.mini-lines,
.mini-calendar {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-lines::before,
.mini-lines::after,
.mini-lines {
  content: "";
}

.mini-lines {
  height: 116px;
  background:
    linear-gradient(#d8e2ee 0 12px, transparent 12px 26px, #d8e2ee 26px 38px, transparent 38px 52px, #d8e2ee 52px 64px, transparent 64px 78px, #d8e2ee 78px 90px, transparent 90px);
}

.mini-lines--short {
  background:
    linear-gradient(#d8e2ee 0 12px, transparent 12px 30px, #d8e2ee 30px 42px, transparent 42px 60px, #d8e2ee 60px 72px, transparent 72px);
}

.mini-calendar {
  grid-template-columns: repeat(4, 1fr);
}

.mini-calendar::before {
  content: "";
  grid-column: 1 / -1;
  height: 24px;
  border-radius: 8px;
  background: #d8e2ee;
}

.mini-calendar::after {
  content: "";
  grid-column: 1 / -1;
  height: 74px;
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, #d8e2ee 0 1px, transparent 1px 25%), repeating-linear-gradient(0deg, #d8e2ee 0 1px, transparent 1px 25%);
}

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

.steps article {
  position: relative;
  padding-top: 72px;
}

.steps span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal);
  font-weight: 900;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(20px, 5vw, 72px);
  padding: clamp(42px, 6vw, 72px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 199, 182, 0.42), transparent 34%),
    var(--navy-2);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer img {
  width: 132px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.site-footer div {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 7vw, 96px);
  background: linear-gradient(135deg, #f6fbff, #e7f8f6);
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.dashboard-page {
  background: #eef4fb;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
}

.app-sidebar,
.app-main {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.app-sidebar {
  min-height: 680px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.app-sidebar img {
  width: 145px;
  margin-bottom: 36px;
}

.app-sidebar nav {
  display: grid;
  gap: 10px;
}

.app-sidebar a {
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.app-sidebar a.active,
.app-sidebar a:hover {
  color: var(--navy);
  background: var(--teal);
}

.app-main {
  padding: 30px;
  background: var(--white);
}

.app-main__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.app-main__top p {
  color: var(--muted);
}

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

.stat-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat-card {
  padding: 22px;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 34px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 16px;
}

.panel {
  padding: 22px;
}

.panel h3 {
  margin-bottom: 18px;
}

.big-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  min-height: 260px;
  padding: 22px;
  border-radius: 8px;
  background: #f3f7fb;
}

.big-chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.data-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #075e58;
  background: #ddfbf6;
  font-size: 12px;
  font-weight: 800;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.screen-tabs button {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.screen-tabs button.active {
  border-color: var(--teal);
  background: #ddfbf6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-card {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.07);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.legal-layout {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.legal-block {
  padding: 28px;
  border-radius: 8px;
}

.legal-block h2 {
  font-size: 30px;
}

.legal-block h3 {
  margin-top: 24px;
}

.legal-block ul,
.legal-block ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

@media (max-width: 1060px) {
  .hero,
  .contact-layout,
  .app-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .icon-grid,
  .solution-grid,
  .mockup-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-sidebar {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dashboard-preview aside {
    display: none;
  }

  .preview-top,
  .pricing-grid,
  .stat-grid,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

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

@media (max-width: 560px) {
  .hero,
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .icon-grid,
  .solution-grid,
  .mockup-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .laptop {
    padding: 10px 10px 22px;
    border-radius: 16px;
  }

  .dashboard-preview {
    min-height: 360px;
  }

  .dashboard-preview section {
    padding: 14px;
  }

  .app-shell {
    padding: 16px;
  }

  .site-footer div {
    flex-direction: column;
  }
}
