.page-home {
  --home-navy: #0A2342;
  --home-dark: #06182E;
  --home-orange: #E67E22;
  --home-teal: #1ABC9C;
  --home-paper: #F5F1E8;
  --home-ink: #1A1A1A;
  --home-light: #D6E4F0;
  --home-line: #B8B2A6;
  --home-muted: #5A5A5A;
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 28px 20px 72px;
  color: var(--home-ink);
  background-image:
    linear-gradient(to right, rgba(10, 35, 66, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 35, 66, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: 0 0;
  overflow-x: hidden;
}

.page-home .home-section {
  position: relative;
  padding: 64px 0 8px;
}

.page-home .home-section-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.28);
  position: relative;
}

.page-home .home-sec-index {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--home-teal);
  background: rgba(26, 188, 156, 0.1);
  border-radius: 6px;
  padding: 2px 8px;
}

.page-home .home-sec-title {
  margin: 0;
  font-family: "Noto Sans SC", "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--home-navy);
  letter-spacing: -0.01em;
}

.page-home .home-sec-more {
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--home-navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.page-home .home-sec-more:hover {
  color: var(--home-orange);
  border-color: var(--home-orange);
}

.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--home-muted);
  margin-bottom: 12px;
}

.page-home .home-breadcrumb a {
  color: var(--home-navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.page-home .home-breadcrumb a:hover {
  color: var(--home-orange);
}

.page-home .home-path-hero {
  position: relative;
  max-width: 940px;
  margin-bottom: 40px;
}

.page-home .home-path-hero-title {
  margin: 0 0 12px;
  font-family: "Noto Sans SC", "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--home-navy);
  letter-spacing: -0.02em;
}

.page-home .home-path-hero-desc {
  margin: 0;
  max-width: 820px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--home-muted);
}

.page-home .home-hero-coord {
  position: absolute;
  top: -12px;
  right: 0;
  display: flex;
  gap: 10px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  color: rgba(10, 35, 66, 0.45);
  writing-mode: horizontal-tb;
}

.page-home .home-hero-coord span {
  border: 1px solid rgba(10, 35, 66, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(245, 241, 232, 0.7);
}

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

.page-home .home-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  padding: 24px 20px 20px;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(10, 35, 66, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
}

.page-home .home-path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 35, 66, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 35, 66, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}

.page-home .home-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 35, 66, 0.14);
  border-color: var(--home-orange);
}

.page-home .home-path-card--navy {
  background: var(--home-navy);
  color: #fff;
}

.page-home .home-path-card--navy .home-path-card-title,
.page-home .home-path-card--navy .home-path-card-desc,
.page-home .home-path-card--navy .home-path-index,
.page-home .home-path-card--navy .home-card-route,
.page-home .home-path-card--navy .home-path-link {
  color: #fff;
}

.page-home .home-path-card--paper {
  background: var(--home-paper);
  border-color: rgba(10, 35, 66, 0.18);
  color: var(--home-ink);
}

.page-home .home-path-card--orange {
  background: var(--home-orange);
  color: var(--home-ink);
}

.page-home .home-path-card--teal {
  background: var(--home-teal);
  color: var(--home-ink);
}

.page-home .home-path-index {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.page-home .home-path-card-title {
  font-family: "Noto Sans SC", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.page-home .home-path-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.88;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.page-home .home-path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.page-home .home-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.page-home .home-tag--orange {
  background: var(--home-orange);
  color: #fff;
}

.page-home .home-tag--teal {
  background: var(--home-teal);
  color: var(--home-ink);
}

.page-home .home-tag--ink {
  background: var(--home-ink);
  color: #fff;
}

.page-home .home-tag--outline {
  border-color: currentColor;
  color: inherit;
  background: rgba(255, 255, 255, 0.35);
}

.page-home .home-card-route {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  opacity: 0.75;
  position: absolute;
  right: 14px;
  bottom: 10px;
}

.page-home .home-path-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}

.page-home .home-path-card:hover .home-path-link {
  opacity: 0.7;
}

.page-home .home-latest-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.page-home .home-timeline {
  position: relative;
  padding-left: 24px;
}

.page-home .home-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--home-line);
}

