.page-home {
  --home-panel-corner: 16px;
  --home-gap: clamp(1.25rem, 2.8vw, 2.5rem);
  --home-mesh-color: rgba(224, 230, 237, 0.04);
  background: var(--c-bg);
  color: var(--c-silver);
  overflow-x: hidden;
}

.page-home .section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  position: relative;
}

.page-home .container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.page-home .section__head {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.page-home .section__index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-index);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-violet-glow);
  margin-bottom: 0.6rem;
}

.page-home .section__head h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

.page-home .section__desc {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--c-silver-dim);
  margin: 0;
}

/* ========== HERO ========== */
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(122, 90, 248, 0.08) 0%, transparent 48%),
    repeating-linear-gradient(90deg, transparent 0 78px, var(--home-mesh-color) 78px 80px),
    var(--c-bg);
}

.page-home .home-hero__deco--paper {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--c-paper);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.page-home .home-hero__deco--mesh {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(36, 19, 13, 0.06) 12px 13px);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.page-home .home-hero__pg {
  position: absolute;
  right: 4vw;
  bottom: -0.06em;
  font-family: var(--font-index);
  font-weight: 900;
  font-size: clamp(11rem, 28vw, 22rem);
  line-height: 1;
  color: rgba(36, 19, 13, 0.1);
  letter-spacing: -0.05em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.page-home .home-hero__moon {
  position: absolute;
  top: 5vh;
  right: 3vw;
  width: min(33vmin, 320px);
  height: min(33vmin, 320px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(224, 230, 237, 0.35);
  box-shadow:
    0 0 60px rgba(122, 90, 248, 0.26),
    0 20px 50px rgba(13, 27, 42, 0.45),
    inset 0 0 30px rgba(122, 90, 248, 0.12);
  z-index: 3;
}

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

.page-home .home-hero__wrap {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  width: 100%;
}

.page-home .home-hero__panel {
  max-width: 700px;
  padding: clamp(1.75rem, 3.5vw, 3.25rem) clamp(1.5rem, 3vw, 2.75rem);
  background: rgba(224, 230, 237, 0.11);
  border: 1px solid rgba(224, 230, 237, 0.2);
  clip-path: var(--clip-corner);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 30px 60px rgba(9, 21, 33, 0.42);
}

.page-home .home-hero__panel .badge {
  margin-bottom: 1rem;
}

.page-home .home-hero__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: var(--fs-title);
  line-height: 1.18;
  color: var(--c-silver);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.page-home .home-hero__title-sub {
  display: block;
  font-size: 0.66em;
  line-height: 1.3;
  background: linear-gradient(90deg, var(--c-violet-glow), var(--c-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0.35em;
}

.page-home .home-hero__lead {
  font-size: clamp(0.95rem, 1.4vw, 1.06rem);
  line-height: 1.8;
  color: var(--c-silver-dim);
  margin: 0 0 1.6rem;
  max-width: 58ch;
}

.page-home .home-search {
  position: relative;
}

.page-home .home-search__input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(9, 21, 33, 0.6);
  border: 1px solid rgba(224, 230, 237, 0.24);
  clip-path: var(--clip-corner);
  color: var(--c-silver);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-search__input::placeholder {
  color: var(--c-silver-dim);
  opacity: 0.7;
}

.page-home .home-search__input:focus {
  outline: none;
  border-color: var(--c-violet);
  box-shadow: 0 0 0 3px rgba(122, 90, 248, 0.18);
}

.page-home .home-search__hint {
  margin: 0.45rem 0 0.9rem;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-violet-glow);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-home .home-search__input:focus + .home-search__hint,
.page-home .home-search__input:not(:placeholder-shown) + .home-search__hint {
  opacity: 1;
  transform: translateY(0);
}

.page-home .home-search__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

/* ========== STATUS ========== */
.page-home .home-status {
  background:
    linear-gradient(180deg, var(--c-bg-deep) 0%, var(--c-bg) 100%);
  border-top: 1px solid rgba(224, 230, 237, 0.06);
}

.page-home .home-status__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.page-home .stat-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--c-bg-raised);
  border: 1px solid rgba(224, 230, 237, 0.1);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.page-home .stat-card::after {
  content: "IDX";
  position: absolute;
  right: 0.4rem;
  bottom: 0.2rem;
  font-family: var(--font-index);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(122, 90, 248, 0.08);
  pointer-events: none;
  transition: color 0.3s ease;
}

.page-home .stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 90, 248, 0.5);
  box-shadow: 0 12px 32px rgba(9, 21, 33, 0.44);
}

.page-home .stat-card:hover::after {
  color: rgba(122, 90, 248, 0.26);
}

.page-home .stat-card__num {
  display: block;
  font-family: var(--font-index);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c-silver);
  letter-spacing: -0.03em;
}

