:root {
  --bg: #050a14;
  --silver-bright: #f2f2f0;
  --silver-mid: #c9c9c6;
  --silver-shadow: #8f9296;
  --accent: #4f7cff;
  --accent-soft: #2f4e9d;
  --panel: #0c111c;
  --panel-light: #e8e8e7;
  --line: rgba(201, 201, 198, 0.2);
  --line-strong: rgba(201, 201, 198, 0.42);
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--silver-bright);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.5;
}

.global-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  line-height: 1;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid transparent;
  background: var(--bg);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 154px;
  filter: brightness(1.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: var(--silver-mid);
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--silver-bright);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--silver-bright);
  font: inherit;
  padding: 8px 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(92vh, 980px);
  border-bottom: 1px solid var(--line);
}

.hero-track {
  position: relative;
  min-height: min(92vh, 980px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.05) brightness(0.42);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 20, 0.94) 0%, rgba(5, 10, 20, 0.58) 56%, rgba(5, 10, 20, 0.9) 100%),
    radial-gradient(circle at 75% 25%, rgba(79, 124, 255, 0.2), transparent 30%);
}

.hero-content {
  position: relative;
  min-height: min(92vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 36px;
  padding-top: 126px;
  padding-bottom: 120px;
}

.hero-left h1 {
  font-size: clamp(2.1rem, 5.6vw, 5.2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.04;
  max-width: 11ch;
}

.hero-eyebrow {
  margin-bottom: 16px;
  color: var(--silver-mid);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-right {
  align-self: center;
  justify-self: end;
  max-width: 430px;
  display: grid;
  gap: 18px;
}

.hero-kicker {
  width: 62px;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
}

.hero-right h2 {
  font-size: clamp(1.6rem, 3vw, 2.9rem);
  letter-spacing: -0.015em;
}

.hero-right p {
  color: var(--silver-mid);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.45;
}

.cta-link {
  font-size: 1.35rem;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cta-link span {
  width: 44px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
}

.hero-controls,
.news-controls,
.impact-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  width: min(1220px, 92vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-controls,
.impact-controls {
  position: static;
  transform: none;
  width: 100%;
  margin-top: 26px;
}

.control-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.control-btn {
  border: none;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--silver-bright);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.control-btn:hover {
  background: rgba(79, 124, 255, 0.78);
}

.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.news {
  position: relative;
  padding-top: 82px;
  border-bottom: 1px solid var(--line);
}

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

.news-card {
  min-height: 420px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: grid;
  align-content: center;
  gap: 26px;
}

.news-date {
  color: var(--silver-mid);
  font-size: 1.65rem;
  font-weight: 700;
}

.news-title {
  font-size: clamp(2rem, 4.35vw, 4.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.02;
}

.mosaic-section {
  padding-top: 72px;
}

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

.mosaic-card {
  border-radius: 0;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  display: grid;
}

.mosaic-card.light {
  background: var(--panel-light);
  color: #0e1117;
  padding: 28px;
  align-content: start;
  gap: 18px;
}

.mosaic-card.light h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.mosaic-card.light p {
  font-size: 1.08rem;
  color: #2b3036;
}

.mosaic-card.light a {
  margin-top: auto;
  font-weight: 800;
  font-size: 2rem;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.mosaic-card.image {
  position: relative;
}

.mosaic-card.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.85);
}

.overlay-copy {
  position: absolute;
  inset: auto 18px 20px 18px;
  display: grid;
  gap: 10px;
}

.overlay-copy h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  line-height: 1.05;
  max-width: 18ch;
}

.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  font-weight: 800;
}

.mosaic-card:nth-child(1) {
  grid-column: span 4;
}

.mosaic-card:nth-child(2) {
  grid-column: span 4;
}

.mosaic-card:nth-child(3) {
  grid-column: span 4;
}

.mosaic-card:nth-child(4) {
  grid-column: span 4;
}

.mosaic-card:nth-child(5) {
  grid-column: span 4;
}

.mosaic-card:nth-child(6) {
  grid-column: span 4;
}

.impact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-shell {
  border: 1px solid var(--line-strong);
  background: #000;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 640px;
}

.impact-media {
  border-right: 1px solid var(--line);
}

.impact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

.impact-copy {
  padding: 72px 74px;
  display: grid;
  align-content: center;
  gap: 26px;
}

.impact-copy h3 {
  font-size: clamp(2rem, 4.25vw, 4.4rem);
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.impact-copy p {
  font-size: clamp(1.04rem, 1.4vw, 1.9rem);
  color: var(--silver-mid);
  max-width: 36ch;
}

.impact-copy a {
  font-size: 2rem;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
}

.impact-copy a span {
  color: var(--accent);
}

.counter {
  min-width: 68px;
  text-align: center;
  font-weight: 800;
  font-size: 1.6rem;
}

.manifesto {
  padding-top: 92px;
  padding-bottom: 78px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.manifesto-left {
  display: grid;
  gap: 38px;
}

.footer-brand img {
  width: 154px;
  filter: brightness(1.08);
}

.manifesto-left h2 {
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  letter-spacing: -0.025em;
}

.manifesto-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 44px;
}

.manifesto-links a {
  color: var(--silver-mid);
  font-size: 1.6rem;
  transition: color 0.2s ease;
}

.manifesto-links a:hover {
  color: var(--silver-bright);
}

.copyright {
  color: var(--silver-shadow);
  font-size: 1.3rem;
}

.manifesto-right {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(12, 17, 28, 0.96), rgba(7, 13, 24, 0.96));
  padding: 34px;
  display: grid;
  gap: 20px;
  min-height: 430px;
  align-content: start;
  border-radius: 18px;
}

.pill {
  width: fit-content;
  border: 1px solid rgba(79, 124, 255, 0.45);
  color: #b4c6ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.manifesto-right h3 {
  font-size: clamp(1.6rem, 2.9vw, 2.7rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.manifesto-right p {
  color: var(--silver-mid);
  font-size: 1.06rem;
}

.contact-cta {
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.contact-cta span {
  color: var(--accent);
}

.mini-stats {
  margin-top: auto;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-stats article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(5, 10, 20, 0.64);
  display: grid;
  gap: 5px;
}

.mini-stats strong {
  font-size: 1.25rem;
}

.mini-stats span {
  color: var(--silver-mid);
  font-size: 0.8rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: end;
  }

  .hero-right {
    justify-self: start;
  }

  .news-card {
    min-height: 340px;
  }

  .impact-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .impact-media {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .impact-media img {
    min-height: 360px;
  }

  .impact-copy {
    padding: 44px 30px;
  }

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

  .manifesto-right {
    padding: 24px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 930px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 4vw;
    right: 4vw;
    border: 1px solid var(--line);
    background: rgba(5, 10, 20, 0.98);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 6px 2px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mosaic-card,
  .mosaic-card:nth-child(1),
  .mosaic-card:nth-child(2),
  .mosaic-card:nth-child(3),
  .mosaic-card:nth-child(4),
  .mosaic-card:nth-child(5),
  .mosaic-card:nth-child(6) {
    grid-column: span 12;
  }

  .manifesto-links {
    grid-template-columns: 1fr;
  }

  .control-btn {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 66px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-track {
    min-height: 84vh;
  }

  .hero-content {
    min-height: 84vh;
    padding-top: 102px;
    padding-bottom: 102px;
  }

  .hero-right p,
  .news-date,
  .copyright {
    font-size: 1rem;
  }

  .cta-link,
  .impact-copy a,
  .mosaic-card.light a {
    font-size: 1.4rem;
  }

  .impact-controls,
  .news-controls,
  .hero-controls {
    gap: 8px;
  }
}

.legal-page {
  min-height: 100vh;
}

.legal-nav {
  gap: 22px;
}

.legal-main {
  padding-bottom: 72px;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(5, 10, 20, 0.95), rgba(12, 17, 28, 0.92));
}

.legal-hero-inner {
  padding: 112px 0 68px;
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.legal-lead,
.legal-updated {
  color: var(--silver-mid);
}

.legal-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  max-width: 72ch;
}

.legal-updated {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-shell {
  padding-top: 56px;
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(12, 17, 28, 0.98), rgba(8, 12, 22, 0.96));
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 14px;
}

.legal-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: var(--silver-mid);
  font-size: 1rem;
}

.legal-card a {
  color: #b4c6ff;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

@media (max-width: 930px) {
  .legal-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .legal-hero-inner {
    padding: 96px 0 54px;
  }

  .legal-card {
    padding: 22px;
  }
}
