:root {
  color-scheme: light;
  --ink: #11191f;
  --muted: #63717a;
  --line: #dce4e7;
  --page: #f5f7f7;
  --surface: #ffffff;
  --soft: #f2f6f7;
  --accent: #087c72;
  --accent-strong: #075f58;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 1px;
  color: #c7d1d6;
  font-size: 10px;
}

.header-login,
.primary-action,
.secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.header-login {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(14, 22, 27, 0.42);
  color: #ffffff;
}

.header-login:hover,
.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  height: min(820px, calc(100svh - 84px));
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101820;
  color: #ffffff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background: rgba(10, 16, 20, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #42c8ba;
}

.hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #e0e7ea;
  font-size: 20px;
  line-height: 1.7;
}

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

.primary-action {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.primary-action:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(14, 22, 27, 0.42);
  color: #ffffff;
}

.network-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 16, 20, 0.72);
  color: #dce5e8;
  font-size: 12px;
  font-weight: 800;
}

.network-strip span + span {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
  padding-inline-start: 30px;
}

.workflow {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 92px;
}

.section-heading {
  max-width: 680px;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-heading h2,
.product-band h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-block: 1px solid var(--line);
}

.workflow-grid article {
  min-width: 0;
  padding: 30px;
}

.workflow-grid article + article {
  border-inline-start: 1px solid var(--line);
}

.workflow-grid article > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.workflow-grid h3 {
  margin: 17px 0 0;
  font-size: 18px;
}

.workflow-grid p,
.product-band p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--soft);
  padding: 68px max(24px, calc((100vw - 1320px) / 2));
}

.product-band > div {
  max-width: 760px;
}

footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  color: var(--muted);
  font-size: 12px;
}

footer nav {
  display: flex;
  gap: 18px;
}

footer a:hover {
  color: var(--accent-strong);
}

@media (max-width: 780px) {
  .site-header {
    height: 64px;
    padding-inline: 18px;
  }

  .brand small {
    display: none;
  }

  .header-login {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero {
    height: calc(100svh - 58px);
    min-height: 590px;
  }

  .hero-media {
    object-position: 42% top;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 58px;
  }

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

  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .network-strip {
    min-height: 58px;
    gap: 14px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .network-strip span + span {
    padding-inline-start: 14px;
  }

  .workflow {
    width: calc(100% - 36px);
    padding: 64px 0 68px;
  }

  .section-heading h2,
  .product-band h2 {
    font-size: 28px;
  }

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

  .workflow-grid article {
    padding: 24px 4px;
  }

  .workflow-grid article + article {
    border-top: 1px solid var(--line);
    border-inline-start: 0;
  }

  .product-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 54px 18px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }
}

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

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