.page-home {
  --bg: #0A1628;
  --bg-2: #1B2B4B;
  --bg-3: #101E36;
  --accent: #00E676;
  --accent-orange: #FF7A00;
  --text: #F5F7FA;
  --text-2: #C9D1D9;
  --text-3: #7A8BA0;
  --mint: #E6FFF2;
  --radius-l: 24px;
  --radius-m: 16px;
  --radius-pill: 999px;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", serif;
  --font-mono: "Roboto Mono", "SF Mono", "Courier New", monospace;
  --grid-gap: clamp(16px, 2vw, 28px);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-home .home-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== cover ===== */
.page-home .home-cover {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0 32px;
  position: relative;
}

.page-home .home-cover::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 230, 118, 0.06) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.page-home .home-cover__main {
  position: relative;
  z-index: 1;
}

.page-home .home-cover__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.page-home .home-cover__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--accent);
  color: #0A1628;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}

.page-home .home-cover__meta {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.page-home .home-cover__title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  background: linear-gradient(120deg, #F5F7FA 30%, #00E676 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .home-cover__lead {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 28px;
}

.page-home .home-cover__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.page-home .home-cover__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.page-home .home-cover__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.page-home .btn--orange {
  background: var(--accent-orange);
  color: #0A1628;
}

.page-home .btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
}

.page-home .btn--ghost {
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--accent);
  background: transparent;
}

.page-home .btn--ghost:hover {
  background: rgba(0, 230, 118, 0.08);
  transform: translateY(-2px);
}

.page-home .home-cover__visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

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

.page-home .home-cover__floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  color: var(--text);
}

.page-home .home-cover__floating-label {
  font-size: 12px;
  color: var(--text-3);
  margin: 0 0 4px;
}

.page-home .home-cover__floating-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--accent);
  line-height: 1.2;
}

.page-home .home-cover__floating-num span {
  font-size: 13px;
  color: var(--text-3);
  margin-left: 4px;
}

.page-home .home-cover__floating-sub {
  font-size: 12px;
  color: var(--text-2);
  margin: 2px 0 0;
}

.page-home .home-cover__new-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-orange);
  color: #0A1628;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
}

/* ===== ticker ===== */
.page-home .home-ticker {
  margin: 8px 0 0;
  background: var(--bg-3);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-l);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.page-home .home-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: homeTickerGlow 3s ease-in-out infinite;
}

@keyframes homeTickerGlow {
  0%, 100% { opacity: 0.3; transform: translateX(-30%); }
  50% { opacity: 1; transform: translateX(30%); }
}

.page-home .home-ticker__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.page-home .home-ticker__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--accent);
}

.page-home .home-ticker__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
  margin: 0;
}

.page-home .site-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: homePulse 1.6s ease infinite;
}

@keyframes homePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

.page-home .home-ticker__hint {
  font-size: 11px;
  color: var(--text-3);
  margin: 0 0 0 auto;
}

.page-home .home-ticker__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.page-home .home-ticker__group {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: homeTickerScroll 40s linear infinite;
}

.page-home .home-ticker__group:hover {
  animation-play-state: paused;
}

@keyframes homeTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page-home .home-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.page-home .home-ticker__league {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  background: rgba(0, 230, 118, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.page-home .home-ticker__team {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.page-home .home-ticker__score {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: #0A1628;
  padding: 3px 12px;
  border-radius: 8px;
}

.page-home .home-ticker__state {
  font-size: 11px;
  color: var(--text-3);
}

/* ===== change section ===== */
.page-home .home-change {
  padding: 64px 0 32px;
}

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

.page-home .home-change__index {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.8;
  margin: 0 0 8px;
  line-height: 1;
}

.page-home .home-change__heading {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.page-home .home-change__lead {
  color: var(--text-2);
  font-size: 15px;
  max-width: 640px;
  margin: 0;
}

.page-home .home-change__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.page-home .home-change__card {
  background: var(--bg-2);
  border-radius: var(--radius-l);
  padding: 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .home-change__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.5);
}

.page-home .home-change__card--accent {
  background: linear-gradient(135deg, #1B2B4B 0%, #14311F 100%);
  border-color: rgba(0, 230, 118, 0.3);
}

.page-home .home-change__num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  color: rgba(0, 230, 118, 0.35);
  line-height: 1;
  margin-bottom: 16px;
}

.page-home .home-change__card--accent .home-change__num {
  color: rgba(255, 122, 0, 0.5);
}

.page-home .home-change__card-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}

.page-home .home-change__card-text {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 20px;
  line-height: 1.7;
}

.page-home .home-change__stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 22, 40, 0.6);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.page-home .home-change__stat-label {
  font-size: 12px;
  color: var(--text-3);
}

.page-home .home-change__stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}

