:root {
  --bg: #f5f5f7;
  --bg-soft: #fbfbfd;
  --surface: #ffffff;
  --surface-soft: #f2f4f7;
  --panel: #111111;
  --panel-soft: #1a1a1a;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.08);
  --accent: #0a66d9;
  --accent-soft: #5aa2ff;
  --warm-glow: rgba(214, 117, 42, 0.18);
  --cool-glow: rgba(76, 118, 255, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Instrument Sans', SF Pro Display, SF Pro Text, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0d0e12 0%, #101218 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.page-loader-visible {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(86, 168, 255, 0.14), transparent 20%),
    rgba(10, 11, 14, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-loader-inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.page-loader-spinner {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.92);
  border-right-color: rgba(86, 168, 255, 0.88);
  animation: pageLoaderSpin 0.9s linear infinite;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.03);
}

.page-loader-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@keyframes pageLoaderSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-page {
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.3), rgba(9, 9, 11, 0.76)),
    url('./bury.jpeg') center/cover no-repeat;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-video-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, var(--warm-glow), transparent 26%),
    radial-gradient(circle at 28% 72%, var(--cool-glow), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.76) 72%, rgba(0, 0, 0, 0.92) 100%);
}

.hero-video-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 22vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #111214 85%, #111214 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video-content {
  position: relative;
  z-index: 2;
}

.headline {
  letter-spacing: -0.045em;
}

.subheadline {
  letter-spacing: -0.025em;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.topbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  gap: 1rem;
}

.topbar-brand {
  justify-self: start;
}

.topbar-nav {
  justify-self: center;
}

.topbar-actions {
  justify-self: end;
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  padding: 0.8rem 0 0;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.74), rgba(7, 8, 11, 0.32));
  backdrop-filter: blur(20px);
  z-index: 49;
}

