:root {
  --ink: #121826;
  --muted: #5b6475;
  --line: #dce2ea;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --steel: #243244;
  --blue: #0b5cab;
  --blue-dark: #073c76;
  --cyan: #22a9d8;
  --green: #3aa56a;
  --red: #c73632;
  --shadow: 0 18px 42px rgba(18, 24, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: 4.6rem;
  font-weight: 800;
}

h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

h4 {
  font-size: 1rem;
  font-weight: 800;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 226, 234, 0.8);
  backdrop-filter: blur(14px);
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(11, 92, 171, 0.24);
}

.brand-name {
  display: block;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem;
}

.nav-list li + li {
  margin-top: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.72rem;
  color: #2f3a4c;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  background: #eaf3fb;
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 26px rgba(199, 54, 50, 0.22);
}

.button.secondary {
  background: #fff;
  color: var(--blue-dark);
  border-color: #b8c8da;
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

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

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(7, 19, 36, 0.9), rgba(7, 19, 36, 0.62), rgba(7, 19, 36, 0.12)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9de4ff;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

.hero-copy p {
  max-width: 670px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-metric {
  padding: 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metric:last-child {
  border-right: 0;
}

.metric-number {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}

.metric-label {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 1.25rem;
}

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

.section.dark {
  background: var(--steel);
  color: #fff;
}

.section.dark p,
.section.dark li {
  color: rgba(255, 255, 255, 0.76);
}

.section.dark .section-kicker {
  color: #9de4ff;
}

.section.dark .card,
.section.dark .machine-card,
.section.dark .app-card,
.section.dark .process-step,
.section.dark .contact-card {
  color: var(--ink);
}

.section.dark .card p,
.section.dark .card li,
.section.dark .machine-card p,
.section.dark .app-card p,
.section.dark .process-step p,
.section.dark .contact-card p {
  color: var(--muted);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head p {
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 2.2rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card,
.machine-card,
.app-card,
.process-step,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.06);
}

.card {
  padding: 1.25rem;
}

.card.accent {
  border-top: 4px solid var(--blue);
}

.card.green {
  border-top-color: var(--green);
}

.card.red {
  border-top-color: var(--red);
}

.card h3,
.machine-card h3,
.app-card h3,
.process-step h3,
.contact-card h3 {
  margin-bottom: 0.65rem;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef3f8;
  box-shadow: var(--shadow);
}

.media-frame img,
.machine-card img,
.app-card img,
.wide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.tall {
  aspect-ratio: 4 / 5;
}

.media-frame.wide {
  aspect-ratio: 16 / 9;
}

.media-frame.machine {
  aspect-ratio: 16 / 10;
  background: #f7f9fc;
}

.media-frame.machine img {
  object-fit: contain;
  padding: 1rem;
}

.machine-card img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 1.25rem;
  background: #f7f9fc;
}

.machine-card .body,
.app-card .body,
.process-step .body,
.contact-card .body {
  padding: 1.25rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border: 1px solid #c8d4e2;
  border-radius: 999px;
  color: #344155;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.stat {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.wide-media {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 8;
  background: #e9eef5;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #eaf3fb;
  color: var(--blue-dark);
  font-weight: 800;
}

.band {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.section.dark .band {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #eef4fa;
  color: var(--ink);
  font-size: 0.9rem;
}

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

.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: stretch;
}

.process-step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
  background: #eaf3fb;
}

.app-card img {
  aspect-ratio: 16 / 10;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-dark), #152234);
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .section-kicker {
  color: #9de4ff;
}

.page-hero {
  padding: 4.5rem 1.25rem;
  background: #eef4fa;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 2.2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3.4rem;
}

.page-hero p {
  max-width: 680px;
  font-size: 1.08rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: #283448;
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #c6d2df;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: #eaf7ef;
  color: #1f6b43;
  font-weight: 800;
}

.form-note.show {
  display: block;
}

.footer {
  padding: 3rem 1.25rem 1.5rem;
  background: #0e1522;
  color: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
  gap: 2rem;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.15rem;
  }

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

  .nav-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1.25rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav-list {
    display: flex;
  }

  .nav-link {
    justify-content: flex-start;
  }

  .nav .button {
    display: none;
  }

  .hero-metrics,
  .stat-strip,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metric:nth-child(2) {
    border-right: 0;
  }

  .hero-metric:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section-head,
  .split,
  .split.reverse,
  .page-hero-inner,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .wide-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .topline {
    padding: 0.7rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

  h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero {
    min-height: 78svh;
  }

  .section,
  .page-hero {
    padding: 3.5rem 1rem;
  }

  .hero-inner {
    width: calc(100% - 2rem);
    padding: 4rem 0;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-metrics,
  .stat-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric,
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat {
    border-bottom-color: var(--line);
  }

  .hero-metric:last-child,
  .stat:last-child {
    border-bottom: 0;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step::before {
    min-height: 58px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
