:root {
  --bg: #07121f;
  --bg-soft: #0f2036;
  --card: #ffffff;
  --text: #10233e;
  --muted: #5e6f88;
  --accent: #0b6bff;
  --accent-2: #4dd2ff;
  --accent-warm: #ff8a1f;
  --line: #dde5f0;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(6, 18, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans SC", "Microsoft Yahei", sans-serif;
  scroll-behavior: smooth;
  color: var(--text);
  background: #f6f9ff;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(7, 18, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(255, 138, 31, 0.35));
}

.brand span {
  letter-spacing: 1px;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-slide-focus {
  object-position: 32% 42%;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 138, 31, 0.26), transparent 38%),
    linear-gradient(120deg, rgba(5, 10, 24, 0.88) 0%, rgba(8, 37, 75, 0.72) 55%, rgba(6, 20, 40, 0.55) 100%);
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  padding: 88px 0 48px;
}

.hero-content {
  position: relative;
  color: #fff;
  min-width: 0;
  max-width: 52rem;
  text-align: left;
}

.hero-channels {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hero-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 22px;
  border: none;
  border-radius: 999px;
  background: #ffe033;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(212, 168, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-channel-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 3px 0 rgba(212, 168, 0, 0.55), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-channel-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(212, 168, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-channel-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-channel-label {
  white-space: nowrap;
}

.hero-channel-icon {
  display: flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  opacity: 0.88;
}

.hero-channel-icon svg {
  width: 100%;
  height: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #9ad8ff;
}

.eyebrow.dark {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.18;
  max-width: 16ch;
}

.hero-text {
  margin-top: 16px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.78;
}

.cta {
  margin-top: 26px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 12px 24px;
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(2, 10, 24, 0.42);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.84rem;
}

.cta.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.hero-dots {
  margin-top: 24px;
  display: flex;
  gap: 6px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}

.hero-dots button.active {
  width: 18px;
  background: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -82px;
  position: relative;
  z-index: 8;
}

.stat-grid article {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
}

.stat-grid h3 {
  color: var(--accent);
  font-size: 1.9rem;
}

.stat-grid p {
  margin-top: 6px;
  color: var(--muted);
}

.trust-line {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  color: #6a7e99;
}

.trust-line span {
  background: #0f1f34;
  color: #d9e8ff;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.split h2,
.timeline h2,
.gallery h2,
.contact h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.split p {
  line-height: 1.85;
  color: #334867;
  margin-top: 10px;
}

.about-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.strengths {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.strength-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.strength-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.strength-item h3 {
  color: #123660;
  margin-bottom: 8px;
}

.strength-item p {
  color: #3f5678;
  line-height: 1.8;
}

.process-line {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-line article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  position: relative;
}

.process-line span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  background: #e8f1ff;
  border-radius: 999px;
  padding: 5px 10px;
}

.process-line h3 {
  margin-top: 12px;
}

.process-line p {
  margin-top: 8px;
  color: #49617f;
  line-height: 1.65;
}

.timeline-note {
  margin-top: 10px;
  color: #4e6787;
  background: #edf4ff;
  border-left: 3px solid var(--accent);
  padding: 10px 12px;
  border-radius: 8px;
}

.timeline-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.timeline-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline-item.featured {
  background: linear-gradient(150deg, #ffffff 0%, #f2f8ff 100%);
  border-color: #bfd8ff;
}

.timeline-year {
  color: var(--accent);
  font-size: 1.18rem;
  font-weight: 800;
}

.timeline-text {
  margin-top: 7px;
  color: #355071;
  line-height: 1.75;
}

.gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}

.partners {
  background: #f2f7ff;
}

.partner-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.partner-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px;
}

.partner-card h3 {
  margin-bottom: 12px;
}

.partner-card p {
  color: #3a5171;
  line-height: 1.8;
}

.partner-card small {
  display: block;
  margin-top: 8px;
  color: #5b7392;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-wrap span {
  background: linear-gradient(135deg, var(--accent-warm), #ff5d12);
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.9rem;
}

.culture {
  background: radial-gradient(circle at top left, rgba(11, 107, 255, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(77, 210, 255, 0.2), transparent 55%);
}

.culture-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.culture-item {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(17, 43, 82, 0.16);
}

.culture-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #c5d6ef;
}

.culture-item p {
  margin: 10px 14px 14px;
  color: #324868;
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  max-width: min(960px, 96vw);
  max-height: 86vh;
  position: relative;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.qr-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.62);
}

