/* ===== 首页专属样式 ===== */
.page-home {
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: 0 0 64px;
  background: var(--paper);
}

.page-home .hero-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--peach) 0%, var(--yellow) 100%);
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 0;
}

.page-home .hero-copy {
  max-width: 680px;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--strawberry);
  margin: 0 0 20px;
}

.page-home .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--peach);
}

.page-home .hero h1 {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}

.page-home .hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--graphite);
  max-width: 58ch;
  margin: 0 0 28px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hero-actions .btn {
  padding: 12px 22px;
  font-size: 0.875rem;
}

.page-home .hero-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.page-home .hero-figure {
  position: relative;
  background: var(--paper);
}

.page-home .hero-figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 76%;
  background: var(--peach);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 0 100%);
  z-index: 0;
}

.page-home .hero-figure img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 24px);
  max-width: none;
  margin: 24px 24px 0 0;
  height: 260px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.03);
}

.page-home .hero-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 6px 10px;
}

.page-home .hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--graphite);
  background: var(--paper);
  padding: 16px;
}

.page-home .hero-index-title {
  flex: 1 1 100%;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ghost);
  margin-bottom: 4px;
}

.page-home .hero-index-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ghost);
  padding: 6px 10px;
  transition: border-color 0.2s, color 0.2s;
}

.page-home .hero-index-link:hover {
  border-color: var(--peach);
  color: var(--peach);
}

.page-home .hero-index-no {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--peach);
}

/* ---------- 状态仪表盘 ---------- */
.page-home .status-section {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
}

.page-home .status-section .section-index {
  color: var(--peach);
}

.page-home .status-section .section-title {
  color: var(--paper);
}

.page-home .section-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 60ch;
}

.page-home .status-section .section-desc {
  color: #bdbdbd;
}

.page-home .status-dash {
  margin-top: 40px;
}

.page-home .status-rings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .ring-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #333333;
  padding: 24px 16px;
  text-align: center;
}

.page-home .ring-visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 16px;
}

.page-home .ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.page-home .ring-fill {
  fill: none;
  stroke: var(--peach);
  stroke-width: 6;
}

.page-home .ring-dash-full,
.page-home .ring-dash-mid,
.page-home .ring-dash-low {
  stroke-dasharray: 301.6;
}

.page-home .ring-dash-full {
  stroke-dashoffset: 0;
  stroke: var(--peach);
}

.page-home .ring-dash-mid {
  stroke-dashoffset: 48.35;
  stroke: var(--yellow);
}

.page-home .ring-dash-low {
  stroke-dashoffset: 96.7;
  stroke: var(--strawberry);
}

.page-home .ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-home .ring-num {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-home .ring-unit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--peach);
  margin-top: 4px;
}

.page-home .ring-item:nth-child(2) .ring-unit {
  color: var(--yellow);
}

.page-home .ring-item:nth-child(3) .ring-unit {
  color: var(--strawberry);
}

.page-home .ring-label {
  font-size: 0.8125rem;
  color: #bdbdbd;
  margin: 0;
}

.page-home .status-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.page-home .status-timeline,
.page-home .status-note {
  border: 1px solid #333333;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
}

.page-home .status-subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}

.page-home .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .timeline-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid #2c2c2c;
}

.page-home .timeline-list li:last-child {
  border-bottom: 0;
}

.page-home .tl-year {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--yellow);
  width: 56px;
  flex: none;
}

.page-home .tl-label {
  font-size: 0.875rem;
  color: var(--paper);
}

.page-home .status-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  border: 1px solid #333333;
}

.page-home .status-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .status-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #d4d4d4;
}

.page-home .status-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--peach);
}

.page-home .status-note .text-link {
  color: var(--yellow);
  font-size: 0.8125rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 209, 102, 0.5);
  padding-bottom: 2px;
}

.page-home .status-note .text-link:hover {
  color: var(--paper);
  border-color: var(--paper);
}

/* ---------- 对照表分类 ---------- */
.page-home .compare-section {
  background: var(--paper);
  padding: 72px 0;
}

.page-home .cat-switch {
  position: relative;
  margin-top: 36px;
}

.page-home .cat-switch > input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page-home .cat-labels {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--peach) var(--ghost);
}

