:root {
  --ink: #102033;
  --muted: #607083;
  --line: #d9e3eb;
  --soft: #f5f8fa;
  --panel: #ffffff;
  --green: #00a870;
  --green-dark: #008a5d;
  --cyan: #06a9c8;
  --amber: #e9a426;
  --danger: #d95f5f;
  --shadow: 0 24px 70px rgba(21, 43, 65, 0.12);
  --radius: 8px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 540px),
    #ffffff;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.checkout-form { margin: 0; }
.page-shell { overflow: hidden; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 251, 252, 0.9);
  border-bottom: 1px solid rgba(217, 227, 235, 0.8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.08);
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #405166;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a { padding: 10px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

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

.button.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 168, 112, 0.24);
}

.button.primary:hover { background: var(--green-dark); }

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

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

.button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.hero {
  min-height: calc(100vh - 74px);
  padding: 58px 0 42px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(6, 169, 200, 0.24);
  border-radius: 999px;
  background: rgba(6, 169, 200, 0.08);
  color: #087f96;
  font-size: 13px;
  font-weight: 750;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 168, 112, 0.16);
}

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

h1 {
  max-width: 680px;
  margin: 22px 0 18px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: #44566b;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 28px 0 22px;
}

.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 11px 13px;
  border: 1px solid #d7e3dd;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.price-chip strong { font-size: 21px; }
.price-chip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 630px;
  margin-top: 30px;
}

.proof-item {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.proof-item strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.product-stage {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.product-frame {
  width: 100%;
  border: 1px solid #ccdae5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-head {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfc;
}

.window-dots { display: flex; gap: 7px; }

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1dce4;
}

.window-dots span:nth-child(1) { background: #ef6a61; }
.window-dots span:nth-child(2) { background: #efbd4f; }
.window-dots span:nth-child(3) { background: #62c77b; }

.app-title {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.app-body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 570px;
}

.side-rail {
  border-right: 1px solid var(--line);
  background: #f6f9fb;
  padding: 18px 14px;
}

.rail-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
}

.rail-logo img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.rail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 9px;
  margin-bottom: 5px;
  border-radius: 7px;
  color: #536479;
  font-size: 13px;
  font-weight: 700;
}

.rail-item.active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.07);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.dashboard {
  padding: 20px;
  background: #ffffff;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-top h2 {
  margin-bottom: 4px;
  font-size: 23px;
  letter-spacing: 0;
}

.dashboard-top p {
  color: var(--muted);
  font-size: 13px;
}

.segmented {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
  gap: 4px;
}

.mode-button {
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #536479;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

.mode-button.active,
.mode-button[aria-pressed="true"] {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 5px 15px rgba(16, 32, 51, 0.08);
}

.mode-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.kpi {
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.kpi span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.kpi strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1;
}

.kpi small {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.85fr);
  gap: 12px;
}

.table-panel,
.flow-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
  font-size: 13px;
  font-weight: 850;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 168, 112, 0.1);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
}

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

.data-table th,
.data-table td {
  height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid #edf2f5;
  text-align: left;
  white-space: nowrap;
}

.data-table th {
  color: #708094;
  font-size: 11px;
  font-weight: 850;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.badge.ok { background: rgba(0, 168, 112, 0.11); color: var(--green-dark); }
.badge.wait { background: rgba(233, 164, 38, 0.14); color: #9c6b0d; }
.badge.info { background: rgba(6, 169, 200, 0.12); color: #087f96; }

.flow-steps { padding: 14px; }

.flow-step {
  position: relative;
  min-height: 57px;
  padding-left: 27px;
  color: #405166;
  font-size: 12px;
  font-weight: 750;
}

.flow-step:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 3px solid #d7e7df;
  background: #ffffff;
}

.flow-step:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 1px;
  height: 31px;
  background: #dbe6ee;
}

.flow-step:last-child:after { display: none; }

.flow-step.done:before {
  background: var(--green);
  border-color: rgba(0, 168, 112, 0.18);
}

.float-card {
  position: absolute;
  right: -22px;
  bottom: 52px;
  width: 246px;
  padding: 15px;
  border: 1px solid #cfe1df;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(16, 32, 51, 0.16);
}

.float-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.float-card strong {
  display: block;
  margin: 5px 0 10px;
  font-size: 25px;
}

.progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eef2;
}

