.page-home {
  --home-orange: var(--signal-orange);
  --home-glass-bg: rgba(255, 255, 255, 0.06);
  --home-glass-border: rgba(0, 229, 255, 0.28);
  --home-grid-line: rgba(0, 229, 255, 0.12);
  --home-dark-card: rgba(11, 29, 58, 0.72);
  --home-radius: 18px;
  --home-clip: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  font-family: var(--font-body);
  color: var(--deep-charcoal);
  background-color: var(--cloud-gray);
  overflow-x: hidden;
}

.page-home .container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ===== 首屏 hero ===== */
.page-home .hero-deck {
  position: relative;
  background: var(--space-blue);
  color: var(--pure-white);
  padding: calc(var(--header-offset) + 28px) 0 56px;
  overflow: hidden;
}

.page-home .hero-deck::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 229, 255, 0.18), transparent 46%),
    radial-gradient(circle at 85% 65%, rgba(155, 89, 182, 0.22), transparent 50%);
  animation: homeBreath 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes homeBreath {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}

.page-home .hero-deck::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--nebula-purple), transparent);
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
}

.page-home .hero-console {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.65fr;
  gap: 18px;
  align-items: stretch;
}

.page-home .console-panel {
  border-radius: var(--home-radius);
  border: 1px solid var(--home-glass-border);
  background: var(--home-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-2);
  min-height: 340px;
  transition: border-color 0.3s ease;
}

.page-home .console-panel:hover {
  border-color: rgba(0, 229, 255, 0.55);
}

.page-home .panel-main {
  clip-path: polygon(0 0, 100% 0, calc(100% - 34px) 100%, 0 100%);
  border-radius: 14px 14px 0 14px;
  padding: 26px 26px 32px 22px;
  position: relative;
  overflow: hidden;
}

.page-home .panel-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(0,229,255,0.08) 12px 24px);
}

.page-home .console-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--electric-cyan);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-home .quick-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  color: var(--pure-white);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
}

.page-home .quick-item:hover {
  background: rgba(0, 229, 255, 0.1);
  border-left-color: var(--electric-cyan);
  padding-left: 20px;
  transform: translateX(2px);
}

.page-home .quick-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--neon-green);
  opacity: 0.8;
}

.page-home .quick-name {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.page-home .quick-go {
  margin-left: auto;
  color: var(--electric-cyan);
  font-weight: 700;
}

.page-home .panel-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px;
  position: relative;
  border-color: rgba(57, 255, 20, 0.18);
  background: linear-gradient(160deg, rgba(57, 255, 20, 0.08), rgba(255, 255, 255, 0.04));
}

.page-home .hero-title-mark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.7rem;
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  color: var(--pure-white);
  text-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
}

.page-home .hero-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
  max-width: 26ch;
}

.page-home .hero-link {
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.4);
  align-self: flex-start;
  transition: border-color 0.3s ease;
}

.page-home .hero-link:hover {
  border-bottom-color: var(--neon-green);
}

.page-home .panel-edge {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 20px;
  background: rgba(255, 90, 54, 0.06);
  border-color: rgba(255, 90, 54, 0.22);
  min-height: 340px;
}

.page-home .edge-line {
  display: block;
  width: 42px;
  height: 4px;
  background: var(--signal-orange);
  border-radius: 4px;
}

.page-home .edge-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .edge-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-color: rgba(0, 229, 255, 0.5);
  color: var(--electric-cyan);
  border-radius: var(--radius-pill);
  text-align: center;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.55);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.page-home .edge-btn:hover {
  background: rgba(0, 229, 255, 0.12);
  box-shadow: var(--glow-cyan);
}

.page-home .hero-scrollhint {
  margin-top: 26px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
  position: absolute;
  right: 12px;
  bottom: 40px;
  transform: rotate(180deg);
}

/* ===== promise 承诺带 ===== */
.page-home .section-strip {
  padding: 72px 0;
}

.page-home .promise-strip {
  background: var(--cloud-gray);
  position: relative;
}

.page-home .promise-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  width: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
}

.page-home .promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-home .promise-item {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border-top: 3px solid var(--electric-cyan);
}