.page-home .home-timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.page-home .home-timeline-item:last-child {
  margin-bottom: 0;
}

.page-home .home-timeline-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--home-teal);
  border: 3px solid var(--home-paper);
  box-shadow: 0 0 0 1px var(--home-teal);
}

.page-home .home-timeline-content {
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 35, 66, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-home .home-timeline-content:hover {
  border-color: var(--home-teal);
  box-shadow: 0 8px 24px rgba(10, 35, 66, 0.1);
}

.page-home .home-timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.page-home .home-timeline-meta time {
  font-size: 0.8rem;
  color: var(--home-muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.page-home .home-timeline-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--home-navy);
}

.page-home .home-timeline-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .home-timeline-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--home-navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-timeline-link:hover {
  color: var(--home-orange);
  border-color: var(--home-orange);
}

.page-home .home-latest-photo {
  margin: 0;
  position: relative;
}

.page-home .home-latest-photo::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  z-index: 0;
}

.page-home .home-latest-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(10, 35, 66, 0.12);
}

.page-home .home-latest-photo figcaption,
.page-home .home-compare-figure figcaption,
.page-home .home-panel-chart figcaption,
.page-home .home-review-shot figcaption {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--home-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-latest-photo figcaption::before,
.page-home .home-compare-figure figcaption::before,
.page-home .home-panel-chart figcaption::before,
.page-home .home-review-shot figcaption::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--home-teal);
  display: inline-block;
}

.page-home .home-selector-toolbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .home-selector-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .home-selector-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 35, 66, 0.25);
  background: rgba(255, 255, 255, 0.4);
  color: var(--home-navy);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.page-home .home-selector-chip:hover {
  border-color: var(--home-orange);
  color: var(--home-orange);
  transform: translateY(-2px);
}

.page-home .home-selector-input:focus-visible + .home-selector-chip {
  outline: 2px solid var(--home-orange);
  outline-offset: 2px;
}

.page-home .home-selector-input:checked + .home-selector-chip {
  background: var(--home-navy);
  border-color: var(--home-navy);
  color: #fff;
}

.page-home .home-year-panels {
  display: block;
}

.page-home .home-year-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: var(--home-light);
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-left: 4px solid var(--home-teal);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.page-home .home-year-panel::after {
  content: attr(data-year);
  position: absolute;
  right: 12px;
  bottom: -6px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(10, 35, 66, 0.1);
  pointer-events: none;
}

.page-home .home-year-panel-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.page-home .home-year-panel-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--home-navy);
}

.page-home .home-year-panel-version {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--home-orange);
}

.page-home .home-year-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.page-home .home-year-col-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--home-ink);
}

.page-home .home-compare-figure {
  margin: 28px 0 0;
}

.page-home .home-compare-figure img,
.page-home .home-panel-chart img,
.page-home .home-review-shot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(10, 35, 66, 0.1);
}

.page-home .home-panel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .home-panel-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background: var(--home-paper);
}

.page-home .home-panel-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.page-home .home-panel-table th {
  background: var(--home-navy);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .home-panel-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  color: var(--home-ink);
  white-space: nowrap;
}

.page-home .home-panel-table tbody tr:nth-child(even) {
  background: rgba(214, 228, 240, 0.35);
}

.page-home .home-panel-table tbody tr:hover {
  background: rgba(230, 126, 34, 0.1);
}

.page-home .home-panel-update {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--home-muted);
  line-height: 1.7;
  border-left: 3px solid var(--home-teal);
  padding-left: 12px;
}

.page-home .home-review-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .home-review-shot {
  margin: 0;
}

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

