/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bp-ink);
  background: var(--bp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
}

ul,
ol {
  padding-left: 1.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--bp-blue-900);
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 2px solid var(--bp-orange);
  outline-offset: 2px;
  border-radius: 2px;
}

#main-content {
  display: block;
  flex: 1;
}

/* ========== Variables ========== */
:root {
  --bp-blue-900: #0A2540;
  --bp-blue-700: #123A5F;
  --bp-orange: #FF5A1F;
  --bp-orange-light: #FF8A65;
  --bp-white: #F5F7FA;
  --bp-ink: #0B1B2B;
  --bp-surface: #FFFFFF;
  --bp-gray: #E8ECF0;
  --bp-green: #00C48C;
  --bp-yellow: #FFC107;

  --bp-font-head: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --bp-font-body: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  --bp-font-data: 'Roboto Mono', 'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;

  --bp-container-max: 1440px;
  --bp-radius: 4px;
  --bp-shadow: 0 4px 20px rgba(11, 27, 43, 0.08);
  --bp-ease: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --bp-scroll: 0;
}

/* ========== Container & Section ========== */
.bp-container {
  width: 100%;
  max-width: var(--bp-container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.bp-section {
  padding: 80px 0;
}

.bp-section-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 32px;
}

.bp-section-kicker {
  font-family: var(--bp-font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bp-orange);
  white-space: nowrap;
}

.bp-section-kicker::before {
  content: '[';
  margin-right: 4px;
  color: var(--bp-blue-700);
}

.bp-section-kicker::after {
  content: ']';
  margin-left: 4px;
  color: var(--bp-blue-700);
}

.bp-section-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--bp-blue-900);
}

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

.bp-col-3 { grid-column: span 3; }
.bp-col-4 { grid-column: span 4; }
.bp-col-6 { grid-column: span 6; }
.bp-col-8 { grid-column: span 8; }
.bp-col-12 { grid-column: span 12; }

@media (max-width: 991px) {
  .bp-col-4 { grid-column: span 6; }
  .bp-col-6,
  .bp-col-8,
  .bp-col-12 { grid-column: span 12; }
}

@media (max-width: 575px) {
  .bp-col-3,
  .bp-col-4,
  .bp-col-6,
  .bp-col-8,
  .bp-col-12 { grid-column: span 12; }
}

/* ========== Buttons ========== */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  font-family: var(--bp-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background-color var(--bp-ease),
    border-color var(--bp-ease),
    color var(--bp-ease),
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.bp-btn-primary {
  background: var(--bp-orange);
  border-color: var(--bp-orange);
  color: var(--bp-ink);
}

.bp-btn-primary:hover {
  background: var(--bp-orange-light);
  border-color: var(--bp-orange-light);
  transform: translateY(-2px);
}

.bp-btn-outline {
  background: transparent;
  border-color: rgba(245, 247, 250, 0.4);
  color: var(--bp-white);
}

.bp-btn-outline:hover {
  border-color: var(--bp-orange);
  color: var(--bp-orange);
}

.bp-btn-outline--ink {
  border-color: rgba(11, 27, 43, 0.3);
  color: var(--bp-ink);
}

.bp-btn-outline--ink:hover {
  border-color: var(--bp-orange);
  color: var(--bp-orange);
}

/* ========== Card ========== */
.bp-card {
  position: relative;
  background: var(--bp-surface);
  border: 1px solid var(--bp-gray);
  border-radius: var(--bp-radius);
  padding: 24px;
  box-shadow: var(--bp-shadow);
}

.bp-card--dark {
  background: var(--bp-blue-700);
  border-color: transparent;
  color: var(--bp-white);
}

.bp-card--dark .bp-card-title {
  color: var(--bp-white);
}

.bp-card-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--bp-blue-900);
}

.bp-card--flush {
  padding: 0;
}

