:root {
  --bg: #07111f;
  --bg-soft: #0d1a2b;
  --bg-elevated: #11253b;
  --panel: rgba(10, 22, 37, 0.72);
  --panel-strong: rgba(15, 32, 51, 0.94);
  --card: rgba(16, 33, 53, 0.82);
  --text: #f6f1e8;
  --text-strong: #fffaf2;
  --muted: #9ca9bc;
  --muted-strong: #c7d2e3;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.06);
  --gold: #d7b785;
  --gold-soft: #f4dfbc;
  --teal: #52d1bf;
  --teal-soft: rgba(82, 209, 191, 0.16);
  --shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.65);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1220px;
  --header-offset: 92px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(82, 209, 191, 0.1), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(215, 183, 133, 0.18), transparent 25%),
    linear-gradient(180deg, #07111f 0%, #091726 30%, #07111f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.page-shell {
  position: relative;
}

.announcement-bar {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(6, 16, 28, 0.92);
  backdrop-filter: blur(18px);
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.announcement-bar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  white-space: nowrap;
}

.announcement-bar__eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.announcement-bar p {
  margin: 0;
  flex: 1;
}

.announcement-bar a {
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.9);
  border-color: var(--line-soft);
  box-shadow: 0 20px 50px -35px rgba(0, 0, 0, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-offset);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__logo {
  width: 3rem;
  flex: 0 0 auto;
}

.brand__text {
  font-size: 0.82rem;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
}

.brand__text em {
  color: var(--gold);
  font-style: normal;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.18rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.18rem) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-panel a,
.nav-panel__action {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.nav-panel a:hover,
.nav-panel__action:hover {
  color: var(--text-strong);
}

.nav-panel__action {
  border: 0;
  background: transparent;
  padding: 0;
}

.hero,
.pillars,
.focus,
.support,
.contact {
  padding: 5.5rem 0;
}

.metrics,
.manifesto,
.spotlight {
  padding: 2rem 0 5.5rem;
}

.hero {
  min-height: calc(100svh - 3rem);
  display: grid;
  align-items: center;
  position: relative;
  overflow: clip;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(82, 209, 191, 0.08), transparent 28%),
    radial-gradient(circle at 18% 28%, rgba(215, 183, 133, 0.18), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(82, 209, 191, 0.18), transparent 22%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.hero__content {
  max-width: 38rem;
}

.section-tag,
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.section-tag {
  color: var(--gold-soft);
}

.section-tag::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}

.hero__kicker {
  margin-top: 1.15rem;
  color: var(--teal);
}

.hero h1,
.section-heading h2,
.spotlight h2,
.support h2,
.contact h2,
.dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  max-width: 10ch;
}

.hero h1 span {
  color: var(--gold);
}

.hero__lead,
.section-heading p,
.spotlight p,
.support__content > p,
.contact__content > p,
.support-panel p,
.site-footer p {
  color: var(--muted);
}

.hero__lead {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
}

.hero__actions,
.contact__actions,
.support-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--bg);
  box-shadow: 0 24px 40px -28px rgba(215, 183, 133, 0.8);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(215, 183, 133, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__meta a {
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero__meta a:hover {
  border-color: rgba(82, 209, 191, 0.5);
  color: var(--text-strong);
  background: rgba(82, 209, 191, 0.08);
}

.hero__visual {
  position: relative;
}

.hero__halo {
  position: absolute;
  inset: 8% 14% 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 183, 133, 0.28), transparent 54%),
    radial-gradient(circle at 65% 35%, rgba(82, 209, 191, 0.2), transparent 34%);
  filter: blur(14px);
}

.hero__card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 14rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 209, 191, 0.24), transparent 70%);
}

.hero__card-top,
.hero__card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero__card-bottom {
  align-items: flex-start;
  margin-top: 1.2rem;
}

.hero__card-bottom div {
  max-width: 12rem;
}

.hero__card-bottom strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.8rem;
}

.hero__card-bottom span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero__art {
  position: relative;
  z-index: 1;
  width: min(32rem, 100%);
  margin: 0.5rem auto 0;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  transform: translateY(0);
}

.metrics__grid,
.pillars__grid,
.focus__grid,
.spotlight__grid,
.support__grid,
.contact__grid,
.footer__grid {
  display: grid;
  gap: 1.5rem;
}

.metric-card,
.pillar-card,
.focus-card,
.support-panel,
.info-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.metrics__grid {
  margin-top: -3rem;
}

