:root {
  --bg-0: #050816;
  --bg-1: #0d1328;
  --bg-2: #1b2a4f;
  --surface: rgba(12, 17, 37, 0.72);
  --surface-strong: rgba(16, 23, 49, 0.88);
  --line: rgba(140, 165, 220, 0.25);
  --text: #e9efff;
  --muted: #becdec;
  --accent: #7db0ff;
  --accent-2: #58e5c3;
  --warn: #ff8f7a;
  --shadow: 0 24px 56px rgba(3, 7, 18, 0.45);
  --panel-w: min(720px, 95vw);
  --font-base: 'IBM Plex Sans KR', 'Pretendard', 'Noto Sans KR', sans-serif;
  --font-display: 'IBM Plex Sans KR', 'Pretendard', 'Noto Sans KR', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 5% -5%, rgba(125, 176, 255, 0.16), transparent 50%),
    radial-gradient(900px 500px at 95% 10%, rgba(88, 229, 195, 0.12), transparent 60%),
    linear-gradient(135deg, var(--bg-0), var(--bg-1) 42%, var(--bg-2));
  color: var(--text);
  font-family: var(--font-base);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

body > * { position: relative; z-index: 1; }

.cursor,
.cursor-ring { display: none; }

#progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

nav {
  position: fixed;
  top: 16px;
  left: 26px;
  right: 26px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 14px 11px 18px;
  border: 1px solid rgba(170, 198, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(100deg, rgba(125, 176, 255, 0.13), rgba(88, 229, 195, 0.06) 40%, rgba(8, 12, 27, 0.84)),
    rgba(8, 12, 27, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 34px rgba(5, 9, 22, 0.42);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav-brand::after {
  content: '';
  width: 1px;
  height: 20px;
  background: rgba(157, 174, 204, 0.34);
}

.nav-logo {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d5e4ff;
}

.nav-sub {
  font-family: var(--font-base);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(219, 232, 255, 0.84);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(173, 199, 255, 0.1);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  border-color: rgba(173, 199, 255, 0.35);
  background: rgba(125, 176, 255, 0.14);
}

.nav-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(173, 199, 255, 0.14);
  background: rgba(9, 14, 30, 0.44);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c9daf8;
}

.nav-date::before {
  content: 'LIVE';
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--accent-2);
}

.page-enter {
  opacity: 0;
  transform: translateY(18px);
}

body.page-ready .page-enter {
  animation: introRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--intro-delay, 0ms);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 40px;
  padding: 152px 64px 56px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 88px 5% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 176, 255, 0.5), rgba(88, 229, 195, 0.45), transparent);
  opacity: 0.6;
}

.hero-bg-text {
  position: absolute;
  top: 96px;
  right: 1.5vw;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(68px, 17vw, 196px);
  color: rgba(227, 237, 255, 0.07);
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  align-items: end;
}

.hero-left {
  position: relative;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(167, 194, 249, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 15%, rgba(125, 176, 255, 0.17), transparent 34%),
    linear-gradient(140deg, rgba(12, 18, 39, 0.9), rgba(11, 17, 36, 0.76));
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px rgba(4, 10, 24, 0.38);
}

.hero-left::after {
  content: '';
  position: absolute;
  inset: auto 24px 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 176, 255, 0.3), transparent);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--accent-2);
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #8ce7d2;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 9.2vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title em {
  display: block;
  color: #b8d4ff;
  font-style: normal;
  text-shadow: 0 0 28px rgba(125, 176, 255, 0.34);
}

.hero-kicker {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(213, 228, 255, 0.86);
}

.hero-subtitle {
  margin-top: 16px;
  max-width: 52ch;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  color: rgba(224, 235, 255, 0.93);
}

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

.hero-stat-row {
  display: contents;
}

.hero-stat {
  min-height: 134px;
  padding: 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(165, 192, 246, 0.24);
  background: linear-gradient(155deg, rgba(125, 176, 255, 0.16), rgba(88, 229, 195, 0.09) 45%, rgba(16, 23, 49, 0.92));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(220, 232, 255, 0.08);
}

.stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d2e1ff;
}

.hero-bottom {
  border-top: 1px solid rgba(163, 190, 244, 0.22);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  animation: bob 1.7s ease-in-out infinite;
}

.section,
.timeline-section {
  padding: 110px 64px 96px;
}

.section-header {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.02em;
}

.section-rule {
  height: 1px;
  background: var(--line);
}

.figures-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.figures-track::-webkit-scrollbar { height: 6px; }
.figures-track::-webkit-scrollbar-thumb { background: rgba(157, 174, 204, 0.35); border-radius: 999px; }

.figure-icon {
  position: relative;
  grid-column: auto;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #121a34;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, border-color 0.3s ease;
  scroll-snap-align: start;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 0.64s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.64s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.64s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.figure-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 19, 0.95) 7%, rgba(4, 8, 19, 0.35) 46%, transparent 70%);
  z-index: 1;
}