.page-home .home-change__img-wrap {
  margin-top: 32px;
  border-radius: var(--radius-l);
  overflow: hidden;
  max-height: 320px;
}

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

/* ===== commute ===== */
.page-home .home-commute {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 0 64px;
}

.page-home .home-commute__visual {
  border-radius: var(--radius-l);
  overflow: hidden;
  order: 2;
}

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

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

.page-home .home-commute__index {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 0 0 8px;
  line-height: 1;
}

.page-home .home-commute__heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.page-home .home-commute__lead {
  color: var(--text-2);
  font-size: 15px;
  margin: 0 0 28px;
}

.page-home .home-commute__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.page-home .home-commute__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .home-commute__step-num {
  width: 32px;
  height: 32px;
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.page-home .home-commute__step-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
}

.page-home .home-commute__step-text {
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.6;
}

/* ===== index ===== */
.page-home .home-index {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .home-index__head {
  margin-bottom: 24px;
}

.page-home .home-index__index {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
  line-height: 1;
}

.page-home .home-index__heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.page-home .home-index__desc {
  color: var(--text-2);
  font-size: 14px;
  margin: 0;
}

.page-home .home-index__filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.page-home .home-index__filter-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--text-2);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--font-sans);
}

.page-home .home-index__filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-home .home-index__filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A1628;
  font-weight: 700;
}

.page-home .home-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.page-home .home-index__card {
  background: var(--bg-2);
  border-radius: var(--radius-m);
  padding: 24px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
  display: block;
}

.page-home .home-index__card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 230, 118, 0.4);
}

.page-home .home-index__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 122, 0, 0.15);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.page-home .home-index__num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: rgba(0, 230, 118, 0.4);
  margin: 0 0 12px;
  line-height: 1;
}

.page-home .home-index__card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.page-home .home-index__card-desc {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 16px;
  line-height: 1.6;
}

.page-home .home-index__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

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

.page-home .home-index__preview {
  margin-top: 32px;
  border-radius: var(--radius-l);
  overflow: hidden;
}

.page-home .home-index__preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== trust ===== */
.page-home .home-trust {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, rgba(0, 230, 118, 0.04) 0%, transparent 100%);
  border-radius: var(--radius-l);
  margin: 32px 0 0;
  padding: 40px 24px;
  text-align: center;
}

.page-home .home-trust__kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 700;
}

.page-home .home-trust__heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin: 0 0 28px;
}

.page-home .home-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.page-home .home-trust__item {
  text-align: center;
}

.page-home .home-trust__num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 4px;
  line-height: 1.1;
}

.page-home .home-trust__num span {
  font-size: 14px;
  color: var(--text-3);
  margin-left: 2px;
}

.page-home .home-trust__text {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
}

.page-home .home-trust__statement {
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.7;
  padding: 16px 20px;
  background: rgba(0, 230, 118, 0.06);
  border-radius: var(--radius-m);
  border-left: 3px solid var(--accent);
  text-align: left;
}

.page-home .home-trust__contact {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}

.page-home .home-trust__contact:hover {
  background: rgba(0, 230, 118, 0.1);
}

/* ===== responsive ===== */
@media (min-width: 768px) {
  .page-home .home-shell {
    padding: 0 32px;
  }

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

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

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

  .page-home .home-commute__visual img {
    max-height: 480px;
    object-fit: cover;
  }
}

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

  .page-home .home-cover {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    padding: 72px 0 48px;
    min-height: 640px;
  }

  .page-home .home-cover__visual {
    min-height: 520px;
  }

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

  .page-home .home-commute {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 64px;
  }

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

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

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

@media (min-width: 1280px) {
  .page-home .home-shell {
    max-width: 1440px;
  }
}
