:root {
  --navy: #070d18;
  --navy-2: #0b1424;
  --black: #05070c;
  --white: #ffffff;
  --off: #f4f6f8;
  --ink: #101828;
  --muted: #5b6472;
  --muted-2: #98a2b3;
  --blue: #2f6bff;
  --blue-deep: #1d4ed8;
  --blue-soft: #5b9bff;
  --purple: #7c5cbf;
  --purple-2: #9b7ad4;
  --line: rgba(255, 255, 255, 0.14);
  --header-h: 76px;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(7, 13, 24, 0.18);
  --serif: "Playfair Display", "Bodoni Moda", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  top: 8px;
  left: 8px;
  z-index: 80;
  background: var(--white);
  color: var(--ink);
  padding: 8px 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 100%;
}

.container.narrow {
  width: min(760px, calc(100% - 40px));
  text-align: center;
}

.eyebrow {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  min-height: 44px;
  transition: transform 0.2s var(--ease), background 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 14px 22px;
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.text-link:hover {
  opacity: 0.78;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a.is-active {
  color: var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: min(220px, 58vw);
}

.brand-mark {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 44px;
  padding: 0 4px;
}

.hamburger {
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger i {
  display: block;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
}

.menu-toggle:hover {
  opacity: 0.65;
}

/* Menu overlay */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(5, 7, 12, 0.55);
}

.site-menu.is-open {
  display: block;
}

.menu-panel {
  margin-left: auto;
  width: min(420px, 100%);
  height: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 28px 36px 48px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-close {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
}

.menu-links {
  list-style: none;
  margin-top: 48px;
}

.menu-links a {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-links a:hover {
  color: var(--blue-soft);
}

.menu-meta {
  list-style: none;
  margin-top: auto;
}

.menu-meta button,
.footer-links button {
  background: none;
  border: 0;
  color: var(--muted-2);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 6px 0;
}

.menu-meta button:hover,
.footer-links button:hover {
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("../images/hero.jpg") center 38% / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(47, 107, 255, 0.28), transparent 46%),
    linear-gradient(180deg, rgba(7, 13, 24, 0.55) 0%, rgba(7, 13, 24, 0.72) 48%, rgba(7, 13, 24, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  max-width: 820px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  color: var(--white);
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  margin: 22px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* About */
.about {
  background: var(--white);
  padding: 96px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-grid > * {
  min-width: 0;
}

.about-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  max-width: 16ch;
  margin-bottom: 22px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

.scroll-fab {
  position: absolute;
  right: 16px;
  top: 54%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(124, 92, 191, 0.38);
  transition: transform 0.2s var(--ease);
}

.scroll-fab:hover {
  transform: translateY(3px);
}

/* Insights */
.insights {
  background: var(--navy);
  color: var(--white);
  padding: 92px 0 100px;
}

.section-head {
  margin-bottom: 48px;
}

.insights h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.section-kicker {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.chart-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.donut-wrap {
  position: relative;
  width: min(340px, 100%);
  margin: 0 auto;
}

.donut {
  width: 100%;
  transform: rotate(-90deg);
}

.donut-track,
.donut-seg {
  fill: none;
  stroke-width: 28;
}

.donut-track {
  stroke: #172033;
}

.donut-seg {
  stroke-linecap: butt;
  stroke-dasharray: 0 490;
  transition: stroke-dasharray 1.15s var(--ease);
}

.seg-live { stroke: #1d4ed8; }
.seg-stream { stroke: var(--purple); }
.seg-brand { stroke: var(--blue-soft); }
.seg-pub { stroke: #6b7280; }
.seg-sync { stroke: #374151; }

.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.donut-center strong {
  font-size: 2.35rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.donut-center span {
  color: var(--muted-2);
  font-size: 0.92rem;
  margin-top: 4px;
}

.chart-legend {
  list-style: none;
  display: grid;
  gap: 16px;
}

.chart-legend li {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 12px;
  align-items: center;
}

.swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.swatch-live { background: #1d4ed8; }
.swatch-stream {
  background: var(--purple);
  border-radius: 2px;
  transform: rotate(45deg);
}
.swatch-brand { background: var(--blue-soft); }
.swatch-pub { background: #6b7280; }
.swatch-sync { background: #374151; }

.legend-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  min-width: 0;
}

.legend-value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.insight-content,
.insights-content {
  min-width: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 48px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.stat-value {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.stat-label {
  margin-top: 8px;
  color: var(--muted-2);
  max-width: 36ch;
  font-size: 0.95rem;
}

/* Why it matters */
.matters {
  background: var(--off);
  padding: 100px 0;
}

.matters h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin: 0 auto 24px;
  max-width: 16ch;
}

.matters p + p {
  margin-top: 16px;
}

.matters p:not(.eyebrow) {
  color: var(--muted);
}

/* Download */
.download {
  background: var(--navy-2);
  color: var(--white);
  padding: 96px 0 48px;
  text-align: center;
}

.download h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
}

.download h2 span {
  color: var(--blue);
  display: inline;
}

.download > .container > p {
  margin: 16px auto 32px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
}

.download-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.download-form input {
  width: min(360px, 100%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  outline: none;
}

.download-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.download-form input:focus {
  border-color: var(--blue);
}

.download-form .btn {
  min-width: 210px;
}

.form-message {
  width: 100%;
  min-height: 1.4em;
  margin-top: 10px;
  font-size: 0.88rem;
  color: #86efac;
}

.form-message.is-error {
  color: #fca5a5;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 16px 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 72px;
  padding-top: 22px;
}

/* Footer */
.site-footer {
  background: var(--black);
  padding: 42px 0 36px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  width: min(420px, 100%);
  height: auto;
}

.copyright {
  color: var(--muted-2);
  font-size: 0.78rem;
}

/* Panels */
.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 7, 12, 0.62);
  display: none;
  place-items: center;
  padding: 24px;
}

.panel-overlay.is-open {
  display: grid;
}

.info-panel {
  width: min(640px, 100%);
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 36px 36px 32px;
  position: relative;
  max-height: min(80vh, 720px);
  overflow: auto;
  box-shadow: var(--shadow);
}

.panel-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}

.info-panel h3 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.info-panel p + p {
  margin-top: 12px;
}

.info-panel p {
  color: var(--muted);
}

body.menu-open,
body.panel-open {
  overflow: hidden;
}

/* Year insights nav */
.insights-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.year-nav {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.year-nav-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.year-nav ul {
  list-style: none;
  display: grid;
  gap: 4px;
}

.year-nav a {
  display: grid;
  gap: 2px;
  padding: 12px 14px 12px 16px;
  border-left: 2px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 0 6px 6px 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.year-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.year-nav a.is-active {
  color: var(--white);
  border-left-color: var(--blue);
  background: rgba(47, 107, 255, 0.12);
}

.year-nav-year {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.year-nav a.is-active .year-nav-year {
  color: var(--blue-soft);
}

.year-nav-title {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted-2);
}

.insights-more {
  margin-top: 36px;
}

.insights-more a {
  color: var(--blue-soft);
  font-weight: 600;
}

.insights-more a:hover {
  color: var(--white);
}

.insight-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  background: var(--navy);
}

.insight-shell > * {
  min-width: 0;
}

.year-nav--page {
  background: var(--navy);
  min-height: calc(100vh - var(--header-h));
  padding: 36px 22px 48px 28px;
  position: sticky;
  top: var(--header-h);
}

.insight-content .container {
  width: min(1040px, calc(100% - 32px));
}

.hero--brief {
  min-height: 62vh;
}

.hero-year {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.menu-panel .year-nav-label {
  margin-top: 32px;
}

.menu-years {
  list-style: none;
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.menu-years a {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.insights-landing .about {
  text-align: center;
}

.insights-landing .about h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin: 0 auto 22px;
  max-width: 18ch;
}

.insights-landing .about p {
  color: var(--muted);
  margin-bottom: 16px;
}

.year-archive {
  background: var(--navy);
  color: var(--white);
  padding: 92px 0 100px;
}

.year-archive h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.year-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.year-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
  padding: 28px 24px 24px;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.year-card:hover,
.year-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  color: var(--ink);
}

.year-card.is-featured {
  outline: 2px solid var(--blue);
  outline-offset: 0;
}

.year-card-year {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.year-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.year-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 20px;
}

.year-card-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.insight-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.insight-back:hover {
  color: var(--white);
}

@media (max-width: 1100px) {
  .insights-layout,
  .insight-shell {
    grid-template-columns: 1fr;
  }

  .year-nav,
  .year-nav--page {
    position: static;
    min-height: 0;
    padding: 0 0 24px;
    width: 100%;
  }

  .year-nav--page {
    padding: 20px 16px 12px;
    background: var(--navy);
  }

  .year-nav ul {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .year-nav li {
    flex: 0 0 auto;
  }

  .year-nav a {
    min-width: 148px;
    border-left: 0;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }

  .year-nav a.is-active {
    border-bottom-color: var(--blue);
  }

  .insight-content .container {
    width: min(1040px, calc(100% - 32px));
  }

  .hero--brief {
    min-height: 52vh;
  }

  .year-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-grid,
  .chart-block,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 28px;
  }

  .about-copy h2 {
    max-width: none;
  }

  .about-media img {
    height: 240px;
  }

  .scroll-fab {
    right: 12px;
    top: auto;
    bottom: 12px;
  }

  .chart-block {
    gap: 28px;
    margin-bottom: 36px;
  }

  .insights-layout {
    gap: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .menu-panel {
    width: 100%;
    padding: 20px 22px 40px;
  }

  .menu-links a {
    font-size: 1.28rem;
  }

  .info-panel {
    padding: 28px 20px 24px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 4rem);
  }

  .download h2 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .container,
  .container.narrow,
  .insight-content .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    max-width: min(168px, 52vw);
  }

  .brand-mark {
    height: 36px;
  }

  .hero,
  .hero--brief {
    min-height: 0;
  }

  .hero-content {
    padding: 48px 0 56px;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 12px;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .text-link {
    width: min(100%, 320px);
  }

  .about,
  .insights,
  .matters,
  .download {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .stat-value {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .stat-label {
    font-size: 0.88rem;
  }

  .download-form {
    flex-direction: column;
    align-items: stretch;
  }

  .download-form input,
  .download-form .btn {
    width: 100%;
    min-width: 0;
  }

  .matters h2 {
    max-width: none;
  }

  .donut-center strong {
    font-size: 1.8rem;
  }

  .chart-legend li {
    gap: 8px;
  }

  .legend-label {
    font-size: 0.85rem;
  }

  .year-cards {
    grid-template-columns: 1fr;
  }

  .year-card {
    min-height: 0;
  }
}

/* Coming soon */
body.coming-soon {
  background: var(--black);
  color: var(--white);
}

body.coming-soon .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
}

body.coming-soon .brand-mark {
  filter: none;
}

body.coming-soon .site-nav a {
  color: rgba(255, 255, 255, 0.72);
}

body.coming-soon .site-nav a:hover,
body.coming-soon .site-nav a.is-active {
  color: var(--white);
}

.coming-soon-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 24px) 20px 32px;
  overflow: hidden;
}

.coming-soon-media {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center 38% / cover no-repeat;
  transform: scale(1.06);
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(47, 107, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.55) 0%, rgba(5, 7, 12, 0.78) 48%, rgba(5, 7, 12, 0.94) 100%);
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  text-align: center;
}

.coming-soon-logo {
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto 28px;
}

.coming-soon-content .eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.coming-soon-content h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.4vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.coming-soon-content h1 span {
  color: var(--purple);
}

.coming-soon-copy {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0 auto 28px;
}

.coming-soon-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.coming-soon-form input {
  width: min(320px, 100%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  outline: none;
}

.coming-soon-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.coming-soon-form input:focus {
  border-color: var(--blue);
}

.coming-soon-form .form-message {
  width: 100%;
}

.coming-soon-copy-right {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .coming-soon-form {
    flex-direction: column;
    align-items: stretch;
  }

  .coming-soon-form input,
  .coming-soon-form .btn {
    width: 100%;
  }

  .coming-soon-logo {
    width: min(220px, 78vw);
    margin-bottom: 20px;
  }
}

/* Admin */
body.admin-page {
  background: var(--off);
  min-height: 100vh;
}

body.admin-page .brand-mark {
  filter: brightness(0);
}

.admin-main {
  padding: 40px 0 72px;
}

.admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.admin-heading h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.admin-stat {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
  max-width: 320px;
}

.admin-stat-value {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.admin-stat-label {
  margin-top: 8px;
  color: var(--muted-2);
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.admin-table--messages {
  min-width: 920px;
}

.admin-table td.admin-message {
  max-width: 280px;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--ink);
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.admin-table th {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f8fafc;
}

.admin-table td:first-child,
.admin-table th:first-child {
  width: 64px;
}

.admin-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted);
}

.admin-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-pages a,
.admin-pages span {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

.admin-pages span {
  background: var(--blue);
  color: var(--white);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 32px 20px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}

.admin-login-logo {
  width: min(220px, 70vw);
  margin: 0 auto 24px;
}

.admin-login h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.admin-login p {
  color: var(--muted-2);
  margin-bottom: 24px;
}

.admin-login-form {
  width: min(360px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: left;
}

.admin-login-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-login-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 1rem;
}

.admin-login-form .btn {
  margin-top: 8px;
}

.admin-error {
  color: #fca5a5;
}

/* Insights brand refresh */
body.insights-v2 {
  --ink: #000080;
  --blue: #8d00cf;
  --blue-deep: #6a009c;
  --blue-soft: #c084fc;
  --navy: #000080;
  --navy-2: #0a0066;
  --purple: #8d00cf;
  --off: #f7f4fb;
  --muted: #4b4b6a;
  color: #1c1c2e;
}

body.insights-v2 h1,
body.insights-v2 h2,
body.insights-v2 h3 {
  font-family: var(--serif);
}

body.insights-v2 .site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 128, 0.08);
}

body.insights-v2 .brand {
  max-width: min(280px, 62vw);
  overflow: visible;
}

body.insights-v2 .brand-mark {
  height: 52px;
  filter: none;
}

body.insights-v2 .site-nav a.is-active {
  color: var(--purple);
}

body.insights-v2 .site-nav a:hover {
  color: var(--purple);
}

.rs-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 96px 0 88px;
  background:
    linear-gradient(135deg, rgba(0, 0, 128, 0.92) 0%, rgba(141, 0, 207, 0.9) 100%),
    url("../images/bg-logo.png") center / cover no-repeat;
}

.rs-hero--insights {
  background:
    linear-gradient(135deg, rgba(0, 0, 128, 0.62) 0%, rgba(20, 0, 70, 0.78) 100%),
    url("../images/hero.jpg") center 38% / cover no-repeat;
}

.rs-hero--arts {
  background:
    linear-gradient(135deg, rgba(0, 0, 80, 0.58) 0%, rgba(40, 0, 90, 0.72) 100%),
    url("../images/a1.jpg") center 42% / cover no-repeat;
}

.rs-hero--first {
  background:
    linear-gradient(135deg, rgba(0, 0, 40, 0.55) 0%, rgba(141, 0, 207, 0.52) 100%),
    url("../images/b1.jpg") center 18% / cover no-repeat;
}

.rs-hero--page {
  text-align: left;
  padding: 72px 0 64px;
}

.rs-hero .container {
  position: relative;
  z-index: 1;
}

.rs-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.rs-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: #fff;
  margin-bottom: 18px;
}

.rs-hero h1 span {
  color: #e9d5ff;
}

.rs-hero p {
  max-width: 58ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.rs-hero--page p {
  margin: 0 0 28px;
  max-width: 52ch;
}

.rs-hero .btn-primary {
  background: #fff;
  color: var(--purple);
}

.rs-hero .btn-primary:hover {
  background: #f3e8ff;
  color: var(--navy);
}

.rs-section {
  padding: 88px 0;
}

.rs-section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 18px;
}

.rs-section p {
  color: var(--muted);
}

.rs-flagship {
  background: #fff;
}

.rs-flagship .lead {
  max-width: 72ch;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.rs-archive {
  background: var(--off);
}

.rs-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.rs-report-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 128, 0.08);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.rs-report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(141, 0, 207, 0.16);
}

.rs-report-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 22px 22px 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 128, 0.88), rgba(141, 0, 207, 0.88)),
    url("../images/bg-logo.png") center / cover;
}

.rs-report-cover.has-photo {
  min-height: 240px;
  background: #0a0620;
}

.rs-report-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.rs-report-cover.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 40, 0.2) 0%, rgba(8, 0, 36, 0.78) 100%);
}

.rs-report-cover.has-photo .rs-report-year,
.rs-report-cover.has-photo h3 {
  position: relative;
  z-index: 2;
}

.rs-report-cover.is-arts {
  background:
    linear-gradient(135deg, rgba(141, 0, 207, 0.9), rgba(0, 0, 128, 0.82)),
    url("../images/bg-logo.png") 70% center / cover;
}

.rs-report-cover.is-books {
  background:
    linear-gradient(160deg, rgba(0, 0, 128, 0.94), rgba(90, 0, 160, 0.88)),
    url("../images/bg-logo.png") left center / cover;
}

.rs-report-cover.is-first {
  background:
    linear-gradient(135deg, rgba(0, 0, 80, 0.94), rgba(141, 0, 207, 0.75)),
    url("../images/bg-logo.png") center / cover;
}

.rs-report-year {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.rs-report-cover h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
  color: #fff;
}

.rs-report-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 24px;
  flex: 1;
}

.rs-report-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.rs-report-link {
  margin-top: auto;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.92rem;
}

.rs-about {
  background: #fff;
}

.rs-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.rs-discover {
  margin-top: 22px;
  padding: 22px 24px;
  background: var(--off);
  border-left: 4px solid var(--purple);
  border-radius: 0 12px 12px 0;
}

.rs-discover h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.rs-discover ul {
  padding-left: 18px;
  color: var(--muted);
}

.rs-discover li + li {
  margin-top: 10px;
}

.rs-stats {
  background: var(--navy);
  color: #fff;
}

.rs-stats h2,
.rs-stats .eyebrow {
  color: #fff;
}

.rs-stats .eyebrow {
  color: #e9d5ff;
}

.rs-stats .section-kicker,
.rs-stats p {
  color: rgba(255, 255, 255, 0.78);
}

.rs-stats .seg-stream { stroke: #c084fc; }
.rs-stats .seg-live { stroke: #ffffff; }
.rs-stats .seg-brand { stroke: #8d00cf; }
.rs-stats .seg-pub { stroke: #93c5fd; }
.rs-stats .seg-sync { stroke: #a78bfa; }

.rs-stats .swatch-stream { background: #c084fc; }
.rs-stats .swatch-live { background: #fff; }
.rs-stats .swatch-brand { background: #8d00cf; }
.rs-stats .swatch-pub { background: #93c5fd; }
.rs-stats .swatch-sync { background: #a78bfa; }

.rs-stats .donut-track { stroke: rgba(255, 255, 255, 0.12); }

.rs-note {
  margin-top: 20px;
  font-size: 0.9rem;
  font-style: italic;
}

.bar-chart {
  display: grid;
  gap: 16px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) 1.4fr auto;
  gap: 12px;
  align-items: center;
}

.bar-label {
  font-size: 0.9rem;
}

.bar-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #8d00cf);
  transition: width 1s var(--ease);
}

.bar-value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
}

.rs-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

.rs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  color: #fff;
}

.rs-table th,
.rs-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: top;
}

.rs-table th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e9d5ff;
}

.rs-matters {
  background: var(--off);
}

.rs-matters h2 {
  max-width: 18ch;
}

.rs-matters .container.narrow {
  text-align: left;
}

.rs-download {
  background: #fff;
  text-align: center;
}

.rs-download h2 {
  margin-bottom: 10px;
}

.rs-download .coming-soon-form,
.rs-download .download-form {
  justify-content: center;
}

.rs-download input,
body.insights-v2 .rs-download .download-form input {
  width: min(360px, 100%);
  border: 1px solid rgba(0, 0, 128, 0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
}

body.insights-v2 .rs-download .form-message {
  color: #166534;
}

.rs-cta {
  background:
    linear-gradient(135deg, #000080 0%, #8d00cf 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.rs-cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.rs-cta p {
  max-width: 52ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

.rs-cta .btn-primary {
  background: #fff;
  color: var(--purple);
}

body.insights-v2 .site-footer {
  background: #00004d;
}

body.insights-v2 .footer-logo {
  width: min(220px, 70vw);
  max-height: 80px;
  object-fit: contain;
  filter: none;
}

body.insights-v2 .rs-download .download-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.insights-v2 .rs-download input::placeholder {
  color: #6b6b80;
}

.rs-stats .donut-center strong,
.rs-stats .donut-center span {
  color: #fff;
}

body.insights-v2 .copyright {
  color: rgba(255, 255, 255, 0.55);
}

body.insights-v2 .footer-links button {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .rs-report-grid,
  .rs-about-grid,
  .bar-row {
    grid-template-columns: 1fr;
  }

  .rs-hero,
  .rs-hero--page,
  .rs-section,
  .rs-cta {
    padding: 56px 0;
  }

  .rs-hero--page {
    text-align: center;
  }

  .rs-hero--page p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Homepage redesign */
body.home-v2 .home-hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 760px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 88px 0 140px;
  background: #07031a url("../images/hero.jpg") center 28% / cover no-repeat;
}

body.home-v2 .home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

body.home-v2 .home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 40, 0.42) 0%, rgba(0, 0, 70, 0.68) 55%, rgba(8, 0, 36, 0.86) 100%);
}

body.home-v2 .home-hero-inner {
  position: relative;
  z-index: 2;
}

body.home-v2 .home-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #fff;
  max-width: 16ch;
  margin: 0 auto 18px;
}

body.home-v2 .home-hero h1 span {
  color: #e9d5ff;
}

body.home-v2 .home-hero p {
  max-width: 54ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

body.home-v2 .home-hero .eyebrow {
  color: #e9d5ff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.home-v2 .home-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

body.home-v2 .home-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 14px 22px;
}

body.home-v2 .home-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

body.home-v2 .home-pillars {
  margin-top: -88px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, transparent 0 70px, #07031a 70px 100%);
}

body.home-v2 .home-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.home-v2 .home-pillar {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 20, 0.22);
}

body.home-v2 .home-pillar img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

body.home-v2 .home-pillar-body {
  padding: 22px 22px 26px;
}

body.home-v2 .home-pillar h2 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 10px;
}

body.home-v2 .home-pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

body.home-v2 .home-about,
body.home-v2 .home-faq {
  padding: 88px 0;
  background: #fff;
}

body.home-v2 .home-mission {
  padding: 88px 0;
  background: var(--off);
}

body.home-v2 .home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

body.home-v2 .home-split h2,
body.home-v2 .home-faq h2,
body.home-v2 .home-contact h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 18px;
}

body.home-v2 .home-split p {
  color: var(--muted);
  margin-bottom: 14px;
}

body.home-v2 .home-split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

body.home-v2 .home-mission-card {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 360px;
  padding: 40px 32px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 251, 0.9)),
    url("../images/bg-logo.png") center / cover;
  box-shadow: 0 18px 40px rgba(0, 0, 128, 0.1);
}

body.home-v2 .home-mission-card img {
  width: min(240px, 70%);
  margin-bottom: 18px;
}

body.home-v2 .home-mission-card p {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

body.home-v2 .home-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

body.home-v2 .home-faq-list {
  margin-top: 36px;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 128, 0.1);
}

body.home-v2 .home-faq-item {
  border-bottom: 1px solid rgba(0, 0, 128, 0.1);
}

body.home-v2 .home-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-weight: 600;
  color: var(--navy);
}

