/* ============ Reset & Variables ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-space-black: #0B1026;
  --c-deep-blue: #131B3A;
  --c-electric-blue: #2A6DF4;
  --c-energy-gold: #F5B841;
  --c-neon-purple: #9B5CF6;
  --c-electron-green: #00E5A0;
  --c-paper-white: #F4F6FB;
  --c-ink-gray: #1E2430;
  --c-mid-gray: #5A6478;
  --c-warning-red: #FF4D8D;

  --font-heading: "Noto Serif SC", "Source Han Serif SC", Georgia, "Songti SC", serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "JetBrains Mono", "SF Mono", "Cascadia Code", Consolas, monospace;

  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --glow-gold: 0 0 24px rgba(245, 184, 65, 0.22);
  --glow-blue: 0 0 24px rgba(42, 109, 244, 0.22);
  --glow-green: 0 0 24px rgba(0, 229, 160, 0.22);

  --ease: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--c-paper-white);
  background-color: var(--c-space-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-paper-white);
}

::selection {
  background: rgba(245, 184, 65, 0.3);
  color: var(--c-paper-white);
}

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

main {
  display: block;
}

#main-content {
  outline: none;
}

/* ============ Container & Layout ============ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.content-section {
  padding-block: var(--space-section, 3rem);
}

@media (min-width: 768px) {
  .content-section {
    --space-section: 4rem;
  }
}

.content-section-sm {
  padding-block: 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--c-energy-gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--c-electric-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(42, 109, 244, 0.25);
}

.btn-primary:hover {
  background: #3A7DFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 109, 244, 0.38);
}

.btn-gold {
  background: linear-gradient(135deg, #F7C65A, #E0A63A);
  color: var(--c-space-black);
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(245, 184, 65, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 184, 65, 0.42);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(42, 109, 244, 0.6);
  color: var(--c-electric-blue);
}

.btn-ghost:hover {
  background: rgba(42, 109, 244, 0.1);
  border-color: var(--c-electric-blue);
  transform: translateY(-2px);
}

/* ============ Breadcrumb ============ */
.breadcrumb {
  padding-block: 0.5rem 1.25rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--c-mid-gray);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 0.35rem;
  color: rgba(245, 184, 65, 0.45);
  font-family: var(--font-data);
}

.breadcrumb-link {
  color: var(--c-mid-gray);
  transition: color 0.2s ease;
}

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

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

/* ============ Section Heading System ============ */
.section-header {
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-energy-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--c-energy-gold), transparent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--c-paper-white);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 28px rgba(245, 184, 65, 0.15);
}

.section-lead {
  font-size: 1rem;
  color: var(--c-mid-gray);
  line-height: 1.8;
  max-width: 60ch;
}

@media (min-width: 768px) {
  .section-lead {
    font-size: 1.0625rem;
  }
}

/* ============ Data Cards ============ */
.data-card {
  background: linear-gradient(145deg, var(--c-deep-blue), rgba(19, 27, 58, 0.75));
  border: 1px solid rgba(245, 184, 65, 0.18);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.data-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 65, 0.5);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

.data-value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-energy-gold);
  letter-spacing: 0.01em;
}

.data-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-mid-gray);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* ============ Tags ============ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
}

.tag-gold {
  color: var(--c-energy-gold);
  border-color: rgba(245, 184, 65, 0.4);
  background: rgba(245, 184, 65, 0.08);
}

.tag-green {
  color: var(--c-electron-green);
  border-color: rgba(0, 229, 160, 0.35);
  background: rgba(0, 229, 160, 0.08);
}

.tag-purple {
  color: var(--c-neon-purple);
  border-color: rgba(155, 92, 246, 0.35);
  background: rgba(155, 92, 246, 0.08);
}

.tag-red {
  color: var(--c-warning-red);
  border-color: rgba(255, 77, 141, 0.35);
  background: rgba(255, 77, 141, 0.08);
}

