:root {
  --ink: #111827;
  --muted: #586270;
  --line: #d9dde3;
  --paper: #ffffff;
  --surface: #f5f6f8;
  --surface-strong: #ebeef2;
  --blue: #0a5fb4;
  --blue-soft: #e8f2ff;
  --red: #c84332;
  --green: #16735c;
  --deep: #0a0f18;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.utility-bar {
  align-items: center;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-size: 12px;
  font-weight: 680;
  gap: 20px;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 clamp(20px, 4vw, 64px);
}

.utility-bar p {
  margin: 0;
}

.utility-bar div {
  display: flex;
  gap: 18px;
}

.utility-bar a {
  color: #ffffff;
  text-decoration: none;
}

.utility-bar a:hover {
  text-decoration: underline;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 clamp(20px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand,
.site-nav,
.header-cta,
.hero-actions,
.button-primary,
.button-secondary,
.solution-card a,
.footer-nav,
.social-links {
  align-items: center;
  display: inline-flex;
}

.brand {
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 3px;
  color: #ffffff;
  display: inline-flex;
  font-size: 20px;
  font-weight: 840;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 34px;
}

.brand-mark::after {
  background: var(--red);
  bottom: 7px;
  content: "";
  height: 3px;
  left: 8px;
  position: absolute;
  right: 8px;
}

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

.brand-copy strong {
  font-size: 17px;
  font-weight: 820;
  line-height: 1;
}

.brand-copy small {
  color: #66707e;
  font-size: 11px;
  font-weight: 760;
  margin-top: 3px;
  text-transform: uppercase;
}

.site-nav {
  gap: 28px;
}

.site-nav a,
.header-cta {
  color: #1f2937;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.header-cta:hover {
  color: var(--blue);
}

.header-cta {
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--red);
  min-height: 38px;
  padding: 9px 14px;
}

.hero {
  align-items: center;
  background: linear-gradient(115deg, #0a0f18 0%, #111b27 58%, #223026 100%);
  color: #ffffff;
  display: flex;
  min-height: min(650px, calc(100vh - 104px));
  overflow: hidden;
  padding: clamp(56px, 7vw, 94px) clamp(20px, 4vw, 64px);
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(10, 15, 24, 0.94) 0%, rgba(10, 15, 24, 0.78) 48%, rgba(10, 15, 24, 0.38) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  content: "";
  inset: 0;
  opacity: 0.22;
  position: absolute;
  z-index: 2;
}

.hero-visual {
  height: auto;
  max-width: 980px;
  opacity: 0.52;
  position: absolute;
  right: clamp(-260px, -9vw, -80px);
  top: 50%;
  transform: translateY(-50%);
  width: min(68vw, 980px);
  z-index: 0;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 820;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9b8e;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 720;
  line-height: 1.06;
  margin: 0;
  max-width: 760px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.58;
  margin: 24px 0 0;
  max-width: 680px;
}

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

.button-primary,
.button-secondary,
.solution-card a {
  border-radius: 3px;
  font-size: 14px;
  font-weight: 760;
  min-height: 44px;
  padding: 11px 16px;
  text-decoration: none;
}

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

.button-primary:hover {
  background: #ac3528;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: #ffffff;
}

.priority-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  padding: clamp(38px, 5vw, 58px) clamp(20px, 4vw, 64px);
}

.section-kicker h2,
.section-heading h2,
.platform-intro h2,
.governance-section h2 {
  color: var(--ink);
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 760;
  line-height: 1.12;
  margin: 0;
}

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

.priority-grid a {
  border: 1px solid var(--line);
  border-right: 0;
  min-height: 154px;
  padding: 20px;
  text-decoration: none;
}

.priority-grid a:last-child {
  border-right: 1px solid var(--line);
}

.priority-grid a:hover {
  background: var(--surface);
}

.priority-grid span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 820;
  margin-bottom: 20px;
}

.priority-grid strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.22;
}

.priority-grid small {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 10px;
}

.stat-band {
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 4vw, 64px);
}

.stat-band div {
  border-right: 1px solid var(--line);
  min-height: 102px;
  padding: 22px 24px 20px 0;
}

.stat-band div:last-child {
  border-right: 0;
}

.stat-band strong {
  color: var(--ink);
  display: block;
  font-size: 30px;
  font-weight: 780;
  line-height: 1;
}

.stat-band span {
  color: #566170;
  display: block;
  font-size: 12px;
  font-weight: 780;
  margin-top: 8px;
  text-transform: uppercase;
}

.story-section {
  background: var(--paper);
  padding-bottom: clamp(44px, 5vw, 68px);
  padding-top: clamp(44px, 5vw, 68px);
}

.story-panel {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  padding: clamp(26px, 4vw, 44px) 0;
}

.story-panel h2 {
  color: var(--ink);
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 760;
  line-height: 1.12;
  margin: 0;
}

.story-panel p:last-child {
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.58;
  margin: 0;
}

.section {
  padding: clamp(54px, 6vw, 82px) clamp(20px, 4vw, 64px);
}

