:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #607080;
  --paper: #f6f8f4;
  --surface: #ffffff;
  --line: #d7dfd6;
  --pine: #0d5f4a;
  --pine-strong: #084536;
  --blue: #1f5fbf;
  --amber: #d18718;
  --coral: #c4513d;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.16);
  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(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(23, 32, 42, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 42, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(31, 95, 191, 0.35);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 32, 42, 0.12);
  background: rgba(246, 248, 244, 0.91);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-metrics,
.connector-flow,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--pine);
  background: var(--pine);
  color: white;
  font-size: 15px;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 760;
}

.nav-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 18px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 4vw, 56px) 92px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(246, 248, 244, 0.98) 0%, rgba(246, 248, 244, 0.9) 38%, rgba(246, 248, 244, 0.24) 76%);
}

.hero-visual {
  position: absolute;
  inset: 70px 0 auto auto;
  z-index: -2;
  width: min(1020px, 72vw);
  height: auto;
  filter: drop-shadow(var(--shadow));
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pine);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 11vw, 138px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  color: #304251;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.22;
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--pine);
  color: white;
}

.button.secondary {
  border-color: rgba(23, 32, 42, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.hero-metrics {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 22px;
  gap: 1px;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.hero-metrics div {
  min-width: 178px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(23, 32, 42, 0.08);
}

.hero-metrics dt {
  font-weight: 840;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(860px, 100%);
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.channel-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.system-section,
.wordpress-section {
  background: rgba(255, 255, 255, 0.72);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.capability-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--surface);
}

.capability-index {
  color: var(--amber);
  font-size: 13px;
  font-weight: 860;
}

.capability-grid h3 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.capability-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.channel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: #eef1ec;
}

.channel-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 32, 42, 0.16);
}

.channel-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 32, 42, 0.16);
}

.channel-list span {
  font-size: 24px;
  font-weight: 780;
}

.channel-list strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.connector-flow {
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}

.connector-flow div {
  flex: 1;
  min-height: 160px;
  padding: 24px;
  background: var(--surface);
}

.connector-flow span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 830;
  text-transform: uppercase;
}

.connector-flow strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.08;
}

.roadmap-section {
  background: #18251f;
  color: white;
}

.roadmap-section .eyebrow,
.roadmap-section .section-heading p {
  color: #9fd4c5;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
}

.roadmap li {
  min-height: 210px;
  padding: 24px;
  background: #20342d;
}

.roadmap span {
  color: #f0c36b;
  font-weight: 860;
}

.roadmap p {
  margin: 52px 0 0;
  color: #dce8e2;
  font-size: 18px;
  line-height: 1.5;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #111a16;
  color: white;
}

.site-footer span {
  font-weight: 820;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    margin-top: 38px;
  }

  .hero::after {
    background: rgba(246, 248, 244, 0.92);
  }

  .hero-metrics {
    position: static;
    flex-wrap: wrap;
    margin-top: 24px;
  }

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

  .channel-section {
    grid-template-columns: 1fr;
  }
}

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

  .nav-action {
    display: none;
  }

  .hero,
  .section {
    padding-inline: 16px;
  }

  .hero-actions,
  .hero-metrics,
  .connector-flow {
    align-items: stretch;
    flex-direction: column;
  }

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

  .capability-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: 220px;
  }

  .channel-list li {
    flex-direction: column;
    gap: 8px;
  }
}
