/* Base page styles (scoped to article pages) */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: #0e0e0e;
  color: #c7c7c7;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Headings */
h1 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.9rem;
  margin-top: 60px;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
  color: #00d1c1;
  margin-top: 32px;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
}

/* Lists */
ul {
  padding-left: 18px;
  margin: 18px 0;
}

li {
  margin-bottom: 8px;
}

/* Funnel blocks */
.funnel {
  background: #111111;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 22px;
  margin: 28px 0;
  font-family: monospace;
  color: #e6e6e6;
  line-height: 1.9;
}

/* Highlight text */
.highlight {
  color: #00d1c1;
  font-weight: 600;
}

/* Section spacing */
.section {
  margin-top: 50px;
}

/* NAV (scoped so it doesn't fight global styles later) */
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0e0e0e;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.logo {
  width: 44px;
  height: 44px;
  margin-right: 12px;
}

.brand-name {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #c7c7c7;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffffff;
}

/* CTA button */
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #00d1c1;
  color: #0e0e0e !important;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background: #00b6a8;
}