.page-home {
  --home-glass: rgba(232, 240, 236, 0.06);
  --home-glass-strong: rgba(232, 240, 236, 0.1);
  --home-border: rgba(192, 192, 192, 0.32);
  --home-border-strong: rgba(192, 192, 192, 0.6);
  background: var(--c-bg);
  color: var(--c-body);
}

.page-home .home-shell {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-block: 14px 72px;
}

.page-home .home-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--c-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding-block: 4px 18px;
}

.page-home .home-breadcrumb__sep {
  color: var(--c-metal);
  opacity: 0.5;
}

.page-home .home-breadcrumb [aria-current="page"] {
  color: var(--c-paper);
  font-weight: 600;
}

.page-home .home-statusbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  margin-bottom: 26px;
  padding: 14px 18px;
  border: 1px solid var(--home-border);
  border-left: 4px solid var(--c-accent);
  background: rgba(7, 42, 31, 0.6);
  color: var(--c-muted);
  font-size: 0.9rem;
}

.page-home .home-statusbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.15);
}

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

.page-home .bento-card {
  border-radius: var(--radius);
  border: 1px solid var(--home-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-home .bento-card:hover,
.page-home .bento-card:focus-within {
  border-color: rgba(255, 77, 0, 0.72);
}

.page-home .bento-card:not(.home-focus):hover,
.page-home .bento-card:not(.home-focus):focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.page-home .home-focus {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--c-bg-deep);
  border-color: var(--home-border-strong);
}

.page-home .home-focus__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.page-home .home-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(0.85) contrast(1.08);
}

.page-home .home-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 42, 31, 0.2), rgba(11, 61, 46, 0.62) 58%, #072A1F 100%);
  pointer-events: none;
}

.page-home .home-focus::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 74px;
  height: 74px;
  background: var(--c-accent);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.95;
}

.page-home .home-focus__overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 30px 32px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-home .home-focus__overlay h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--c-white);
  max-width: 14em;
}

.page-home .home-focus__lead {
  margin: 0;
  max-width: 56em;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-paper);
}

.page-home .home-focus__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 54em;
}

.page-home .home-focus__points li {
  position: relative;
  padding-left: 18px;
  color: var(--c-paper);
  font-size: 0.95rem;
}

.page-home .home-focus__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--c-accent);
}

.page-home .home-focus__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.page-home .home-focus__toc a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--c-paper);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(192, 192, 192, 0.45);
  border-radius: 999px;
  background: rgba(7, 42, 31, 0.4);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.page-home .home-focus__toc a:hover,
.page-home .home-focus__toc a:focus-visible {
  border-color: var(--c-accent);
  background: rgba(255, 77, 0, 0.16);
  color: var(--c-white);
}

.page-home .home-focus__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.page-home .home-metrics {
  background: var(--home-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 520px;
}

.page-home .home-metrics__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--c-paper);
  border-left: 4px solid var(--c-accent);
  padding-left: 12px;
}

.page-home .home-metrics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-metrics__list div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px dashed rgba(192, 192, 192, 0.3);
  transition: border-color 0.2s ease;
}

.page-home .home-metrics__list div:hover {
  border-bottom-color: var(--c-accent);
}

.page-home .home-metrics__list dt {
  color: var(--c-muted);
  font-size: 0.9rem;
}

.page-home .home-metrics__list dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-white);
  transition: transform 0.2s ease, color 0.2s ease;
}

.page-home .home-metrics__list div:hover dd {
  color: var(--c-accent);
  transform: translateX(2px);
}

.page-home .home-metrics__note {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-muted);
  font-size: 0.88rem;
}

.page-home .version-code {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-alert);
  animation: page-home-pulse 2.6s ease-in-out infinite;
}

@keyframes page-home-pulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 193, 7, 0);
  }
  50% {
    opacity: 0.72;
    text-shadow: 0 0 14px rgba(255, 193, 7, 0.55);
  }
}

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

.page-home .home-section__head {
  margin-bottom: 18px;
}

.page-home .section-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.page-home .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.page-home .home-schedule__grid {
  margin-top: 4px;
}

.page-home .home-schedule__visual {
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-home .home-schedule__visual h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-ink);
}

.page-home .home-schedule__visual p {
  margin: 0;
  color: var(--c-ink);
  opacity: 0.9;
  line-height: 1.65;
}

