:root {
  --paper: #F2ECD9;
  --pitch: #0B3D2E;
  --ink: #1D2A24;
  --gold: #C9A227;
  --orange: #FF6B35;
  --bone: #FCFAF4;
  --sand: #E4D7C3;
  --moss: #4C7355;
  --live: #E5453C;
  --gold-soft: #F2E5C4;
  --font-body: system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
  --font-heading: Impact, 'Arial Black', 'Noto Sans CJK SC', sans-serif;
  --font-serif: Georgia, 'Songti SC', 'Noto Serif CJK SC', serif;
  --font-mono: 'Roboto Mono', 'JetBrains Mono', 'SFMono-Regular', monospace;
  --size-hero: clamp(2.5rem, 6vw, 5rem);
  --size-h2: clamp(1.8rem, 3vw, 2.5rem);
  --size-h3: 1.25rem;
  --size-body: 1rem;
  --size-caption: 0.875rem;
  --line-hero: 1.05;
  --line-h2: 1.15;
  --line-h3: 1.3;
  --line-body: 1.7;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container-max: 1240px;
  --gutter: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--line-body);
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul[class],
ol[class] {
  list-style: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

p + p {
  margin-top: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--pitch);
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 56px 0;
}

.section--tint {
  background: var(--sand);
}

.section--dark {
  background: var(--pitch);
}

.section--dark,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--bone);
}

.section--dark a:not(.btn) {
  color: var(--gold);
}

.section--narrow {
  max-width: 680px;
  margin: 0 auto;
}

.section--alt {
  background: var(--bone);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(29, 42, 36, 0.06);
}

.main-content {
  width: 100%;
  flex: 1;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1200;
  background: var(--pitch);
  color: var(--bone);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-md) 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.skip-link:hover {
  color: var(--bone);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 100%);
  z-index: 1100;
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(circle at 4% 120%, rgba(201, 162, 39, 0.16) 0, transparent 160px),
    radial-gradient(circle at 96% 120%, rgba(255, 107, 53, 0.1) 0, transparent 140px),
    linear-gradient(180deg, #0E4936 0%, var(--pitch) 100%);
  color: var(--bone);
  border-top: 4px solid var(--gold);
  border-bottom: 2px solid rgba(201, 162, 39, 0.55);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.55;
  pointer-events: none;
}

.site-header::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.55;
  pointer-events: none;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  position: relative;
  z-index: 1;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bone);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--bone);
}

.brand__badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--pitch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(29, 42, 36, 0.25);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand__sub {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Primary Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  display: inline-block;
  color: rgba(252, 250, 244, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--bone);
  background: rgba(201, 162, 39, 0.14);
}

.nav-link[aria-current="page"] {
  color: var(--pitch);
  background: var(--gold);
  font-weight: 700;
}

.nav-link.is-spied {
  box-shadow: inset 0 -3px 0 0 var(--orange);
  color: var(--bone);
}

.nav-cta {
  display: none;
  margin-top: 8px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--bone);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1.4;
  white-space: nowrap;
}

.btn--cta {
  background: var(--orange);
  color: var(--pitch);
  border-color: var(--orange);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.28);
}

.btn--cta:hover {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(252, 250, 244, 0.45);
}

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

.btn--dark {
  background: var(--pitch);
  color: var(--bone);
  border-color: var(--pitch);
}

.btn--dark:hover {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(201, 162, 39, 0.6);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  color: var(--bone);
  cursor: pointer;
  margin-left: auto;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__text {
  font-size: 0.78rem;
  font-weight: 700;
}

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

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

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

/* Body Lock */
body.is-nav-open {
  overflow: hidden;
}

/* Page Head */
.page-head {
  padding: 48px 0 28px;
}

.page-head__kicker {
  display: block;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-head__title {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  line-height: var(--line-h2);
  color: var(--pitch);
  max-width: 900px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: rgba(29, 42, 36, 0.62);
}

.breadcrumb a {
  color: var(--pitch);
  text-decoration: none;
}

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

.breadcrumb span[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

/* Section Heading */
.section-head {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-head__kicker {
  display: block;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.12;
  color: var(--pitch);
}

.chapter-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* Editorial Quote */
.editorial-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 24px 0;
  max-width: 720px;
}

/* Stripe Divider */
.page-stripe {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 8px,
    var(--orange) 8px 12px
  );
  border-radius: var(--radius-pill);
  margin: 28px 0;
}

/* Tag Pill */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(201, 162, 39, 0.3);
  white-space: nowrap;
}

.tag-pill--live {
  background: var(--live);
  color: var(--bone);
  border-color: transparent;
}

.tag-pill--dark {
  background: var(--pitch);
  color: var(--bone);
  border-color: transparent;
}

/* Status Dot */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}

.status-dot--live {
  background: var(--live);
  animation: status-pulse 1.6s ease-in-out infinite;
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}

/* Trust Note */
.trust-note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(11, 61, 46, 0.72);
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  border-left: 3px solid var(--gold);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--bone);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(29, 42, 36, 0.08);
}

