
:root {
  --bg: #0f1726;
  --bg-soft: #162236;
  --paper: #f4f0e8;
  --paper-2: #ece7dd;
  --text: #e8edf5;
  --muted: #b8c3d6;
  --line: rgba(255,255,255,0.12);
  --blue: #284f9b;
  --blue-2: #355fb4;
  --ink: #111827;
  --shadow: 0 24px 60px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(53,95,180,0.25), transparent 35%),
    linear-gradient(180deg, #0b1220 0%, #10192b 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10,16,29,0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
}
.footer-inner, .hero-inner, .split, .symbols-inner {
  display: flex; gap: 28px; align-items: center; justify-content: space-between;
}
.brand, .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; letter-spacing: 0.06em; font-weight: 600;
}
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.main-nav a { color: var(--muted); }
.main-nav a:hover { color: #fff; }
.lang-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--paper);
  color: var(--ink);
}
.hero { padding: 104px 0 72px; }
.hero-inner { flex-direction: column; align-items: flex-start; }
.eyebrow, .section-tag, .manifesto-kicker {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; color: #9fb5e9;
}
.hero h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif; margin: 0;
}
.hero h1 { font-size: clamp(3.1rem, 7vw, 5.6rem); line-height: 0.95; max-width: 900px; }
.lead { max-width: 820px; font-size: 1.12rem; line-height: 1.8; color: var(--muted); }
.hero-actions, .manifesto-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 600;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line); }
.full { width: 100%; }
.symbols { padding: 16px 0 40px; }
.symbols-inner { align-items: stretch; }
.symbol-card {
  flex: 1;
  background: var(--blue);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}
.symbol-card.light { background: #f2f2f2; }
.symbol-card img { width: 100%; height: auto; object-fit: contain; aspect-ratio: 300 / 276; }
.section { padding: 86px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 12px; }
.section p { color: var(--muted); line-height: 1.8; }
blockquote {
  margin: 30px 0 0; padding: 24px 28px; border-left: 3px solid #9fb5e9;
  background: rgba(255,255,255,0.03); border-radius: 0 18px 18px 0;
  color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
}
.split { align-items: stretch; }
.split > * { flex: 1; }
.manifesto-box, .card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 2rem; margin-bottom: 10px; }
.small-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 18px;
}
.original-link-wrap { padding-top: 22px; }
.site-footer {
  padding: 36px 0 52px;
  border-top: 1px solid var(--line);
  background: rgba(8,12,20,0.75);
}
.site-footer p { color: var(--muted); margin: 4px 0; }
.site-footer a:hover { color: #fff; }

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px 0;
  }
}

@media (max-width: 840px) {
  .footer-inner, .split, .symbols-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 14px; }
  .hero { padding-top: 82px; }
  .symbol-card { width: 100%; }
}
