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

:root {
  --c-deep-space: #0B1F3A;
  --c-deep-sea: #081426;
  --c-bright-blue: #1D3A6E;
  --c-gold: #D4AF37;
  --c-gold-bright: #E8C860;
  --c-light-blue: #6CB4E5;
  --c-off-white: #EAF0F6;
  --c-gray-blue: #9BB0C4;
  --c-divider: #2A4766;
  --font-heading: 'Montserrat', 'Noto Sans SC', 'PingFang SC', system-ui, sans-serif;
  --font-body: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --header-h: 72px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container-width: 1200px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-off-white);
  background:
    radial-gradient(ellipse 80% 65% at 82% -10%, rgba(29, 58, 110, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 4% 45%, rgba(11, 31, 58, 0.55), transparent 62%),
    var(--c-deep-sea);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-off-white);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--c-light-blue);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--c-gold);
}

ul, ol {
  padding-left: 1.25rem;
}

img, video {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--c-gold);
  color: var(--c-deep-sea);
}

#main-content {
  flex: 1 0 auto;
  outline: none;
}

:target {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.container {
  width: min(var(--container-width), 100% - clamp(2rem, 5vw, 4rem));
  margin-inline: auto;
}

.page-main {
  padding-block: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)) clamp(3rem, 7vw, 5.5rem);
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(400px, 58vh, 660px);
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(ellipse 65% 80% at 78% 12%, rgba(29, 58, 110, 0.55), transparent 62%),
    radial-gradient(ellipse 45% 60% at 6% 96%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(165deg, var(--c-deep-sea) 0%, var(--c-deep-space) 60%, var(--c-deep-sea) 100%);
  border-bottom: 1px solid var(--c-divider);
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.section {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.section-kicker::before {
  content: '+';
  font-weight: 700;
  font-size: 0.875rem;
}

.section-title {
  margin-top: 0.625rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: start;
}

.rail {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--c-gray-blue);
  border-left: 2px solid var(--c-divider);
  padding-left: 1rem;
}

.rail strong {
  color: var(--c-gold);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

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

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

.mono-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gray-blue);
}

.mono-label::before {
  content: '+';
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}

.card {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.875rem);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(29, 58, 110, 0.26), rgba(8, 20, 38, 0.72) 72%);
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.35s var(--ease-out);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-gold), rgba(212, 175, 55, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 42px rgba(2, 8, 16, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--c-gray-blue);
}

.card-meta {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gray-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-bright) 100%);
  color: var(--c-deep-sea);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
  color: var(--c-deep-sea);
}

.btn-outline {
  border-color: var(--c-divider);
  color: var(--c-off-white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease-out), color 0.2s ease, border-color 0.2s ease;
}

.cta-link::after {
  content: '→';
  font-family: var(--font-mono);
  transition: transform 0.3s var(--ease-out);
}

.cta-link:hover {
  gap: 0.625rem;
  color: var(--c-gold-bright);
  border-color: var(--c-gold-bright);
}

.cta-link:hover::after {
  transform: translateX(3px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-gray-blue);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--c-divider);
  margin-right: 0.5rem;
}

.breadcrumb a {
  color: var(--c-gray-blue);
}

.breadcrumb a:hover {
  color: var(--c-gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--c-off-white);
}

.legend {
  display: grid;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--c-divider);
  border-radius: 12px;
  background: rgba(8, 20, 38, 0.72);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--c-gray-blue);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.legend-node {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

.legend-node.is-light {
  background: var(--c-light-blue);
  box-shadow: 0 0 0 3px rgba(107, 180, 229, 0.22);
}

.legend-node.is-line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  box-shadow: none;
}

.frame {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 8rem;
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(107, 180, 229, 0.12), transparent 60%),
    linear-gradient(135deg, var(--c-bright-blue), var(--c-deep-space));
}

.frame::after {
  content: 'FIG';
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  padding: 0.1875rem 0.5rem;
  border: 1px solid var(--c-divider);
  border-radius: 4px;
  background: rgba(8, 20, 38, 0.75);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--c-gray-blue);
}

.frame > img,
.frame > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 4000;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-bright));
  box-shadow: 0 8px 24px rgba(8, 20, 38, 0.4);
  color: var(--c-deep-sea);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease-out);
}

