/* manifesto.css
 * Page-specific styles for /manifesto.html. Leans on /style.css for the
 * global terminal aesthetic (font stack, color tokens, container, button
 * styles). The hero rules below are copied from index.css so the page
 * doesn't have to pull in homepage-specific styles it doesn't need.
 */

/* Hero — same scale as the homepage hero */
.hero {
  padding: 180px 0 100px;
  text-align: center;
}

.hero-prefix {
  font-size: 14px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero-prefix .blink {
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  text-shadow:
    0 0 40px var(--green-glow-strong),
    0 0 80px var(--green-glow);
  margin: 0 0 32px 0;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.8;
}

/* Hero declaration — slightly larger, signed-statement weight */
.mfs-declaration {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.5vw + 0.7rem, 1.4rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Section wrapper — vertical rhythm matched to the rest of the site */
.mfs-section {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mfs-section:first-of-type {
  border-top: none;
}

/* Constrain reading width inside the larger container */
.mfs-container {
  max-width: 760px;
}

/* Section heading — same // section_name vibe as the rest of the site */
.mfs-section h2 {
  font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--green, #00ff88);
  letter-spacing: 0.02em;
}

.mfs-section p {
  font-size: clamp(0.98rem, 0.6vw + 0.85rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
}

.mfs-section em {
  font-style: italic;
  color: rgba(255, 255, 255, 1);
}

/* Lede line in the_mission */
.mfs-lede {
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.2rem) !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Emphasis line: closing kicker per section */
.mfs-emphasis {
  font-weight: 600;
  color: var(--green, #00ff88) !important;
  margin-top: 1.5rem !important;
  font-size: clamp(1rem, 0.7vw + 0.85rem, 1.15rem) !important;
}

/* Inline product links inside prose */
.mfs-link {
  color: var(--green, #00ff88);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 255, 136, 0.35);
  transition: border-color 0.2s ease;
}

.mfs-link:hover,
.mfs-link:focus {
  border-bottom-color: rgba(0, 255, 136, 0.95);
}

/* Beliefs + principles — numbered terminal-style list */
.mfs-list {
  list-style: none;
  padding-left: 0;
  counter-reset: mfs-counter;
}

.mfs-list li {
  position: relative;
  padding-left: 3.4rem;
  margin-bottom: 1.6rem;
  counter-increment: mfs-counter;
  font-size: clamp(0.98rem, 0.6vw + 0.85rem, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.mfs-list li::before {
  content: "[" counter(mfs-counter, decimal-leading-zero) "]";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
  color: var(--green, #00ff88);
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

.mfs-list li strong {
  display: inline;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
}

.mfs-list li strong::after {
  content: " ";
}

/* Audience list — bullet-free, single-line cadence */
.mfs-audience {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem 0;
}

.mfs-audience li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  font-size: clamp(0.98rem, 0.6vw + 0.85rem, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.mfs-audience li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -0.05em;
  color: var(--green, #00ff88);
  font-weight: 700;
  font-size: 1.1em;
}

/* Signed section — visually distinct closing */
.mfs-signed {
  padding-bottom: 6rem;
}

.mfs-signature {
  margin: 2.5rem 0 2rem 0;
  padding-left: 0.4rem;
  border-left: 2px solid var(--green, #00ff88);
  padding-left: 1.2rem;
}

.mfs-sig-name {
  font-size: clamp(1.4rem, 1.5vw + 1rem, 1.8rem) !important;
  font-weight: 700 !important;
  margin: 0 0 0.2rem 0 !important;
  color: rgba(255, 255, 255, 1) !important;
  letter-spacing: 0.01em;
  font-family: "JetBrains Mono", monospace;
}

.mfs-sig-where {
  font-size: 0.95rem !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: "JetBrains Mono", monospace;
}

.mfs-cta {
  margin-top: 1rem;
  display: inline-block;
}

/* Mobile tightening */
@media (max-width: 640px) {
  .mfs-section {
    padding: 3rem 0;
  }

  .mfs-list li {
    padding-left: 2.8rem;
    margin-bottom: 1.3rem;
  }

  .mfs-signed {
    padding-bottom: 4rem;
  }
}