body.home-v2 .home-faq-item summary::-webkit-details-marker {
  display: none;
}

body.home-v2 .home-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(141, 0, 207, 0.08);
  color: var(--purple);
  font-size: 1.2rem;
  line-height: 1;
}

body.home-v2 .home-faq-item[open] summary::after {
  content: "–";
}

body.home-v2 .home-faq-item p {
  padding: 0 4px 18px;
  color: var(--muted);
}

body.home-v2 .home-contact {
  padding: 56px 0 72px;
  background: var(--off);
}

body.home-v2 .home-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 128, 0.08);
}

body.home-v2 .home-contact-main {
  padding: 36px 36px 32px;
}

body.home-v2 .home-contact h2 {
  margin-bottom: 10px;
}

body.home-v2 .home-contact-lead {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: none;
}

body.home-v2 .home-contact-form {
  display: grid;
  gap: 10px;
}

body.home-v2 .home-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.home-v2 .home-contact-form input,
body.home-v2 .home-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 128, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8f6fb;
  font: inherit;
}

body.home-v2 .home-contact-form input:focus,
body.home-v2 .home-contact-form textarea:focus {
  outline: 2px solid rgba(141, 0, 207, 0.28);
  border-color: var(--purple);
  background: #fff;
}

body.home-v2 .home-contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

