:root {
  --bg: #0b0d12;
  --panel: #12151d;
  --line: #1f2430;
  --text: #e8eaf0;
  --muted: #9aa1b2;
  --accent: #7c5cff;
  --accent-soft: rgba(124, 92, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  /* Solid base so short content never reveals the page's white
     default below the gradient; the gradient layers on top. */
  background-color: var(--bg);
  background-image: radial-gradient(
    120% 80% at 50% -10%,
    #161a26 0%,
    var(--bg) 55%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
  font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3.5rem, 10vw, 7rem) 1.5rem 3rem;
}

/* Masthead */
.eyebrow {
  margin: 0;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 700;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.9rem, 5.5vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lede {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--muted);
  max-width: 38ch;
}

/* Products */
.products {
  margin-top: clamp(3rem, 8vw, 5rem);
}

h2 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.product:hover {
  border-color: var(--accent);
  background: linear-gradient(var(--accent-soft), var(--accent-soft)), var(--panel);
}

.product-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.product h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.product p {
  margin: 0;
  color: var(--muted);
}

.product-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.product-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  margin-top: clamp(3.5rem, 9vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer p {
  margin: 0 0 0.25rem;
}

.footer-name {
  font-weight: 600;
}

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

.footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

.footer a:hover {
  color: var(--accent);
}

.copyright {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}
