:root {
  --bg: #0c1210;
  --ink: #eef3ee;
  --muted: #a7b5ab;
  --accent: #c8f082;
  --accent-ink: #14200f;
  --line: rgba(238, 243, 238, 0.12);
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 70% 15%, rgba(200, 240, 130, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 85%, rgba(58, 110, 90, 0.35), transparent 60%),
    linear-gradient(165deg, #101a16 0%, #0c1210 45%, #0a0f0d 100%);
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid transparent;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ready .logo { opacity: 1; transform: none; }

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: color 0.2s ease, opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}
.ready .nav-link { opacity: 1; transform: none; }
.nav-link:hover { color: var(--ink); }

.hero {
  min-height: calc(100vh - 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 8vh, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 10vh, 6rem);
  max-width: 1100px;
}

.brand {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.12s, transform 0.9s cubic-bezier(.2,.7,.2,1) 0.12s;
}
.ready .brand { opacity: 1; transform: none; }

h1 {
  margin: 0 0 0.9rem;
  max-width: 14ch;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease 0.28s, transform 0.8s cubic-bezier(.2,.7,.2,1) 0.28s;
}
.ready h1 { opacity: 1; transform: none; }

.lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(.2,.7,.2,1) 0.4s;
}
.ready .lede { opacity: 1; transform: none; }

.cta {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease 0.52s, transform 0.8s cubic-bezier(.2,.7,.2,1) 0.52s;
}
.ready .cta { opacity: 1; transform: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }

@media (max-width: 640px) {
  .hero { justify-content: center; padding-top: 2rem; }
}