/* ========== Tag & Dot ========== */
.bp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--bp-font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  background: var(--bp-gray);
  color: var(--bp-ink);
  border-radius: 2px;
  white-space: nowrap;
}

.bp-tag--orange {
  background: var(--bp-orange);
  color: var(--bp-ink);
}

.bp-tag--blue {
  background: var(--bp-blue-900);
  color: var(--bp-white);
}

.bp-tag--green {
  background: var(--bp-green);
  color: var(--bp-ink);
}

.bp-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-green);
}

.bp-dot--orange {
  background: var(--bp-orange);
}

.bp-dot--warn {
  background: var(--bp-yellow);
}

.bp-dot--green {
  background: var(--bp-green);
}

/* ========== Data & Text Utilities ========== */
.bp-data {
  font-family: var(--bp-font-data);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  font-size: 0.95em;
}

.bp-text-muted {
  color: rgba(11, 27, 43, 0.55);
}

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

/* ========== Breadcrumb ========== */
.bp-breadcrumb {
  margin: 0 0 32px;
}

.bp-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-breadcrumb-item {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--bp-blue-700);
}

.bp-breadcrumb-item + .bp-breadcrumb-item::before {
  content: '/';
  margin-right: 10px;
  color: rgba(11, 27, 43, 0.35);
}

.bp-breadcrumb-item a {
  color: var(--bp-blue-700);
  text-decoration: none;
  transition: color var(--bp-ease);
}

.bp-breadcrumb-item a:hover {
  color: var(--bp-orange);
}

.bp-breadcrumb-item[aria-current='page'] {
  color: var(--bp-orange);
  font-weight: 700;
}

/* ========== Table & Divider ========== */
.bp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bp-table th,
.bp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--bp-gray);
  text-align: left;
}

.bp-table th {
  font-family: var(--bp-font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bp-blue-700);
  background: var(--bp-gray);
}

.bp-table tr:last-child td {
  border-bottom: 0;
}

.bp-divider {
  height: 1px;
  margin: 32px 0;
  background: var(--bp-gray);
  border: 0;
}

/* ========== Content ========== */
.bp-content {
  color: var(--bp-ink);
}

.bp-content h2 {
  color: var(--bp-blue-900);
}

.bp-content h2::before {
  content: '/';
  color: var(--bp-orange);
  margin-right: 10px;
  font-family: var(--bp-font-data);
}

.bp-content p {
  margin-bottom: 1.2em;
}

/* ========== Media ========== */
.bp-media {
  position: relative;
  overflow: hidden;
  background: var(--bp-gray);
  aspect-ratio: 16 / 9;
}

.bp-media--4x3 {
  aspect-ratio: 4 / 3;
}

.bp-media--1x1 {
  aspect-ratio: 1 / 1;
}

.bp-media--panorama {
  aspect-ratio: 21 / 9;
}

.bp-media--placeholder {
  background:
    linear-gradient(135deg, transparent 40%, rgba(255, 90, 31, 0.18) 40%, rgba(255, 90, 31, 0.18) 42%, transparent 42%),
    linear-gradient(rgba(10, 37, 64, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.06) 1px, transparent 1px),
    var(--bp-gray);
  background-size: 100% 100%, 24px 24px, 24px 24px, auto;
  min-height: 140px;
}

.bp-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Skip Link ========== */
.bp-skip-link {
  position: fixed;
  top: -48px;
  left: 24px;
  z-index: 2000;
  padding: 10px 20px;
  background: var(--bp-orange);
  color: var(--bp-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.25s ease;
}

.bp-skip-link:focus-visible {
  top: 12px;
  outline: 2px dashed var(--bp-ink);
  outline-offset: 2px;
}

/* ========== Header ========== */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--bp-blue-900) 0%, var(--bp-blue-700) 100%);
  color: var(--bp-white);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.18);
}

.bp-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 3px;
  background: rgba(245, 247, 250, 0.12);
  pointer-events: none;
}

