:root {
  --ink: #191c15;
  --ink-soft: #454b3e;
  --ink-faint: #828874;
  --hairline: #dfe3d6;
  --surface: #ffffff;
  --canvas: #f6f7f2;
  --accent: #4f6b33;
  --accent-pressed: #405828;
  --accent-wash: #e9efe0;
  --good: #2c6b4a;
  --good-wash: #e4f0e9;
  --warn: #8a5a0b;
  --radius: 14px;
  --max: 1120px;
  --prose: 42rem;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--surface);
  padding: 0.5rem 0.75rem;
}

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

/* Atmosphere */
.atmosphere {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(79, 107, 51, 0.16), transparent 60%),
    radial-gradient(700px 420px at 92% 8%, rgba(44, 107, 74, 0.1), transparent 55%),
    linear-gradient(180deg, #eef2e6 0%, var(--canvas) 58%, #eef1e8 100%);
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(25, 28, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 28, 21, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

/* Nav */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 5rem);
  display: grid;
  align-content: center;
  padding: 3.5rem 0 4.5rem;
}

.brand-mark {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 6.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-line {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero-sub {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #f7faf2;
}

.btn-primary:hover {
  background: var(--accent-pressed);
  color: #f7faf2;
}

.btn-ghost {
  background: transparent;
  border-color: var(--hairline);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink-faint);
  color: var(--ink);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 840px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 3.5rem;
  }
}

.feature-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.feature-list li {
  padding-top: 1.15rem;
  border-top: 1px solid var(--hairline);
}

.feature-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
}

.price-band {
  margin-top: 3rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--hairline);
}

.price-band strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.price-band p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
}

.privacy-strip {
  background: var(--good-wash);
  border-block: 1px solid #cfe3d6;
}

.privacy-strip .section {
  padding-block: 3rem;
}

.privacy-strip p {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

.contact-block a {
  font-weight: 600;
}

/* Legal / support pages */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  max-width: 38rem;
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.meta {
  margin-top: 1rem;
  color: var(--ink-faint);
  font-size: 0.92rem;
}

.prose {
  width: min(100%, var(--prose));
  padding: 0.5rem 0 4rem;
}

.prose h2 {
  margin: 2.4rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.prose h3 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.prose a {
  font-weight: 600;
}

/* Footer */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 2rem 0 2.5rem;
  color: var(--ink-faint);
  font-size: 0.92rem;
}

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

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer a:hover {
  color: var(--ink);
}

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

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

  html {
    scroll-behavior: auto;
  }
}
