/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1a1816;
  --bg-alt: #201d1a;
  --text-heading: #ffffff;
  --text-body: #b8b2ac;
  --accent: #e07a3f;
  --accent-hover: #c9682f;
  --max-width: 720px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 18px;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ---------- Layout helpers ---------- */
.section {
  padding: 80px 24px;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-heading {
  color: var(--text-heading);
  font-size: 32px;
  font-weight: 700;
  max-width: var(--max-width);
  margin: 0 auto 32px;
  text-align: center;
}

.section-body {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-body p {
  margin-bottom: 20px;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.list {
  margin: 0 0 24px;
}

.list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.list li::before {
  content: "\2022";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--accent);
  color: #1a1816;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.nav {
  border-bottom: 1px solid #2c2925;
  position: sticky;
  top: 0;
  background-color: var(--bg);
  z-index: 10;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-logo {
  color: var(--text-heading);
  font-weight: 700;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 90px;
  text-align: center;
}

.hero-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-headline {
  color: var(--text-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-support {
  font-size: 19px;
  margin-bottom: 36px;
}

.hero-note {
  margin-top: 20px;
  font-size: 15px;
  color: #837d76;
}

/* ---------- Final CTA ---------- */
.section-cta {
  text-align: center;
}

.section-cta .section-heading {
  margin-bottom: 20px;
}

.cta-support {
  margin-bottom: 36px;
}

.cta-secondary {
  margin-top: 24px;
  font-size: 15px;
}

.cta-follow {
  margin-top: 48px;
}

.cta-follow-heading {
  color: var(--text-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-follow-text {
  font-size: 15px;
  margin-bottom: 20px;
}

.cta-social-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-social-list a {
  font-size: 15px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid #2c2925;
  text-align: center;
  padding: 48px 24px;
}

.footer-name {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 15px;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 72px 20px 64px;
  }

  .hero-headline {
    font-size: 34px;
  }

  .hero-support {
    font-size: 17px;
  }

  .section {
    padding: 56px 20px;
  }

  .section-heading {
    font-size: 26px;
  }

  .nav-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
    gap: 20px;
  }

  .btn {
    width: 100%;
  }
}