.page-home .promise-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.page-home .promise-item:nth-child(2) {
  border-top-color: var(--neon-green);
}

.page-home .promise-item:nth-child(3) {
  border-top-color: var(--signal-orange);
}

.page-home .promise-icon {
  font-size: 1.4rem;
  font-family: var(--font-mono);
  color: var(--electric-cyan);
  display: block;
  margin-bottom: 12px;
}

.page-home .promise-item:nth-child(2) .promise-icon {
  color: var(--neon-green);
}

.page-home .promise-item:nth-child(3) .promise-icon {
  color: var(--signal-orange);
}

.page-home .promise-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--space-blue);
}

.page-home .promise-text {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(26, 26, 26, 0.82);
}

/* ===== category 分类速览 ===== */
.page-home .category-strip {
  background: var(--space-blue);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.page-home .category-strip::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.2), transparent 68%);
  pointer-events: none;
}

.page-home .category-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--electric-cyan), transparent 60%);
}

.page-home .category-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.page-home .section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--electric-cyan);
  display: block;
  margin-bottom: 10px;
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.25;
  margin: 0;
  color: inherit;
  letter-spacing: 0.02em;
}

.page-home .category-strip .section-title {
  color: var(--pure-white);
}

.page-home .section-note {
  max-width: 46ch;
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-home .category-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.page-home .cat-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 22px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.page-home .cat-block:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
}

.page-home .cat-block--featured {
  background: rgba(57, 255, 20, 0.07);
  border-color: rgba(57, 255, 20, 0.2);
}

.page-home .cat-letter {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--electric-cyan);
  letter-spacing: 0.06em;
}

.page-home .cat-block--featured .cat-letter {
  color: var(--neon-green);
}

.page-home .cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-home .cat-list li a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 12px;
  border-left: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s, padding-left 0.25s;
}

.page-home .cat-list li a:hover {
  color: var(--pure-white);
  border-left-color: var(--electric-cyan);
  padding-left: 16px;
}

/* ===== coverage 服务覆盖 ===== */
.page-home .coverage-strip {
  background: var(--cloud-gray);
}

.page-home .coverage-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.page-home .coverage-meta {
  padding: 20px 0;
}

.page-home .coverage-meta .section-title {
  color: var(--space-blue);
  margin-bottom: 16px;
}

.page-home .coverage-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--deep-charcoal);
  max-width: 48ch;
  margin-bottom: 30px;
}

.page-home .coverage-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.page-home .stat-item {
  display: flex;
  flex-direction: column;
}

.page-home .stat-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--space-blue);
  line-height: 1.2;
}

.page-home .stat-label {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: rgba(26, 26, 26, 0.68);
  letter-spacing: 0.08em;
}

.page-home .coverage-meta .btn-outline {
  border: 1px solid rgba(0, 229, 255, 0.8);
  color: var(--space-blue);
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  display: inline-block;
}

.page-home .coverage-meta .btn-outline:hover {
  background: rgba(0, 229, 255, 0.12);
  box-shadow: var(--glow-cyan);
}

.page-home .coverage-visual .visual-frame {
  position: relative;
  border-radius: var(--home-radius);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

.page-home .coverage-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-home .visual-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  background: rgba(11, 29, 58, 0.75);
  backdrop-filter: blur(6px);
  color: var(--electric-cyan);
  border-radius: var(--radius-sm);
}

/* ===== adaptive 适配清单 ===== */
.page-home .adaptive-strip {
  background: var(--space-blue);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.page-home .adaptive-head {
  text-align: center;
  margin-bottom: 44px;
}

.page-home .adaptive-head .section-title {
  color: var(--pure-white);
  margin-bottom: 12px;
}

.page-home .adaptive-intro {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .adaptive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.page-home .adap-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .adap-card:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.page-home .adap-card .tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.page-home .adap-card .tag--green {
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.1);
}

.page-home .adap-card .tag--orange {
  color: var(--signal-orange);
  background: rgba(255, 90, 54, 0.1);
}

.page-home .adap-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--pure-white);
}

.page-home .adap-detail {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  display: block;
}

