:root {
  --bg-deep: #0f1419;
  --bg-page: #151b22;
  --text: #e8eceb;
  --muted: #9aa5ad;
  --accent: #6a9e98;
  --line: rgba(232, 236, 235, 0.12);
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-page);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.inner {
  width: min(42rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 20, 25, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 48rem);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 20, 25, 0.35) 0%, rgba(15, 20, 25, 0.88) 72%),
    url("/hero.jpg") 58% 42% / cover no-repeat;
}

.hero__inner {
  position: relative;
  width: min(42rem, calc(100% - 2.5rem));
  margin: 0 auto;
  animation: fade-up 0.6s ease-out both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.95rem;
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
}

.support {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.paths {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.paths .inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .paths .inner {
    grid-template-columns: 1fr 1fr;
    width: min(70rem, calc(100% - 2.5rem));
    gap: 3rem;
  }
}

.path h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.path p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.path__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.path__cta {
  display: inline-block;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.15rem;
}

.path__cta:hover {
  color: var(--accent);
  text-decoration: none;
}

.note {
  padding: 2rem 0 4rem;
}

.note h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0 0 0.5rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
