:root {
  color-scheme: light;
  --gw-bg: #f5f7fb;
  --gw-ink: #151d2c;
  --gw-muted: #617086;
  --gw-panel: #ffffff;
  --gw-line: #d9e1ec;
  --gw-blue: #245d9c;
  --gw-green: #24745a;
  --gw-yellow: #9a6519;
  --gw-red: #a23b3b;
  --gw-violet: #5f55a3;
  --gw-aqua: #1d7284;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--gw-bg);
  color: var(--gw-ink);
  overflow-x: hidden;
}

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

.gw-home {
  background: var(--gw-bg);
}

.gw-hero {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  border-bottom: 1px solid var(--gw-line);
  background: #eef3f8;
}

.gw-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
}

.gw-brand,
.gw-nav-actions,
.gw-hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gw-brand,
.gw-nav a,
.gw-button {
  color: inherit;
  text-decoration: none;
}

.gw-brand {
  font-weight: 760;
}

.gw-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--gw-ink);
  color: #ffffff;
}

.gw-nav-actions {
  color: var(--gw-muted);
  font-size: 14px;
  font-weight: 700;
}

.gw-hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 9vh;
}

.gw-kicker {
  margin: 0 0 12px;
  color: var(--gw-aqua);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.gw-hero-copy {
  max-width: 700px;
  margin-bottom: 26px;
  color: #334055;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.gw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--gw-ink);
  border-radius: 8px;
  font-weight: 800;
}

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

.gw-button-secondary {
  background: #ffffff;
  color: var(--gw-ink);
}

.gw-trust-line {
  margin: 22px 0 0;
  color: #39475c;
  font-size: 15px;
  font-weight: 800;
}

.gw-signal-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: var(--gw-muted);
  pointer-events: none;
}

.gw-market-tape {
  position: absolute;
  right: -5vw;
  bottom: 12vh;
  display: flex;
  gap: 10px;
  width: 70vw;
  min-width: 820px;
  padding: 12px;
  border-top: 1px solid rgba(21, 29, 44, 0.14);
  border-bottom: 1px solid rgba(21, 29, 44, 0.14);
  background: rgba(255, 255, 255, 0.76);
  transform: rotate(-4deg);
}

.gw-market-tape span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--gw-line);
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.gw-market-tape .is-blue {
  color: var(--gw-blue);
}

.gw-market-tape .is-violet {
  color: var(--gw-violet);
}

.gw-market-tape .is-yellow {
  color: var(--gw-yellow);
}

.gw-market-tape .is-green {
  color: var(--gw-green);
}

.gw-market-tape .is-red {
  color: var(--gw-red);
}

.gw-scene-grid {
  position: absolute;
  right: 7vw;
  top: 19vh;
  display: grid;
  grid-template-columns: repeat(5, 40px);
  align-items: end;
  gap: 12px;
  height: 260px;
  opacity: 0.78;
}

.gw-scene-column {
  min-height: 80px;
  border: 1px solid rgba(36, 93, 156, 0.24);
  border-radius: 8px 8px 0 0;
  background: #dce8f4;
}

.gw-scene-column.is-tall {
  height: 245px;
  background: #d9e7df;
}

.gw-scene-column.is-mid {
  height: 170px;
}

.gw-scene-column.is-short {
  height: 100px;
  background: #efe3c9;
}

.gw-scene-column.is-rise {
  height: 215px;
  background: #e4dff2;
}

.gw-evidence-nodes {
  position: absolute;
  right: 12vw;
  top: 55vh;
  display: grid;
  gap: 9px;
  width: 280px;
}

.gw-evidence-nodes span {
  padding: 10px 12px;
  border: 1px solid var(--gw-line);
  border-radius: 8px;
  background: #ffffff;
  color: #39475c;
  font-size: 13px;
  font-weight: 800;
}

.gw-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
}

.gw-band p {
  color: #39475c;
  font-size: 18px;
  line-height: 1.55;
}

.gw-section-copy {
  max-width: 600px;
}

.gw-signal-list,
.gw-step-list,
.gw-capability-grid,
.gw-evidence-grid {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gw-signal-list,
.gw-capability-grid,
.gw-evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gw-signal-list li,
.gw-capability-grid li,
.gw-evidence-grid li,
.gw-step-list li,
.gw-proof-stack span,
.gw-mission-strip span {
  border: 1px solid var(--gw-line);
  border-radius: 8px;
  background: var(--gw-panel);
}

.gw-signal-list li,
.gw-capability-grid li,
.gw-evidence-grid li,
.gw-proof-stack span,
.gw-mission-strip span {
  min-height: 44px;
  padding: 12px;
  color: #2d3a4f;
  font-weight: 780;
}

.gw-steps {
  border-top: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
}

.gw-step-list {
  counter-reset: step;
}

.gw-step-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
}

.gw-step-list span {
  color: var(--gw-blue);
  font-weight: 850;
}

.gw-split {
  align-items: start;
}

.gw-mission {
  display: block;
}

.gw-mission-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gw-evidence {
  border-top: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
}

.gw-evidence strong {
  display: inline-flex;
  margin-top: 4px;
  color: var(--gw-green);
}

.gw-proof-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gw-cta {
  display: block;
  max-width: 880px;
  text-align: center;
}

.gw-cta .gw-button {
  margin-top: 10px;
}

.gw-compliance {
  max-width: 740px;
  margin: 24px auto 0;
  color: var(--gw-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .gw-nav {
    align-items: flex-start;
  }

  .gw-nav-actions {
    display: none;
  }

  .gw-hero {
    min-height: 92vh;
  }

  .gw-hero-content {
    align-self: start;
    padding-top: 14vh;
    padding-bottom: 7vh;
  }

  .gw-hero-actions {
    flex-wrap: wrap;
  }

  .gw-market-tape {
    right: -240px;
    bottom: 8vh;
  }

  .gw-scene-grid {
    right: -10px;
    top: 18vh;
    opacity: 0.44;
  }

  .gw-evidence-nodes {
    right: -40px;
    top: 55vh;
    opacity: 0.58;
  }

  .gw-band {
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .gw-signal-list,
  .gw-capability-grid,
  .gw-evidence-grid,
  .gw-proof-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .gw-nav,
  .gw-hero-content,
  .gw-band {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(38px, 17vw, 56px);
  }

  .gw-hero-copy,
  .gw-band p {
    font-size: 16px;
  }

  .gw-hero-content {
    padding-top: 120px;
  }

  .gw-button {
    width: 100%;
  }

  .gw-market-tape {
    display: none;
  }

  .gw-scene-grid {
    right: -42px;
    grid-template-columns: repeat(5, 30px);
    gap: 8px;
    opacity: 0.28;
  }

  .gw-evidence-nodes {
    display: none;
  }
}

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