:root {
  --bg: #0f1410;
  --bg-alt: #141a15;
  --fg: #f2f1ea;
  --fg-dim: #b9c2b8;
  --accent: #7fd68a;
  --accent-dim: #4f8f5a;
  --card-bg: #1b221c;
  --card-border: #2a332b;
  --max-width: 42rem;
  font-size: 18px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #faf9f4;
    --bg-alt: #f1efe6;
    --fg: #1a1f1b;
    --fg-dim: #4d564e;
    --accent: #2f7d3d;
    --accent-dim: #1f5b2a;
    --card-bg: #ffffff;
    --card-border: #dfe3da;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding-top: 4rem;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

@media (max-width: 480px) {
  body {
    padding-top: 3.5rem;
  }
}

.beat {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.beat-content {
  max-width: var(--max-width);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

.movement-tag {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  background: var(--card-bg);
  border: 1px solid var(--accent-dim);
  border-radius: 1.25rem;
  padding: 0.5rem 1.1rem;
  margin: 0 0 1.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.company-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.company-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.company-icon {
  display: inline-flex;
  width: 0.85em;
  height: 0.85em;
  flex-shrink: 0;
}

.company-os {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--fg-dim);
  margin-left: 0.1em;
}

.company-icon svg {
  width: 100%;
  height: 100%;
}

.lede {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0;
}

.hook p:not(.lede), .relate p:not(.lede), .hope p:not(.lede), .money p:not(.lede) {
  color: var(--fg-dim);
  font-size: 1.1rem;
}

.hope .note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.hope .note strong {
  color: var(--fg);
}

.cta {
  min-height: 40vh;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #0f1410;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid var(--card-border);
  z-index: 100;
}

.sticky-cta {
  display: inline-block;
  background: var(--accent);
  color: #0f1410;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.15s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .sticky-bar {
    height: 3.5rem;
    padding: 0 0.75rem;
  }

  .sticky-cta {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }
}

.guide {
  background: var(--bg-alt);
  padding: 5rem 1.5rem;
}

.guide-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.question-label {
  font-size: 1.1rem;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
}

.q1-options {
  display: grid;
  gap: 1rem;
}

.option-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  color: var(--fg);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.option-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-1px);
}

.option-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.option-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.option-desc {
  color: var(--fg-dim);
  font-size: 0.9rem;
}

.path-steps {
  margin-top: 3rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.step p {
  margin: 0.25rem 0;
  color: var(--fg-dim);
}

.path-note {
  display: none;
}

.path-note.active {
  display: block;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--fg-dim);
  font-size: 0.85rem;
}