.page-home .stat-card__unit {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  text-transform: uppercase;
}

.page-home .stat-card__desc {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c-silver-dim);
}

.page-home .home-status__moon {
  padding: 1.5rem 1.5rem 1.6rem;
  background: rgba(122, 90, 248, 0.06);
  border: 1px dashed rgba(122, 90, 248, 0.28);
  clip-path: var(--clip-corner);
}

.page-home .home-status__moonhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-home .home-status__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-silver-dim);
}

.page-home .home-status__value {
  font-family: var(--font-index);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-gold);
}

.page-home .moon-progress {
  position: relative;
  height: 6px;
  background: rgba(224, 230, 237, 0.12);
  overflow: visible;
}

.page-home .moon-progress__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-teal-light), var(--c-violet), var(--c-gold));
  border-radius: 99px;
}

.page-home .moon-progress__dot {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  transform: translate(-50%, -50%) rotate(0deg);
}

.page-home .moon-progress__dot--current {
  background: radial-gradient(circle at 40% 35%, #FFE9A8, var(--c-gold) 55%, var(--c-red));
}

.page-home .home-status__note {
  margin: 1.1rem 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--c-silver-dim);
}

/* ========== LOOKUP ========== */
.page-home .home-lookup {
  background: var(--c-paper);
  color: var(--c-ink);
}

.page-home .home-lookup .section__desc {
  color: var(--c-ink-soft);
}

.page-home .home-lookup .section__index {
  color: var(--c-red);
}

.page-home .home-lookup__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.page-home .home-lookup__panel {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--c-bg);
  color: var(--c-silver);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow: 0 24px 48px rgba(36, 19, 13, 0.18);
  overflow: hidden;
}

.page-home .home-lookup__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(122, 90, 248, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .home-lookup__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-home .home-lookup__input {
  flex: 1;
  padding: 0.95rem 1.05rem;
  background: rgba(9, 21, 33, 0.72);
  border: 1px solid rgba(224, 230, 237, 0.22);
  color: var(--c-silver);
  font-family: var(--font-body);
  font-size: 0.95rem;
  clip-path: var(--clip-corner);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-lookup__input::placeholder {
  color: var(--c-silver-dim);
  opacity: 0.7;
}

.page-home .home-lookup__input:focus {
  outline: none;
  border-color: var(--c-violet);
  box-shadow: 0 0 0 3px rgba(122, 90, 248, 0.18);
}

.page-home .home-lookup__cats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.page-home .lookup-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-silver-dim);
  background: rgba(224, 230, 237, 0.06);
  border: 1px solid rgba(224, 230, 237, 0.16);
  clip-path: var(--clip-corner);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-home .lookup-chip:hover,
.page-home .lookup-chip:focus {
  background: rgba(122, 90, 248, 0.12);
  color: var(--c-silver);
  border-color: rgba(122, 90, 248, 0.55);
}

.page-home .lookup-chip--all {
  background: var(--c-violet);
  border-color: var(--c-violet);
  color: #fff;
}

.page-home .lookup-chip--all:hover {
  background: var(--c-violet-glow);
  color: #fff;
}

.page-home .home-lookup__tip {
  position: relative;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--c-silver-dim);
  border-left: 2px solid var(--c-violet);
  padding-left: 0.8rem;
}

.page-home .home-lookup__visual {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  border: 1px solid rgba(36, 19, 13, 0.12);
  background: var(--c-paper-deep);
  aspect-ratio: 2 / 1;
}

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

