/* ==========================================================
   皇冠现金站 全站共享样式
   /assets/site.css
   ========================================================== */

/* ---------- 1. CSS Variables ---------- */
:root {
  --black-900: #0A0A0A;
  --black-700: #151515;
  --gold-primary: #D4AF37;
  --gold-lite: #E8CC68;
  --emerald: #00A86B;
  --ivory: #F5F0E6;
  --slate: #9CA3AF;
  --white: #FFFFFF;

  --font-serif: Georgia, "Times New Roman", "Songti SC", "STSong", "SimSun", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1280px;
  --container-wide: 1400px;
  --container-narrow: 920px;
  --header-h: 76px;
  --topbar-h: 42px;

  --radius-chamfer: 4px 20px 20px 20px;
  --radius-flag: 0 18px 18px 18px;

  --trans-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-med: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --trans-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-gold: 0 4px 32px rgba(212, 175, 55, 0.18);
  --shadow-deep: 0 16px 48px rgba(0, 0, 0, 0.55);

  --gold-grad: linear-gradient(135deg, #D4AF37 0%, #E8CC68 45%, #B8962E 100%);
}

/* ---------- 2. Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory);
  background-color: var(--black-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--trans-fast);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

:focus {
  outline: none;
}

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

::selection {
  background: rgba(212, 175, 55, 0.28);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black-900);
}

::-webkit-scrollbar-thumb {
  background: #292A2E;
  border-radius: 6px;
  border: 2px solid var(--black-900);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.45);
}

/* ---------- 3. Typography Utilities ---------- */
.display-large {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.display-medium {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-grad);
  flex-shrink: 0;
}

/* ---------- 4. Layout & Grid ---------- */
.page-shell {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  flex: 1 0 auto;
}

.page-section {
  padding: clamp(48px, 8vw, 120px) 0;
}

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

#main-content:focus {
  outline: none;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px 16px 16px 16px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.btn-gold {
  background: var(--gold-grad);
  background-size: 220% 100%;
  background-position: 0% 0%;
  color: var(--black-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-position: 100% 0%;
  color: var(--black-900);
  box-shadow: 0 6px 36px rgba(212, 175, 55, 0.32);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-lite);
  color: var(--gold-lite);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ivory);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--trans-fast);
  font-size: 16px;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- 6. Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--gold-grad);
  color: var(--black-900);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 12px 12px;
  transition: top var(--trans-fast), opacity var(--trans-fast);
  opacity: 0;
}

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

/* ---------- 7. Topbar ---------- */
.site-topbar {
  background: var(--black-700);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    rgba(212, 175, 55, 0.025) 14px,
    rgba(212, 175, 55, 0.025) 15px
  );
  overflow: hidden;
}

.topbar-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--topbar-h);
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  flex-shrink: 0;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--emerald);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.topbar-message {
  flex: 1 1 auto;
  font-size: 14px;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-primary);
  padding: 4px 14px;
  border-radius: 2px 12px 2px 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: border-color var(--trans-fast), background var(--trans-fast), color var(--trans-fast);
  flex-shrink: 0;
}

.topbar-cta:hover {
  border-color: var(--gold-lite);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-lite);
}

.topbar-arrow {
  font-size: 14px;
  transition: transform var(--trans-fast);
}

.topbar-cta:hover .topbar-arrow {
  transform: translateX(3px);
}

/* ---------- 8. Header & Brand ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 901;
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark:hover {
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.02));
  clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-primary);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: relative;
}

.brand-name::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  background: var(--gold-grad);
  width: 100%;
}

/* ---------- 9. Navigation Desktop ---------- */
.site-nav {
  margin-left: auto;
  border-left: 1px solid rgba(212, 175, 55, 0.22);
  padding-left: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--trans-fast), background var(--trans-fast);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-med);
}

.nav-link:hover {
  color: var(--gold-lite);
  background: rgba(212, 175, 55, 0.04);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

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

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

/* ---------- 10. Nav Toggle / Mobile ---------- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px 14px 2px 14px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: border-color var(--trans-fast), background var(--trans-fast);
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: var(--gold-lite);
  background: rgba(212, 175, 55, 0.08);
}

.toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: transform var(--trans-med), opacity var(--trans-med);
}

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

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

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

/* ---------- 11. Scroll Progress ---------- */
.scroll-progress {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold-grad);
  z-index: 902;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ---------- 12. Footer ---------- */
.site-footer {
  background: var(--black-700);
  position: relative;
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-goldline {
  height: 3px;
  background: var(--gold-grad);
  position: relative;
}

.footer-goldline::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.12), transparent);
  pointer-events: none;
}

.footer-container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px) 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
}

