:root {
  --bg: #0b120f;
  --bg-soft: #121b17;
  --panel: rgba(18, 27, 23, 0.88);
  --text: #eef2eb;
  --muted: #b7c2b8;
  --accent: #8fbf5a;
  --accent-2: #d9a441;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    linear-gradient(rgba(8, 12, 10, 0.84), rgba(8, 12, 10, 0.9)),
    url('../images/bg-pattern.svg') center/cover fixed no-repeat,
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  min-height: 100vh;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 100px;
  height: 100px;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.45rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav a.active {
  background: var(--accent);
  color: #11150f;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 46px 0 28px;
}

.hero-copy,
.hero-card,
.panel,
.feature-band,
.card,
.quote-panel,
.join-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
}

.hero-card {
  padding: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.4rem;
}

.lead,
p,
li,
input,
textarea,
button {
  font-size: 1rem;
  line-height: 1.7;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.section {
  padding: 28px 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6f9f42);
  color: #11150f;
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.intro-grid,
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.panel,
.card,
.quote-panel {
  padding: 28px;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.section-heading {
  margin-bottom: 18px;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-family: 'Oswald', sans-serif;
  color: #f6f8f3;
}

.footer {
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.page-content {
  padding-top: 48px;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.join-form {
  max-width: 760px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.join-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
}

.message {
  border: 1px solid white;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 50px;

  display: none;
}

.message p {
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 920px) {

  .hero,
  .feature-band,
  .intro-grid,
  .cards,
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    right: 0;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 12px;
    background: rgba(11, 18, 15, 0.96);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .footer {
    flex-direction: column;
  }
}