:root {
  --ink: #14201c;
  --muted: #3d4f48;
  --paper: #f3f0e8;
  --leaf: #1f6b56;
  --leaf-deep: #0f3d32;
  --flare: #e2a86a;
  --line: rgba(20, 32, 28, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--leaf-deep);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(31, 107, 86, 0.28), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(226, 168, 106, 0.22), transparent 50%),
    linear-gradient(165deg, #ebe6da 0%, #f3f0e8 45%, #dfece6 100%);
  animation: wash 14s ease-in-out infinite alternate;
}

.atmosphere.soft {
  animation: none;
  opacity: 0.85;
}

@keyframes wash {
  from {
    filter: saturate(1);
    transform: scale(1);
  }
  to {
    filter: saturate(1.08);
    transform: scale(1.03);
  }
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

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

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
}

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

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 12vh 1.5rem 4rem;
  animation: rise 0.9s ease both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--leaf-deep);
  animation: rise 1s 0.1s ease both;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 86, 0.35);
  background: rgba(255, 255, 255, 0.45);
  color: var(--leaf-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: rise 0.8s ease both;
}

.status::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 107, 86, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  animation: rise 1s 0.2s ease both;
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.75rem;
  animation: rise 1s 0.3s ease both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: rise 1s 0.4s ease both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--leaf);
  color: #f7faf8;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover {
  background: var(--leaf-deep);
  transform: translateY(-1px);
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.cta.ghost:hover {
  background: rgba(255, 255, 255, 0.45);
}

.fine {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 36rem;
}

.block {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  border-top: 1px solid var(--line);
  animation: rise 1s 0.45s ease both;
}

.block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: none;
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

.steps span {
  color: var(--muted);
}

.bullets {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.bullets li {
  margin-bottom: 0.65rem;
}

.bullets strong {
  color: var(--ink);
}

.how {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  animation: rise 1s 0.5s ease both;
}

.how h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.how ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.how li {
  margin-bottom: 0.65rem;
}

.how strong {
  color: var(--ink);
}

.foot {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.foot a {
  font-weight: 500;
}

.doc .legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.legal .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
}

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

@media (max-width: 560px) {
  .hero {
    padding-top: 8vh;
  }

  .top {
    padding-inline: 1.1rem;
  }
}