.figure-icon:hover,
.figure-icon:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(125, 176, 255, 0.7);
  outline: none;
}

.fig-art {
  position: absolute;
  inset: 0;
}

.fig-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.06) saturate(0.95);
  transition: transform 0.5s ease;
}

.figure-icon:hover .fig-art img,
.figure-icon:focus-visible .fig-art img { transform: scale(1.04); }

.figure-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 16px 14px 14px;
}

.fig-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
}

.fig-title {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #cfdef9;
  text-transform: uppercase;
}

.fig-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  border: 1px solid rgba(125, 176, 255, 0.45);
  border-radius: 999px;
  background: rgba(9, 14, 30, 0.75);
  color: #c6dcff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fig-click-hint { display: none; }

.filter-wrap {
  position: sticky;
  top: 82px;
  z-index: 420;
  margin: 0 64px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(170, 198, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(125, 176, 255, 0.1), rgba(88, 229, 195, 0.04) 38%, rgba(8, 12, 27, 0.88)),
    rgba(9, 13, 27, 0.82);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.filter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(173, 199, 255, 0.16);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(205, 224, 255, 0.78);
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(88, 229, 195, 0.18);
}

.filter-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.filter-strip::-webkit-scrollbar { height: 5px; }
.filter-strip::-webkit-scrollbar-thumb { background: rgba(173, 199, 255, 0.3); border-radius: 999px; }

.f-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(173, 199, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 16, 34, 0.36);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s ease;
}

.f-btn:hover {
  border-color: rgba(173, 199, 255, 0.36);
  background: rgba(125, 176, 255, 0.14);
  color: var(--text);
}

.f-btn.active {
  color: #061024;
  border-color: transparent;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.year-divider {
  margin: 54px 0 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.year-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 8vw, 92px);
  color: rgba(194, 220, 255, 0.23);
  line-height: 1;
}

.year-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.year-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tl-item {
  display: grid;
  grid-template-columns: 86px 24px 1fr;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: 0.45s ease;
}

.tl-item.visible { opacity: 1; transform: translateY(0); }

.tl-date-col {
  text-align: right;
  padding-top: 18px;
}

