:root {
  color-scheme: light;
  --surface: #f4f0e7;
  --card: #ffffff;
  --ink: #25231f;
  --muted: #716d65;
  --line: #dedbd4;
  --soft: #f7f6f2;
  --link: #3d594e;
}

* { box-sizing: border-box; }

html { background: var(--surface); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Anthropic Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.surface {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.company-card {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 6vw, 4.5rem);
  background: var(--card);
  border: 0.5px solid var(--line);
  border-radius: 1rem;
}

.company-header {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 0.5px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.tagline {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

section {
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  border-bottom: 0.5px solid var(--line);
}

h2 {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0;
  color: #494640;
}

section > p + p { margin-top: 1rem; }

.product-list {
  display: grid;
  gap: 0.75rem;
}

.product {
  padding: 1.25rem;
  background: var(--soft);
  border: 0.5px solid #e6e3dd;
  border-radius: 0.65rem;
}

h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.product p { font-size: 0.94rem; }

dl { margin: 0; }

dl div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.8fr) 1.3fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 0.5px solid #eceae5;
}

dl div:last-child { border-bottom: 0; }

dt { color: var(--muted); }
dd { margin: 0; font-weight: 500; }

a {
  color: var(--link);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.06em;
}

a:hover { text-decoration-thickness: 0.12em; }
a:focus-visible { outline: 2px solid var(--link); outline-offset: 3px; }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (min-width: 40rem) {
  .surface { padding: 3rem 1.5rem; }
  .product-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 31rem) {
  dl div { grid-template-columns: 1fr; gap: 0.1rem; }
}
