:root {
  --deep-space: #0B1F3B;
  --ink-blue: #071427;
  --ivory: #F2F0EA;
  --rock-gray: #A3ACB8;
  --gold-a: #C9A84C;
  --gold-b: #E8C779;
  --signal-orange: #FF7A1A;
  --moss: #5E7B6A;
  --terracotta: #C76D4E;
  --steel-blue: #3D6B8E;
  --grid-line: rgba(163, 172, 184, 0.16);
  --gold-line: rgba(201, 168, 76, 0.5);
  --panel-bg: rgba(11, 31, 59, 0.65);
  --panel-bg-soft: rgba(11, 31, 59, 0.8);
  --max-width: 1180px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 40px;
  --space-7: 64px;
  --space-8: 96px;
  --font-display: 200;
  --font-body: 300;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink-blue);
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ivory);
  background: var(--ink-blue);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--ivory);
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--signal-orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 1px var(--ink-blue);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 2000;
  background: var(--signal-orange);
  color: var(--ink-blue);
  font-weight: 500;
  padding: 8px 16px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-frame {
  min-height: 100vh;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-color: var(--deep-space);
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(201, 168, 76, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.site-frame > .top-entry-bar,
.site-frame > .site-header,
.site-frame > .site-footer,
.site-frame > #main-content {
  position: relative;
  z-index: 1;
}

#main-content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
}

/* ============ Top Entry Bar ============ */
.top-entry-bar {
  background: rgba(7, 20, 39, 0.92);
  border-bottom: 1px solid var(--grid-line);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--rock-gray);
}

.top-entry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
}

.online-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-entry-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rock-gray);
  transition: color 180ms ease;
}

.top-entry-link:hover {
  color: var(--gold-b);
}

.top-entry-link .coord-suffix {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--gold-a);
  opacity: 0.7;
}

.gold-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-a);
  display: inline-block;
  transform: rotate(45deg);
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
}

.is-online {
  background: var(--moss);
}

.is-warn {
  background: var(--terracotta);
}

.is-sync {
  background: linear-gradient(135deg, var(--gold-a), var(--gold-b));
  animation: state-breathe 1.2s ease-in-out infinite;
}

@keyframes state-breathe {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50% { opacity: 0.72; box-shadow: 0 0 0 4px rgba(201, 168, 76, 0); }
}

/* ============ Header ============ */
.site-header {
  background: rgba(11, 31, 59, 0.9);
  border-bottom: 1px solid var(--gold-line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  position: relative;
}

.brand-number {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ivory);
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--gold-b);
  padding-top: 6px;
}

.brand-coord {
  position: absolute;
  left: 0;
  bottom: -18px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: var(--rock-gray);
  white-space: nowrap;
  opacity: 0.6;
}

.nav-desktop {
  display: flex;
  align-items: stretch;
}

.nav-desktop ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 100%;
}

.nav-desktop li {
  display: flex;
  align-items: stretch;
}

.nav-desktop a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--rock-gray);
  padding: 0 14px;
  position: relative;
  transition: color 180ms ease;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover {
  color: var(--ivory);
  border-bottom-color: var(--gold-a);
}

.nav-desktop a[aria-current="page"] {
  color: var(--gold-b);
  border-bottom-color: var(--gold-a);
}

.nav-desktop a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-a), transparent);
}

.nav-desktop .nav-index {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--gold-a);
  opacity: 0.75;
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-self: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--grid-line);
  background: transparent;
  transition: border-color 180ms ease;
}

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

.nav-mobile-toggle .toggle-line {
  width: 20px;
  height: 1px;
  background: var(--ivory);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(7, 20, 39, 0.98);
  border-bottom: 1px solid var(--gold-line);
  padding: 16px 24px 24px;
  z-index: 99;
}

.nav-mobile[data-open="true"] {
  display: block;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--grid-line);
  font-size: 1.0625rem;
  color: var(--ivory);
  font-weight: 300;
}

.nav-mobile a:hover {
  color: var(--gold-b);
}

