:root {
  --primary: #000000;
  --accent: #f4d400;
  --background: #f7f7f9;
  --text: #222222;
  --muted: #666666;
  --max-width: 1120px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

a {
  color: #0041f4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e2e6;
}

.top-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.top-bar a {
  font-weight: 500;
}

.masthead {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.logo-wrap {
  flex: 1 1 260px;
  min-width: 220px;
}

.logo-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-copy {
  flex: 2 1 320px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #444444;
  margin-bottom: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e0e0e4;
  background-color: #ffffff;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--primary);
  color: #ffffff;
  text-decoration: none;
}

.hero-button:hover {
  background-color: #202020;
  text-decoration: none;
}

.hero-cta-note {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  background-color: #ffffff;
  border-top: 1px solid #f0f0f4;
  border-bottom: 1px solid #e4e4ea;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-inner a {
  color: #444444;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.nav-inner a:hover {
  border-bottom-color: var(--accent);
  text-decoration: none;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.25rem 1.5rem 3rem;
}

section {
  margin-bottom: 2.5rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 0.98rem;
  color: #444444;
  margin-bottom: 1.25rem;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid #e4e4ea;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.92rem;
  color: #555555;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: #f1f1f5;
  color: #555555;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.credential-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #444444;
}

.credential-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background-color: var(--accent);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-block p {
  font-size: 0.98rem;
}

.contact-block a {
  font-weight: 600;
}

.contact-note {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 380px;
}

footer {
  border-top: 1px solid #e2e2e8;
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  background-color: #ffffff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .masthead {
    padding-top: 1rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .columns-3 {
    grid-template-columns: 1fr;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