.tl-month,
.tl-day {
  display: block;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.tl-month {
  font-size: 10px;
  color: var(--muted);
}

.tl-day {
  margin-top: 6px;
  font-size: 23px;
  color: #bdd8ff;
}

.tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-node {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 26px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(125, 176, 255, 0.2);
}

.tl-node.red { background: var(--warn); box-shadow: 0 0 0 6px rgba(255, 143, 122, 0.2); }
.tl-node.blue { background: #7bc7ff; box-shadow: 0 0 0 6px rgba(123, 199, 255, 0.2); }
.tl-node.green { background: #64efce; box-shadow: 0 0 0 6px rgba(100, 239, 206, 0.2); }

.tl-track {
  flex: 1;
  width: 2px;
  margin-top: 6px;
  background: linear-gradient(180deg, rgba(125, 176, 255, 0.5), transparent);
}

.tl-item:last-child .tl-track { display: none; }

.tl-card {
  margin-bottom: 18px;
  padding: 18px 20px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(8px);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.tl-item:hover .tl-card {
  transform: translateX(6px);
  border-color: rgba(125, 176, 255, 0.52);
  box-shadow: 0 14px 26px rgba(4, 10, 24, 0.34);
}

.tl-card-tag,
.p-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-t, .ptag-conflict { background: rgba(255, 143, 122, 0.2); color: #ffbfaf; border: 1px solid rgba(255, 143, 122, 0.4); }
.tag-c, .ptag-policy { background: rgba(125, 176, 255, 0.2); color: #d8e7ff; border: 1px solid rgba(125, 176, 255, 0.4); }
.tag-p, .ptag-rise { background: rgba(88, 229, 195, 0.2); color: #c7faef; border: 1px solid rgba(88, 229, 195, 0.4); }
.tag-m, .ptag-neutral { background: rgba(255, 235, 180, 0.2); color: #ffebb3; border: 1px solid rgba(255, 235, 180, 0.35); }
.tag-g, .ptag-speech { background: rgba(198, 164, 255, 0.2); color: #dec9ff; border: 1px solid rgba(198, 164, 255, 0.45); }
.tag-l { background: rgba(255, 206, 138, 0.2); color: #ffdca9; border: 1px solid rgba(255, 206, 138, 0.45); }
.tag-a { background: rgba(145, 232, 255, 0.2); color: #cef3ff; border: 1px solid rgba(145, 232, 255, 0.45); }

.tl-title,
.p-title {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.tl-body,
.p-body,
.panel-bio {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 14px;
}

.tl-quote,
.p-quote {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 2px solid var(--accent-2);
  background: rgba(88, 229, 195, 0.08);
  color: #c2f7eb;
  font-size: 13px;
  line-height: 1.6;
}

.tl-impact {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #cfe0fb;
}

.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  pointer-events: none;
  background: rgba(2, 6, 16, 0);
  transition: 0.28s ease;
}

.panel-overlay.open {
  pointer-events: auto;
  background: rgba(2, 6, 16, 0.62);
  backdrop-filter: blur(4px);
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--panel-w);
  height: 100vh;
  z-index: 900;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: var(--surface-strong);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.side-panel.open { transform: translateX(0); }

.side-panel.open .panel-hero-art img {
  animation: panelZoom 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.side-panel.open .panel-name,
.side-panel.open .panel-role {
  animation: introRise 0.66s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.side-panel.open .panel-role { animation-delay: 90ms; }

.panel-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 20, 41, 0.92);
  backdrop-filter: blur(12px);
}

.panel-close-label {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.panel-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.panel-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.panel-hero-art,
.panel-hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.panel-hero-art img {
  object-fit: cover;
  object-position: top center;
}

.panel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 32, 0.95) 16%, transparent 60%);
}

.panel-hero-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 26px;
}

.panel-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 54px);
  line-height: 1;
}

.panel-role {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #cde0ff;
  text-transform: uppercase;
}

.panel-body { padding: 24px 26px 60px; }

.panel-bio { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.panel-bio strong { color: var(--text); }

.panel-timeline-title,
.infl-title {
  margin: 24px 0 16px;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.p-event {
  display: grid;
  grid-template-columns: 72px 12px 1fr;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed rgba(140, 165, 220, 0.2);
  opacity: 0;
  transform: translateX(16px);
  transition: 0.34s ease;
}

.p-event.visible { opacity: 1; transform: translateX(0); }
.p-event:last-child { border-bottom: 0; margin-bottom: 0; }

.p-date { font-family: var(--font-mono); font-size: 10px; color: #c8daf9; }
.p-dot-line { display: flex; flex-direction: column; align-items: center; }
.p-dot { width: 8px; height: 8px; margin-top: 4px; border-radius: 999px; background: var(--accent); }
.p-line { width: 1px; flex: 1; margin-top: 6px; background: var(--line); }
.p-event:last-child .p-line { display: none; }

.panel-influence {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(125, 176, 255, 0.07);
}

.infl-row {
  display: grid;
  grid-template-columns: 110px 1fr 34px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.infl-label,
.infl-val {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #d0e1ff;
}

.infl-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(140, 165, 220, 0.22);
  overflow: hidden;
}

.infl-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.95s ease;
}

footer {
  border-top: 1px solid var(--line);
  padding: 44px 64px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-strip {
  margin: 18px 64px 0;
  padding: 14px 16px;
  border: 1px solid rgba(173, 199, 255, 0.2);
  border-radius: 14px;
  background: rgba(11, 17, 37, 0.58);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d3e2ff;
}

.trust-note {
  font-size: 13px;
  color: #dbe8ff;
  line-height: 1.6;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: rgba(220, 232, 255, 0.75);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d3e2ff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(173, 199, 255, 0.18);
  background: rgba(10, 16, 34, 0.36);
  transition: 0.22s ease;
}

.footer-link:hover {
  border-color: rgba(173, 199, 255, 0.42);
  background: rgba(125, 176, 255, 0.14);
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8daf8;
  text-align: right;
}

@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .figures-track { grid-auto-columns: minmax(200px, 1fr); }
}

@media (max-width: 820px) {
  nav { top: 8px; left: 10px; right: 10px; padding: 9px 10px 9px 12px; border-radius: 14px; }
  .nav-brand::after, .nav-sub { display: none; }
  .nav-links { display: none; }
  .hero { padding: 122px 20px 38px; }
  .hero::before { inset: 80px 20px auto; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .hero-bottom { padding-top: 14px; }
  .section, .timeline-section { padding: 74px 20px 66px; }
  .section-header { grid-template-columns: 1fr; align-items: start; margin-bottom: 24px; }
  .section-rule { display: none; }
  .figures-track { grid-auto-columns: minmax(176px, 1fr); gap: 10px; }
  .filter-wrap {
    margin: 0 20px;
    top: 60px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  .filter-label { width: fit-content; }
  .tl-item { grid-template-columns: 1fr; gap: 0; }
  .tl-date-col { text-align: left; padding: 0 0 8px 8px; }
  .tl-spine { display: none; }
  .side-panel { width: 100vw; border-left: 0; }
  .panel-hero { height: 240px; }
  .trust-strip { margin: 10px 20px 0; }
  footer { padding: 34px 20px 40px; }
  .footer-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes panelZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
