﻿:root {
  color-scheme: light;
  --bg: #f3efe7;
  --ink: #144d41;
  --bg: #f6f1e6;
  --ink: #123f36;
  --accent: #e0b45a;
  --accent-2: #1f6a58;
  --card: #ffffff;
  --muted: #5f6f68;
  --shadow: 0 24px 60px rgba(18, 63, 54, 0.16);
  --gold-soft: rgba(224, 180, 90, 0.2);
  --green-soft: rgba(31, 106, 88, 0.16);
}

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

body {
  font-family: "Work Sans", sans-serif;
  background: radial-gradient(circle at top left, #faf4e9 0%, #f6efe1 45%, #efe6d6 100%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.35;
  z-index: -2;
}

.orb-1 {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(224, 180, 90, 0.45), rgba(224, 180, 90, 0));
}

.orb-2 {
  bottom: -140px;
  right: -90px;
  background: radial-gradient(circle, rgba(31, 106, 88, 0.45), rgba(31, 106, 88, 0));
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 230, 0.92);
  z-index: 10;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

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

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
  background: #1b5a4b;
  padding: 6px;
  box-shadow: 0 12px 24px rgba(20, 77, 65, 0.2);
}

.brand-text span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #223833;
}

.brand-text small {
  color: var(--muted);
}

main {
  padding: 32px 8vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #1f2f2a;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.cta:hover {
  transform: translateY(-2px);
}

.ghost {
  background: transparent;
  border: 1px solid var(--accent-2);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 20px;
  display: block;
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(31, 106, 88, 0.08);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--green-soft));
  z-index: 0;
}

.hero-card * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  margin: 16px 0 24px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(18, 63, 54, 0.08);
  transition: transform 0.2s ease;
  min-height: 170px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(31, 106, 88, 0.08);
}

.product:hover {
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-meta {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  padding-top: 4px;
}

.tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
}

.steps {
  margin: 80px 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(18, 63, 54, 0.08);
  border: 1px solid rgba(31, 106, 88, 0.08);
}

.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  color: var(--accent);
}

.cta-block {
  background: linear-gradient(130deg, #144d41, #1f6a58);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-block .cta {
  background: var(--accent);
  color: #1f2f2a;
  box-shadow: none;
}

.footer {
  padding: 24px 8vw 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--accent-2);
  text-decoration: none;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
    padding: 16px 6vw;
  }

  main {
    padding: 24px 6vw 60px;
  }

  .hero {
    margin-bottom: 60px;
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.hero-text,
.hero-card,
.product,
.step,
.cta-block {
  animation: fadeUp 0.8s ease both;
}
