:root {
  --bg: #090909;
  --card: #151515;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --line: #2b2b2b;
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  color: var(--muted);
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.subhead {
  max-width: 720px;
  margin: 32px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.4;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button.primary {
  background: var(--accent);
  color: #000;
}

.button.secondary {
  color: var(--text);
}

.section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.section p {
  max-width: 820px;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--muted);
}

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

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
}

.mockup {
  aspect-ratio: 1 / 1.15;
  border-radius: 18px;
  background: #eeeeee;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.mockup span {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
}

.product-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.email {
  text-align: left;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .hero {
    min-height: 86vh;
  }

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

  .section {
    padding: 64px 0;
  }
}
