:root {
  --bg-color: #fafafa;
  --text-main: #111111;
  --text-muted: #4b4b4b;
  --link-color: #0645ad;
  --border-color: #e5e5e5;
  --font-serif: 'EB Garamond', Georgia, "Times New Roman", Times, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 40px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  max-height: 26px;
  width: auto;
  display: block;
}

/* Manifesto */
.manifesto {
  max-width: 800px;
}

.manifesto h1 {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 0 0 28px 0;
  letter-spacing: -0.02em;
}

.manifesto-body {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: #222;
  margin: 0 0 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bg-color);
  background-color: var(--text-main);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.2s;
}

.cta-button:hover {
  background-color: #333;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Trust bar */
.trust-bar {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.trust-group {
  flex: 1;
  min-width: 300px;
}

.trust-group h2 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 24px 0;
  font-weight: 700;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
}

.logo-grid img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
  display: block;
}

.logo-grid img:hover {
  filter: grayscale(0%) opacity(1);
}

/* Footer */
footer {
  margin-top: auto;
  padding: 16px 40px 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--text-main);
}

/* Use wider screens for the supporting trust content without widening the copy. */
@media (min-width: 1200px) {
  .container,
  footer {
    max-width: 1200px;
  }

  .logo-grid img {
    max-height: 56px;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .container {
    padding: 20px 24px 0;
  }

  .trust-group {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
  }

  .logo-grid img {
    max-width: 100%;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }

  footer {
    padding: 16px 24px 24px;
  }
}