.page-home .dual-visual {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.page-home .dual-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.page-home .dual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .sync-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 24px 30px;
  text-align: left;
}

.page-home .sync-panel img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 18px;
  object-fit: cover;
}

.page-home .sync-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--neon-green);
}

.page-home .sync-text {
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-home .btn-primary {
  display: inline-block;
  background: var(--neon-green);
  color: var(--space-blue);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-home .btn-primary:hover {
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.6);
  transform: translateY(-2px);
}

/* ===== news 动态 ===== */
.page-home .news-strip {
  background: var(--cloud-gray);
}

.page-home .news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.page-home .news-head .section-title {
  color: var(--space-blue);
}

.page-home .news-more {
  border: 1px solid rgba(0, 229, 255, 0.8);
  color: var(--space-blue);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.page-home .news-more:hover {
  background: rgba(0, 229, 255, 0.12);
  box-shadow: var(--glow-cyan);
}

.page-home .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.page-home .news-card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border-left: 3px solid transparent;
}

.page-home .news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-left-color: var(--electric-cyan);
}

.page-home .news-card .tag {
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pure-white);
}

.page-home .news-card .tag--purple {
  background: rgba(155, 89, 182, 0.14);
  color: #8250b0;
}

.page-home .news-card .tag--orange {
  background: rgba(255, 90, 54, 0.12);
  color: #c93f21;
}

.page-home .news-card .tag--green {
  background: rgba(57, 255, 20, 0.12);
  color: #1c8a00;
}

.page-home .news-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--space-blue);
}

.page-home .news-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.74);
  margin: 0 0 18px;
}

.page-home .news-link {
  color: var(--signal-orange);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.page-home .news-link:hover {
  color: var(--space-blue);
}

.page-home .news-bottom {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.page-home .news-bottom img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ===== endnav ===== */
.page-home .endnav-strip {
  background: var(--space-blue);
  color: var(--pure-white);
  padding: 52px 0;
}

.page-home .endnav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-home .endnav-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .endnav-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.page-home .endnav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pure-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-home .endnav-link:hover {
  color: var(--electric-cyan);
}

/* ===== 响应式 ===== */
@media (max-width: 1120px) {
  .page-home .hero-console {
    grid-template-columns: 1fr 0.8fr;
  }
  .page-home .panel-edge {
    grid-column: 1 / -1;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .page-home .adaptive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .category-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .page-home .hero-console {
    grid-template-columns: 1fr;
  }
  .page-home .promise-grid {
    grid-template-columns: 1fr;
  }
  .page-home .coverage-grid {
    grid-template-columns: 1fr;
  }
  .page-home .dual-visual {
    grid-template-columns: 1fr;
  }
  .page-home .adaptive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .news-grid {
    grid-template-columns: 1fr;
  }
  .page-home .endnav-grid {
    grid-template-columns: 1fr;
  }
  .page-home .category-head,
  .page-home .news-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home .section-title {
    font-size: 1.6rem;
  }
  .page-home .hero-deck {
    padding-top: calc(var(--header-offset) + 16px);
  }
}

@media (max-width: 520px) {
  .page-home .hero-title-mark {
    font-size: 2rem;
  }
  .page-home .console-panel {
    min-height: 280px;
  }
  .page-home .category-layout {
    grid-template-columns: 1fr;
  }
  .page-home .adaptive-grid {
    grid-template-columns: 1fr;
  }
  .page-home .section-note {
    font-size: 0.88rem;
  }
  .page-home .section-strip {
    padding: 48px 0;
  }
  .page-home .dual-image {
    height: 280px;
  }
  .page-home .quick-item {
    padding: 12px 12px;
  }
  .page-home .hero-link {
    font-size: 0.8rem;
  }
  .page-home .coverage-stats {
    gap: 20px;
  }
}

/* ===== 动效协议 ===== */
@media (prefers-reduced-motion: no-preference) {
  .page-home [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    transition-delay: var(--d, 0s);
  }
  .page-home [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-home .hero-deck::before {
    animation: none;
  }
  .page-home .quick-item {
    transform: none !important;
  }
}

.page-home {
  --d: 0.3s;
}