.metric-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.metric-card__label {
  display: block;
  color: var(--muted-strong);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card__value {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  line-height: 0.9;
  color: var(--gold-soft);
}

.metric-card__suffix {
  font-size: 0.5em;
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2,
.spotlight h2,
.support h2,
.contact h2 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-top: 1rem;
}

.section-heading p {
  margin: 1rem 0 0;
  font-size: 1rem;
}

.pillars__grid {
  margin-top: 2.4rem;
}

.pillar-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pillar-card:hover,
.focus-card:hover,
.support-panel:hover,
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 183, 133, 0.4);
}

.pillar-card--raised {
  transform: translateY(1.6rem);
}

.pillar-card--raised:hover {
  transform: translateY(1rem);
}

.pillar-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.pillar-card:hover .pillar-card__media img {
  transform: scale(1.04);
}

.pillar-card__body,
.focus-card,
.support-panel,
.info-card {
  padding: 1.5rem;
}

.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-tags span,
.focus-card__kicker,
.support-panel__label,
.info-card__label {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(215, 183, 133, 0.12);
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.pillar-card h3,
.focus-card h3,
.support-panel h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.pillar-card p,
.focus-card p,
.support-panel p,
.support__points p,
.info-card p,
.spotlight__facts dd {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.text-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text-strong);
  font-weight: 700;
}

.text-link::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.manifesto__inner {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(215, 183, 133, 0.14), rgba(82, 209, 191, 0.08)),
    var(--panel-strong);
  overflow: hidden;
}

.manifesto__inner::after {
  content: "";
  position: absolute;
  inset: auto -4rem -6rem auto;
  width: 16rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 183, 133, 0.2), transparent 70%);
}

.manifesto blockquote {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  margin: 1rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.manifesto span {
  color: var(--gold);
}

.focus__grid {
  margin-top: 2.4rem;
}

.focus-card {
  border-radius: var(--radius-md);
}

.spotlight__grid {
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(82, 209, 191, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel-strong);
}

.spotlight__media {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
}

.spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 20rem;
}

.spotlight__facts {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
}

.spotlight__facts div {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}

.spotlight__facts dt {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight__facts dd {
  margin: 0.35rem 0 0;
}

.support__points {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.support__points article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.support__points strong {
  color: var(--text-strong);
}

.support-panel {
  align-self: start;
  border-radius: var(--radius-lg);
}

.support-panel small {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
}

.contact__stack {
  display: grid;
  gap: 1rem;
}

.info-card {
  border-radius: var(--radius-sm);
}

.info-card a {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--text-strong);
  font-weight: 700;
}

.site-footer {
  padding-top: 3.5rem;
  border-top: 1px solid var(--line-soft);
}

.footer__grid {
  padding-bottom: 2.5rem;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
}

.brand--footer {
  margin-bottom: 1rem;
}

.site-footer__bar {
  border-top: 1px solid var(--line-soft);
}

.site-footer__bar-inner {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
}

.footer-stripe {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #24386c 0 33%, var(--gold) 33% 66%, var(--teal) 66% 100%);
}

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

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 7, 13, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dialog-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dialog {
  width: min(42rem, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.dialog__header,
.dialog__body {
  padding: 1.4rem 1.5rem;
}

.dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.dialog__close {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}

.dialog__body p,
.dialog__body li {
  color: var(--muted-strong);
}

.dialog__body ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

@media (min-width: 760px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .metrics__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pillars__grid,
  .focus__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spotlight__grid,
  .support__grid,
  .contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .announcement-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(7, 17, 31, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a,
  .nav-panel__action {
    text-align: left;
  }

  .hero,
  .pillars,
  .focus,
  .support,
  .contact {
    padding: 4.5rem 0;
  }

  .metrics,
  .manifesto,
  .spotlight {
    padding: 2rem 0 4.5rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__card-bottom {
    flex-direction: column;
  }

  .metrics__grid {
    margin-top: -2rem;
  }

  .pillar-card--raised,
  .pillar-card--raised:hover {
    transform: none;
  }

  .spotlight__grid {
    padding: 1.4rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .section-heading h2,
  .spotlight h2,
  .support h2,
  .contact h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .pillar-card h3,
  .focus-card h3,
  .support-panel h3 {
    font-size: 1.7rem;
  }

  .manifesto__inner {
    padding: 1.6rem;
  }

  .manifesto blockquote {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
