:root {
  --bg: #160318;
  --bg-soft: #260723;
  --surface: rgba(35, 8, 33, 0.72);
  --surface-strong: rgba(45, 10, 39, 0.9);
  --surface-glow: rgba(232, 196, 104, 0.1);
  --ink: #fff4e8;
  --muted: #d7bfd0;
  --line: rgba(246, 207, 122, 0.16);
  --accent: #b2065d;
  --accent-strong: #e5c365;
  --accent-soft: #d16983;
  --shadow: 0 28px 90px rgba(12, 0, 10, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(178, 6, 93, 0.34), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(229, 195, 101, 0.18), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(209, 105, 131, 0.18), transparent 20%),
    linear-gradient(180deg, #160318 0%, #22061f 45%, #110211 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10% 10% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 195, 101, 0.24), transparent 64%);
  filter: blur(20px);
  pointer-events: none;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: fade-up 0.7s ease-out both;
}

.brand,
.nav a,
.button {
  text-decoration: none;
  color: inherit;
}

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

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero,
.metrics-band,
.grid-band,
.spotlight,
.vision-strip,
.contact,
.site-footer,
.article-shell {
  animation: fade-up 0.7s ease-out both;
}

.hero {
  padding: 86px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.hero-copy-block {
  padding: 6px 8px 0 10px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(229, 195, 101, 0.08), rgba(45, 10, 39, 0.94)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  gap: 18px;
}

.signal-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.signal-list span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.signal-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1,
.spotlight h2,
.contact h2,
.grid-band h2 {
  margin: 0;
}

.hero h1 {
  max-width: 12ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.9;
  font-weight: 400;
  text-wrap: balance;
}

.hero-copy,
.spotlight-copy p,
.contact p,
.grid-band p,
.spotlight-card li,
.nav a {
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #22030f;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(178, 6, 93, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 16px;
}

.metrics-band article {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 18, 34, 0.62);
  backdrop-filter: blur(14px);
}

.metrics-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 1.4rem;
}

.metrics-band span {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.5;
}

.grid-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.grid-band article,
.spotlight-card,
.vision-strip,
.contact {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.grid-band article {
  padding: 26px;
}

.grid-band span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 700;
}

.grid-band h2,
.spotlight h2,
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.grid-band p,
.spotlight-copy p,
.contact p,
.spotlight-card li {
  color: var(--muted);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}

.spotlight-copy {
  padding: 26px 10px 26px 6px;
}

.spotlight-copy p:last-child,
.contact p {
  max-width: 62ch;
}

.spotlight-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(229, 195, 101, 0.08), rgba(45, 10, 39, 0.98)),
    var(--surface-strong);
}

.spotlight-card p {
  margin: 0 0 18px;
  font-weight: 700;
}

.spotlight-card ul {
  margin: 0;
  padding-left: 20px;
}

.spotlight-card li + li {
  margin-top: 12px;
}

.vision-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  margin-top: 24px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(178, 6, 93, 0.12), rgba(229, 195, 101, 0.08)),
    var(--surface-strong);
}

.vision-strip p:last-child {
  margin: auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact {
  margin-top: 24px;
  padding: 34px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(229, 195, 101, 0.05)),
    var(--surface-strong);
}

.site-footer {
  padding: 22px 8px 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--accent-strong);
  text-decoration: none;
}

.site-footer a:hover,
.article-shell p a:hover,
.article-shell li a:hover,
.back-link:hover,
.perspectives-card a:hover {
  color: var(--ink);
}

.content-page .page-shell {
  width: min(920px, calc(100% - 32px));
}

.article-shell {
  margin-top: 44px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(229, 195, 101, 0.04)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.article-shell h1,
.article-shell h2 {
  margin: 0;
}

.article-shell h1 {
  max-width: 12ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.94;
  font-weight: 400;
}

.article-shell h2 {
  margin-top: 38px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.article-shell p,
.article-shell li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.article-shell p a,
.article-shell li a,
.back-link {
  color: var(--accent-strong);
  text-decoration: none;
}

.article-meta {
  margin: 0 0 18px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.article-intro {
  max-width: 62ch;
  margin-top: 22px;
}

.article-hero {
  margin: 30px 0 28px;
}

.article-hero a,
.article-hero img {
  display: block;
}

.article-hero a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.article-hero img {
  width: 100%;
  height: auto;
}

.article-hero figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-hero figcaption a {
  display: inline;
  border: 0;
  box-shadow: none;
  color: var(--accent-strong);
}

.article-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-links p {
  margin: 0;
  font-size: 0.96rem;
}

.article-links a {
  color: var(--accent-strong);
  text-decoration: none;
}

.article-list {
  padding-left: 18px;
}

.back-link {
  display: inline-flex;
  margin-top: 28px;
}

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

.perspectives-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.perspectives-card p {
  margin: 14px 0 0;
}

.perspectives-card a {
  color: var(--ink);
  text-decoration: none;
}

.perspectives-card h2 {
  margin-top: 12px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .metrics-band,
  .grid-band,
  .spotlight,
  .vision-strip,
  .perspectives-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 12px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    height: 28px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 54px 4px 52px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .contact,
  .article-shell,
  .grid-band article,
  .spotlight-card {
    padding: 22px;
  }
}