/* ─── Variables ─── */
:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --fg: #c8cdd3;
  --fg-highlight: #e8eaed;
  --fg-muted: #6b7280;
  --fg-subtle: #3a3a3a;
  --accent: #bb1c1c;
  --accent-bright: #cc1a1a;
  --accent-dim: #8a1515;
  --border: #2a2a2a;
  --border-accent: rgba(187, 28, 28, 0.35);
  --chrome: linear-gradient(135deg, #d0d5dc 0%, #e8eaed 40%, #a8adb5 100%);
}

/* ─── Base ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-tagline {
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}
.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-highlight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Manifesto / Hero ─── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 5rem;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(187, 28, 28, 0.05) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 600;
}
.manifesto-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.manifesto-kicker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fg-muted);
  flex-shrink: 0;
}
.manifesto-headline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg-highlight);
  margin-bottom: 2.5rem;
}
.manifesto-headline em {
  font-style: normal;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.manifesto-rule {
  width: 3.5rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.manifesto-divider {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.manifesto-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.manifesto-chevrons {
  display: flex;
  gap: 0.35rem;
  color: var(--fg-subtle);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

/* ─── Principles ─── */
.principles {
  padding: 7rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.principles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.principles-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  font-weight: 500;
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.principle {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  transition: background 0.2s ease;
  position: relative;
}
.principle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.principle:hover { background: var(--bg-card-hover); }
.principle:hover::after { width: 100%; }
.principle-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.principle-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-highlight);
  margin-bottom: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.principle-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 7rem 2rem;
  background:
    radial-gradient(ellipse 80% 50% at 85% 50%, rgba(187, 28, 28, 0.04) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  font-weight: 500;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.outcome {}
.outcome-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.outcome-icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.outcome-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg-highlight);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.outcome-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── Closing ─── */
.closing {
  padding: 8rem 2rem 7rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-ridge-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.closing-ridge-line {
  flex: 1;
  height: 1px;
  background: var(--border-accent);
}
.closing-ridge-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 700;
}
.closing-headline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg-highlight);
  margin-bottom: 2.5rem;
}
.closing-headline em {
  font-style: normal;
  background: var(--chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--accent);
  color: var(--fg-highlight);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.closing-cta:hover {
  background: var(--accent);
  color: #fff;
}
.closing-cta::after {
  content: '→';
  font-size: 1rem;
}

/* ─── Footer ─── */
.footer {
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-email {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.2s;
  font-weight: 400;
}
.footer-email:hover { opacity: 0.7; }
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--fg-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .manifesto { padding-top: 6rem; }
  .manifesto-headline { letter-spacing: -0.005em; }
  .principles-grid,
  .outcomes-grid { grid-template-columns: 1fr; }
  .principle { padding: 2rem 1.5rem; }
  .closing { padding: 5rem 2rem 4rem; }
  .nav-inner { padding: 0.75rem 1.25rem; }
  .nav-logo-img { height: 34px; }
}