:root {
  --bg: #eff1f5;
  --fg: #5c5f77;
  --muted: #4c4f69;
  --border: rgba(15, 23, 42, 0.1);
  --link: #1e66f5;

  --maxw: 960px;
  --measure: 68ch;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #181926;
    --fg: #b8c0e0;
    --muted: #cad3f5;
    --border: rgba(255, 255, 255, 0.12);
    --link: #8aadf4;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden; /* avoids 100vw full-bleed causing horizontal scroll */
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    'SF Pro Text',
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    'Apple Color Emoji',
    'Segoe UI Emoji';
  line-height: 1.55;
  letter-spacing: -0.01em;
}

a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 18px 56px;
}

@media (max-width: 420px) {
  .wrap {
    padding: 22px 14px 44px;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 2px 26px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: #7287fd;
  display: inline-block;
}

@media (prefers-color-scheme: dark) {
  .brand .dot {
    background-color: #a6da95;
  }
}

.brand strong {
  font-size: 15px;
}

.hero {
  padding: 14px 0 10px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0;
  font-size: 17px;
  color: var(--muted);
  max-width: var(--measure);
}

.quotes-band {
  margin-top: 36px;
  padding: 48px 0;
  background-color: #dce0e8;

  /* full-bleed */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

@media (prefers-color-scheme: dark) {
  .quotes-band {
    background-color: #24273a;
  }
}

.quotes-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  gap: 18px;
}

.measure {
  max-width: var(--measure);
}

.quotes-heading {
  margin: 0 0 20px;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--fg);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #7287fd;
  color: #dce0e8;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  color: #eff1f5;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .cta-button {
    background-color: #a6da95;
    color: #24273a;
  }

  .cta-button:hover,
  .cta-button:focus {
    color: #181926;
  }
}

footer.site {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.copyright {
  color: #6c6f85;
}

@media (prefers-color-scheme: dark) {
  .copyright {
    color: #a5adcb;
  }
}
