:root {
  --tm-color-text: #202223;
  --tm-color-muted: #6d7175;
  --tm-color-border: #dfe3e8;
  --tm-color-primary: #2563eb;
  --tm-color-accent: #00a3a3;
  --tm-radius-md: 8px;
  --tm-font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--tm-color-text);
  font-family: var(--tm-font-sans);
  margin: 0;
}

header {
  align-items: center;
  border-bottom: 1px solid var(--tm-color-border);
  display: flex;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 64px);
}

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

.brand img {
  height: 38px;
  width: 38px;
}

.brand strong,
.brand span {
  display: block;
}

.brand span,
.hero p,
.product p {
  color: var(--tm-color-muted);
}

button {
  background: var(--tm-color-primary);
  border: 0;
  border-radius: var(--tm-radius-md);
  color: white;
  font: inherit;
  font-weight: 700;
  padding: 12px 16px;
}

main {
  padding: 34px clamp(18px, 5vw, 64px) 54px;
}

.hero {
  max-width: 820px;
  padding: 36px 0;
}

.eyebrow {
  color: var(--tm-color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 6vw, 68px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 18px;
}

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

.product {
  border: 1px solid var(--tm-color-border);
  border-radius: var(--tm-radius-md);
  overflow: hidden;
}

.product img {
  background: #f6f7f9;
  display: block;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.product div {
  padding: 16px;
}

.product h2 {
  font-size: 18px;
  margin: 0 0 8px;
}

.price {
  color: var(--tm-color-primary);
  font-weight: 800;
}

@media (max-width: 800px) {
  header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .products {
    grid-template-columns: 1fr;
  }
}
