:root {
  color-scheme: light;
  --navy: #061b2a;
  --navy-soft: #0b3553;
  --cyan: #18c9c4;
  --blue: #146ef5;
  --blue-strong: #0f5bd7;
  --text: #111827;
  --muted: #5f6b7a;
  --border: #dce3ec;
  --surface-subtle: #f7fafc;
  --green: #168a45;
  --amber: #ad6b00;
  --red: #b7372e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #ffffff;
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 227, 236, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.marketing-header-inner,
.section-inner,
.hero {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.marketing-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 70px;
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--navy);
  font-size: 21px;
  font-weight: 790;
}

.marketing-brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid #d2e8ec;
  border-radius: 7px;
  background: #f7fbfc;
}

.marketing-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marketing-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #344254;
  font-size: 13px;
  font-weight: 680;
}

.marketing-nav a,
.text-action {
  transition: color 150ms ease;
}

.marketing-nav a:hover,
.text-action:hover {
  color: var(--blue);
}

.marketing-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.text-action {
  color: #283548;
  font-size: 13px;
  font-weight: 720;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.primary-action {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(20, 110, 245, 0.17);
}

.primary-action:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.primary-action.compact {
  min-height: 38px;
  padding: 0 15px;
  font-size: 13px;
}

.secondary-action {
  color: var(--blue-strong);
  border-color: #bdd2f2;
  background: #ffffff;
}

.secondary-action:hover {
  border-color: var(--blue);
  background: #f7faff;
}

.hero {
  display: grid;
  gap: 26px;
  min-height: 0;
  padding: 52px 0 26px;
}

.hero-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #08182c;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 790;
}

.hero-copy > p:not(.capacity-line) {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.capacity-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.capacity-line > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 138, 69, 0.11);
}

.capacity-line strong {
  font-weight: 670;
}

.capacity-line.is-watch > span {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(173, 107, 0, 0.11);
}

.capacity-line.is-closed > span {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(183, 55, 46, 0.11);
}

.product-frame {
  align-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cdd8e4;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(11, 53, 83, 0.14);
}

.product-frame img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
}

.product-frame figcaption {
  padding: 11px 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #ffffff;
  font-size: 11px;
  text-align: center;
}

.workflow-section {
  padding: 36px 0 78px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.section-inner > h2 {
  max-width: 860px;
  color: #08182c;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 780;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.workflow-step {
  min-height: 180px;
  padding: 28px 30px;
  border-right: 1px solid var(--border);
}

.workflow-step:last-child {
  border-right: 0;
}

.step-heading {
  display: grid;
  grid-template-columns: 28px 42px 1fr;
  align-items: center;
  gap: 12px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  color: #ffffff;
  background: #0c9da0;
  font-size: 13px;
  font-weight: 800;
}

.step-heading svg {
  width: 40px;
  height: 40px;
  padding: 8px;
  color: var(--navy-soft);
  border: 1px solid #cde6e8;
  border-radius: 7px;
  background: #f3fbfb;
}

.workflow-step h3,
.capability-grid h3,
.price-plan h3 {
  color: #102033;
  font-size: 18px;
  font-weight: 770;
}

.workflow-step > p {
  margin: 22px 0 0 82px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.capability-section {
  padding: 72px 0 86px;
  background: var(--surface-subtle);
  border-top: 1px solid #edf1f5;
  border-bottom: 1px solid var(--border);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-grid article {
  min-height: 180px;
  padding: 14px 34px 14px 0;
  border-right: 1px solid var(--border);
}

.capability-grid article:not(:first-child) {
  padding-left: 34px;
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: #0c9da0;
}

.capability-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-section {
  padding: 92px 0 104px;
  background: #ffffff;
}

.pricing-section .section-inner > h2 {
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(940px, 100%);
  margin: 48px auto 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.price-plan {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 510px;
  padding: 38px;
  background: #ffffff;
}

.price-plan + .price-plan {
  border-left: 1px solid var(--border);
}

.price-plan.emphasized {
  background: #fbfdff;
}

.price-plan-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-plan-heading h3 {
  font-size: 23px;
}

.price-plan-heading p {
  margin-top: 18px;
  color: #344254;
  font-size: 15px;
}

.price-plan-heading p strong {
  margin-right: 7px;
  color: #0c9da0;
  font-size: 45px;
  line-height: 1;
}

.price-plan-heading span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price-plan ul {
  display: grid;
  align-content: start;
  gap: 17px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: #344254;
  font-size: 14px;
}

.price-plan li {
  position: relative;
  padding-left: 27px;
}

.price-plan li::before {
  position: absolute;
  left: 2px;
  top: -1px;
  color: #0caaae;
  content: "\2713";
  font-size: 17px;
  font-weight: 800;
}

.full-width {
  width: 100%;
}

.closing-section {
  color: #ffffff;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 182px;
}

.closing-inner h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: 34px;
}

.primary-action.light {
  flex: 0 0 auto;
  color: #052132;
  background: var(--cyan);
  box-shadow: none;
}

.primary-action.light:hover {
  background: #38d6d0;
}

.marketing-footer {
  color: #c9d9e5;
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
}

.footer-brand {
  color: #ffffff;
}

.footer-inner nav {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 650;
}

.footer-inner nav a:hover {
  color: #ffffff;
}

.footer-inner small {
  justify-self: end;
  font-size: 11px;
}

@media (max-width: 900px) {
  .marketing-header-inner {
    grid-template-columns: 1fr auto;
  }

  .marketing-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .workflow-step {
    padding: 24px 20px;
  }

  .step-heading {
    grid-template-columns: 28px 38px 1fr;
    gap: 9px;
  }

  .workflow-step > p {
    margin-left: 0;
  }

  .price-plan {
    padding: 30px;
  }
}

@media (max-width: 700px) {
  .marketing-header-inner,
  .section-inner,
  .hero {
    width: min(100% - 28px, 1180px);
  }

  .marketing-header-inner {
    min-height: 62px;
  }

  .marketing-brand {
    font-size: 18px;
  }

  .marketing-brand-mark {
    width: 30px;
    height: 30px;
  }

  .text-action {
    display: none;
  }

  .primary-action.compact {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    gap: 28px;
    padding: 42px 0 24px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-copy > p:not(.capacity-line) {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero-actions a {
    width: 100%;
  }

  .product-frame {
    border-radius: 6px;
  }

  .product-frame img {
    height: 170px;
    object-position: left top;
  }

  .product-frame figcaption {
    text-align: left;
  }

  .workflow-section,
  .pricing-section {
    padding: 68px 0;
  }

  .workflow-section {
    padding-top: 28px;
  }

  .section-inner > h2 {
    font-size: 32px;
  }

  .workflow {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .workflow-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .capability-section {
    padding: 50px 0;
  }

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

  .capability-grid article,
  .capability-grid article:not(:first-child) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

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

  .price-plan {
    min-height: 0;
    padding: 28px 24px;
  }

  .price-plan + .price-plan {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .closing-inner {
    display: grid;
    min-height: 240px;
    padding: 42px 0;
  }

  .closing-inner h2 {
    font-size: 30px;
  }

  .closing-inner .primary-action {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0;
  }

  .footer-inner nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }

  .footer-inner small {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-action,
  .secondary-action {
    transition: none;
  }
}
