@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap");

:root {
  --brand-primary: #5868ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8f9fa;
  color: #212529;
  font-family: "Open Sans", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-shell,
.legal-shell {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

.site-shell {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 24px;
  padding: 48px 0;
}

.site-hero,
.legal-shell {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(33, 37, 41, 0.08);
}

.site-hero {
  padding: clamp(32px, 7vw, 64px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 32px;
  color: #111;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-brand img {
  display: block;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.site-eyebrow {
  margin: 0 0 10px;
  color: #6c757d;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
}

.site-lead {
  max-width: 52ch;
  margin: 24px 0 0;
  color: #495057;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.site-actions,
.site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-actions {
  margin-top: 32px;
}

.site-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  background: var(--brand-primary);
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.site-button-secondary {
  background: #fff;
  color: var(--brand-primary);
}

.site-links {
  justify-content: center;
  color: #495057;
  font-size: 0.9375rem;
}

.site-links a {
  padding: 0.5rem;
}

.legal-shell {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: clamp(28px, 5vw, 56px);
}

.legal-shell h1 {
  max-width: none;
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1.08;
}

.site-updated {
  margin: 16px 0 0;
  color: #6c757d;
}

.legal-content {
  margin-top: 36px;
  color: #343a40;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content h2 {
  margin: 32px 0 10px;
  color: #212529;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content a {
  color: var(--brand-primary);
  text-underline-offset: 0.18em;
}

@media (max-width: 640px) {
  .site-shell,
  .legal-shell {
    width: min(100% - 32px, 960px);
  }

  .site-hero,
  .legal-shell {
    padding: 28px;
  }
}