body.home-v2 .home-contact-form .btn {
  justify-self: start;
  min-width: 160px;
  margin-top: 4px;
}

body.home-v2 .home-contact-form .form-message {
  color: #166534;
}

body.home-v2 .home-contact-form .form-message.is-error {
  color: #b42318;
}

body.home-v2 .home-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 7, 20, 0.64);
}

body.home-v2 .home-modal.is-open {
  display: grid;
}

body.home-v2 .home-modal-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 40, 0.28);
}

body.home-v2 .home-modal-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
}

body.home-v2 .home-modal-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

body.home-v2 .home-modal-card .btn {
  min-width: 140px;
}

body.home-v2.modal-open {
  overflow: hidden;
}

body.home-v2 .home-contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(0, 0, 128, 0.94) 0%, rgba(141, 0, 207, 0.9) 100%),
    url("../images/bg-logo.png") center / cover;
}

body.home-v2 .home-contact-aside h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
}

body.home-v2 .home-contact-aside > p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

body.home-v2 .home-contact-meta {
  list-style: none;
  display: grid;
  gap: 16px;
}

body.home-v2 .home-contact-meta li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.home-v2 .home-contact-meta li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.home-v2 .home-contact-meta span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e9d5ff;
}

body.home-v2 .home-contact-meta strong,
body.home-v2 .home-contact-aside a {
  color: #fff;
  font-weight: 600;
}