.mobile-menu-panel {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(15, 16, 20, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.mobile-menu-panel a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.2;
  padding: 0.95rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.mobile-menu-label {
  padding: 0.2rem 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 13, 0.72);
  backdrop-filter: blur(20px);
}

.topbar.overlay {
  position: fixed;
  left: 0;
  right: 0;
  border-bottom-color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.topbar.light {
  border-bottom-color: var(--line);
  background: rgba(250, 250, 252, 0.88);
}

.topbar a,
.topbar button {
  transition: opacity 180ms ease, color 180ms ease, background-color 180ms ease;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.dark-card {
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.soft-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.type-caret {
  display: inline-block;
  width: 0.08em;
  margin-left: 0.08em;
  background: currentColor;
  vertical-align: baseline;
  animation: blink 900ms steps(1) infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }

  50.01%, 100% {
    opacity: 0;
  }
}

.poll-bar,
.progress-bar {
  transition: width 220ms ease;
}

.tracker-line::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: -22px;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.tracker-line:last-child::before {
  display: none;
}

.town-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tiny-chart-bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a66d9, #5aa2ff);
}

.tiktok-link svg {
  width: 18px;
  height: 18px;
}

.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.apple-section {
  padding: 6rem 0;
}

.section-divider-top {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.apple-section-dark {
  background:
    linear-gradient(180deg, #101218 0%, #101218 100%);
  color: #fff;
}

.apple-section-light {
  background:
    linear-gradient(180deg, #101218 0%, #101218 100%);
  color: #fff;
}

.apple-section-end {
  padding: 5.5rem 0 3.5rem;
  background: linear-gradient(180deg, #101218 0%, #101218 100%);
  color: #fff;
}

.page-promises-hero {
  background: linear-gradient(180deg, #101218 0%, #0d0f14 100%);
}

.promises-stack {
  display: grid;
  gap: 1.5rem;
}

.promise-panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promise-panel-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.news-ledger {
  display: grid;
  gap: 1.6rem;
}

.news-lead {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-feature-kicker {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.news-lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
}

.news-lead-title {
  max-width: 14ch;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: 600;
  color: #fff;
}

.news-lead-summary {
  max-width: 68ch;
  font-size: 1.06rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.68);
}

.news-ledger-stream {
  display: grid;
  gap: 0;
}

.news-ledger-item {
  padding: 1.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-ledger-topline,
.news-ledger-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.44);
}

.news-ledger-title {
  margin-top: 0.75rem;
  max-width: 22ch;
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #fff;
}

.news-ledger-summary {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.62);
}

.news-ledger-footer {
  margin-top: 1rem;
  align-items: center;
}

.news-ledger-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.news-ledger-empty {
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.54);
}

.promise-panel-grid-wide {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.promise-panel-flow .promise-title {
  max-width: 16ch;
}

.promise-panel-compact .promise-title {
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.promise-panel-side {
  align-self: start;
}

.promise-vision-panel {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.promise-vision-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(120px, 0.22fr) minmax(0, 1fr);
  align-items: start;
}

.promise-vision-intro {
  max-width: 640px;
}

.vision-direction-rail {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1rem;
  padding-top: 2rem;
}

.vision-direction-line {
  width: 1px;
  height: 156px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.48) 100%);
}

.vision-direction-arrow {
  position: relative;
  width: 74px;
  height: 30px;
}

.vision-direction-arrow span {
  position: absolute;
  right: 18px;
  top: 13px;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  transform-origin: right center;
}

.vision-direction-arrow span:first-child {
  transform: rotate(35deg);
}

.vision-direction-arrow span:last-child {
  transform: rotate(-35deg);
}

.vision-direction-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.vision-outcomes {
  min-width: 0;
}

.vision-outcome-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.vision-outcome-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-outcome-number {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.vision-outcome-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.share-page-shell {
  position: relative;
  overflow: hidden;
}

.share-page-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 340px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(86, 168, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.share-intro-block {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: end;
}

.share-intro-copy {
  max-width: 760px;
}

.share-direction-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
}

.share-direction-arrow {
  position: relative;
  width: 88px;
  height: 44px;
}

.share-direction-arrow-line {
  position: absolute;
  left: 0;
  right: 18px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.92));
}

.share-direction-arrow-head {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.92);
  transform: translateY(-50%) rotate(45deg);
}

.share-direction-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.share-direction-text {
  margin-top: 0.55rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.share-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.share-side-column {
  min-width: 0;
}

.share-guidance-list {
  display: grid;
  gap: 0.9rem;
}

.share-guidance-item {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.share-contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.promise-kicker {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.46);
}

.promise-title {
  margin-top: 0.8rem;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #fff;
}

.promise-summary {
  margin-top: 1.2rem;
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

.promise-current {
  margin-top: 1.6rem;
}

.promise-current-label,
.promise-points-heading {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.promise-current-text {
  margin-top: 0.6rem;
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
}

.promise-points-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.promise-point {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.promise-point-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.promise-point-detail {
  margin-top: 0.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.hero-video-page + .apple-section {
  margin-top: -1px;
}

.apple-section-light .apple-eyebrow,
.apple-section-light .apple-copy,
.apple-section-light .apple-copy-small,
.apple-section-light .metric-row {
  color: rgba(255, 255, 255, 0.72);
}

.apple-section-light .apple-title,
.apple-section-light .metric-value,
.apple-section-light .metric-title {
  color: #fff;
}

.story-layout {
  display: grid;
  gap: 2rem;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.story-main {
  max-width: 760px;
}

.story-side {
  max-width: 430px;
  justify-self: end;
}

.story-title {
  max-width: 9.5ch;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
}

.story-copy {
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.68;
  letter-spacing: -0.02em;
}

.apple-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.apple-display {
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.apple-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.apple-copy {
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.apple-copy-small {
  font-size: 1rem;
  line-height: 1.75;
}

.challenge-copy {
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.challenge-block {
  padding-bottom: 0.5rem;
}

.challenge-heading {
  max-width: 8.5ch;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.93;
  margin-top: 0;
}

.challenge-layout {
  display: grid;
  gap: 2rem;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.challenge-main {
  max-width: 760px;
}

.challenge-side {
  max-width: 420px;
  justify-self: end;
}

.challenge-message {
  display: inline-block;
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
}

.challenge-message.animate-in {
  animation: headlineSettle 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.challenge-message.is-waiting {
  opacity: 0.38;
  transform: translateY(10px);
  filter: blur(8px);
}

.challenge-message.is-transitioning {
  opacity: 0.08;
  transform: translateY(18px);
  filter: blur(18px);
}

.challenge-message.is-settled {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes headlineSettle {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.challenge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.challenge-link::after {
  content: '›';
  font-size: 1.15rem;
  line-height: 1;
}

.apple-rule {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.apple-rule-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-row,
.news-row,
.town-row {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.apple-section-dark .news-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.apple-section-light .metric-row {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.metric-row {
  grid-template-columns: minmax(0, 220px) 1fr;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #fff;
}

.metric-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.town-row,
.news-row {
  grid-template-columns: minmax(0, 220px) 1fr minmax(0, 240px);
}

.home-updates-grid {
  display: grid;
  gap: 2rem;
  margin-top: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.home-update-feature {
  padding: 0 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-update-list-item {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-actions {
  align-items: center;
}

.cta-panel {
  max-width: 980px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #fff;
  box-shadow: none;
}

.cta-panel-title {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.cta-panel-copy {
  max-width: 700px;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.cta-panel-copy-tight {
  max-width: 820px;
}

.cta-panel-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cta-panel-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  padding: 0.9rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.button-primary-light {
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  background: #fff;
  color: #0d0f14;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.button-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.9rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: #fff;
}

.stack-24 > * + * {
  margin-top: 1.5rem;
}

.stack-32 > * + * {
  margin-top: 2rem;
}

.site-footer {
  background: #101218;
  color: #f5f5f7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-minimal {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 2.4rem;
  align-items: center;
}

.footer-minimal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-minimal-mark {
  display: flex;
  justify-content: flex-end;
}

.footer-partner-line {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.54);
}

.signature-mark {
  display: block;
  width: min(220px, 42vw);
  height: auto;
  filter: invert(1) brightness(1.05);
  opacity: 0.92;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar-actions {
    gap: 0.7rem;
  }

  .metric-row,
  .town-row,
  .news-row {
    grid-template-columns: 1fr;
  }

  .home-updates-grid {
    grid-template-columns: 1fr;
  }

  .challenge-layout {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .promise-panel-grid {
    grid-template-columns: 1fr;
  }

  .promise-vision-grid,
  .news-ledger,
  .share-intro-block,
  .share-layout {
    grid-template-columns: 1fr;
  }

  .vision-direction-rail {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
  }

  .vision-direction-line {
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.48) 100%);
  }

  .vision-direction-label {
    writing-mode: initial;
    transform: none;
  }

  .challenge-side {
    justify-self: start;
  }

  .story-side {
    justify-self: start;
  }

  .footer-minimal {
    padding: 1.2rem 0 1.8rem;
  }

  .footer-minimal-mark {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-minimal {
    grid-template-columns: 1fr auto auto;
  }
}
