:root {
  --bg: #1A1A1A;
  --bg-deep: #121212;
  --surface: rgba(249, 246, 238, 0.88);
  --surface-strong: #F9F6EE;
  --text: #171513;
  --text-inverse: #F9F6EE;
  --muted: #6e675f;
  --line: rgba(23, 21, 19, 0.12);
  --line-strong: rgba(23, 21, 19, 0.22);
  --accent: #D4AF37;
  --accent-strong: #B58E21;
  --accent-soft: #EED782;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--text-inverse);
  background: #181614;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero,
.manifesto,
.plans,
.status,
.phases,
.future {
  position: relative;
  margin-bottom: 24px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(25, 23, 21, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(115%);
}

.hero::before,
.manifesto::before,
.plans::before,
.status::before,
.phases::before,
.future::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}

.hero {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%),
    linear-gradient(145deg, rgba(30, 28, 26, 0.96), rgba(19, 18, 16, 0.94));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(66, 62, 57, 0.62), rgba(24, 22, 20, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.brand,
.topbar a,
.button {
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  height: 42px;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  height: 100%;
  width: auto;
  display: block;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(245, 238, 226, 0.7);
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.topbar-links a:hover {
  color: var(--text-inverse);
  background: rgba(243, 236, 223, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: end;
}

.hero-copy,
.signal-panel,
.manifesto-card,
.plan-card,
.status-board,
.status-card,
.phase-card,
.future-panel,
.strip-card {
  border-radius: var(--radius-lg);
}

.eyebrow,
.section-kicker,
.plan-tier,
.signal-title,
.status-label,
.phase-step {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 11ch;
  margin-top: 14px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 56ch;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(245, 238, 226, 0.72);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 760px;
}

.metric {
  padding: 16px 18px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  border-radius: 18px;
  background: rgba(243, 236, 223, 0.06);
}

.metric strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  color: var(--text-inverse);
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 238, 226, 0.62);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  color: var(--bg-deep);
  background: var(--accent);
}

.button-secondary {
  color: var(--text-inverse);
  border: 1px solid rgba(243, 236, 223, 0.12);
  background: rgba(243, 236, 223, 0.06);
}

.signal-panel {
  position: relative;
  padding: 22px;
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 100%),
    linear-gradient(135deg, rgba(244, 237, 222, 0.92) 0%, rgba(233, 220, 194, 0.88) 100%);
  border: 1px solid rgba(200, 155, 60, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.signal-header,
.status-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.signal-live,
.chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.signal-live {
  color: var(--bg-deep);
  background: var(--accent);
}

.signal-body {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.signal-block {
  padding-top: 18px;
  border-top: 1px solid rgba(23, 21, 19, 0.1);
}

.signal-label {
  margin-bottom: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.5);
}

.signal-value {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.strip-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(243, 236, 223, 0.05);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.strip-card p {
  margin-bottom: 8px;
}

.strip-card span {
  color: rgba(245, 238, 226, 0.68);
  line-height: 1.6;
}

.manifesto,
.plans,
.status,
.phases,
.future {
  padding: 34px 24px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.manifesto-grid,
.plans-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.phases-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.status-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 18px;
}

.status-side {
  display: grid;
  gap: 18px;
}

.manifesto-card,
.plan-card,
.status-board,
.status-card,
.phase-card,
.future-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  background: rgba(243, 236, 223, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.manifesto-card:hover,
.plan-card:hover,
.status-card:hover,
.phase-card:hover,
.future-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 16px 36px rgba(0, 0, 0, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.2);
}

.manifesto-card h3,
.plan-card h3,
.status-board h3,
.status-card h3,
.phase-card h3,
.future-panel h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.manifesto-card p,
.plan-card p,
.status-board p,
.status-card p,
.phase-card p,
.future-panel p,
.status-list li,
.future-list li,
.timeline span {
  color: var(--muted);
  line-height: 1.65;
}

.plan-card ul,
.status-list,
.future-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.plan-card li,
.status-list li,
.future-list li {
  margin-bottom: 10px;
}

.featured {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 60, 0.32);
  background:
    linear-gradient(180deg, rgba(200, 155, 60, 0.16), rgba(243, 236, 223, 0.98) 34%),
    rgba(243, 236, 223, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 16px 34px rgba(0, 0, 0, 0.1);
}

.status-card-accent {
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.2), transparent 36%),
    rgba(243, 236, 223, 0.98);
}

.board-intro {
  margin-top: 12px;
  margin-bottom: 18px;
}

.chip {
  border: 1px solid rgba(23, 21, 19, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.45);
}

.chip-active {
  color: var(--bg-deep);
  border-color: transparent;
  background: var(--accent);
}

.project-table {
  overflow: hidden;
  border: 1px solid rgba(23, 21, 19, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.project-table-head,
.project-row {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.project-table-head {
  border-bottom: 1px solid rgba(23, 21, 19, 0.14);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(200, 155, 60, 0.12);
}

.project-row {
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
}

.project-row:last-child {
  border-bottom: 0;
}

.project-row strong {
  font-size: 1rem;
  color: var(--text);
}

.project-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.project-link:hover {
  color: var(--accent-strong);
  border-color: rgba(169, 125, 34, 0.4);
}

.project-row span {
  color: var(--muted);
}

.status-pill {
  justify-self: start;
  color: var(--bg-deep);
  background: var(--accent-soft);
  letter-spacing: 0.05em;
}

.status-pill-warm {
  color: var(--bg-deep);
  background: var(--accent);
}

.status-pill-complete {
  color: #1b4332;
  background: #76c78f;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.timeline div {
  padding-top: 14px;
  border-top: 1px solid rgba(23, 21, 19, 0.08);
}

.timeline p {
  margin-bottom: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phase-step {
  margin-bottom: 10px;
}

.phase-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.phase-rail span {
  padding: 12px 14px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  border-radius: 999px;
  background: rgba(243, 236, 223, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent);
}

.future-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.future-panel-highlight {
  color: var(--bg-deep);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.15), transparent 40%),
    linear-gradient(135deg, #d2a648 0%, #b48424 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 18px 36px rgba(0, 0, 0, 0.16);
}

.future-panel-highlight p,
.future-panel-highlight h3 {
  color: inherit;
}

.manifesto-card,
.plan-card,
.status-board,
.status-card,
.phase-card,
.future-panel {
  color: var(--text);
}


@media (max-width: 980px) {
  .hero-grid,
  .status-layout,
  .future-layout {
    grid-template-columns: 1fr;
  }

  .phase-rail {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-top: 24px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-soft) rgba(243, 236, 223, 0.04);
  }

  .phase-rail::-webkit-scrollbar {
    height: 4px;
  }

  .phase-rail::-webkit-scrollbar-track {
    background: rgba(243, 236, 223, 0.04);
    border-radius: 999px;
  }

  .phase-rail::-webkit-scrollbar-thumb {
    background: var(--accent-soft);
    border-radius: 999px;
  }

  .phase-rail span {
    flex: 0 0 auto;
  }

  .featured {
    transform: none;
  }

  h1,
  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .manifesto,
  .plans,
  .status,
  .phases,
  .future {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .hero-metrics,
  .project-row {
    grid-template-columns: 1fr;
  }

  .project-table-head {
    display: none;
  }

  .project-row {
    gap: 8px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}



/* Footer Styles */
.site-footer {
  margin-top: 48px;
  padding: 48px 24px;
  border: 1px solid rgba(243, 236, 223, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(25, 23, 21, 0.9);
  backdrop-filter: blur(18px) saturate(115%);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(245, 238, 226, 0.62);
  line-height: 1.6;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(245, 238, 226, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-inverse);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 236, 223, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(245, 238, 226, 0.45);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 850px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