/* ============ Glow Line ============ */
.glow-line {
  display: block;
  height: 1px;
  border: none;
  margin-block: 3rem;
  background: linear-gradient(90deg, transparent, rgba(245, 184, 65, 0.55), rgba(155, 92, 246, 0.35), transparent);
}

/* ============ Grid ============ */
.grid-2,
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ Image Frame ============ */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c-deep-blue), var(--c-space-black));
  border: 1px solid rgba(245, 184, 65, 0.16);
}

.img-frame--16x9 {
  aspect-ratio: 16 / 9;
}

.img-frame--4x3 {
  aspect-ratio: 4 / 3;
}

.img-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img-frame:hover > img {
  transform: scale(1.03);
}

/* ============ Skip Link ============ */
.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 9999;
  background: var(--c-energy-gold);
  color: var(--c-space-black);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.8rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 4px 20px rgba(245, 184, 65, 0.4);
  transition: top var(--ease);
}

.skip-link:focus-visible {
  top: 0;
}

/* ============ Scroll Progress ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 9998;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-energy-gold), var(--c-neon-purple), var(--c-electron-green));
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(245, 184, 65, 0.5);
}

/* ============ Header ============ */
.site-header {
  position: relative;
  background: linear-gradient(180deg, var(--c-space-black) 0%, var(--c-deep-blue) 120%);
  border-bottom: 1px solid rgba(245, 184, 65, 0.16);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-energy-gold), var(--c-neon-purple), var(--c-electron-green), var(--c-electric-blue));
  background-size: 300% 100%;
  animation: header-gradient-slide 6s linear infinite;
  z-index: 10;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 184, 65, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

@keyframes header-gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.header-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(11, 16, 38, 0.5);
}

.header-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.35rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-electron-green);
  padding: 0.15rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 229, 160, 0.25);
  background: rgba(0, 229, 160, 0.06);
  text-transform: uppercase;
}

.badge-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-electron-green);
  animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.45);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 229, 160, 0);
  }
}

.header-domain {
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(90, 100, 120, 0.85);
}

/* Masthead */
.masthead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 1.75rem 1.25rem;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--c-energy-gold);
  background: linear-gradient(135deg, rgba(245, 184, 65, 0.14), rgba(42, 109, 244, 0.04));
  border-radius: 14px;
  transform: rotate(45deg);
  box-shadow: 0 0 26px rgba(245, 184, 65, 0.18);
  margin-bottom: 0.75rem;
  transition: box-shadow 0.3s ease;
  flex-shrink: 0;
}

.brand-mark span {
  display: inline-flex;
  transform: rotate(-45deg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.625rem;
  line-height: 1;
  color: var(--c-energy-gold);
}

.brand:hover .brand-mark {
  box-shadow: 0 0 34px rgba(245, 184, 65, 0.38);
}

.brand-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--c-mid-gray);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.site-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--c-paper-white);
  line-height: 1.25;
  text-shadow: 0 0 32px rgba(245, 184, 65, 0.28);
}

.site-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--c-mid-gray);
}

.site-tagline::before,
.site-tagline::after {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  flex-shrink: 0;
}

.site-tagline::before {
  background: linear-gradient(90deg, transparent, rgba(245, 184, 65, 0.6));
}

.site-tagline::after {
  background: linear-gradient(90deg, rgba(245, 184, 65, 0.6), transparent);
}

@media (max-width: 576px) {
  .masthead {
    padding-block: 1.25rem 1rem;
    padding-inline: 3rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0.6rem;
  }

  .brand-mark span {
    font-size: 1.375rem;
  }

  .site-name {
    font-size: 1.625rem;
    letter-spacing: 0.04em;
  }

  .brand-name {
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
  }

  .site-tagline {
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }

  .site-tagline::before,
  .site-tagline::after {
    width: 1.25rem;
  }
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 0;
  z-index: 30;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: rgba(11, 16, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color var(--ease), background-color var(--ease);
}

.nav-toggle:hover {
  border-color: rgba(245, 184, 65, 0.6);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-paper-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }
}

