:root {
  --ink: #121316;
  --ink-2: #252a31;
  --muted: #667085;
  --line: #d9dee7;
  --soft: #f5f7fa;
  --white: #ffffff;
  --red: #c00000;
  --red-2: #ef3128;
  --cyan: #00a7b5;
  --green: #0aa36f;
  --yellow: #f2c200;
  --shadow: 0 18px 60px rgba(18, 19, 22, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 222, 231, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 256px;
}

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

.brand-mark {
  width: 10px;
  height: 50px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
}

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

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

.nav-links a:hover {
  color: var(--red);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 760;
  letter-spacing: 0;
}

.nav-action,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(192, 0, 0, 0.18);
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.92)),
    linear-gradient(135deg, rgba(192, 0, 0, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(0, 167, 181, 0.1), transparent 42%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 64px;
  align-items: center;
  min-height: 690px;
  padding: 76px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 62px;
  line-height: 1.02;
  font-weight: 850;
}

.hero-copy {
  max-width: 690px;
  color: #394150;
  font-size: 20px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 700px;
}

.proof-item {
  border-left: 3px solid var(--red);
  padding-left: 14px;
}

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

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

.hero-panel {
  position: relative;
  padding: 28px;
  color: var(--white);
  background: #15171b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(192, 0, 0, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(0, 167, 181, 0.18), transparent 44%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce3ee;
  font-size: 13px;
  font-weight: 700;
}

.status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(10, 163, 111, 0.14);
}

.code-lines {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.code-lines li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  color: #dce3ee;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.code-lines span {
  color: #8f9bad;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: #abb6c8;
  font-size: 13px;
}

section {
  padding: 86px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

.section-head h2 {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 840;
}

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

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

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

.service-card,
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  min-height: 255px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.service-card:nth-child(2) .service-icon {
  background: var(--red);
}

.service-card:nth-child(3) .service-icon {
  background: var(--cyan);
}

.service-card:nth-child(4) .service-icon {
  background: var(--green);
}

.service-card h3,
.process-step h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.service-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.product {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 410px;
  background:
    linear-gradient(135deg, rgba(10, 163, 111, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(242, 194, 0, 0.16), transparent 45%),
    #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-visual img {
  width: min(300px, 76%);
}

.product-copy h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.07;
}

.product-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 30px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 850;
}

.feature strong {
  display: block;
  margin-bottom: 3px;
}

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

.process {
  background: #14161a;
  color: var(--white);
}

.process .section-head p {
  color: #b8c2d2;
}

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

.process-step {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 850;
}

.process-step p {
  color: #b8c2d2;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: start;
}

.about-text {
  color: #3c4450;
  font-size: 18px;
}

.capabilities {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.capability span {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.cta {
  padding: 0;
  background: var(--white);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background: #15171b;
  border-radius: var(--radius);
}

.cta-box h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.cta-box p {
  margin-bottom: 0;
  color: #c6cfdd;
}

.site-footer {
  margin-top: 86px;
  padding: 54px 0 28px;
  color: #c6cfdd;
  background: #111214;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 38px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand img {
  width: 232px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 8px;
}

.footer-about p {
  max-width: 360px;
  margin: 0;
  color: #aeb8c8;
  font-size: 14px;
}

.footer-column {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #aeb8c8;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f9bad;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    min-height: auto;
    padding: 16px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .product-grid,
  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 36px;
    padding: 58px 0;
  }

  h1 {
    font-size: 44px;
  }

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

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

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

  .brand img {
    width: 168px;
    height: 62px;
  }

  .brand {
    min-width: 190px;
  }

  .brand-mark {
    height: 44px;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-copy,
  .section-head p,
  .product-copy > p,
  .about-text {
    font-size: 16px;
  }

  .hero-proof,
  .service-grid,
  .process-grid,
  .feature-list,
  .panel-metrics {
    grid-template-columns: 1fr;
  }

  section {
    padding: 62px 0;
  }

  .section-head h2,
  .product-copy h2 {
    font-size: 30px;
  }

  .hero-panel,
  .cta-box {
    padding: 22px;
  }

  .code-lines li {
    grid-template-columns: 1fr;
  }

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

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}