.nav-mobile-index {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  color: var(--gold-a);
}

.nav-mobile-foot {
  margin-top: 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--rock-gray);
  letter-spacing: 0.1em;
}

.page-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: transparent;
  z-index: 101;
}

.page-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-a), var(--gold-b));
  transition: width 80ms linear;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--ink-blue);
  border-top: 1px solid var(--gold-line);
  padding-top: 64px;
  padding-bottom: 24px;
  position: relative;
}

.site-footer::before {
  content: "END";
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  color: var(--rock-gray);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.brand-lockup-footer {
  margin-bottom: 16px;
}

.brand-lockup-footer .brand-number {
  font-size: 1.6rem;
}

.brand-lockup-footer .brand-name {
  font-size: 0.9rem;
}

.footer-trust {
  font-size: 0.8125rem;
  color: var(--rock-gray);
  line-height: 1.8;
  max-width: 330px;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-heading span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--gold-a);
  letter-spacing: 0.08em;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--rock-gray);
  font-size: 0.8125rem;
  transition: color 180ms ease, padding-left 180ms ease;
}

.footer-link:hover {
  color: var(--gold-b);
  padding-left: 4px;
}

.footer-link span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--gold-a);
  opacity: 0.6;
}

.footer-plain {
  color: var(--rock-gray);
  font-size: 0.8125rem;
}

.footer-state li {
  color: var(--rock-gray);
  font-size: 0.8125rem;
}

.footer-icp {
  margin-top: 24px;
  padding-top: 8px;
  border-top: 1px solid rgba(163, 172, 184, 0.2);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--rock-gray);
  opacity: 0.75;
  letter-spacing: 0.06em;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 10px 24px;
  border: 1px solid transparent;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-a), var(--gold-b));
  color: var(--ink-blue);
  border-color: var(--gold-a);
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.btn-signal {
  background: var(--signal-orange);
  color: var(--ink-blue);
  border-color: var(--signal-orange);
  font-weight: 500;
}

.btn-signal:hover {
  box-shadow: 0 4px 20px rgba(255, 122, 26, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--rock-gray);
}

.btn-ghost:hover {
  border-color: var(--gold-a);
  color: var(--gold-b);
}

/* ============ Section index label ============ */
.sec-idx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--gold-a);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-idx::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-a);
  opacity: 0.6;
}

/* ============ Grid & Cards ============ */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.panel-card {
  background: var(--panel-bg);
  border: 1px solid rgba(163, 172, 184, 0.25);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease;
}

.panel-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color 180ms ease;
}

.panel-card:hover {
  border-color: var(--gold-a);
}

.panel-card:hover::after {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.05);
}

.panel-card .card-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--rock-gray);
  margin-bottom: 16px;
}

.panel-card .card-title {
  font-size: 1.375rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 8px;
}

.panel-card .card-desc {
  font-size: 0.8125rem;
  color: var(--rock-gray);
  line-height: 1.7;
}

/* ============ Tags ============ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--rock-gray);
  color: var(--rock-gray);
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.tag:hover {
  border-color: var(--gold-a);
  color: var(--gold-b);
}

.tag.is-gold {
  border-color: var(--gold-a);
  color: var(--gold-b);
}

.tag.is-moss {
  border-color: var(--moss);
  color: #9FC6A5;
}

.tag.is-terra {
  border-color: var(--terracotta);
  color: #E09D88;
}

/* ============ Figure frame ============ */
.figure-frame {
  position: relative;
  border: 1px solid var(--grid-line);
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin-bottom: 16px;
}

.figure-frame::before {
  content: "FIG.365-" attr(data-fig);
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--rock-gray);
  opacity: 0.7;
  z-index: 1;
}

.figure-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
  pointer-events: none;
}

/* ============ Breadcrumb ============ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  color: var(--rock-gray);
  padding: 16px 0;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--rock-gray);
  transition: color 180ms ease;
}

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

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

/* ============ Prose ============ */
.prose {
  max-width: 720px;
}