/* Site Navigation */
.site-nav {
  border-top: 1px solid rgba(245, 184, 65, 0.14);
  border-bottom: 1px solid rgba(245, 184, 65, 0.14);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.nav-link {
  display: block;
  position: relative;
  padding: 0.75rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-mid-gray);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--c-energy-gold), var(--c-neon-purple));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--c-paper-white);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--c-energy-gold);
  text-shadow: 0 0 14px rgba(245, 184, 65, 0.35);
}

@media (max-width: 767px) {
  .site-nav {
    display: none;
    border: 1px solid rgba(245, 184, 65, 0.14);
    border-radius: var(--radius-md);
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    background: var(--c-deep-blue);
    padding: 0.5rem;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    border-left: 2px solid transparent;
    white-space: normal;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] {
    background: rgba(245, 184, 65, 0.08);
    border-left-color: var(--c-energy-gold);
  }

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

/* ============ Footer ============ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--c-deep-blue) 0%, var(--c-space-black) 55%);
  border-top: 1px solid rgba(245, 184, 65, 0.2);
  margin-top: 4rem;
  padding: 3.5rem 0 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(245, 184, 65, 0.7), rgba(155, 92, 246, 0.4), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 3fr 2fr 1.5fr;
    gap: 3rem;
  }
}

/* Footer Brand */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-energy-gold);
  border-radius: 10px;
  transform: rotate(45deg);
  background: rgba(245, 184, 65, 0.07);
  box-shadow: 0 0 18px rgba(245, 184, 65, 0.14);
  flex-shrink: 0;
}

.footer-brand-mark span {
  display: inline-flex;
  transform: rotate(-45deg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--c-energy-gold);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-brand-name {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--c-mid-gray);
  text-transform: uppercase;
}

.footer-site-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--c-paper-white);
  line-height: 1.3;
}

/* Footer About & Trust */
.footer-about {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-mid-gray);
  max-width: 48ch;
}

.footer-trust {
  margin-top: 1.25rem;
  padding-left: 0.875rem;
  border-left: 2px solid var(--c-electron-green);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--c-mid-gray);
}

/* Footer Columns & Titles */
.footer-col-contact,
.footer-col-legal {
  min-width: 0;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-energy-gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--c-energy-gold), transparent);
  border-radius: 2px;
}

/* Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-contact-label {
  flex: 0 0 2.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--c-neon-purple);
}

.footer-contact-value {
  color: var(--c-paper-white);
  overflow-wrap: anywhere;
}

/* Legal List */
.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-list a {
  position: relative;
  display: inline-block;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  color: var(--c-mid-gray);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-legal-list a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-data);
  font-size: 1.125rem;
  line-height: 1;
  color: var(--c-energy-gold);
}

.footer-legal-list a:hover {
  color: var(--c-energy-gold);
  text-shadow: 0 0 12px rgba(245, 184, 65, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: var(--c-mid-gray);
  text-align: center;
}

.footer-icp,
.footer-copy {
  font-family: var(--font-data);
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ============ Prose Content ============ */
.prose {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--c-mid-gray);
}

.prose p {
  margin-bottom: 1.5em;
}

.prose strong {
  color: var(--c-paper-white);
  font-weight: 600;
}

.prose a {
  color: var(--c-electric-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.prose a:hover {
  color: var(--c-energy-gold);
  text-decoration-color: var(--c-energy-gold);
}

/* ============ Responsive Adjustments ============ */
@media (max-width: 767px) {
  .header-domain {
    display: none;
  }

  .header-meta-inner {
    justify-content: center;
  }

  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-desktop {
    display: block;
  }

  .hide-desktop {
    display: none;
  }
}

/* ============ Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-progress {
    display: none !important;
  }

  .badge-dot {
    animation: none !important;
  }
}