.progress i {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.section { padding: 92px 0; }
.section.soft { background: var(--soft); }

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 10px;
  color: #087f96;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

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

.problem-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.problem-box h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.problem-box p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.feature {
  min-height: 218px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}

.feature-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(0, 168, 112, 0.1);
  color: var(--green-dark);
  font-weight: 900;
}

.feature h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.mode-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.mode-list {
  display: grid;
  gap: 12px;
}

.mode-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mode-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.mode-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage {
  border: 1px solid #cfdfe8;
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.coverage-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  border-bottom: 1px solid #edf2f5;
}

.coverage-row:last-child { border-bottom: 0; }

.coverage-row strong,
.coverage-row span { padding: 16px 18px; }

.coverage-row strong {
  border-right: 1px solid #edf2f5;
  background: #f8fafb;
  font-size: 14px;
}

.coverage-row span {
  color: var(--muted);
  font-size: 14px;
}

.price-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) 390px;
  gap: 34px;
  align-items: center;
}

.price-card {
  padding: 30px;
  border: 1px solid #cbdce5;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0;
}

.price strong {
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: 0;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #405166;
  font-weight: 650;
}

.check-list li:before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.7);
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: 44px;
  border: 1px solid #cfe1df;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(6, 169, 200, 0.06), rgba(0, 168, 112, 0.04)),
    #ffffff;
  box-shadow: var(--shadow);
  align-items: center;
}

.lead-magnet h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.lead-magnet p.lead-magnet-copy {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 18px;
}

.lead-magnet ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #405166;
  font-size: 14px;
  font-weight: 650;
}

.lead-magnet ul li:before {
  content: "✓ ";
  color: var(--green);
  font-weight: 900;
}

.lead-magnet .secondary-cta {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.lead-magnet .secondary-cta a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.lead-form .field {
  display: grid;
  gap: 6px;
}

.lead-form label {
  font-size: 13px;
  font-weight: 700;
  color: #405166;
}

.lead-form input[type=text],
.lead-form input[type=email] {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lead-form input[type=text]:focus,
.lead-form input[type=email]:focus {
  outline: none;
  border-color: var(--green);
  background: #ffffff;
}

.lead-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.lead-form .consent input { margin-top: 2px; }

.lead-form .consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form button {
  margin-top: 6px;
}

@media (max-width: 880px) {
  .lead-magnet {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

.final-cta {
  padding: 54px;
  border: 1px solid #cde0dd;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(0, 168, 112, 0.08), rgba(6, 169, 200, 0.07)),
    #ffffff;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover { color: var(--ink); }

@media (max-width: 1060px) {
  .nav-links { display: none; }

  .hero-grid,
  .mode-section,
  .price-wrap {
    grid-template-columns: 1fr;
  }

  .product-stage { min-height: auto; }

  .float-card {
    right: 16px;
    bottom: -26px;
  }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, 1160px); }

  .nav { height: 66px; }
  .brand { min-width: 0; }
  .brand strong { display: none; }

  .hero {
    min-height: auto;
    padding: 42px 0 34px;
  }

  h1 { font-size: 43px; }
  .hero-copy { font-size: 17px; }

  .proof-strip,
  .problem-grid,
  .feature-grid,
  .kpi-row,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .app-body { grid-template-columns: 1fr; }
  .side-rail { display: none; }
  .product-frame { border-radius: var(--radius); }

  .float-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .dashboard-top { flex-direction: column; }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .coverage-row { grid-template-columns: 1fr; }

  .coverage-row strong {
    border-right: 0;
    border-bottom: 1px solid #edf2f5;
  }

  .section { padding: 68px 0; }

  .price-card,
  .final-cta { padding: 24px; }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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