.page-home {
  --home-size-hero: clamp(48px, 10vw, 120px);
  --home-card-offset: 1.5rem;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

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

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.2) contrast(1.05);
}

.page-home .home-hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 25%, rgba(212, 175, 55, 0.2), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(0, 191, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.75));
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}

.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-home .home-hero-kicker::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.page-home .home-hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: var(--home-size-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 0.75rem;
  text-shadow: 0 0 80px rgba(212, 175, 55, 0.18);
}

.page-home .home-hero-region {
  display: block;
  font-size: 0.52em;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.12em;
  letter-spacing: 0.04em;
}

.page-home .home-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.page-home .home-hero-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
  max-width: 34em;
  margin: 0 0 2rem;
  opacity: 0.85;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-home .home-hero-actions .btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.page-home .home-hero-sweep {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 2;
  pointer-events: none;
}

.page-home .home-entry {
  position: relative;
  padding: 5.5rem 1.5rem;
}

.page-home .home-entry-head {
  margin-bottom: 3rem;
}

.page-home .home-entry-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--muted);
  max-width: 34em;
}

.page-home .home-entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home .home-entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.06), rgba(10, 10, 10, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--home-card-offset);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.page-home .home-entry-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 2px solid rgba(212, 175, 55, 0.35);
  border-right: 2px solid rgba(212, 175, 55, 0.35);
  transition: opacity 0.3s ease;
}

.page-home .home-entry-card:hover,
.page-home .home-entry-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
}

.page-home .home-entry-img {
  position: relative;
  width: 100%;
  height: 160px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.page-home .home-entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.1);
  transition: transform 0.5s ease;
}

.page-home .home-entry-card:hover .home-entry-img img {
  transform: scale(1.03);
}

.page-home .home-entry-body {
  position: relative;
  flex: 1;
}

.page-home .home-entry-num {
  position: absolute;
  top: -0.5rem;
  right: 0;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
}

.page-home .home-entry-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.page-home .home-entry-body p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.page-home .home-entry-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-home .home-entry-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.page-home .home-entry-card:hover .home-entry-link::after {
  transform: translateX(4px);
}

.page-home .home-news {
  position: relative;
  padding: 5rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8)),
    radial-gradient(ellipse at 80% 20%, rgba(6, 74, 56, 0.18), transparent 50%);
}

.page-home .home-news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-news-more {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 191, 255, 0.4);
  padding-bottom: 0.2rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-home .home-news-more:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.page-home .home-news-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .home-news-item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
}

.page-home .home-news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-grad);
  opacity: 0.6;
}

.page-home .home-news-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: var(--radius);
}

.page-home .home-news-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.page-home .home-news-item p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.page-home .home-download {
  padding: 5.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home .home-download-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  margin: 0 0 1rem;
}

.page-home .home-download-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 30em;
}

.page-home .home-download-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.page-home .home-download-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.page-home .home-download-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.page-home .home-download-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.2);
  max-width: 100%;
}

.page-home .home-download-visual img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.page-home .home-trust {
  padding: 5.5rem 1.5rem;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(0, 191, 255, 0.06), transparent 45%);
}

.page-home .home-trust-head {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.page-home .home-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home .home-trust-stat,
.page-home .home-trust-reason {
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
}

.page-home .home-trust-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 120px;
}

.page-home .home-trust-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.page-home .home-trust-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.page-home .home-trust-reason h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.page-home .home-trust-reason p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.page-home .home-trust-note {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--cream);
  background: rgba(224, 17, 95, 0.08);
  border-left: 3px solid var(--ruby);
  border-radius: var(--radius);
}

.page-home .home-trust-links {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-home .home-trust-links a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.15rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-home .home-trust-links a:hover {
  color: var(--cream);
  border-color: var(--cream);
}

@media (min-width: 900px) {
  .page-home .home-entry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .page-home .home-entry-card--event {
    margin-top: 2.5rem;
  }

  .page-home .home-entry-card--guide {
    margin-top: 4rem;
  }

  .page-home .home-entry-img {
    height: 200px;
  }

  .page-home .home-news-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-home .home-download {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }

  .page-home .home-trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .page-home .home-trust-stat:first-child {
    grid-column: span 2;
  }
}

@keyframes homeGoldPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.page-home .home-hero-glow {
  animation: homeGoldPulse 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero-glow {
    animation: none;
  }

  .page-home .home-entry-card,
  .page-home .home-entry-img img,
  .page-home .home-entry-link::after {
    transition: none;
  }

  .page-home .home-entry-card:hover,
  .page-home .home-entry-card:focus-visible {
    transform: none;
  }

  .page-home .home-entry-card:hover .home-entry-img img {
    transform: none;
  }

  .page-home .home-entry-card:hover .home-entry-link::after {
    transform: none;
  }
}
