/* Luemonora LLC — static company landing page.
   Plain CSS (no framework). Colors mirror the previous Tailwind design. */

:root {
  --slate-900: #0f172a;
  --purple-900: #581c87;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #fff;
  line-height: 1.5;
  min-height: 100vh;
  background: linear-gradient(to bottom right, var(--slate-900), var(--purple-900), var(--slate-900));
  background-attachment: fixed;
}

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

.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.brand { font-size: 1.5rem; font-weight: 700; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--purple-400); }

/* Hero */
.hero { padding-top: 5rem; padding-bottom: 5rem; max-width: 1152px; }
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 56rem;
}
.lead {
  font-size: 1.25rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 48rem;
}
.cta-row { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: transform .2s, background .2s, border-color .2s;
}
.btn-primary {
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(to right, var(--purple-600), var(--pink-600));
  transform: scale(1.05);
}
.btn-outline { border: 2px solid var(--purple-400); }
.btn-outline:hover { background: rgba(192, 132, 252, 0.10); }

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(192, 132, 252, 0.50); }
.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
}
.feature-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.feature-card p { color: var(--gray-300); }

/* Products */
.products { padding-top: 5rem; padding-bottom: 5rem; }
.products > h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
.product-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.product-copy { flex: 1; }
.eyebrow {
  font-size: .875rem;
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.product-copy h3 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.product-copy p { color: var(--gray-300); font-size: 1.125rem; margin-bottom: 1.5rem; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--purple-400);
  font-weight: 600;
  transition: color .2s;
}
.product-link:hover { color: var(--purple-300); }
.product-art {
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.50);
  background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
}

/* Trust & safety */
.trust { padding-top: 2rem; padding-bottom: 2rem; max-width: 48rem; }
.trust h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.trust p { color: var(--gray-300); line-height: 1.7; }

/* Contact */
.contact { padding-top: 5rem; padding-bottom: 5rem; text-align: center; max-width: 42rem; }
.contact h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact > p { font-size: 1.25rem; color: var(--gray-300); margin-bottom: 2rem; }
.addr {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  color: var(--gray-400);
  font-size: .95rem;
  line-height: 1.7;
}

/* Footer */
.site-footer { border-top: 1px solid var(--card-border); margin-top: 5rem; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--purple-400); }
.copyright { color: var(--gray-400); font-size: .875rem; }

/* Responsive (>= 768px) */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hero { padding-top: 8rem; padding-bottom: 8rem; }
  .hero h1 { font-size: 4.5rem; }
  .lead { font-size: 1.5rem; }
  .cta-row { flex-direction: row; align-items: flex-start; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .products > h2 { font-size: 3rem; }
  .product-card { flex-direction: row; }
  .contact h2 { font-size: 3rem; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