.page-home .home-review-card {
  position: relative;
  display: block;
  padding: 20px 20px 18px 24px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.page-home .home-review-card:hover {
  transform: translateX(4px);
  border-color: var(--home-orange);
  box-shadow: 0 10px 24px rgba(10, 35, 66, 0.1);
}

.page-home .home-review-index {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  color: var(--home-line);
}

.page-home .home-review-card-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--home-navy);
  line-height: 1.4;
  padding-right: 40px;
}

.page-home .home-review-card-text {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .home-review-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(26, 188, 156, 0.14);
  color: var(--home-teal);
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(26, 188, 156, 0.3);
}

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

.page-home .home-promise-card {
  background: var(--home-paper);
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-home .home-promise-card:hover {
  border-color: var(--home-teal);
  box-shadow: 0 8px 18px rgba(10, 35, 66, 0.08);
}

.page-home .home-promise-card--dark {
  background: var(--home-dark);
  color: #fff;
  border-color: var(--home-dark);
}

.page-home .home-promise-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--home-navy);
}

.page-home .home-promise-card--dark h3 {
  color: #fff;
}

.page-home .home-promise-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--home-muted);
}

.page-home .home-promise-card--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.page-home .home-promise-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-home .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.page-home .home-btn--primary {
  background: var(--home-orange);
  color: #fff;
  border: 1px solid var(--home-orange);
}

.page-home .home-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.28);
}

.page-home .home-btn--outline {
  background: transparent;
  color: var(--home-navy);
  border: 1.5px solid var(--home-navy);
}

.page-home .home-btn--outline:hover {
  border-color: var(--home-orange);
  color: var(--home-orange);
  transform: translateY(-2px);
}

@supports selector(:has(a)) {
  .page-home .home-year-panel {
    display: none;
  }

  .page-home .home-selector-toolbar:has(#homeYear2025:checked) ~ .home-year-panels .home-year-panel[data-year="2025"],
  .page-home .home-selector-toolbar:has(#homeYear2024:checked) ~ .home-year-panels .home-year-panel[data-year="2024"],
  .page-home .home-selector-toolbar:has(#homeYear2023:checked) ~ .home-year-panels .home-year-panel[data-year="2023"],
  .page-home .home-selector-toolbar:has(#homeYear2022:checked) ~ .home-year-panels .home-year-panel[data-year="2022"],
  .page-home .home-selector-toolbar:has(#homeYear2021:checked) ~ .home-year-panels .home-year-panel[data-year="2021"],
  .page-home .home-selector-toolbar:has(#homeYear2020:checked) ~ .home-year-panels .home-year-panel[data-year="2020"],
  .page-home .home-selector-toolbar:has(#homeYear2019:checked) ~ .home-year-panels .home-year-panel[data-year="2019"],
  .page-home .home-selector-toolbar:has(#homeYear2018:checked) ~ .home-year-panels .home-year-panel[data-year="2018"] {
    display: grid;
  }
}

@media (min-width: 640px) {
  .page-home .home-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 768px) {
  .page-home {
    padding: 40px 32px 88px;
  }

  .page-home .home-path-hero-title {
    font-size: 2.5rem;
  }

  .page-home .home-path-hero-desc {
    font-size: 1rem;
  }

  .page-home .home-latest-layout {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }

  .page-home .home-panel-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
  }

  .page-home .home-review-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
  }

  .page-home .home-year-panel {
    grid-template-columns: 0.7fr 1.3fr 0.9fr;
    gap: 16px;
    padding: 24px 26px;
  }

  .page-home .home-review-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .page-home .home-path-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .home-path-card {
    min-height: 290px;
    padding: 28px 22px 24px;
  }

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

  .page-home .home-latest-layout {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }

  .page-home .home-review-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .page-home .home-section {
    padding-top: 84px;
  }

  .page-home .home-sec-title {
    font-size: 1.85rem;
  }
}