.qr-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 26px 30px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, 8px, 0);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.qr-modal.is-open .qr-modal__panel {
  transform: translate3d(0, 0, 0);
}

.qr-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f0f3f8;
  color: #334867;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.qr-modal__close:hover {
  background: #e2e8f0;
  color: #10233e;
}

.qr-modal__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #10233e;
  padding-right: 28px;
  padding-left: 28px;
}

.qr-modal__hint {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #5e6f88;
}

.qr-modal__imgwrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-modal__imgwrap img {
  width: 200px;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

body.qr-modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-comp, 0px);
  touch-action: none;
}

body.qr-modal-open .site-header {
  padding-right: var(--scrollbar-comp, 0px);
}

body.qr-modal-open .back-to-top {
  right: calc(max(1.1rem, env(safe-area-inset-right, 0px)) + var(--scrollbar-comp, 0px));
}

@media (prefers-reduced-motion: reduce) {
  .qr-modal,
  .qr-modal__panel {
    transition: none;
  }

  .qr-modal__panel {
    transform: none;
  }
}

/* 仅用位移淡入，避免 opacity:0 导致长区块在 threshold 未满足时出现大块「白屏」感 */
.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    transform: none;
    transition: none;
  }
}

.contact-card {
  background: linear-gradient(130deg, var(--bg), var(--bg-soft));
  color: #fff;
  border-radius: 24px;
  padding: 40px 44px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, auto);
  gap: 28px 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(5, 12, 20, 0.35);
}

.contact-card-main h2 {
  color: #fff;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(135deg, rgba(77, 210, 255, 0.2), rgba(11, 107, 255, 0.32));
  border: 1px solid rgba(154, 216, 255, 0.65);
  border-radius: 999px;
  box-shadow:
    0 0 24px rgba(77, 210, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-card .contact-lead {
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 46ch;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: stretch;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.contact-link:focus-visible {
  outline: 2px solid rgba(154, 216, 255, 0.95);
  outline-offset: 3px;
}

.contact-link--address {
  align-items: flex-start;
  text-align: left;
}

.contact-link--address .contact-link-icon {
  margin-top: 2px;
}

.contact-address-text {
  line-height: 1.55;
  font-weight: 600;
}

.contact-link-icon {
  display: flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(154, 216, 255, 0.95);
}

.contact-link-icon svg {
  width: 100%;
  height: 100%;
}

.btn-outline,
.btn-solid {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-solid {
  background: #fff;
  color: var(--text);
}

.back-to-top {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.35rem, env(safe-area-inset-bottom, 0px));
  z-index: 50;
  padding: 11px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(6, 18, 38, 0.12),
    0 12px 36px rgba(6, 18, 38, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(6, 18, 38, 0.14),
    0 16px 40px rgba(6, 18, 38, 0.16);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-footer {
  background: #060d14;
  color: rgba(255, 255, 255, 0.78);
  padding: 32px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px 28px;
}

.footer-copy {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 6px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: rgba(154, 216, 255, 0.92);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
  pointer-events: none;
}

@media (max-width: 640px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-meta {
    flex-direction: column;
    row-gap: 8px;
  }

  .footer-sep {
    display: none;
  }
}

@media (max-width: 960px) {
  .stat-grid,
  .timeline-grid,
  .strength-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px 28px 36px;
    align-items: stretch;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-link {
    flex: 1 1 auto;
    min-width: min(100%, 220px);
    justify-content: center;
  }

  .contact-link--address {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .culture-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    padding: 80px 0 40px;
  }

  .hero-content {
    max-width: none;
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content h1 {
    max-width: 20ch;
  }

  .hero-content .hero-text {
    max-width: 42ch;
  }

  .hero-channels {
    justify-content: center;
  }

  .hero-tags,
  .hero-actions,
  .hero-dots {
    justify-content: center;
  }

  .hero-tags,
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-dots {
    display: flex;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 14px 20px 18px;
    background: rgba(7, 18, 31, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .section {
    padding: 58px 0;
  }

  .stat-grid,
  .timeline-grid,
  .strength-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-strip {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding: 72px 0 32px;
  }

  .hero-channels {
    gap: 8px;
    justify-content: center;
  }

  .hero-channel-btn {
    font-size: 0.8125rem;
    padding: 9px 14px 9px 16px;
    box-shadow: 0 2px 0 rgba(212, 168, 0, 0.55), 0 6px 18px rgba(0, 0, 0, 0.16);
  }

  .hero-channel-icon {
    width: 18px;
    height: 18px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-link {
    min-width: 100%;
    justify-content: flex-start;
  }
}