.bp-progress::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bp-orange), var(--bp-orange-light));
  transform: scaleX(var(--bp-scroll, 0));
  transform-origin: left top;
  transition: transform 0.08s linear;
}

.bp-ruler {
  height: 8px;
  background-color: var(--bp-blue-900);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(245, 247, 250, 0.28) 0,
    rgba(245, 247, 250, 0.28) 1px,
    transparent 1px,
    transparent 20px
  );
  border-bottom: 1px solid rgba(245, 247, 250, 0.12);
}

.bp-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--bp-container-max);
  margin: 0 auto;
  padding: 0 32px;
  min-height: 72px;
}

.bp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.bp-brand-logo {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-left: 3px solid var(--bp-orange);
  border-top: 3px solid var(--bp-orange);
  border-right: 1px solid rgba(245, 247, 250, 0.25);
  border-bottom: 1px solid rgba(245, 247, 250, 0.25);
  border-radius: 2px;
  transition: border-color var(--bp-ease);
}

.bp-brand-logo-dot {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 6px;
  height: 6px;
  background: var(--bp-orange);
  border-radius: 50%;
  transition: background-color var(--bp-ease), transform var(--bp-ease);
}

.bp-brand:hover .bp-brand-logo-dot {
  background: var(--bp-orange-light);
  transform: scale(1.25);
}

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

.bp-brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bp-white);
  white-space: nowrap;
}

.bp-brand-tagline {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 250, 0.55);
  white-space: nowrap;
}

.bp-nav {
  display: block;
  margin-left: auto;
}

.bp-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-nav-link {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 250, 0.78);
  text-decoration: none;
  transition: color var(--bp-ease);
}

.bp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--bp-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bp-nav-link:hover,
.bp-nav-link:focus-visible {
  color: var(--bp-white);
}

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

.bp-nav-link[aria-current='page'] {
  color: var(--bp-white);
  font-weight: 700;
}

.bp-header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.bp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(245, 247, 250, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--bp-ease), background-color var(--bp-ease);
}

.bp-nav-toggle:hover {
  border-color: var(--bp-orange);
}

.bp-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bp-white);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.bp-nav-toggle.is-active .bp-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bp-nav-toggle.is-active .bp-toggle-line:nth-child(2) {
  opacity: 0;
}

.bp-nav-toggle.is-active .bp-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bp-header-sub {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 6px 32px;
  background: rgba(10, 37, 64, 0.55);
  border-top: 1px solid rgba(245, 247, 250, 0.07);
  font-family: var(--bp-font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 247, 250, 0.5);
  text-transform: uppercase;
}

.bp-header-sub-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bp-header-sub-item--coord,
.bp-header-sub-item--flow {
  display: inline-flex;
}

/* ========== Header Responsive ========== */
@media (min-width: 1200px) {
  .bp-header-sub {
    display: flex;
  }
}

@media (max-width: 991px) {
  .bp-header-main {
    padding: 0 20px;
    min-height: 64px;
  }

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

  .bp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 12px 24px 20px;
    background: var(--bp-blue-900);
    border-top: 1px solid rgba(245, 247, 250, 0.1);
    border-bottom: 1px solid rgba(245, 247, 250, 0.1);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      visibility 0.3s;
    z-index: 5;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(10, 37, 64, 0.35);
  }

  .bp-nav[data-open] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .bp-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bp-nav-item {
    border-bottom: 1px solid rgba(245, 247, 250, 0.06);
  }

  .bp-nav-item:last-child {
    border-bottom: 0;
  }

  .bp-nav-link {
    padding: 14px 8px 14px 16px;
    font-size: 16px;
    border-left: 2px solid transparent;
  }

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

  .bp-nav-link[aria-current='page'] {
    border-left-color: var(--bp-orange);
    color: var(--bp-white);
  }
}

