:root {
  --bg: #07140e;
  --bg-2: #0b1f14;
  --surface: #10281b;
  --text: #f2f7f3;
  --muted: #9bb5a4;
  --accent: #3dbe6e;
  --accent-2: #8fd9a8;
  --line: rgba(143, 217, 168, 0.18);
  --danger: #e07a6a;
  --max: 1080px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(61, 190, 110, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 40%, rgba(42, 122, 140, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 40%, #0a1811 100%);
  min-height: 100vh;
  line-height: 1.55;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(7, 20, 14, 0.92), rgba(7, 20, 14, 0.55) 70%, transparent);
  backdrop-filter: blur(8px);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.nav nav a:hover,
.nav nav a[aria-current="page"] { color: var(--text); }

.nav-cta {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #062012 !important;
  font-weight: 700 !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(16px, 4vw, 40px) clamp(48px, 8vh, 88px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 28, 16, 0.2), rgba(8, 28, 16, 0.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23153a24'/%3E%3Cstop offset='1' stop-color='%230b1f14'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cg fill='none' stroke='%233dbe6e' stroke-opacity='0.18'%3E%3Cpath d='M0 620 C220 540 380 700 560 640 S900 520 1100 600 1400 720 1600 640'/%3E%3Cpath d='M0 700 C260 640 420 780 640 720 S980 600 1180 680 1420 780 1600 720'/%3E%3C/g%3E%3Cg fill='%238fd9a8' fill-opacity='0.08'%3E%3Ccircle cx='220' cy='180' r='90'/%3E%3Ccircle cx='1280' cy='220' r='140'/%3E%3Ccircle cx='980' cy='120' r='50'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 14, 0.15) 0%, rgba(7, 20, 14, 0.35) 45%, rgba(7, 20, 14, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: riseIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-hero {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-2);
  line-height: 1.05;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.25;
  color: var(--text);
  max-width: 18ch;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #062012;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.section {
  padding: clamp(56px, 10vh, 100px) clamp(16px, 4vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-alt {
  max-width: none;
  background: rgba(16, 40, 27, 0.45);
  border-block: 1px solid var(--line);
}

.section-alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section h2,
.page h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-lede {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 48ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(61, 190, 110, 0.08), transparent 70%);
  animation: riseIn 700ms ease both;
}

.feature-grid article:nth-child(2) { animation-delay: 80ms; }
.feature-grid article:nth-child(3) { animation-delay: 160ms; }

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(7, 20, 14, 0.35);
}

.cta-band {
  text-align: left;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px clamp(16px, 4vw, 40px) 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.footer p { margin: 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px clamp(16px, 4vw, 40px) 64px;
}

.page .lede { margin-bottom: 28px; }

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -4px;
}

.card-block {
  margin: 0 0 22px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 40, 27, 0.4);
}

.card-block h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.plain {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plain li { margin: 6px 0; }

details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

details:first-of-type { border-top: 0; }

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.legal ul { color: var(--muted); }

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
  .nav nav a:not(.nav-cta) { display: none; }
  .hero h1 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
