:root {
  --bg: #f4f4f1;
  --panel: #ffffff;
  --panel-alt: #eef2ee;
  --text: #111827;
  --muted: #4b5563;
  --border: rgba(17, 24, 39, 0.12);
  --accent: #1a3b4d;
  --accent-soft: #dfeae6;
  --highlight: #6f8d7a;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

a:hover {
  text-decoration-thickness: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 244, 241, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1.25rem;
}

.brand {
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker,
.product-tag,
.quote-label {
  margin: 0 0 1rem;
  color: var(--highlight);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  color: var(--accent);
}

.intro-text {
  max-width: 38rem;
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card,
.product-card {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.5rem;
}

.panel-card h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.panel-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.panel-card li + li {
  margin-top: 0.5rem;
}

.section {
  padding: 2rem 0 4rem;
}

.muted {
  background: var(--panel-alt);
}

.content-width {
  max-width: 50rem;
}

.narrow {
  max-width: 38rem;
}

.content-width p,
.content-width li,
.company-list {
  color: var(--muted);
  font-size: 1.05rem;
}

.quote-block {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--highlight);
  border-radius: 0.75rem;
  background: rgba(111, 141, 122, 0.08);
}

.quote-text {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.product-card {
  padding: 1.5rem;
}

.product-card p {
  margin-top: 0;
}

.company-list {
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.company-list > div {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.company-list dt {
  color: var(--text);
  font-weight: 600;
}

.company-list dd {
  margin: 0;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #f8f8f5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-grid,
  .company-list > div {
    grid-template-columns: 1fr;
  }

  .company-list > div {
    gap: 0.2rem;
  }

  .button {
    width: 100%;
  }
}
