:root {
  --bg-deep: #0b1210;
  --bg-mid: #12201b;
  --ink: #f3f6f2;
  --muted: #a7b5ab;
  --accent: #c8f06c;
  --accent-dim: #8fb84a;
  --line: rgba(243, 246, 242, 0.12);
  --max: 42rem;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 55% at 12% -10%, rgba(200, 240, 108, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 8%, rgba(56, 120, 98, 0.35), transparent 50%),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg-mid) 48%, #0a100e 100%);
  background-attachment: fixed;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #e7ffb0;
}

.wrap {
  width: min(100% - 2rem, 56rem);
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  animation: rise 0.7s ease both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.hero {
  padding: 4.5rem 0 3.5rem;
  max-width: var(--max);
  animation: rise 0.85s 0.08s ease both;
}

.brand-hero {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lede {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  animation: rise 0.9s 0.16s ease both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--accent-dim);
  background: linear-gradient(180deg, rgba(200, 240, 108, 0.16), rgba(200, 240, 108, 0.05));
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  border-color: var(--accent);
  background: rgba(200, 240, 108, 0.22);
  transform: translateY(-1px);
}

.cta-secondary {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.cta-secondary:hover {
  color: var(--accent);
}

.section {
  max-width: var(--max);
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  animation: rise 1s 0.22s ease both;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section p,
.section li {
  color: var(--muted);
}

.section ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.section li + li {
  margin-top: 0.4rem;
}

.page-title {
  margin: 2.5rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  animation: rise 0.7s ease both;
}

.meta {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  animation: rise 0.8s 0.05s ease both;
}

.policy {
  max-width: var(--max);
  animation: rise 0.9s 0.1s ease both;
}

.policy h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 1.15rem;
}

.policy li + li {
  margin-top: 0.45rem;
}

.foot {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

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

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