.page-home {
  background: var(--bg-deep);
  color: var(--text-main);
}

.page-home h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin: 12px 0 10px;
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 164, 90, 0.16), transparent 26%),
    linear-gradient(120deg, #0a1628 0%, #0c1c33 58%, #11273f 100%);
  border-bottom: 1px solid var(--line-faint);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.9;
  z-index: 1;
}

.page-home .home-hero::after {
  content: "CROWN DATA INDEX";
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: rgba(201, 164, 90, 0.16);
  z-index: 0;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding: 48px 0 64px;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.page-home .home-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 18px 0 22px;
}

.page-home .home-hero__title .hero-accent {
  color: var(--gold-light);
}

.page-home .home-hero__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 54ch;
  margin: 0;
}

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

.page-home .home-hero__actions .btn {
  min-width: 172px;
  text-align: center;
}

.page-home .home-hero__media {
  display: flex;
  justify-content: center;
}

.page-home .hero-phone-wrap {
  position: relative;
  width: min(300px, 74vw);
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(17, 39, 63, 0.6);
}

.page-home .hero-phone-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent 68%, rgba(201, 164, 90, 0.4));
  pointer-events: none;
}

.page-home .hero-phone {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.page-home .home-announce {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-home .home-announce__header {
  margin-bottom: 32px;
}

.page-home .home-announce__index,
.page-home .home-missing__index,
.page-home .home-history__index,
.page-home .home-rules__index,
.page-home .home-trend__index,
.page-home .home-contact__index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.page-home .home-announce__index::before,
.page-home .home-missing__index::before,
.page-home .home-history__index::before,
.page-home .home-rules__index::before,
.page-home .home-trend__index::before,
.page-home .home-contact__index::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-home .home-announce__lead,
.page-home .home-missing__lead,
.page-home .home-history__lead,
.page-home .home-rules__lead,
.page-home .home-trend__lead,
.page-home .home-contact__lead {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 64ch;
  margin: 0;
}

.page-home .home-announce__grid {
  display: grid;
  gap: 32px;
}

.page-home .home-announce__panel {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 20px;
}

.page-home .announce-table {
  border-bottom: 1px solid var(--line);
}

.page-home .announce-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.3fr;
  gap: 8px;
  align-items: center;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line-faint);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

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

.page-home .announce-row:hover {
  background: var(--bg-panel-hover);
  box-shadow: inset 3px 0 0 var(--gold);
}

.page-home .announce-row--head {
  background: rgba(10, 22, 40, 0.7);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.page-home .announce-row--head:hover {
  background: rgba(10, 22, 40, 0.7);
  box-shadow: none;
}

.page-home .announce-date {
  color: var(--text-muted);
  font-size: 14px;
}

.page-home .announce-no {
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gold-light);
  font-size: 15px;
}

.page-home .announce-type {
  color: var(--text-main);
  font-size: 14px;
}

.page-home .announce-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 18px 0 20px;
}

.page-home .home-announce__media img,
.page-home .home-rules__media img,
.page-home .home-trend__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.page-home .home-announce__media figcaption,
.page-home .home-rules__media figcaption,
.page-home .home-trend__media figcaption {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.page-home .home-announce__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line-faint);
}

.page-home .home-announce__foot a,
.page-home .home-contact__foot a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.page-home .home-announce__foot a:hover,
.page-home .home-contact__foot a:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.page-home .home-missing {
  padding: 56px 0;
  background: linear-gradient(135deg, #0d1b2e, #0a1628);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition-base);
}

.page-home .home-missing:hover {
  background: linear-gradient(135deg, #11273f, #0d1f35);
}

.page-home .home-missing__grid {
  display: grid;
  gap: 40px;
}

.page-home .home-missing__content {
  order: 2;
}

.page-home .home-missing__aside {
  order: 1;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(17, 39, 63, 0.45);
}

.page-home .home-missing__fact {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.page-home .step-list {
  list-style: none;
  counter-reset: step;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.page-home .step-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-history {
  position: relative;
  padding: 56px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 164, 90, 0.14), transparent 26%),
    linear-gradient(130deg, #0d1f35, #0a1628 62%, #11273f);
  border-top: 3px solid var(--gold-dark);
  border-bottom: 1px solid var(--line);
}

.page-home .home-history__head {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.page-home .home-history__stats {
  display: grid;
  gap: 20px;
  margin: 32px 0;
}

.page-home .history-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid var(--line);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.page-home .history-stat:hover {
  border-color: rgba(201, 164, 90, 0.7);
  background: rgba(17, 39, 63, 0.7);
}

.page-home .history-stat .stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.page-home .history-stat__label {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.page-home .home-history__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 28px;
}

.page-home .history-tag {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(10, 22, 40, 0.5);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.page-home .history-tag:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--bg-panel-hover);
}

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

.page-home .home-rules {
  padding: 56px 0;
  background:
    linear-gradient(rgba(49, 68, 92, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 68, 92, 0.32) 1px, transparent 1px),
    var(--bg-deep);
  background-size: 36px 36px;
  border-bottom: 1px solid var(--line);
}

.page-home .home-rules__header {
  margin-bottom: 32px;
}

.page-home .home-rules__grid {
  display: grid;
  gap: 32px;
}

.page-home .home-rules__content {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(17, 39, 63, 0.72);
}

.page-home .rule-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.page-home .rule-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(201, 164, 90, 0.42);
  background: rgba(201, 164, 90, 0.1);
  color: var(--gold-light);
  font-size: 14px;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.page-home .rule-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a1628;
}

.page-home .home-trend {
  padding: 56px 0;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
}

.page-home .home-trend__grid {
  display: grid;
  gap: 32px;
}

.page-home .trend-feature-list {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .trend-feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.page-home .trend-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-home .home-contact {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.page-home .home-contact__inner {
  max-width: 780px;
  margin-left: 0;
}

.page-home .home-contact__line {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(17, 39, 63, 0.5);
}

.page-home .home-contact__line a {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 164, 90, 0.35);
  text-underline-offset: 7px;
  word-break: break-all;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.page-home .home-contact__line a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.page-home .home-contact__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (min-width: 720px) {
  .page-home h2 {
    font-size: 30px;
  }

  .page-home .home-missing__grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
    align-items: start;
    gap: 48px;
  }

  .page-home .home-missing__content {
    order: 1;
  }

  .page-home .home-missing__aside {
    order: 2;
    margin-top: 38px;
  }

  .page-home .home-history__head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 32px;
  }

  .page-home .home-history__stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }

  .page-home .home-rules__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .page-home .home-contact__line {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

@media (min-width: 920px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: center;
    gap: 64px;
    min-height: 640px;
    padding-top: 60px;
    padding-bottom: 76px;
  }

  .page-home .home-hero__title {
    font-size: 64px;
  }

  .page-home .home-hero__desc {
    font-size: 17px;
  }

  .page-home .home-announce__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
  }

  .page-home .home-trend__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .home-contact__inner {
    margin-left: 0;
    max-width: 820px;
  }
}

@media (min-width: 1180px) {
  .page-home .home-hero__title {
    font-size: 76px;
  }

  .page-home .home-hero__inner {
    min-height: 680px;
  }

  .page-home .home-announce,
  .page-home .home-missing,
  .page-home .home-history,
  .page-home .home-rules,
  .page-home .home-trend,
  .page-home .home-contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-home .home-announce__panel {
    padding: 28px;
  }
}
