:root {
  --bg: #0b1c2d;
  --text: #f2f4f7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", "Satoshi Variable", "Inter", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero {
  max-width: 48rem;
  text-align: left;
}

h1 {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f2f4f7;
}

p {
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.6;
  font-weight: 400;
}

.product-name {
  color: #b45309;
}
