:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --line: #cbd5e1;
  --paper: #f8fafc;
  --white: #ffffff;
  --blue: #1d4ed8;
  --navy: #12364a;
  --green: #047857;
  --sky: #e0f2fe;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}

.brand span {
  font-size: 24px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 54, 74, 0.96), rgba(18, 54, 74, 0.68)),
    url("/static/core/sayq-wordmark-bg.png") center right / min(760px, 82vw) no-repeat,
    var(--navy);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.6fr);
  min-height: 74vh;
  overflow: hidden;
  padding: clamp(40px, 8vw, 96px) clamp(18px, 6vw, 80px);
}

.hero-copy {
  max-width: 740px;
}

.hero h1 {
  font-size: clamp(58px, 12vw, 132px);
  line-height: 0.88;
  margin: 0;
}

.lede {
  color: inherit;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  margin: 22px 0 0;
  max-width: 780px;
}

.hero-subcopy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 650;
  line-height: 1.35;
  margin: 18px 0 0;
  max-width: 680px;
}

.eyebrow {
  color: #bae6fd;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 900;
  min-height: 52px;
  padding: 0 18px;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-mark {
  justify-self: end;
  max-width: min(320px, 44vw);
  opacity: 0.92;
  width: 100%;
}

.band,
.privacy-band,
.page-section {
  padding: clamp(34px, 7vw, 82px) clamp(18px, 6vw, 80px);
}

.split-band {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
}

.section-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
}

article,
.text-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

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

.status-list span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  padding: 14px 16px;
}

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

h2 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
}

p,
li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

article p,
.text-block p {
  margin: 0;
}

.text-block {
  margin-top: 20px;
  max-width: 860px;
}

.privacy-band {
  background: var(--sky);
}

.privacy-band h2,
.page-section h1 {
  font-size: clamp(34px, 7vw, 66px);
  line-height: 1;
  margin: 0;
  max-width: 920px;
}

.privacy-list {
  margin: 24px 0 0;
  padding-left: 22px;
}

.page-section {
  min-height: 68vh;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 6vw, 80px);
}

.site-footer p {
  font-size: 15px;
  margin: 4px 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 78vh;
  }

  .hero-mark {
    justify-self: start;
    max-width: 180px;
  }

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

  .split-band {
    grid-template-columns: 1fr;
  }
}