/* ========== HIGHLIGHTS ========== */
.page-home .home-highlights {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(122, 90, 248, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-deep) 100%);
}

.page-home .home-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .hl-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.5rem;
  background: rgba(224, 230, 237, 0.04);
  border: 1px solid rgba(224, 230, 237, 0.09);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.page-home .hl-card::after {
  content: attr(data-idx);
  position: absolute;
  right: 0.8rem;
  bottom: 0.2rem;
  font-family: var(--font-index);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(122, 90, 248, 0);
  pointer-events: none;
  transition: color 0.35s ease;
}

.page-home .hl-card:hover {
  background: rgba(122, 90, 248, 0.1);
  border-color: rgba(122, 90, 248, 0.45);
  transform: translateY(-2px);
}

.page-home .hl-card:hover::after {
  color: rgba(122, 90, 248, 0.32);
}

.page-home .hl-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.7rem;
}

.page-home .hl-card h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--c-silver);
}

.page-home .hl-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-silver-dim);
}

.page-home .home-highlights__timeline {
  padding: 1.5rem 1.5rem 1.8rem;
  background: rgba(9, 21, 33, 0.55);
  border: 1px solid rgba(224, 230, 237, 0.08);
  clip-path: var(--clip-corner);
}

.page-home .home-highlights__tl-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-silver-dim);
  margin-bottom: 1.2rem;
}

.page-home .tl-bars {
  display: grid;
  gap: 0.65rem;
}

.page-home .tl-bar {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.75rem;
}

.page-home .tl-bar__v {
  font-family: var(--font-index);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-silver-dim);
  text-align: right;
}

.page-home .tl-bar__track {
  height: 8px;
  background: rgba(224, 230, 237, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.page-home .tl-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-teal-light), var(--c-violet));
  border-radius: 99px;
}

.page-home .tl-bar__fill--now {
  background: linear-gradient(90deg, var(--c-violet), var(--c-gold));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.page-home .home-highlights__note {
  margin: 1.2rem 0 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--c-silver-dim);
}

/* ========== UPDATES ========== */
.page-home .home-updates {
  background: var(--c-paper);
  color: var(--c-ink);
}

.page-home .home-updates .section__desc {
  color: var(--c-ink-soft);
}

.page-home .home-updates .section__index {
  color: var(--c-red);
}

.page-home .home-updates__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.page-home .home-updates__art {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  align-self: center;
  justify-self: center;
  border: 1px solid rgba(36, 19, 13, 0.14);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow: 0 20px 44px rgba(36, 19, 13, 0.16);
}

.page-home .home-updates__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.page-home .cmp-tablewrap {
  overflow-x: auto;
  border: 1px solid rgba(36, 19, 13, 0.12);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  background: var(--c-paper-deep);
}

.page-home .cmp-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.page-home .cmp-table th,
.page-home .cmp-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(36, 19, 13, 0.1);
}

.page-home .cmp-table thead th {
  background: var(--c-ink);
  color: var(--c-silver);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.page-home .cmp-table tbody th {
  font-weight: 600;
  color: var(--c-ink-soft);
  white-space: nowrap;
}

.page-home .cmp-table tbody tr:last-child td,
.page-home .cmp-table tbody tr:last-child th {
  border-bottom: none;
}

.page-home .cmp-table tbody tr:nth-child(even) {
  background: rgba(36, 19, 13, 0.03);
}

.page-home .home-updates__note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--c-ink-soft);
}

/* ========== ADAPT ========== */
.page-home .home-adapt {
  background:
    radial-gradient(ellipse at 18% 100%, rgba(122, 90, 248, 0.1) 0%, transparent 50%),
    var(--c-bg);
}

.page-home .home-adapt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .home-adapt__col {
  padding: 1.5rem 1.4rem 1.4rem;
  background: rgba(224, 230, 237, 0.035);
  border: 1px solid rgba(224, 230, 237, 0.1);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.page-home .home-adapt__col h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: var(--c-silver);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(224, 230, 237, 0.1);
}

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

.page-home .format-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.55rem 0;
  font-family: var(--font-index);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-silver);
  border-bottom: 1px dashed rgba(224, 230, 237, 0.08);
}