.page-home .home-schedule__image {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(27, 66, 52, 0.2);
  border-radius: calc(var(--radius) - 2px);
}

.page-home .home-schedule__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.page-home .home-schedule__visual:hover .home-schedule__image img {
  transform: scale(1.04);
}

.page-home .home-schedule__bullet {
  background: var(--home-glass-strong);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-schedule__bullet h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--c-white);
}

.page-home .home-schedule__bullet ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.page-home .home-schedule__bullet li {
  padding-left: 20px;
  position: relative;
  color: var(--c-body);
  font-size: 1rem;
  line-height: 1.5;
}

.page-home .home-schedule__bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 2px;
  background: var(--c-accent);
}

.page-home .home-schedule__rank {
  background: var(--c-bg-deep);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-home .home-schedule__rank h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--c-white);
}

.page-home .home-schedule__rank p {
  margin: 6px 0 0;
  color: var(--c-muted);
  max-width: 42em;
}

.page-home .home-schedule__rank .btn {
  flex-shrink: 0;
}

.page-home .home-help {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 46px;
  padding: 22px 18px;
  border: 1px solid var(--home-border);
  border-radius: calc(var(--radius) * 2);
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.12), rgba(255, 77, 0, 0.02) 42%), rgba(7, 42, 31, 0.88);
}

.page-home .home-help__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-home .home-help__copy p {
  margin: 0;
  max-width: 46em;
  line-height: 1.75;
}

.page-home .home-help__copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-help__copy li {
  position: relative;
  padding-left: 24px;
  color: var(--c-body);
}

.page-home .home-help__copy li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

.page-home .home-help__action {
  margin-top: 4px;
}

.page-home .home-help__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-border-strong);
  border-radius: calc(var(--radius) * 2);
  background: var(--c-bg-deep);
  display: flex;
  flex-direction: column;
}

.page-home .home-help__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.page-home .home-help__media figcaption {
  padding: 10px 14px;
  color: var(--c-muted);
  font-size: 0.84rem;
  border-top: 1px solid var(--home-border);
}

.page-home .home-transfer__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.page-home .home-transfer__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-border-strong);
  border-radius: calc(var(--radius) * 2);
  background: var(--c-bg-deep);
  display: flex;
}

.page-home .home-transfer__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.page-home .home-transfer__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-transfer__item {
  padding: 20px;
  background: var(--home-glass);
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-home .home-transfer__item:hover {
  border-color: rgba(255, 77, 0, 0.6);
  background: rgba(255, 77, 0, 0.06);
}

.page-home .home-transfer__item h3 {
  margin: 0;
  color: var(--c-white);
  font-size: 1.15rem;
  line-height: 1.45;
}

.page-home .home-transfer__item p {
  margin: 0;
  color: var(--c-body);
  font-size: 0.96rem;
  line-height: 1.65;
}

.page-home .home-transfer__action {
  align-self: flex-start;
}

.page-home .home-navguide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .home-navguide__item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 18px;
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  background: rgba(232, 240, 236, 0.06);
  color: var(--c-paper);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.page-home .home-navguide__item:hover,
.page-home .home-navguide__item:focus-visible {
  border-color: var(--c-accent);
  background: rgba(255, 77, 0, 0.14);
  color: var(--c-white);
  transform: translateY(-2px);
}

.page-home .home-navguide__item:first-child {
  background: rgba(255, 77, 0, 0.14);
  border-color: rgba(255, 77, 0, 0.5);
}

.page-home .home-navguide__item:first-child:hover,
.page-home .home-navguide__item:first-child:focus-visible {
  background: rgba(255, 77, 0, 0.22);
}

.page-home .home-navguide__index {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-accent);
}

.page-home .home-navguide__name {
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .page-home .home-shell {
    padding-inline: 28px;
  }

  .page-home .home-help {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 28px 26px;
  }

  .page-home .home-transfer__layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

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

@media (min-width: 1024px) {
  .page-home .home-shell {
    padding-inline: 36px;
  }

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

  .page-home .home-focus {
    grid-column: span 8;
  }

  .page-home .home-metrics {
    grid-column: span 4;
  }

  .page-home .home-schedule__visual {
    grid-column: span 7;
  }

  .page-home .home-schedule__bullet {
    grid-column: span 5;
  }

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