.bento-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card--span-4 {
  grid-column: span 4;
}

.bento-card--span-6 {
  grid-column: span 6;
}

.bento-card--span-8 {
  grid-column: span 8;
}

.bento-card--span-12 {
  grid-column: span 12;
}

.bento-card__title {
  font-family: var(--font-heading);
  font-size: var(--size-h3);
  color: var(--pitch);
  margin-bottom: 8px;
}

.bento-card__body {
  color: var(--ink);
  font-size: var(--size-caption);
  line-height: 1.7;
}

/* Data Block */
.data-block {
  font-family: var(--font-mono);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.data-block__value {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pitch);
  line-height: 1.2;
}

.data-block__label {
  font-size: var(--size-caption);
  color: var(--ink);
  opacity: 0.68;
  font-family: var(--font-body);
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  background: var(--bone);
}

.table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: var(--size-caption);
}

.table-wrap th {
  background: var(--pitch);
  color: var(--bone);
  text-align: left;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: nowrap;
}

.table-wrap td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--sand);
}

.table-wrap tr:last-child td {
  border-bottom: none;
}

.table-wrap tbody tr:hover td {
  background: var(--gold-soft);
}

/* Media Frame */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand), var(--bone));
  aspect-ratio: 16 / 9;
}

.media-frame--wide {
  aspect-ratio: 21 / 9;
}

.media-frame--tall {
  aspect-ratio: 4 / 5;
}

.media-frame > img,
.media-frame > video,
.media-frame > .media-frame__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--moss);
  background: repeating-linear-gradient(
    45deg,
    var(--paper) 0 8px,
    var(--sand) 8px 16px
  );
  text-align: center;
  padding: 16px;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  background: var(--pitch);
  color: var(--bone);
  margin-top: auto;
  position: relative;
  border-top: 4px solid var(--gold);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  z-index: 1;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0 10px,
    transparent 10px 20px
  );
  opacity: 0.35;
  pointer-events: none;
}

.footer-top {
  background: var(--ink);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  padding: 12px 0;
}

.footer-top__shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.footer-top__text {
  text-align: center;
  font-size: 0.84rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 48px 0 36px;
}

.footer-brand__logo {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--bone);
  line-height: 1.2;
}

.footer-brand__sub {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.footer-brand > p {
  margin-top: 14px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(252, 250, 244, 0.72);
  max-width: 330px;
}

.footer-trust {
  font-size: 0.74rem !important;
  color: rgba(252, 250, 244, 0.55) !important;
  background: rgba(201, 162, 39, 0.08);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  max-width: 360px;
}

.footer-brand__cta {
  margin-top: 16px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  display: inline-block;
  color: rgba(252, 250, 244, 0.82);
  text-decoration: none;
  font-size: 0.86rem;
  padding: 5px 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-address {
  color: rgba(252, 250, 244, 0.6);
  font-size: 0.84rem;
  margin-top: 8px;
  line-height: 1.6;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding-top: 8px;
}

.footer-bottom {
  background: var(--ink);
  padding: 16px 0;
  font-size: 0.76rem;
  color: rgba(252, 250, 244, 0.6);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-bottom__shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom__shell .footer-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .header-phone {
    display: none;
  }

  .header-shell {
    gap: 12px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .btn {
    padding: 9px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 880px) {
  .header-shell {
    min-height: 64px;
  }

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

  .header-actions {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--pitch);
    padding: 18px 20px 24px;
    gap: 2px;
    border-bottom: 3px solid var(--gold);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    margin-left: 0;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav .nav-link {
    text-align: center;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    color: var(--bone);
  }

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

  .site-nav .nav-link.is-spied {
    box-shadow: none;
    background: rgba(201, 162, 39, 0.18);
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
  }
}

@media (min-width: 881px) {
  .site-nav {
    display: flex;
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    padding: 0;
  }

  .nav-cta {
    display: none;
  }
}

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

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

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

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .header-shell {
    gap: 8px;
  }

  .brand__badge {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .brand__name {
    font-size: 1.15rem;
  }

  .brand__sub {
    display: none;
  }

  .nav-toggle {
    padding: 6px 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 36px 0 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .bento-card--span-4,
  .bento-card--span-6,
  .bento-card--span-8,
  .bento-card--span-12 {
    grid-column: span 12;
  }

  .bento-grid {
    gap: 12px;
  }

  .bento-card {
    padding: 18px;
  }

  .section-head__title {
    font-size: 1.35rem;
  }

  .page-head {
    padding: 32px 0 20px;
  }

  .page-head__title {
    font-size: 1.8rem;
  }

  .footer-bottom__shell {
    justify-content: center;
    text-align: center;
  }

  .media-frame--wide {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .bento-card--span-4 {
    grid-column: span 6;
  }

  .bento-card--span-6 {
    grid-column: span 6;
  }

  .bento-card--span-8 {
    grid-column: span 12;
  }
}

/* Reduced Motion */
@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;
    transition-delay: 0s !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    transition: none;
  }

  .status-dot--live {
    animation: none;
  }
}