.page-home .format-list__item:last-child {
  border-bottom: none;
}

.page-home .format-list__item em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--c-silver-dim);
}

.page-home .format-list__item--zip::before {
  content: "●";
  color: var(--c-violet);
  font-size: 0.7rem;
}

.page-home .format-list__item--cbz::before {
  content: "●";
  color: var(--c-gold);
  font-size: 0.7rem;
}

.page-home .format-list__item--pdf::before {
  content: "●";
  color: var(--c-red);
  font-size: 0.7rem;
}

.page-home .format-list__item--epub::before {
  content: "●";
  color: var(--c-teal-light);
  font-size: 0.7rem;
}

.page-home .device-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.page-home .device-list__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--c-silver);
}

.page-home .device-list__ic {
  width: 24px;
  height: 24px;
  display: inline-block;
  border: 1px solid rgba(224, 230, 237, 0.3);
  border-radius: 4px;
  position: relative;
  flex: none;
}

.page-home .device-list__ic--pc {
  background: linear-gradient(135deg, rgba(122, 90, 248, 0.25), transparent);
}

.page-home .device-list__ic--pc::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 2px;
  height: 5px;
  background: rgba(224, 230, 237, 0.5);
  transform: translateX(-50%);
}

.page-home .device-list__ic--mac {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), transparent);
}

.page-home .device-list__ic--mac::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 2px;
  height: 5px;
  background: rgba(224, 230, 237, 0.5);
  transform: translateX(-50%);
}

.page-home .device-list__ic--tablet {
  width: 20px;
  height: 26px;
  background: linear-gradient(160deg, rgba(122, 90, 248, 0.25), transparent);
  border-radius: 3px;
}

.page-home .device-list__ic--phone {
  width: 16px;
  height: 26px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.25), transparent);
  border-radius: 3px;
}

.page-home .home-adapt__visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.page-home .home-adapt__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(224, 230, 237, 0.14);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-home .home-adapt__note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--c-silver-dim);
}

/* ========== MAP ========== */
.page-home .home-map {
  background: var(--c-paper);
  color: var(--c-ink);
}

.page-home .home-map .section__desc {
  color: var(--c-ink-soft);
}

.page-home .home-map .section__index {
  color: var(--c-red);
}

.page-home .home-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .map-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 1.5rem 1.6rem;
  background: var(--c-paper-deep);
  color: var(--c-ink);
  text-decoration: none;
  border: 1px solid rgba(36, 19, 13, 0.12);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.page-home .map-card::after {
  content: "→";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-red);
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-home .map-card:hover {
  background: var(--c-bg);
  color: var(--c-silver);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(36, 19, 13, 0.16);
}

.page-home .map-card:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.page-home .map-card--active {
  background: var(--c-bg);
  color: var(--c-silver);
  border-color: rgba(122, 90, 248, 0.45);
}

.page-home .map-card--active .map-card__desc {
  color: var(--c-silver-dim);
}

.page-home .map-card__num {
  font-family: var(--font-index);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-red);
}

.page-home .map-card:hover .map-card__num,
.page-home .map-card--active .map-card__num {
  color: var(--c-gold);
}

.page-home .map-card__label {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.3;
}

.page-home .map-card__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
}

/* ========== DESKTOP BREAKPOINTS ========== */
@media (min-width: 640px) {
  .page-home .home-status__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

@media (min-width: 900px) {
  .page-home .home-hero__panel {
    margin-left: clamp(0rem, 4vw, 3.5rem);
  }

  .page-home .home-lookup__layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-home .home-lookup__form {
    flex-direction: row;
    align-items: center;
  }

  .page-home .home-lookup__form .btn {
    flex: none;
  }

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

  .page-home .home-updates__layout {
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
  }

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

  .page-home .home-adapt__visual {
    grid-column: auto;
  }

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

@media (min-width: 1200px) {
  .page-home .home-hero__moon {
    right: 5vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .stat-card,
  .page-home .hl-card,
  .page-home .map-card {
    transition: none;
  }

  .page-home .home-hero__moon {
    animation: none;
  }

  .page-home .home-search__hint {
    opacity: 1;
    transform: none;
  }
}
