:root {
  color-scheme: light;
  --ink: #101312;
  --ink-soft: #24302c;
  --paper: #f8faf6;
  --paper-strong: #ffffff;
  --muted: #59645f;
  --line: #d9ded5;
  --green: #2f8f68;
  --green-dark: #176044;
  --amber: #b97817;
  --cyan: #217d8f;
  --red: #b74735;
  --shadow: 0 22px 60px rgba(16, 19, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(47, 143, 104, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  color: var(--paper);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(217, 222, 213, 0.74);
  background: rgba(248, 250, 246, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-symbol {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(248, 250, 246, 0.09);
}

.site-header.is-scrolled .brand-symbol {
  border-color: transparent;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 6px;
  padding: 8px 11px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(248, 250, 246, 0.13);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(16, 19, 18, 0.07);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  min-height: 88svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

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

.signal-scene {
  z-index: 0;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.96) 0%, rgba(16, 19, 18, 0.82) 36%, rgba(16, 19, 18, 0.38) 100%),
    linear-gradient(0deg, rgba(16, 19, 18, 0.92) 0%, rgba(16, 19, 18, 0.08) 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(740px, calc(100% - 40px));
  margin-inline: max(20px, calc((100vw - 1120px) / 2)) auto;
  padding-top: 96px;
  padding-bottom: 130px;
}

.eyebrow,
.section-kicker,
.product-type {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  visibility: hidden;
}

.hero .eyebrow {
  color: #63d2a1;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 12px 0 18px;
  font-size: 72px;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 10px 0 0;
  max-width: 850px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 0;
  color: rgba(248, 250, 246, 0.82);
  font-size: 22px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: rgba(16, 19, 18, 0.12);
}

.button-primary {
  background: var(--green);
  color: #ffffff;
}

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

.button-secondary {
  border-color: rgba(248, 250, 246, 0.34);
  background: rgba(248, 250, 246, 0.08);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(248, 250, 246, 0.76);
  background: rgba(248, 250, 246, 0.14);
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 30px;
  left: max(20px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(248, 250, 246, 0.18);
  background: rgba(248, 250, 246, 0.12);
}

.hero-status span {
  min-height: 58px;
  padding: 15px;
  background: rgba(16, 19, 18, 0.58);
  color: rgba(248, 250, 246, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
  padding: 42px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.intro-text {
  margin: 0;
  max-width: 900px;
  color: var(--ink-soft);
  font-size: 25px;
  line-height: 1.38;
}

.section {
  padding: 96px 0;
}

.section-contrast {
  background: #17201d;
  color: var(--paper);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading p:not(.section-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-contrast .section-heading p:not(.section-kicker) {
  color: rgba(248, 250, 246, 0.72);
}

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

.product-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  padding: 30px;
  box-shadow: 0 8px 28px rgba(16, 19, 18, 0.06);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--green);
}

.product-card-accent::before {
  background: var(--amber);
}

.product-card-top {
  display: grid;
  gap: 12px;
}

.product-card h3 {
  font-size: 38px;
}

.product-summary {
  margin: 34px 0 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 2px;
  background: var(--cyan);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(248, 250, 246, 0.18);
  border-left: 1px solid rgba(248, 250, 246, 0.18);
}

.service-item {
  min-height: 330px;
  border-right: 1px solid rgba(248, 250, 246, 0.18);
  border-bottom: 1px solid rgba(248, 250, 246, 0.18);
  padding: 24px;
}

.service-graphic {
  width: 92px;
  height: 92px;
  margin-bottom: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(16, 19, 18, 0.18));
}

.service-index {
  display: inline-block;
  margin-bottom: 18px;
  color: #f2b84b;
  font-size: 13px;
  font-weight: 900;
}

.service-item p {
  margin: 18px 0 0;
  color: rgba(248, 250, 246, 0.72);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.approach-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.approach-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.75fr) minmax(0, 1fr);
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.approach-row p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background: #ffffff;
  padding: 86px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(16, 19, 18, 0.06);
}

.contact-panel p {
  margin: 0 0 24px;
  color: var(--muted);
}

.contact-panel .button {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 26px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 920px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    padding-top: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-content {
    padding-top: 130px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-status,
  .product-grid,
  .service-grid,
  .approach-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 230px;
  }

  .service-graphic {
    margin-bottom: 24px;
  }

  .service-index {
    margin-bottom: 14px;
  }

  .approach-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: absolute;
    display: grid;
    gap: 14px;
    color: var(--paper);
  }

  .site-header.is-scrolled {
    position: fixed;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 4px;
  }

  .site-nav a {
    padding: 7px 8px;
  }

  .hero {
    min-height: 88vh;
    min-height: 88svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 19, 18, 0.97) 0%, rgba(16, 19, 18, 0.84) 100%),
      linear-gradient(0deg, rgba(16, 19, 18, 0.94) 0%, rgba(16, 19, 18, 0.08) 42%);
  }

  .hero-content {
    width: min(100% - 28px, 740px);
    margin-inline: auto;
    padding-top: 150px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy,
  .intro-text {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

  .hero-status {
    display: none;
  }

  .intro-grid,
  .footer-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .product-card {
    min-height: 0;
    padding: 24px;
  }

  .product-card h3 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