.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--c-deep-sea);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  min-height: var(--header-h);
  background: linear-gradient(180deg, rgba(8, 20, 38, 0.72) 0%, rgba(8, 20, 38, 0.22) 100%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 31, 58, 0.94);
  border-bottom-color: var(--c-divider);
  box-shadow: 0 12px 32px rgba(2, 8, 16, 0.45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1340px, 100% - clamp(2rem, 5vw, 4rem));
  height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
  color: var(--c-off-white);
}

.brand:hover {
  color: var(--c-off-white);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1.5px solid var(--c-gold);
  border-radius: 10px;
  transform: rotate(45deg);
  transition: transform 0.45s var(--ease-out);
}

.brand-mark::after {
  content: '10';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gold);
}

.brand:hover .brand-mark::before {
  transform: rotate(135deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-off-white);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand-name em {
  font-style: normal;
  color: var(--c-gold);
}

.brand:hover .brand-name {
  color: var(--c-gold-bright);
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--c-gray-blue);
  white-space: nowrap;
}

.brand-version {
  margin-left: 0.25rem;
  padding: 0.125rem 0.375rem;
  border: 1px solid var(--c-divider);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--c-gray-blue);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 3600;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-bright));
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid var(--c-divider);
  border-radius: 6px;
  color: var(--c-off-white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.nav-toggle:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 14px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out), bottom 0.3s var(--ease-out);
}

.nav-toggle-icon::before {
  top: 1px;
}

.nav-toggle-icon::after {
  bottom: 1px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  padding: 0.75rem 1.5rem 1.5rem;
  background: rgba(6, 16, 30, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-divider);
  box-shadow: 0 24px 48px rgba(2, 8, 16, 0.5);
}

.site-nav[data-open] {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.nav-item + .nav-item {
  border-top: 1px solid rgba(42, 71, 102, 0.5);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-off-white);
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--c-gold);
  background: rgba(29, 58, 110, 0.32);
}

.nav-index {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--c-gold);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-link:hover .nav-index {
  opacity: 1;
}

.nav-link[aria-current="page"] {
  color: var(--c-gold);
}

.nav-link[aria-current="page"] .nav-text {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--c-gold);
}

@media (max-width: 559px) {
  .brand-tagline {
    display: none;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
  }

  .nav-item + .nav-item {
    border-top: 0;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
  }

  .nav-link[aria-current="page"] .nav-text {
    text-decoration: none;
  }

  .nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--c-gold), transparent);
  }
}

.site-footer {
  position: relative;
  margin-top: auto;
  background-color: var(--c-deep-sea);
  background-image:
    linear-gradient(rgba(107, 180, 229, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 180, 229, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  border-top: 1px solid var(--c-divider);
  color: var(--c-gray-blue);
}

.footer-route {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--c-divider) 0 14px, transparent 14px 28px);
}

.footer-route::before {
  content: '';
  position: absolute;
  top: -4px;
  left: clamp(2rem, 10vw, 12rem);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.footer-route::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 18%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-light-blue);
  box-shadow: 0 0 0 3px rgba(107, 180, 229, 0.15);
}

.footer-inner {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand:hover {
  color: inherit;
}

.footer-brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.02));
}

.footer-brand-mark::after {
  content: '10';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-off-white);
  transition: color 0.2s ease;
}

.footer-brand-name em {
  font-style: normal;
  color: var(--c-gold);
}

.footer-brand:hover .footer-brand-name {
  color: var(--c-gold-bright);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-gray-blue);
  margin-bottom: 1rem;
}

.footer-trust {
  max-width: 42ch;
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--c-gold);
  font-size: 0.875rem;
  color: var(--c-gray-blue);
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.mono-index {
  margin-right: 0.375rem;
  font-weight: 400;
  color: var(--c-gray-blue);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.625rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  display: inline-block;
  color: var(--c-gray-blue);
  font-size: 0.9375rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  padding-left: 4px;
  color: var(--c-gold);
}

.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer-contact-label {
  display: block;
  margin-bottom: 0.125rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-divider);
}

.footer-contact-value {
  font-size: 0.875rem;
  color: var(--c-off-white);
}

.footer-support {
  max-width: 34ch;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 71, 102, 0.6);
  font-size: 0.75rem;
  color: var(--c-gray-blue);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42, 71, 102, 0.7);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-gray-blue);
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .editorial {
    grid-template-columns: 1fr;
  }

  .rail {
    border-left-color: var(--c-gold);
  }

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
