@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:       #111111;
  --surface:  #111111;
  --border:   #1e1e1e;
  --text:     #a9a9a9;
  --muted:    #fff;
  --subtle:   #2a2a2a;
  --accent:   #aaeb35;
  --accent-dim: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

/* SVG logo slot — replace the text span with your <img src="logo.svg"> */
.logo-mark {
  display: flex;
  align-items: center;
  height: 32px;
}

.logo-mark img {
  height: 32px;
  width: auto;
}

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

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: lowercase;
  font-style: italic;
  display: none;
}

@media (min-width: 540px) {
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .logo-tagline {
    display: block;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

nav a.active {
  color: var(--accent);
}

p a,
p a:hover,
p a:active,
p a:visited {
  font-weight: 400;
  color: var(--accent);
  text-decoration: underline;
}

/* ─── HERO ───────────────────────────────────────── */

.hero {
  padding: 9rem 2rem 7rem;
  max-width: 1120px;
  margin: 0 auto;
}


.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.list {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.list li {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1rem;
  margin-bottom: .5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
}


/* ─── DIVIDER ────────────────────────────────────── */

.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1120px;
  margin: 0 auto;
}