.page-home .cat-labels label {
  flex: none;
  cursor: pointer;
  padding: 10px 18px;
  border: 1px solid var(--graphite);
  background: transparent;
  font-size: 0.875rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.page-home .cat-labels label:hover {
  border-color: var(--peach);
  color: var(--peach);
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-1"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-2"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-3"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-4"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-5"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-6"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-7"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home .cat-switch > input:focus-visible ~ .cat-labels label[for="cat-tab-8"] {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

.page-home #cat-tab-1:checked ~ .cat-labels label[for="cat-tab-1"],
.page-home #cat-tab-2:checked ~ .cat-labels label[for="cat-tab-2"],
.page-home #cat-tab-3:checked ~ .cat-labels label[for="cat-tab-3"],
.page-home #cat-tab-4:checked ~ .cat-labels label[for="cat-tab-4"],
.page-home #cat-tab-5:checked ~ .cat-labels label[for="cat-tab-5"],
.page-home #cat-tab-6:checked ~ .cat-labels label[for="cat-tab-6"],
.page-home #cat-tab-7:checked ~ .cat-labels label[for="cat-tab-7"],
.page-home #cat-tab-8:checked ~ .cat-labels label[for="cat-tab-8"] {
  background: var(--peach);
  border-color: var(--ink);
  color: var(--paper);
}

.page-home .cat-panel {
  display: none;
  border: 1px solid var(--graphite);
  background: #ffffff;
  padding: 24px 20px;
}

.page-home #cat-tab-1:checked ~ .cat-panels .panel-1,
.page-home #cat-tab-2:checked ~ .cat-panels .panel-2,
.page-home #cat-tab-3:checked ~ .cat-panels .panel-3,
.page-home #cat-tab-4:checked ~ .cat-panels .panel-4,
.page-home #cat-tab-5:checked ~ .cat-panels .panel-5,
.page-home #cat-tab-6:checked ~ .cat-panels .panel-6,
.page-home #cat-tab-7:checked ~ .cat-panels .panel-7,
.page-home #cat-tab-8:checked ~ .cat-panels .panel-8 {
  display: block;
}

.page-home .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.page-home .panel-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

.page-home .panel-total {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
}

.page-home .index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .index-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "id status"
    "name count";
  gap: 4px 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--ghost);
}

.page-home .index-row:last-child {
  border-bottom: 0;
}

.page-home .index-id {
  grid-area: id;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.page-home .index-status {
  grid-area: status;
  font-size: 0.75rem;
  color: var(--strawberry);
  text-align: right;
}

.page-home .index-name {
  grid-area: name;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.page-home .index-count {
  grid-area: count;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}

.page-home .panel-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--graphite);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.page-home .panel-link:hover {
  color: var(--peach);
  border-color: var(--peach);
}

/* ---------- 入口清单 ---------- */
.page-home .entry-section {
  background: #ffffff;
  padding: 72px 0;
}

.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.page-home .entry-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "key go"
    "name go"
    "desc go";
  gap: 6px 12px;
  padding: 24px;
  border: 1px solid var(--graphite);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.page-home .entry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.page-home .entry-card:hover::before {
  transform: scaleX(1);
}

.page-home .entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ghost);
}

.page-home .entry-key {
  grid-area: key;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--peach);
}

.page-home .entry-card:nth-child(2) .entry-key {
  color: var(--yellow);
}

.page-home .entry-card:nth-child(3) .entry-key {
  color: var(--strawberry);
}

.page-home .entry-card:nth-child(4) .entry-key {
  color: #6a8caf;
}

.page-home .entry-name {
  grid-area: name;
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0;
}

.page-home .entry-desc {
  grid-area: desc;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.page-home .entry-go {
  grid-area: go;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--graphite);
  align-self: center;
}

/* ---------- PC端下载和登录对照 ---------- */
.page-home .guide-section {
  background: var(--paper);
  padding: 72px 0;
}

.page-home .guide-steps {
  margin-top: 36px;
  border-top: 1px solid var(--graphite);
}

.page-home .guide-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--graphite);
}

.page-home .step-no {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 4px;
}

.page-home .guide-step:nth-child(2) .step-no {
  color: var(--yellow);
}

.page-home .guide-step:nth-child(3) .step-no {
  color: var(--strawberry);
}

.page-home .step-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.page-home .step-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.page-home .step-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--graphite);
  padding-bottom: 2px;
  justify-self: start;
  margin-top: 4px;
}

.page-home .step-link:hover {
  color: var(--peach);
  border-color: var(--peach);
}

/* ---------- 更新公告 ---------- */
.page-home .update-section {
  background: var(--paper);
  padding: 72px 0;
}

.page-home .update-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .update-visual {
  position: relative;
}

.page-home .update-visual::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--peach) 100%);
  z-index: 0;
}

