:root {
  color-scheme: light;
  --ink: #111317;
  --muted: #5f6672;
  --line: #d9dce1;
  --paper: #f7f4ed;
  --panel: #ffffff;
  --steel: #64717f;
  --cyan: #00a7c8;
  --ember: #f07b28;
  --mint: #68b88f;
  --shadow: 0 24px 70px rgba(17, 19, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(17, 19, 23, 0.1);
  background: rgba(247, 244, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero__actions,
.proof-strip,
.system-panel__topline,
.metric-row,
.contact {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 11px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 167, 200, 0.22);
}

.brand__suffix {
  color: var(--cyan);
}

.nav-links {
  justify-self: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #3e444d;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: #ffffff;
}

.header-action {
  justify-self: end;
  padding: 11px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 64px) 38px;
  overflow: hidden;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 10vw, 8.6rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero__lede,
.section__header p,
.contact p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.58;
}

.hero__lede {
  margin: 28px 0 0;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
}

.button--primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(17, 19, 23, 0.2);
}

.button--secondary {
  border: 1px solid rgba(17, 19, 23, 0.16);
  background: #ffffff;
}

.proof-strip {
  max-width: 680px;
  justify-content: space-between;
  gap: 14px;
  margin: 54px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 19, 23, 0.16);
}

.proof-strip div {
  min-width: 0;
}

.proof-strip dt {
  color: var(--cyan);
  font-weight: 900;
}

.proof-strip dd {
  margin: 5px 0 0;
  color: #3d444d;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% -14% 4% 3%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 167, 200, 0.28), transparent 28%),
    radial-gradient(circle at 56% 58%, rgba(240, 123, 40, 0.2), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(226, 230, 231, 0.65));
  box-shadow: inset 0 0 0 1px rgba(17, 19, 23, 0.08);
}

.hero__mark {
  position: relative;
  z-index: 1;
  width: min(80vw, 480px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.system-panel {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 2;
  width: min(88vw, 340px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 54px rgba(17, 19, 23, 0.18);
  backdrop-filter: blur(14px);
}

.system-panel__topline,
.metric-row {
  justify-content: space-between;
  gap: 18px;
}

.system-panel__topline {
  color: #303741;
  font-size: 0.88rem;
  font-weight: 900;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d7d54;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 18px 0;
}

.signal-grid span {
  height: 58px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(0, 167, 200, 0.16), rgba(240, 123, 40, 0.22));
}

.signal-grid span:nth-child(2),
.signal-grid span:nth-child(5) {
  transform: translateY(14px);
}

.signal-grid span:nth-child(3) {
  transform: translateY(-8px);
}

.metric-row {
  padding: 12px 0;
  border-top: 1px solid rgba(17, 19, 23, 0.1);
  color: var(--muted);
}

.metric-row strong {
  color: var(--ink);
}

.section {
  padding: 84px clamp(20px, 5vw, 64px);
  background: #ffffff;
}

.section__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section__header p,
.contact p {
  margin: 0;
}

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

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(17, 19, 23, 0.11);
  border-radius: 8px;
  background: #fbfaf6;
}

.service-card__kicker {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #005c6f;
  background: rgba(0, 167, 200, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 84px clamp(20px, 5vw, 64px);
  background: #202226;
  color: #ffffff;
}

.process .eyebrow {
  color: #ff9b4a;
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}

.process-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 26px 0;
  background: #202226;
}

.process-list span {
  color: #69d7eb;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.contact {
  justify-content: space-between;
  gap: 28px;
  padding: 76px clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(104, 184, 143, 0.18), transparent 38%),
    var(--paper);
}

.contact h2 {
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section__header,
  .process {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 11ch;
  }

  .hero__visual {
    min-height: 470px;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 16px 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .proof-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__mark {
    width: min(94vw, 360px);
  }

  .system-panel {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .section,
  .process,
  .contact {
    padding: 62px 16px;
  }

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

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
