:root {
  --slate-800: #1e293b;
  --zinc-700: #52525b;
  --zinc-600: #27272a;
  --zinc-500: #71717a;
  --zinc-200: #e4e4e7;
  --primary: #171717;
  --primary-foreground: #fafafa;
  --page-max: 1920px;
  --showcase-width: 973px;
  --showcase-height: 332px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

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

body {
  font-family: 'Geist', 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: #fff;
  color: var(--slate-800);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  background: #fff;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: min(100%, var(--page-max));
  min-height: 974px;
  margin: 0 auto;
  padding: 40px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(100%, 600px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 20px;
  height: 20px;
}

.brand-wordmark {
  width: 81px;
  height: 15px;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: min(100%, 400px);
  text-align: center;
}

.intro h1 {
  width: min(100%, 400px);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: var(--slate-800);
}

.intro p {
  width: min(100%, 400px);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--zinc-700);
}

.divider {
  width: 100%;
  height: 1px;
  line-height: 0;
}

.divider img {
  display: block;
  width: 100%;
  height: 1px;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-note {
  font-size: 12px;
  line-height: normal;
  color: var(--zinc-500);
  text-align: center;
  white-space: nowrap;
}

.cta-note p + p {
  margin-top: 0;
}

.cta-note a {
  color: var(--zinc-600);
  text-decoration: none;
}

.cta-note a:hover {
  text-decoration: underline;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 8px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  color: var(--primary-foreground);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.cta-button:hover {
  background: rgba(23, 23, 23, 0.9);
}

.product-showcase {
  flex-shrink: 0;
  width: min(100%, var(--showcase-width));
  height: var(--showcase-height);
  overflow: hidden;
}

.product-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.features {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  height: 48px;
  padding-left: 12px;
  border-left: 1px solid var(--zinc-200);
  font-size: 12px;
  line-height: normal;
  color: var(--zinc-700);
}

@media (max-width: 768px) {
  .hero-stage {
    gap: 32px;
    min-height: auto;
    padding: 24px;
  }

  .hero-top {
    gap: 32px;
    padding-top: 24px;
  }

  .hero-copy {
    gap: 20px;
  }

  .product-showcase {
    width: 100%;
    height: auto;
    aspect-ratio: 973 / 332;
  }

  .features {
    gap: 24px;
  }

  .feature {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 48px;
  }

  .cta-note {
    white-space: normal;
  }
}
