.page-home {
  --home-gutter: 20px;
  --home-radius-lg: 20px;
  --home-radius-md: 14px;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  display: grid;
  gap: 40px;
  padding: 48px var(--home-gutter) 56px;
  background:
    radial-gradient(900px 480px at 90% -10%, rgba(245, 209, 102, 0.16), transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(58, 107, 160, 0.18), transparent 55%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: var(--paper);
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--grad-gold);
}
.page-home .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-home .hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-home .hero-kicker::before {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 2px;
  background: var(--grad-gold);
}
.page-home .hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-wrap: balance;
}
.page-home .hero-title-accent {
  color: var(--gold);
}
.page-home .hero-lead {
  max-width: 58ch;
  margin: 0 0 26px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(248, 240, 227, 0.85);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.page-home .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(245, 209, 102, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(245, 209, 102, 0.12);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.page-home .hero-visual {
  position: relative;
  min-height: 220px;
}
.page-home .hero-img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  border-radius: var(--home-radius-lg);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  transform: rotate(1.5deg);
}
.page-home .hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-home .hero-orb--one {
  top: -24px;
  right: 8px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 32% 32%, rgba(245, 209, 102, 0.5), rgba(200, 134, 10, 0.06) 70%);
  filter: blur(6px);
  animation: home-float 6s ease-in-out infinite;
}
.page-home .hero-orb--two {
  bottom: 14%;
  left: -16px;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(58, 107, 160, 0.65), transparent 70%);
  filter: blur(4px);
  animation: home-float 9s ease-in-out infinite reverse;
}
.page-home .hero-orb--three {
  top: 46%;
  right: -8px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.55), transparent 70%);
  filter: blur(2px);
  animation: home-float 7s ease-in-out infinite 1s;
}
@keyframes home-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-orb { animation: none; }
}

.page-home .home-newsroom {
  padding: 64px var(--home-gutter) 72px;
  background: var(--paper);
}
.page-home .home-newsroom .section-head {
  margin-bottom: 36px;
}
.page-home .newsroom-wrap {
  display: grid;
  gap: 32px;
}
.page-home .newsroom-index-panel {
  position: relative;
  padding: 30px 22px 24px;
  background: #FFFFFF;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--shadow-card);
  transform: rotate(-0.6deg);
}
.page-home .newsroom-index-panel::before {
  content: "INDEX";
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.page-home .panel-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.page-home .panel-caption::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-gold);
}
.page-home .index-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .index-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10, 30, 63, 0.08);
}
.page-home .index-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.page-home .index-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
}
.page-home .index-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.page-home .index-desc {
  grid-column: 2;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.page-home .newsroom-aside {
  display: grid;
  gap: 22px;
  align-content: start;
}
.page-home .newsroom-img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--shadow-card);
}
.page-home .schedule-card {
  position: relative;
  padding: 26px 22px 22px;
  background: #FFFFFF;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--shadow-card);
  transform: rotate(0.4deg);
}
.page-home .schedule-card::before {
  content: "SCHEDULE";
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.page-home .schedule-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.page-home .schedule-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
}
.page-home .schedule-item dt {
  color: var(--ink-soft);
  font-weight: 600;
}
.page-home .schedule-item dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}
.page-home .schedule-note {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--silver);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.page-home .home-lottery {
  padding: 64px var(--home-gutter) 72px;
  background: var(--navy);
}
.page-home .home-lottery .section-head {
  margin-bottom: 36px;
}
.page-home .home-lottery .section-kicker {
  color: var(--gold);
}
.page-home .home-lottery .section-title {
  color: #FFFFFF;
}
.page-home .home-lottery .section-desc {
  color: rgba(248, 240, 227, 0.7);
}
.page-home .lottery-panel {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 34px 24px 30px;
  border: 1px solid rgba(245, 209, 102, 0.14);
  border-radius: var(--home-radius-lg);
  background: rgba(255, 255, 255, 0.04);
}
.page-home .lottery-panel::before {
  content: "DATA #44";
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.page-home .lottery-main {
  display: grid;
  gap: 18px;
  align-content: start;
}
.page-home .lottery-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--grad-gold);
  color: var(--navy-deep);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.page-home .lottery-status {
  margin: 0;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #FFFFFF;
}
.page-home .lottery-meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 240, 227, 0.7);
}
.page-home .period-toggle {
  padding-top: 14px;
  border-top: 1px solid rgba(245, 209, 102, 0.16);
}
.page-home .period-toggle summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.page-home .period-toggle summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}
.page-home .period-body {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 240, 227, 0.8);
}
.page-home .period-body strong {
  color: var(--gold);
}
.page-home .lottery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .lottery-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 180px;
  padding: 24px;
  border-radius: var(--home-radius-md);
  background: radial-gradient(280px 180px at 50% 50%, rgba(245, 209, 102, 0.12), transparent 70%);
}
.page-home .lottery-dot {
  display: block;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
.page-home .lottery-dot--gold {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 32% 30%, #FFF3C4, var(--gold) 42%, var(--gold-deep) 75%);
}
.page-home .lottery-dot--red {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 32% 30%, #FFE3E8, var(--red) 48%, #9A1425 80%);
}
.page-home .lottery-dot--paper {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 30% 30%, #FFFFFF, var(--paper) 45%, var(--silver) 78%);
}
.page-home .lottery-dot--blue {
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 30% 30%, #C8DCF2, var(--blue-lite) 50%, #1D3B5C 80%);
}
.page-home .lottery-dot--small {
  width: 22px;
  height: 22px;
}

.page-home .home-version {
  padding: 64px var(--home-gutter) 72px;
  background: var(--paper);
}
.page-home .split-panel {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-home .split-media {
  position: relative;
}
.page-home .split-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--shadow-card);
}
.page-home .split-body {
  max-width: 560px;
}
.page-home .split-body .section-desc {
  margin-bottom: 18px;
}
.page-home .feature-points {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.page-home .feature-points li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.page-home .feature-points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-gold);
}