@media (max-width: 575px) {
  .bp-header-main {
    padding: 0 12px;
    gap: 8px;
  }

  .bp-brand-gap {
    gap: 8px;
  }

  .bp-brand-tagline {
    display: none;
  }

  .bp-btn {
    padding: 8px 12px;
    min-height: 36px;
    font-size: 13px;
  }

  .bp-nav-toggle {
    width: 40px;
    height: 40px;
  }

  .bp-ruler {
    height: 6px;
  }

  .bp-container {
    padding: 0 16px;
  }

  .bp-section {
    padding: 56px 0;
  }
}

/* ========== Footer ========== */
.bp-footer {
  position: relative;
  margin-top: 80px;
  background: var(--bp-blue-900);
  color: var(--bp-white);
  overflow: hidden;
}

.bp-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 247, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.bp-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    135deg,
    var(--bp-orange) 0,
    var(--bp-orange) 18px,
    transparent 18px,
    transparent 36px
  );
  z-index: 1;
}

.bp-footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 40px;
  max-width: var(--bp-container-max);
  margin: 0 auto;
  padding: 72px 32px 56px;
}

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

.bp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bp-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bp-footer-brand-logo {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-left: 3px solid var(--bp-orange);
  border-top: 3px solid var(--bp-orange);
  border-right: 1px solid rgba(245, 247, 250, 0.25);
  border-bottom: 1px solid rgba(245, 247, 250, 0.25);
  border-radius: 2px;
}

.bp-footer-brand-logo-dot {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 7px;
  height: 7px;
  background: var(--bp-orange);
  border-radius: 50%;
  transition: background-color var(--bp-ease);
}

.bp-footer-brand-link:hover .bp-footer-brand-logo-dot {
  background: var(--bp-orange-light);
}

.bp-footer-brand-name {
  font-family: var(--bp-font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bp-white);
}

.bp-footer-desc {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.62);
}

.bp-footer-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 90, 31, 0.6);
  color: var(--bp-orange);
  font-family: var(--bp-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color var(--bp-ease), border-color var(--bp-ease);
}

.bp-footer-back:hover {
  color: var(--bp-white);
  border-bottom-color: var(--bp-white);
}

.bp-footer-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: var(--bp-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bp-white);
}

.bp-footer-title::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--bp-orange);
  flex: 0 0 auto;
}

.bp-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-footer-list a {
  color: rgba(245, 247, 250, 0.68);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--bp-ease), padding-left var(--bp-ease);
}

.bp-footer-list a:hover {
  color: var(--bp-orange);
  padding-left: 4px;
}

.bp-footer-list--contact {
  gap: 14px;
}

.bp-footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bp-footer-contact-label {
  font-family: var(--bp-font-data);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 247, 250, 0.4);
}

.bp-footer-contact-value {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.75);
  text-decoration: none;
  transition: color var(--bp-ease);
}

a.bp-footer-contact-value:hover {
  color: var(--bp-orange);
}

.bp-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(245, 247, 250, 0.08);
}

.bp-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  max-width: var(--bp-container-max);
  margin: 0 auto;
  padding: 16px 32px;
  font-family: var(--bp-font-data);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 250, 0.42);
}

.bp-footer-copy {
  margin: 0;
}

.bp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-footer-legal a {
  color: rgba(245, 247, 250, 0.5);
  text-decoration: none;
  transition: color var(--bp-ease);
}

.bp-footer-legal a:hover {
  color: var(--bp-orange);
}

/* ========== Footer Responsive ========== */
@media (max-width: 991px) {
  .bp-footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 56px 24px 40px;
  }

  .bp-footer-brand {
    grid-column: span 2;
  }

  .bp-footer-bottom-inner {
    padding: 14px 24px;
  }
}

@media (max-width: 575px) {
  .bp-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bp-footer-brand {
    grid-column: span 1;
  }

  .bp-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }
}

/* ========== 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;
  }

  .bp-progress::before {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
