: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);
  --radius: 28px;
}

* {
  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,
.narrow {
  width: 80vw;
  max-width: 80vw;
  margin: 0 auto;
}

.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,
.page-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,
.page-hero h1 {
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  line-height: 0.95;
  max-width: 900px;
}

.lead,
.page-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 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
  cursor: pointer;
}

.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: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  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,
.page-hero 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,
.form-shell,
.info-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card h3,
.info-panel h3,
.form-shell h2 {
  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;
}

.section-head {
  margin-bottom: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full-span {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 12, 24, 0.55);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(232, 237, 245, 0.45);
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  outline: 2px solid rgba(159, 181, 233, 0.55);
  outline-offset: 2px;
}

.form-note,
.form-status,
.info-panel ul,
.info-panel li {
  color: var(--muted);
}

.form-note,
.form-status {
  margin: 0;
  line-height: 1.7;
}

.form-status.success {
  color: #bfe7c9;
}

.form-status.error {
  color: #f5b7b7;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.info-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.link-inline {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(244, 240, 232, 0.45);
  text-underline-offset: 4px;
}

.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,
.link-inline: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,
  .page-hero {
    padding-top: 82px;
  }

  .symbol-card {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