body.home-v2 .home-contact-aside a:hover {
  color: #f3e8ff;
}

body.home-v2 .home-subscribe {
  background: linear-gradient(135deg, #000080 0%, #8d00cf 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

body.home-v2 .home-subscribe h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 14px;
}

body.home-v2 .home-subscribe > .container > p {
  max-width: 48ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

body.home-v2 .home-subscribe .download-form {
  justify-content: center;
}

body.home-v2 .home-subscribe input {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
}

body.home-v2 .home-subscribe input::placeholder {
  color: #6b6b80;
}

body.home-v2 .home-subscribe .btn-primary {
  background: #fff;
  color: var(--purple);
}

body.home-v2 .home-subscribe .btn-primary:hover {
  background: #f3e8ff;
  color: var(--navy);
}

@media (max-width: 900px) {
  body.home-v2 .home-hero {
    min-height: auto;
    padding: 72px 0 120px;
  }

  body.home-v2 .home-pillar-grid,
  body.home-v2 .home-split,
  body.home-v2 .home-contact-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.home-v2 .home-contact-main,
  body.home-v2 .home-contact-aside {
    padding: 28px 22px;
  }

  body.home-v2 .home-contact-row {
    grid-template-columns: 1fr;
  }

  body.home-v2 .home-split-media img {
    height: 280px;
  }

  body.home-v2 .home-about,
  body.home-v2 .home-mission,
  body.home-v2 .home-faq,
  body.home-v2 .home-contact {
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-v2 .home-hero-video {
    display: none;
  }
}



