:root {
  --ink: #1c2428;
  --muted: #5c676c;
  --teal: #1f8a85;
  --stone: #f4f1eb;
  --line: #e3ddd3;
  --brass: #c4a574;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: var(--teal); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: white;
  background: #12181b center / cover no-repeat url("images/city.png");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28) 40%, rgba(12, 16, 18, 0.78));
}

.nav, .hero-inner, .footer-dark {
  position: relative;
  z-index: 1;
}

.nav, .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
}

.nav a, .bar a {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

a.support {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 600;
  text-decoration: none;
}

a.support:hover {
  background: #187572;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-weight: 300;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: inherit;
}

.wordmark strong {
  font-weight: 700;
  color: var(--teal);
}

.eye {
  position: relative;
  display: inline-block;
  width: 0.72em;
}

.eye i {
  position: absolute;
  left: 50%;
  top: 0.18em;
  width: 0.22em;
  height: 0.22em;
  background: var(--brass);
  transform: translateX(-50%) rotate(45deg);
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.hero h1 {
  margin: 0 0 12px;
  max-width: min(14ch, 100%);
  min-width: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero p {
  max-width: min(36rem, 100%);
  min-width: 0;
  margin: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
}

.cta {
  align-self: flex-start;
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.cta:hover {
  background: #187572;
}

.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0 0 28px;
  max-width: 38rem;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.step span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 24px 80px;
}

.page h1 {
  margin: 12px 0 8px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
}

.updated {
  margin: 0 0 32px;
  color: var(--muted);
}

.page section { margin: 0 0 28px; }

.page h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.page p {
  margin: 0;
  color: #3d474c;
}

.site-footer, .footer-dark {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-dark {
  color: rgba(255, 255, 255, 0.72);
}

.footer-dark a { color: white; }

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}
