*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --fg: #f0ede8;
  --muted: #888;
  --accent: #c8b89a;
  --border: #222;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

main {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Header */
header {
  display: flex;
  align-items: baseline;
}

.wordmark {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg);
}

/* Intro */
.intro p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Products */
.products h2 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.product-list {
  list-style: none;
}

.product-item a {
  display: block;
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.product-item a:hover {
  border-color: var(--accent);
}

.product-item a:hover .product-arrow {
  color: var(--accent);
}

.product-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--fg);
}

.product-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.product-features {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.product-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-item {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-label {
  color: #555;
}

.email {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.email:hover {
  color: var(--fg);
}

.footer-copy {
  font-size: 0.75rem;
  color: #555;
}

@media (max-width: 480px) {
  main {
    gap: 3rem;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