.footer-brand .brand-name {
  font-size: 20px;
}

.footer-trust {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 320px;
}

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

.footer-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-grad);
}

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

.footer-link {
  display: inline-block;
  font-size: 14px;
  color: var(--ivory);
  transition: color var(--trans-fast), padding-left var(--trans-fast);
}

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

.footer-contact li {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}

.footer-contact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 0 2px 0 2px;
  transform: rotate(45deg);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy,
.footer-icp {
  font-size: 13px;
  color: var(--slate);
}

.footer-icp {
  letter-spacing: 0.06em;
}

/* ---------- 13. Back-to-top ---------- */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--black-700);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 2px 16px 2px 16px;
  color: var(--gold-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity var(--trans-med), transform var(--trans-med), visibility var(--trans-med), border-color var(--trans-fast), background var(--trans-fast);
  box-shadow: var(--shadow-deep);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  border-color: var(--gold-lite);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-lite);
}

@media (forced-colors: active) {
  .back-top {
    border: 2px solid ButtonText;
  }
}

/* ---------- 14. Breadcrumbs ---------- */
.breadcrumbs {
  padding: clamp(20px, 4vw, 40px) 0 8px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--slate);
}

.breadcrumbs-item a {
  color: var(--slate);
  transition: color var(--trans-fast);
}

.breadcrumbs-item a:hover {
  color: var(--gold-lite);
}

.breadcrumbs-item[aria-current="page"] {
  color: var(--ivory);
  font-weight: 500;
}

.breadcrumbs-sep {
  color: var(--gold-primary);
  opacity: 0.6;
  font-size: 12px;
}

/* ---------- 15. Panels & Cards ---------- */
.panel-chamfer {
  position: relative;
  background: var(--black-700);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-flag);
  padding: clamp(24px, 4vw, 44px);
}

.panel-chamfer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 36px;
  width: 56px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 0 0 6px 6px;
}

/* ---------- 16. Chapters ---------- */
.chapter {
  position: relative;
  margin-bottom: clamp(48px, 6vw, 88px);
}

.chapter-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  margin-bottom: 24px;
}

.chapter-number {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: rgba(212, 175, 55, 0.35);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.chapter-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--white);
  line-height: 1.2;
}

/* ---------- 17. Image Frames ---------- */
.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--black-700);
  border-radius: var(--radius-flag);
  border: 1px solid rgba(212, 175, 55, 0.1);
  aspect-ratio: 16 / 9;
}

.image-frame.is-portrait {
  aspect-ratio: 3 / 4;
}

.image-frame.is-square {
  aspect-ratio: 1 / 1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-med);
}

.image-frame:hover img {
  transform: scale(1.04);
}

.image-frame .frame-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
  font-size: 13px;
  color: var(--ivory);
  pointer-events: none;
}

/* ---------- 18. Expandable Content ---------- */
.expand-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
  text-align: left;
  cursor: pointer;
  transition: color var(--trans-fast);
}

.expand-trigger:hover {
  color: var(--gold-lite);
}

.expand-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px 10px 2px 10px;
  color: var(--gold-primary);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--trans-med), border-color var(--trans-fast);
}

.expand-trigger[aria-expanded="true"] .expand-icon {
  transform: rotate(45deg);
  border-color: var(--gold-lite);
  color: var(--gold-lite);
}

.expand-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows var(--trans-med), opacity var(--trans-med);
}

.expand-panel > * {
  min-height: 0;
  overflow: hidden;
}

.expand-panel.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 1080px) {
  .site-nav {
    padding-left: 16px;
  }

  .nav-link {
    padding: 10px 11px;
    font-size: 14px;
  }
}

@media (max-width: 959px) {
  :root {
    --header-h: 68px;
    --topbar-h: 38px;
  }

  .site-topbar {
    display: none;
  }

  .header-inner {
    padding: 0 16px;
  }

  .brand-emblem {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-download {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 2px 12px 2px 12px;
  }

  .btn-download .btn-arrow {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    border-top: none;
    padding: calc(var(--header-h) + 32px) 28px 48px;
    margin-left: 0;
    z-index: 899;
    transition: right var(--trans-med);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  }

  .site-nav[data-open="true"] {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    font-size: 18px;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
  }

  .nav-link::after {
    left: 12px;
    right: 12px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 898;
    transition: opacity var(--trans-med);
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .back-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

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

  .footer-trust {
    max-width: 100%;
  }

  .topbar-status {
    display: none;
  }
}

/* ---------- 20. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

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

  html {
    scroll-behavior: auto !important;
  }

  .status-dot::after {
    display: none;
  }

  .scroll-progress {
    transition: none;
  }

  .image-frame:hover img {
    transform: none;
  }
}