.prose h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ivory);
  margin-bottom: 24px;
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--ivory);
  margin-top: 40px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 1px;
  background: var(--gold-a);
}

.prose p {
  color: var(--rock-gray);
  margin-bottom: 16px;
}

.prose ul {
  color: var(--rock-gray);
  margin-bottom: 16px;
  list-style: none;
}

.prose ul li {
  padding-left: 20px;
  position: relative;
}

.prose ul li::before {
  content: "□";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.6875rem;
  color: var(--gold-a);
  transform: translateY(3px);
}

.prose a {
  color: var(--gold-b);
  border-bottom: 1px solid var(--gold-line);
  transition: border-color 180ms ease;
}

.prose a:hover {
  border-bottom-color: var(--gold-b);
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 1;
  transition: opacity 220ms ease;
}

[data-reveal="hidden"] {
  opacity: 0;
}

[data-reveal="shown"] {
  opacity: 1;
}

/* ============ Tabs ============ */
.tabs {
  width: 100%;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--grid-line);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.tab-btn {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 6px 16px;
  border: 1px solid var(--grid-line);
  color: var(--rock-gray);
  background: transparent;
  letter-spacing: 0.04em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tab-btn:hover {
  color: var(--ivory);
  border-color: var(--gold-a);
}

.tab-btn[aria-selected="true"] {
  color: var(--ink-blue);
  background: linear-gradient(135deg, var(--gold-a), var(--gold-b));
  border-color: var(--gold-a);
  font-weight: 500;
}

.tab-panel {
  display: none;
  animation: tab-slide 180ms ease-out;
}

.tab-panel.is-active {
  display: block;
}

@keyframes tab-slide {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============ Accordion ============ */
.accordion {
  border: 1px solid var(--grid-line);
}

.accordion-item {
  border-bottom: 1px solid var(--grid-line);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ivory);
  text-align: left;
  transition: background 180ms ease;
}

.accordion-btn:hover {
  background: rgba(11, 31, 59, 0.5);
}

.accordion-btn .acc-index {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--gold-a);
  display: inline-block;
  margin-right: 10px;
}

.accordion-btn .acc-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--rock-gray);
  transition: transform 220ms ease;
  flex: 0 0 auto;
}

.accordion-item[data-open="true"] .acc-icon {
  transform: rotate(90deg);
  color: var(--gold-b);
}

.accordion-panel {
  display: none;
  padding: 0 20px 16px 48px;
  color: var(--rock-gray);
  font-size: 0.875rem;
}

.accordion-item[data-open="true"] .accordion-panel {
  display: block;
}

/* ============ Ticker ============ */
.ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--gold-line);
  background: rgba(7, 20, 39, 0.6);
  color: var(--rock-gray);
  font-size: 0.8125rem;
}

.ticker::before {
  content: "◆";
  width: 8px;
  height: 8px;
  color: var(--gold-a);
  font-size: 0.5rem;
  line-height: 1;
}

/* ============ Media Queries ============ */
@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 64px;
    position: relative;
  }

  .brand-number {
    font-size: 1.6rem;
  }

  .brand-name {
    font-size: 0.9rem;
    letter-spacing: 0.24em;
  }

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

  .top-entry-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-entry-links {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .top-entry-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-coord {
    display: none;
  }

  .nav-mobile {
    padding: 8px 16px 16px;
  }

  .nav-mobile ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .nav-mobile a {
    padding: 12px 4px;
    font-size: 0.9375rem;
  }

  .nav-mobile-foot {
    display: none;
  }

  .brand-lockup-footer {
    margin-bottom: 8px;
  }

  .footer-heading {
    margin-bottom: 10px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .breadcrumb {
    font-size: 0.6875rem;
  }
}

@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;
  }

  .tab-panel.is-active {
    animation: none;
  }

  [data-reveal="hidden"] {
    opacity: 1;
  }

  .is-sync {
    animation: none;
    box-shadow: none;
  }
}
