:root {
  --bg0: #070a08;
  --bg1: #101610;
  --moss: #6fbf4a;
  --moss-dim: #3d7a2e;
  --mist: #b8d4c8;
  --text: #e8efe6;
  --muted: #8a9a88;
  --line: rgba(184, 212, 200, 0.16);
  --card: rgba(16, 24, 18, 0.72);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(111, 191, 74, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(40, 70, 55, 0.35), transparent 50%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  line-height: 1.5;
}

.mist {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1.5px);
  background-size: 48px 48px;
  opacity: 0.5;
  animation: drift 28s linear infinite;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-48px);
  }
}

.shell {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 12vh, 6rem) 0 3rem;
  display: grid;
  gap: 2.5rem;
}

.brand {
  text-align: center;
  animation: rise 0.8s ease both;
}

.logo {
  width: min(240px, 58vw);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(184, 212, 200, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--moss);
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tagline {
  margin: 0.6rem 0 0;
  color: var(--mist);
  font-size: 1.1rem;
}

.products {
  display: grid;
  gap: 0.85rem;
  animation: rise 0.8s ease 0.12s both;
}

.product {
  display: grid;
  gap: 0.2rem;
  padding: 1.05rem 1.2rem;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.product:hover,
.product:focus-visible {
  border-color: rgba(111, 191, 74, 0.55);
  background: rgba(22, 34, 24, 0.9);
  transform: translateY(-2px);
  outline: none;
}

.product-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-desc {
  color: var(--muted);
  font-size: 0.95rem;
}

.foot {
  text-align: center;
  display: grid;
  gap: 0.7rem;
  animation: rise 0.8s ease 0.22s both;
}

.mail {
  color: var(--moss);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mail:hover,
.mail:focus-visible {
  color: #9ad86f;
  outline: none;
}

.legal {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  max-width: 36rem;
  margin-inline: auto;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mist,
  .brand,
  .products,
  .foot {
    animation: none;
  }
}
