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

:root {
  --bg: #12121f;
  --text: #f5e6d0;
  --terracotta: #c75b39;
  --olive: #6b8f4e;
  --gold: #e8c547;
  --muted: #888888;
  --border: #2a2a3d;
  --font-sans: system-ui, -apple-system, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

html {
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.header-logo {
  font-size: 1rem;
  font-weight: 700;
}

.header-email {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

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

/* Hero */
.comment {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--olive);
}

.hero {
  padding: 64px 24px;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 8px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto;
  max-width: 200px;
}

.hero-lemon {
  font-size: 1.375rem;
}

.hero-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta), transparent);
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 2px;
}

/* Products */
.products {
  padding: 0 24px 48px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

.product--terracotta {
  border-left: 3px solid var(--terracotta);
}

.product--olive {
  border-left: 3px solid var(--olive);
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
}

.product-desc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.product-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--terracotta);
}

a.product:hover .product-link {
  color: var(--gold);
}

/* Footer */
.footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-email {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

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

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.688rem;
  color: var(--muted);
  margin-top: 8px;
}

.footer .comment {
  margin-top: 8px;
  color: var(--muted);
}

/* Layout */
main {
  max-width: 640px;
  margin: 0 auto;
}

.header {
  max-width: 640px;
  margin: 0 auto;
}

.footer {
  max-width: 640px;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .hero {
    padding: 48px 16px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .products {
    padding: 0 16px 40px;
  }

  .header,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
