:root {
  --bg: #000000;
  --card-bg: #0a0908;
  --text-main: #f5eedc;
  --text-muted: #8e8375;
  --text-dim: #443f38;
  --accent: #e09f3e;
  --accent-soft: rgba(224, 159, 62, 0.12);
  --border: rgba(245, 238, 220, 0.08);
  --border-active: rgba(224, 159, 62, 0.35);

  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Courier Prime", monospace;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  user-select: none;
}

.ambient-glow {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 60vw, 700px);
  height: clamp(300px, 60vw, 700px);
  background: radial-gradient(circle, rgba(224, 159, 62, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--safe-top) + 1.25rem) clamp(1.5rem, 5vw, 4rem) 1.25rem clamp(1.5rem, 5vw, 4rem);
  z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.back-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--text-main);
}

.header-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.page-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 8rem) clamp(1.25rem, 5vw, 2.5rem) calc(var(--safe-bottom) + 5rem) clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vh, 6rem);
  position: relative;
  z-index: 10;
}

.manifesto-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.statement-title {
  font-size: clamp(1.8rem, 4.8vw, 3.2rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #c4bcb2;
}

.statement-title .highlight {
  color: var(--text-main);
  font-weight: 600;
}

.statement-title .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.details-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stats-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
  transition: border-color 0.3s ease;
}

.stat-item:hover {
  border-left-color: var(--accent);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: #555;
}

.stat-val {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
}

.desc-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.desc-col p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

.desc-col p span {
  color: var(--text-main);
  font-weight: 400;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.signoff {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #555;
  letter-spacing: 2px;
}

.return-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.return-link:hover {
  color: var(--text-main);
}

@media (max-width: 768px) {
  .details-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}