:root {
  --blue: #007dff;
  --blue-deep: #0756c9;
  --yellow: #ffc300;
  --orange: #ff7d00;
  --rose: #f43f5e;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --ink: #1d2129;
  --body: #4e5969;
  --muted: #86909c;
  --line: #dfe7f2;
  --paper: #ffffff;
  --soft: #fff7ed;
  --mint: #10b981;
  --shadow: 0 24px 70px rgba(24, 48, 86, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Nunito", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 125, 255, 0.08) 0 18%, transparent 18% 100%),
    linear-gradient(225deg, rgba(255, 195, 0, 0.12) 0 14%, transparent 14% 100%),
    var(--soft);
  line-height: 1.6;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 40;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(15, 40, 84, 0.12);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 116px;
  height: auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet) 52%, var(--orange));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

@media (min-width: 981px) {
  .brand-mark {
    display: none;
  }
}

.brand-name {
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.back-link,
.lang-toggle {
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 9px 12px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.back-link:hover,
.lang-toggle:hover {
  background: linear-gradient(135deg, rgba(0, 125, 255, 0.12), rgba(255, 195, 0, 0.18));
  color: var(--blue-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 48, 86, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 142px 0 68px;
  background:
    linear-gradient(115deg, rgba(0, 125, 255, 0.14), rgba(255, 255, 255, 0.2) 35%, rgba(255, 195, 0, 0.22) 64%, rgba(244, 63, 94, 0.12)),
    #ffffff;
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 96px auto auto -90px;
  width: 58vw;
  height: 180px;
  background: repeating-linear-gradient(135deg, rgba(0, 125, 255, 0.12) 0 14px, transparent 14px 30px);
  transform: rotate(-8deg);
}

.hero::after {
  right: 0;
  bottom: 0;
  width: min(520px, 46vw);
  height: min(520px, 46vw);
  background-image: radial-gradient(rgba(0, 125, 255, 0.28) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, transparent 0, #000 35%, #000 70%, transparent 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 125, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  padding: 7px 12px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 195, 0, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  background: linear-gradient(100deg, #101827 0 24%, var(--blue) 43%, var(--violet) 62%, var(--orange) 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 700px;
  color: var(--body);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(24, 48, 86, 0.08);
  color: #243045;
  font-size: 14px;
  font-weight: 900;
  padding: 7px 13px;
}

.hero-tags span:nth-child(1) {
  border-color: rgba(0, 125, 255, 0.3);
  color: var(--blue-deep);
}

.hero-tags span:nth-child(2) {
  border-color: rgba(255, 125, 0, 0.34);
  color: #b45309;
}

.hero-tags span:nth-child(3) {
  border-color: rgba(244, 63, 94, 0.28);
  color: #be123c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 125, 255, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-deep), #6d28d9);
}

.btn-secondary {
  border-color: rgba(0, 125, 255, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
}

.hero-visual {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.82)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 125, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 125, 0, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(145deg, #000, transparent 76%);
  pointer-events: none;
}

.visual-ribbon {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 1;
  display: flex;
  gap: 7px;
}

.visual-ribbon span {
  width: 12px;
  height: 54px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(18deg);
  box-shadow: 0 10px 22px rgba(24, 48, 86, 0.16);
}

.visual-ribbon span:nth-child(2) {
  height: 72px;
  background: var(--yellow);
}

.visual-ribbon span:nth-child(3) {
  height: 46px;
  background: var(--rose);
}

.logo-board {
  position: relative;
  min-height: 410px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.hdc-logo-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(24, 48, 86, 0.1);
  overflow: hidden;
}

.hdc-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hdc-logo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--yellow), var(--rose));
}

.app-chip {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 16px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    #172033;
  color: #fff;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(23, 32, 51, 0.24);
}

.app-chip img {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.app-chip strong {
  display: block;
  font-size: 22px;
}

.app-chip span {
  color: #dce8f7;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-date {
  grid-column: 1 / -1;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(24, 48, 86, 0.08);
  padding: 14px;
}

.stat:nth-child(1) {
  background: linear-gradient(135deg, rgba(0, 125, 255, 0.12), rgba(255, 255, 255, 0.86));
}

.stat:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 195, 0, 0.18), rgba(255, 255, 255, 0.86));
}

.stat:nth-child(3) {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(255, 255, 255, 0.86));
}

.stat strong {
  display: block;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
}

.stat-date strong {
  white-space: nowrap;
}

.stat span {
  color: var(--body);
  font-size: 13px;
}

.facts-section {
  padding: 42px 0 20px;
}

.facts-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 44px rgba(24, 48, 86, 0.1);
  padding: 28px;
}

.facts-copy h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.facts-copy p {
  color: var(--body);
  font-size: 17px;
  margin-bottom: 0;
}

.facts-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.facts-list div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 12px;
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: 18px;
  background: #fff;
  padding: 13px 14px;
}