.section-heading {
  max-width: 840px;
}

.section-heading p:last-child,
.platform-intro p:last-child,
.governance-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  margin: 16px 0 0;
  max-width: 760px;
}

.products-section {
  background: var(--surface);
}

.solution-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.solution-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  position: relative;
}

.solution-card::before {
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.recruit-card::before {
  background: var(--red);
}

.global-card::before {
  background: var(--blue);
}

.gov-card::before {
  background: var(--green);
}

.solution-card small {
  color: #66707e;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.solution-card h3 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 760;
  line-height: 1.16;
  margin: 12px 0 0;
}

.solution-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 16px 0 0;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
}

.solution-card li {
  align-items: center;
  color: #27313d;
  display: flex;
  font-size: 14px;
  font-weight: 680;
  gap: 10px;
}

.solution-card li::before {
  background: var(--red);
  content: "";
  height: 6px;
  width: 6px;
}

.global-card li::before {
  background: var(--blue);
}

.gov-card li::before {
  background: var(--green);
}

.solution-card a {
  border: 1px solid var(--ink);
  color: var(--ink);
  margin-top: auto;
  width: fit-content;
}

.solution-card a:hover {
  background: var(--ink);
  color: #ffffff;
}

.platform-section {
  background: var(--paper);
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
}

.module-list {
  border-top: 1px solid var(--line);
}

.module-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 0.42fr 1fr;
  padding: 20px 0;
}

.module-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.module-list strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.38;
}

.industries-section {
  background: var(--surface);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.audience-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 186px;
  padding: 22px;
}

.audience-grid article + article {
  border-left: 0;
}

.audience-grid h3,
.social-grid h3 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 760;
  line-height: 1.22;
  margin: 0;
}

.audience-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 14px 0 0;
}

.governance-section {
  align-items: center;
  background: var(--deep);
  color: #ffffff;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  padding: clamp(54px, 6vw, 82px) clamp(20px, 4vw, 64px);
}

.governance-section h2 {
  color: #ffffff;
}

.governance-section p {
  color: rgba(255, 255, 255, 0.75);
}

.governance-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.governance-panel div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 14px;
  grid-template-columns: 0.34fr 1fr;
  min-height: 76px;
  padding: 18px 0;
}

.governance-panel span {
  color: #ff9b8e;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.governance-panel strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.42;
}

.social-section {
  background: var(--paper);
}

.social-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.social-grid article {
  border: 1px solid var(--line);
  padding: 22px;
}

.social-links {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  min-height: 34px;
  padding: 8px 13px;
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.site-footer {
  align-items: flex-start;
  background: #070b12;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 30px clamp(20px, 4vw, 64px);
}

.footer-main {
  max-width: 560px;
}

.footer-main p {
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
}

.footer-nav {
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
  max-width: 560px;
}

.footer-nav a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.legal-strip {
  align-items: center;
  background: #04070c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  font-size: 11px;
  gap: 18px;
  justify-content: space-between;
  line-height: 1.45;
  padding: 13px clamp(20px, 4vw, 64px);
}

.legal-strip p {
  margin: 0;
}

.legal-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-strip a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  text-decoration: none;
}

.legal-strip a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.legal-page {
  background: var(--surface);
}

.legal-header {
  position: static;
}

.policy-content {
  padding: clamp(40px, 6vw, 78px) clamp(20px, 4vw, 64px);
}

.policy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(26px, 5vw, 52px);
}

.policy-card h1 {
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 760;
  line-height: 1.08;
  margin: 0;
}

.policy-card h2 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
  margin: 28px 0 0;
}

.policy-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  margin: 14px 0 0;
}

.policy-card a {
  color: var(--blue);
  font-weight: 700;
}

.policy-date {
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .priority-section,
  .story-panel,
  .platform-section,
  .governance-section {
    grid-template-columns: 1fr;
  }

  .priority-grid,
  .solution-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .priority-grid a:nth-child(2n),
  .audience-grid article + article {
    border-left: 1px solid var(--line);
  }

  .solution-card {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .utility-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 16px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 18px 64px;
  }

  .hero::before {
    background: rgba(10, 15, 24, 0.84);
  }

  .hero-visual {
    opacity: 0.28;
    right: -330px;
    width: 980px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .priority-section,
  .section,
  .governance-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .priority-grid,
  .stat-band,
  .solution-grid,
  .audience-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .priority-grid a,
  .priority-grid a:last-child {
    border-right: 1px solid var(--line);
  }

  .priority-grid a + a,
  .audience-grid article + article {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .stat-band div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 92px;
  }

  .stat-band div:last-child {
    border-bottom: 0;
  }

  .section-kicker h2,
  .section-heading h2,
  .platform-intro h2,
  .governance-section h2 {
    font-size: 28px;
  }

  .solution-card {
    min-height: auto;
    padding: 20px;
  }

  .module-list div,
  .governance-panel div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }

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

  .legal-strip nav {
    justify-content: flex-start;
  }
}
