:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5c6875;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #d8e1ea;
  --navy: #123047;
  --teal: #0f766e;
  --green: #2f855a;
  --amber: #b7791f;
  --blue: #2563eb;
  --red: #b42318;
  --shadow: 0 18px 46px rgba(18, 48, 71, 0.12);
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 12px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(216, 225, 234, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 8px;
  color: var(--teal);
  background: #f0fdfa;
}

.hero,
.section,
.band,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  min-height: 620px;
  padding: 72px 0 58px;
}

.hero-hub {
  min-height: 660px;
}

.page-hero {
  min-height: 560px;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 48, 71, 0.08);
}

.button.primary {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.button.secondary {
  background: #f8fafc;
}

.hero-panel,
.pilot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.12;
}

.hero-panel ul,
.pilot-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.pilot-card li {
  padding-left: 18px;
  color: var(--ink);
  font-weight: 750;
  position: relative;
}

.hero-panel li::before,
.pilot-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "";
  width: 7px;
  height: 7px;
  top: 0.63em;
  border-radius: 99px;
  background: currentColor;
}

.hero-panel p,
.section p,
.band p,
.pilot p,
.site-footer span {
  color: var(--muted);
}

.section {
  padding: 68px 0;
}

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

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

.solution-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.08);
}

.solution-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card p {
  margin: 0;
}

.solution-card a {
  width: fit-content;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.accent-stock {
  border-top-color: var(--teal);
}

.accent-report {
  border-top-color: var(--blue);
}

.accent-elo {
  border-top-color: var(--amber);
}

.accent-asset {
  border-top-color: var(--green);
}

.accent-build {
  border-top-color: var(--red);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.steps article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 48, 71, 0.08);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.feature-grid,
.sentinel-grid,
.pill-list {
  display: grid;
  gap: 12px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid span,
.pill-list span,
.sentinel-grid article {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.sentinel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sentinel-grid article {
  min-height: 160px;
}

.sentinel-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.disclaimer {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: #fffaf0;
}

.disclaimer.strong {
  border-left-color: var(--red);
  color: var(--ink);
  font-weight: 900;
}

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 54px;
  padding: 38px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 58%);
}

.pilot-card .button {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--navy);
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .band,
  .split-section,
  .pilot,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .solution-grid,
  .steps,
  .feature-grid,
  .sentinel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: static;
    padding: 12px 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.86rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section,
  .band,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 42px 0 38px;
  }

  .section {
    padding: 46px 0;
  }

  .band,
  .pilot {
    padding: 22px;
  }

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

  .solution-card,
  .steps article,
  .sentinel-grid article {
    min-height: auto;
  }
}