.facts-list dt {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.facts-list dd {
  color: var(--ink);
  margin: 0;
  font-size: 15px;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section.alt {
  background:
    linear-gradient(90deg, rgba(0, 125, 255, 0.06) 0 1px, transparent 1px 100%),
    #fff;
  background-size: 34px 34px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 125, 255, 0.12), rgba(255, 195, 0, 0.2));
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 7px 12px;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-lede {
  color: var(--body);
  font-size: 17px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 34px;
}

.info-item {
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(24, 48, 86, 0.06);
  padding: 16px;
}

.info-item:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.info-item:nth-child(2) {
  border-top: 5px solid var(--yellow);
}

.info-item:nth-child(3) {
  border-top: 5px solid var(--orange);
}

.info-item:nth-child(4) {
  border-top: 5px solid var(--mint);
}

.info-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.info-item strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 24px;
}

.panel {
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.96));
  padding: 26px;
  box-shadow: 0 20px 44px rgba(24, 48, 86, 0.1);
}

.story p {
  color: var(--body);
  font-size: 17px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.highlight {
  border-radius: 22px;
  background: #f4f9ff;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.highlight:nth-child(2) {
  background: #fff8dd;
}

.highlight:nth-child(3) {
  background: #fff2e6;
}

.highlight:nth-child(4) {
  background: #eefbf6;
}

.highlight strong {
  display: block;
  margin-bottom: 5px;
}

.highlight span {
  color: var(--body);
  font-size: 14px;
}

.video-shell {
  overflow: hidden;
  padding: 0;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: grid;
  place-items: center;
  background: #172033;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.video-frame.open-class {
  background: #172033;
}

.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  background: #101827;
  object-fit: contain;
}

.video-meta {
  padding: 18px 22px 22px;
}

.video-meta strong {
  display: block;
}

.video-meta span {
  color: var(--muted);
  font-size: 14px;
}

.video-transcript {
  margin: 0 22px 22px;
  border: 1px solid rgba(223, 231, 242, 0.9);
  border-radius: 18px;
  background: #fff;
  color: var(--body);
  padding: 13px 14px;
}

.video-transcript summary {
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 900;
}

.video-transcript p {
  margin: 10px 0 0;
  font-size: 15px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-index {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.timeline-item:nth-child(2) .timeline-index {
  background: var(--orange);
}

.timeline-item:nth-child(3) .timeline-index {
  background: var(--mint);
}

.timeline-item strong {
  display: block;
}

.timeline-item span {
  color: var(--body);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #dde9f8;
  cursor: pointer;
  padding: 0;
  text-align: left;
  box-shadow: 0 16px 34px rgba(24, 48, 86, 0.12);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-media {
  position: absolute;
  inset: 0;
  display: block;
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(13, 23, 42, 0.82));
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-label {
  position: absolute;
  inset: auto 16px 16px;
  color: #fff;
  display: grid;
  gap: 5px;
}

.gallery-label strong {
  font-size: 18px;
  line-height: 1.25;
}

.gallery-label small {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
  padding: 5px 9px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 125, 255, 0.28), transparent 38%),
    linear-gradient(225deg, rgba(255, 125, 0, 0.22), transparent 44%),
    #172033;
  color: #fff;
  padding: 72px 0;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 18px auto auto -80px;
  width: 360px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 195, 0, 0.18);
  transform: rotate(-10deg);
}

.contact-band::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  margin-top: 14px;
  color: #fff;
}

.contact-grid p {
  color: #dce8f7;
  margin-bottom: 0;
  font-size: 17px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-links a {
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.16);
}

.contact-links span {
  color: #fde68a;
  font-size: 13px;
  font-weight: 900;
}

.contact-links strong {
  font-size: 16px;
  line-height: 1.35;
}

.site-footer {
  background: #0c1322;
  color: #b9c6d8;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.footer-inner div {
  display: grid;
  gap: 3px;
}

.footer-inner strong {
  color: #fff;
  font-size: 15px;
}

.footer-inner span {
  color: #9fb0c7;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(10, 17, 30, 0.9);
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
  place-items: center;
}

.lightbox-content {
  width: min(980px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
}

.lightbox-caption {
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox button {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-width: 44px;
  min-height: 44px;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

section[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

section[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 195, 0, 0.9);
  outline-offset: 3px;
}

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

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-heading,
  .feature-grid,
  .facts-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

}

@media (max-width: 640px) {
  .nav-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    display: none;
  }

  .back-link {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .logo-board {
    min-height: 280px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .info-strip,
  .highlight-grid,
  .facts-list div,
  .gallery,
  .contact-links,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .panel {
    padding: 20px;
  }

  .app-chip {
    grid-template-columns: 62px 1fr;
  }

  .app-chip img {
    width: 62px;
    height: 62px;
  }

  .hdc-logo-card {
    padding: 0;
  }

  .stat strong {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
