:root {
  --green-900: #1a3d2e;
  --green-800: #24523c;
  --green-700: #2d6a4f;
  --green-600: #3d8b66;
  --green-500: #52a878;
  --green-100: #e8f5ee;
  --green-50: #f3faf6;
  --ink: #1a2420;
  --ink-muted: #4a5c54;
  --ink-soft: #6b7c74;
  --surface: #ffffff;
  --line: rgba(36, 82, 60, 0.12);
  --shadow: 0 18px 50px rgba(26, 61, 46, 0.1);
  --radius: 18px;
  --max: 1080px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Source Serif 4", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(82, 168, 120, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(45, 106, 79, 0.12), transparent 50%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 40%, #f8faf9 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-900);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 251, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--green-800);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(82, 168, 120, 0.2);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--green-900);
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 10px 24px rgba(36, 82, 60, 0.25);
}

.btn--primary:hover {
  background: var(--green-900);
  color: #fff;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-900);
  border-color: var(--line);
}

.btn--secondary:hover {
  background: #fff;
  color: var(--green-900);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  justify-self: center;
}

.hero__badge {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 36px;
  background: #f7f7f5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  padding: 1rem 0 4.5rem;
}

.features__intro {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.features__intro h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.features__intro p {
  color: var(--ink-muted);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26, 61, 46, 0.08);
}

.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-800);
  margin-bottom: 0.9rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--green-900);
}

.feature p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 2rem 0 2.5rem;
  margin-top: auto;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer p,
.site-footer a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green-800);
}

/* Legal pages */
.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.legal-card .page-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

.legal-card h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.legal-card .subtitle {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.legal-card .meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-card h2 {
  font-size: 1.2rem;
  color: var(--green-800);
  margin: 1.75rem 0 0.75rem;
}

.legal-card h3 {
  font-size: 1.02rem;
  color: var(--green-900);
  margin: 1.15rem 0 0.5rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-muted);
  margin-bottom: 0.65rem;
}

.legal-card ul {
  margin: 0.4rem 0 1rem 1.2rem;
}

.legal-card .licensor-details {
  margin: 0.4rem 0 1rem 1rem;
  padding: 0.85rem 1rem;
  background: var(--green-50);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.legal-card .licensor-details p {
  margin-bottom: 0.25rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow {
    opacity: 0;
    animation: rise 0.7s ease forwards 0.05s;
  }

  .hero h1 {
    opacity: 0;
    animation: rise 0.75s ease forwards 0.15s;
  }

  .hero__lead {
    opacity: 0;
    animation: rise 0.75s ease forwards 0.28s;
  }

  .cta-row {
    opacity: 0;
    animation: rise 0.75s ease forwards 0.4s;
  }

  .hero__visual {
    opacity: 0;
    animation: float-in 0.9s ease forwards 0.25s;
  }

  .hero__badge {
    animation: soft-float 6s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .hero__eyebrow,
  .hero h1,
  .hero__lead,
  .cta-row,
  .hero__visual {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}