.page-home .update-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 24px);
  max-width: none;
  height: 220px;
  object-fit: cover;
}

.page-home .update-content .section-head {
  margin-bottom: 24px;
}

.page-home .update-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .update-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--ghost);
}

.page-home .update-item:first-child {
  border-top: 1px solid var(--graphite);
}

.page-home .update-item:last-child {
  border-bottom: 1px solid var(--graphite);
}

.page-home .update-headline {
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 10px 0 6px;
  color: var(--ink);
}

.page-home .update-summary {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 10px;
}

.page-home .update-link {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--graphite);
  padding-bottom: 2px;
}

.page-home .update-link:hover {
  color: var(--strawberry);
  border-color: var(--strawberry);
}

/* ---------- 收藏提示 ---------- */
.page-home .save-section {
  position: relative;
  background: var(--paper);
  padding: 72px 0 96px;
}

.page-home .save-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--peach) 0%, var(--yellow) 100%);
}

.page-home .save-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .save-copy {
  max-width: 640px;
}

.page-home .save-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--graphite);
  margin: 16px 0 24px;
}

.page-home .save-shortcut {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .save-key {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--graphite);
  background: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink);
}

.page-home .save-fine {
  font-size: 0.75rem;
  margin: 0;
}

.page-home .save-visual {
  position: relative;
}

.page-home .save-visual::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  z-index: 0;
}

.page-home .save-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 20px);
  max-width: none;
  height: 260px;
  object-fit: cover;
}

.page-home .save-section .section-index {
  color: var(--strawberry);
}

/* ---------- 媒体查询：平板 ---------- */
@media (min-width: 640px) {
  .page-home .status-rings {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .status-row {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .status-visual {
    grid-column: 1 / -1;
  }

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

  .page-home .index-row {
    grid-template-columns: 72px 1fr auto auto;
    grid-template-areas: "id name status count";
    align-items: center;
    padding: 16px 4px;
  }

  .page-home .index-status,
  .page-home .index-count {
    text-align: right;
  }

  .page-home .update-visual img {
    height: 260px;
  }

  .page-home .save-visual img {
    height: 280px;
  }
}

/* ---------- 媒体查询：桌面 ---------- */
@media (min-width: 1024px) {
  .page-home .hero {
    padding-bottom: 96px;
  }

  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding-top: 64px;
  }

  .page-home .hero-copy {
    padding-right: 24px;
  }

  .page-home .hero-media {
    grid-template-columns: minmax(0, 1fr) 156px;
    gap: 0;
  }

  .page-home .hero-figure img {
    width: calc(100% - 32px);
    height: 600px;
    margin: 32px 32px 0 0;
  }

  .page-home .hero-index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--graphite);
    border-left: 0;
    padding: 24px 16px;
  }

  .page-home .hero-index-title {
    flex: none;
    border-bottom: 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--ghost);
  }

  .page-home .hero-index-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--ghost);
    border-radius: 0;
    padding: 13px 4px;
    font-size: 0.875rem;
  }

  .page-home .hero-index-link:last-child {
    border-bottom: 0;
  }

  .page-home .status-row {
    grid-template-columns: 1fr 1.2fr 1fr;
  }

  .page-home .status-visual {
    grid-column: auto;
    grid-row: span 1;
  }

  .page-home .status-visual img {
    min-height: 260px;
  }

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

  .page-home .guide-step {
    grid-template-columns: 80px 1fr auto;
    gap: 16px 24px;
    align-items: start;
    padding: 36px 0;
  }

  .page-home .step-no {
    font-size: 2.25rem;
    margin: 0;
  }

  .page-home .step-link {
    align-self: center;
    margin-top: 0;
  }

  .page-home .update-inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .update-visual img {
    height: 320px;
  }

  .page-home .save-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .save-visual img {
    height: 320px;
  }
}

/* ---------- 动效与减少动效偏好 ---------- */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-home .hero-copy {
  animation: hero-fade-up 0.5s ease-out both;
}

.page-home .hero-media {
  animation: hero-fade-up 0.6s ease-out 0.1s both;
}

.page-home .ring-dash-full,
.page-home .ring-dash-mid,
.page-home .ring-dash-low {
  animation: ring-grow 1.2s ease-out both;
}

.page-home .ring-dash-mid {
  animation-delay: 0.15s;
}

.page-home .ring-dash-low {
  animation-delay: 0.3s;
}

@keyframes ring-grow {
  from {
    stroke-dashoffset: 301.6;
  }
}

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