:root {
  color-scheme: light;
  --ink: #101820;
  --text: #29323a;
  --muted: #5d6872;
  --paper: #ffffff;
  --surface: #f3f6f4;
  --surface-strong: #e7ece8;
  --line: #d8dfda;
  --teal: #008f9a;
  --teal-dark: #006f86;
  --blue: #0b42b5;
  --green: #62ba72;
  --gold: #b68b2d;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  --header-height: 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 223, 218, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  line-height: 1;
}

.brand img {
  width: 58px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--ink);
  margin-left: 4px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--teal-dark);
  color: #fff;
}

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

.nav-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.section {
  padding: 92px 0;
}

.hero {
  min-height: calc(100svh - 126px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 24, 32, 0.06) 1px, transparent 1px),
    var(--surface);
  background-size: 44px 44px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
  max-width: 10ch;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 20px;
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.48;
}

.product-kicker {
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 760;
}

.hero-note {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 127, 125, 0.22);
}

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

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
}

.hero-media {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 48px rgba(16, 24, 32, 0.14));
}

.signal-band {
  background: var(--ink);
  color: #fff;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.signal-grid div {
  min-height: 150px;
  padding: 28px;
  background: var(--ink);
}

.signal-grid span {
  display: block;
  color: #8edbd5;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.signal-grid strong {
  display: block;
  font-size: 19px;
  color: #fff;
}

.signal-grid p {
  margin: 8px 0 0;
  color: #ced8d4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.statement-panel {
  max-width: 940px;
  padding: 30px;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: var(--surface);
}

.statement-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 980px;
  margin-top: 34px;
}

.text-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: #fff;
}

.why-now {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-list {
  display: grid;
  gap: 18px;
}

.insight-list div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.insight-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.insight-list strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.insight-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.principles {
  background: #fff;
}

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

.service-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:nth-child(2n) svg {
  color: var(--blue);
}

.service-card:nth-child(3n) svg {
  color: var(--green);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.approach {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 64px;
  align-items: start;
}

.process-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: #fff;
}

.systems {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 70px;
}

.about-copy {
  font-size: 18px;
  color: var(--text);
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 18px;
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.application-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.contact {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 60px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.contact-methods svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 46px;
  border: 1px solid #cbd4ce;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 127, 125, 0.18);
  border-color: var(--teal);
}

.contact-form .button {
  width: fit-content;
  min-width: 170px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: #dfe7e3;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.5fr) minmax(220px, 0.7fr);
  gap: 36px;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  margin: 14px 0 0;
  color: #bfcac5;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

.company-note p {
  margin: 0;
}

.company-note p + p {
  margin-top: 10px;
}

@media (max-width: 920px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-grid,
  .split-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 320px;
  }

  .signal-grid,
  .service-grid,
  .text-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .product-kicker {
    font-size: 18px;
  }

  .statement-panel {
    padding: 22px;
  }

  .statement-panel p {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 260px;
  }

  .signal-grid div {
    min-height: auto;
    padding: 22px 0;
  }

  .signal-grid {
    background: transparent;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 20px;
  }

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