.page-home .home-collect {
  padding: 64px var(--home-gutter) 72px;
  background: linear-gradient(180deg, var(--gold-lite) 0%, var(--paper) 100%);
}
.page-home .step-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: home-step;
}
.page-home .step-list li {
  position: relative;
  counter-increment: home-step;
  padding: 14px 18px 14px 52px;
  background: #FFFFFF;
  border-radius: var(--home-radius-md);
  box-shadow: var(--shadow-card);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.page-home .step-list li::before {
  content: counter(home-step, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-deep);
}

.page-home .home-trust {
  padding: 64px var(--home-gutter) 72px;
  background: var(--navy-deep);
  color: var(--paper);
}
.page-home .home-trust .section-head {
  margin-bottom: 32px;
}
.page-home .home-trust .section-kicker {
  color: var(--gold);
}
.page-home .home-trust .section-title {
  color: #FFFFFF;
}
.page-home .home-trust .section-desc {
  color: rgba(248, 240, 227, 0.75);
}
.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.page-home .trust-item {
  padding: 20px 16px;
  border: 1px solid rgba(245, 209, 102, 0.18);
  border-radius: var(--home-radius-md);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}
.page-home .trust-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold);
}
.page-home .trust-label {
  display: block;
  margin-top: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  color: rgba(248, 240, 227, 0.7);
}
.page-home .trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-next {
  padding: 56px var(--home-gutter) 64px;
  border-top: 1px solid rgba(10, 30, 63, 0.08);
  background: var(--paper);
}
.page-home .next-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.page-home .home-next .section-kicker {
  margin-bottom: 10px;
}
.page-home .home-next .section-title {
  margin-bottom: 24px;
}
.page-home .next-options {
  display: grid;
  gap: 14px;
}
.page-home .next-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--home-radius-md);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--navy);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.page-home .next-option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.page-home .next-option:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.page-home .next-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-deep);
}
.page-home .next-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
}
.page-home .next-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
}

@media (min-width: 900px) {
  .page-home {
    --home-gutter: 32px;
  }
  .page-home .home-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 56px;
    padding: 88px max(32px, calc((100vw - var(--container-max)) / 2)) 100px;
  }
  .page-home .hero-lead {
    font-size: 18px;
  }
  .page-home .hero-img {
    width: 100%;
    max-width: 420px;
  }
  .page-home .home-newsroom,
  .page-home .home-lottery,
  .page-home .home-version,
  .page-home .home-collect,
  .page-home .home-trust,
  .page-home .home-next {
    padding-right: max(32px, calc((100vw - var(--container-max)) / 2));
    padding-left: max(32px, calc((100vw - var(--container-max)) / 2));
  }
  .page-home .home-newsroom,
  .page-home .home-lottery,
  .page-home .home-version,
  .page-home .home-collect,
  .page-home .home-trust {
    padding-top: 80px;
    padding-bottom: 88px;
  }
  .page-home .newsroom-wrap {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 40px;
    align-items: start;
  }
  .page-home .newsroom-index-panel {
    padding: 36px 32px 30px;
  }
  .page-home .lottery-panel {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    padding: 44px 40px 40px;
  }
  .page-home .split-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
  }
  .page-home .split-panel--reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
  .page-home .split-panel--reverse .split-media {
    order: 2;
  }
  .page-home .trust-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .page-home .next-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .page-home .next-option {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
  }
  .page-home .next-desc {
    grid-column: 2;
    text-align: left;
  }
}
