.page-home {
  --home-kicker-color: var(--accent-purple);
  --home-hero-min-height: 720px;
  --home-card-bg: rgba(255, 255, 255, 0.04);
  --home-card-border: rgba(255, 255, 255, 0.08);
  position: relative;
}

.page-home .home-hero {
  position: relative;
  min-height: var(--home-hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.page-home .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.75) 50%, rgba(18, 42, 74, 0.6) 100%);
  z-index: 0;
}

.page-home .hero-bg-diagonal {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 0%, transparent 60%, rgba(255, 90, 31, 0.18) 60%, rgba(255, 90, 31, 0.08) 65%, transparent 65%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

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

.page-home .home-hero-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px 0 60px;
}

.page-home .home-hero-kicker {
  margin-bottom: 16px;
}

.page-home .hero-kicker {
  font-family: var(--font-data);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
}

.page-home .home-hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-light);
  margin: 0 0 20px;
}

.page-home .home-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mist);
  max-width: 620px;
  margin: 0 0 32px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .home-hero-stats {
  width: 100%;
}

.page-home .hero-stats-panel {
  padding: 24px 28px;
  border-radius: var(--radius);
}

.page-home .hero-stats-label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mist);
  margin: 0 0 20px;
}

.page-home .hero-stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.page-home .hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .hero-stat-num {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
}

.page-home .stat-orange {
  color: var(--accent-orange);
}

.page-home .stat-purple {
  color: var(--accent-purple);
}

.page-home .stat-green {
  color: var(--data-green);
}

.page-home .hero-stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-mist);
}

.page-home .hero-stats-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.page-home .hero-stats-tag {
  font-size: 12px;
}

.page-home .hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.page-home .hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-orange), transparent);
  animation: home-scroll-pulse 2s ease-in-out infinite;
}

.page-home .hero-scroll-text {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mist);
  writing-mode: vertical-rl;
}

@keyframes home-scroll-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-home .home-quick {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deeper) 100%);
}

.page-home .home-quick-head {
  margin-bottom: 40px;
}

.page-home .home-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .quick-card {
  position: relative;
  background: var(--home-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  display: block;
}

.page-home .quick-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.page-home .quick-card-index {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--accent-purple);
  letter-spacing: 0.1em;
}

.page-home .quick-card-icon {
  color: var(--accent-orange);
  margin: 20px 0;
}

.page-home .quick-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  margin: 0 0 12px;
}

.page-home .quick-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mist);
  margin: 0 0 24px;
}

.page-home .quick-card-link {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--accent-orange);
  letter-spacing: 0.05em;
  transition: color 0.3s var(--ease-out);
}

.page-home .quick-card:hover .quick-card-link {
  color: var(--text-light);
}

.page-home .home-scorer {
  padding: 72px 0;
  position: relative;
}

.page-home .home-scorer-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.page-home .home-scorer-copy {
  flex: 1;
}

.page-home .home-scorer-head {
  margin-bottom: 16px;
}

.page-home .home-scorer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mist);
  max-width: 520px;
  margin-bottom: 24px;
}

.page-home .home-scorer-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .scorer-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .scorer-meta-label {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-mist);
  letter-spacing: 0.08em;
}

.page-home .scorer-meta-value {
  font-family: var(--font-data);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.page-home .home-scorer-board {
  flex: 1;
  position: relative;
}

.page-home .scorer-board-panel {
  padding: 28px 24px;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}

.page-home .scorer-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.page-home .scorer-board-title {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

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

.page-home .scorer-board-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s var(--ease-out);
}

.page-home .scorer-board-item:last-child {
  border-bottom: none;
}

.page-home .scorer-board-item:hover {
  background: rgba(125, 60, 233, 0.1);
}

.page-home .scorer-rank {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-purple);
  width: 32px;
}

.page-home .scorer-name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.page-home .scorer-team {
  font-size: 13px;
  color: var(--text-mist);
  width: 64px;
}

.page-home .scorer-goals {
  font-family: var(--font-data);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-orange);
}

.page-home .scorer-board-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .scorer-foot-text {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-mist);
}

.page-home .scorer-chart {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.page-home .scorer-chart-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .home-injury {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg-deeper) 0%, var(--bg-deep) 100%);
}

.page-home .home-injury-head {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .home-injury-head-left {
  margin-bottom: 0;
}

.page-home .home-injury-filter {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .injury-filter-label {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--text-mist);
  padding-top: 4px;
}

.page-home .injury-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-injury-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .injury-img-wrap {
  position: relative;
}

.page-home .injury-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .injury-feed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
}

.page-home .injury-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-home .injury-feed-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.page-home .injury-feed-item:last-child {
  border-bottom: none;
}

.page-home .injury-feed-tag {
  flex-shrink: 0;
}

.page-home .injury-feed-content {
  flex: 1;
  min-width: 200px;
}

.page-home .injury-feed-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 4px;
}

.page-home .injury-feed-meta {
  font-size: 13px;
  color: var(--text-mist);
  margin: 0;
}

.page-home .injury-feed-time {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-mist);
  text-align: right;
  white-space: nowrap;
}

.page-home .injury-feed-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .injury-feed-foot p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mist);
  margin: 0;
}

.page-home .home-version {
  padding: 72px 0;
}

.page-home .home-version-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-home .version-img-wrap {
  order: 1;
}

.page-home .version-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .home-version-copy {
  order: 2;
  flex: 1;
}

.page-home .home-version-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mist);
  margin-bottom: 24px;
} 

.page-home .version-feature-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .version-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .version-feature-icon {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(255, 90, 31, 0.1);
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-home .version-feature-body {
  flex: 1;
}

.page-home .version-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 4px;
}

.page-home .version-feature-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mist);
  margin: 0;
}

.page-home .home-version-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-tools {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deeper) 100%);
}

.page-home .home-tools-head {
  margin-bottom: 40px;
}

.page-home .home-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-tool-card {
  background: var(--home-card-bg);
  border: 1px solid var(--home-card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.page-home .home-tool-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.page-home .tool-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.page-home .tool-card-code {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-mist);
  letter-spacing: 0.08em;
}

.page-home .tool-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 12px;
}

.page-home .tool-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mist);
  margin: 0 0 20px;
  min-height: 66px;
}

.page-home .tool-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

.page-home .tool-card-meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-mist);
}

.page-home .tool-card-link {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
}

.page-home .home-tool-card:hover .tool-card-link {
  color: var(--text-light);
}

.page-home .home-tools-steps {
  margin-top: 40px;
  background: rgba(125, 60, 233, 0.05);
  border-left: 3px solid var(--accent-purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
}

.page-home .steps-head {
  margin-bottom: 16px;
}

.page-home .steps-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.page-home .steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .steps-item {
  position: relative;
  padding-left: 0;
}

.page-home .steps-num {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 8px;
}

.page-home .steps-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 6px;
}

.page-home .steps-item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mist);
  margin: 0;
}

.page-home .home-platform {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-platform-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 28px;
}

.page-home .platform-copy {
  flex: 1;
}

.page-home .platform-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mist);
  max-width: 560px;
  margin: 0;
}

.page-home .platform-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.page-home .platform-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px 8px;
}

.page-home .platform-stat-num {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.page-home .platform-stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-mist);
}

.page-home .home-cta {
  padding: 72px 0 96px;
}

.page-home .home-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 28px;
  border-radius: var(--radius);
  align-items: flex-start;
}

.page-home .cta-copy {
  flex: 1;
}

.page-home .cta-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mist);
  max-width: 520px;
  margin: 0;
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 768px) {
  .page-home .home-hero {
    min-height: 760px;
  }

  .page-home .home-hero-main {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 100px 0 80px;
  }

  .page-home .home-hero-copy {
    flex: 1.2;
  }

  .page-home .home-hero-stats {
    flex: 0.8;
  }

  .page-home .home-hero-title {
    font-size: 52px;
  }

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

  .page-home .home-scorer-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-home .home-scorer-copy {
    flex: 1;
    padding-right: 32px;
  }

  .page-home .home-scorer-board {
    flex: 1.1;
  }

  .page-home .home-injury-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .home-injury-layout {
    grid-template-columns: 4fr 6fr;
    gap: 32px;
    align-items: stretch;
  }

  .page-home .home-version-layout {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .page-home .version-img-wrap {
    order: 1;
    flex: 0.9;
  }

  .page-home .home-version-copy {
    order: 2;
    flex: 1.1;
  }

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

  .page-home .steps-list {
    flex-direction: row;
    gap: 0;
  }

  .page-home .steps-item {
    flex: 1;
    padding-right: 32px;
  }

  .page-home .steps-item + .steps-item {
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .page-home .home-platform-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 48px;
  }

  .page-home .platform-copy {
    flex: 1.2;
  }

  .page-home .platform-stats {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-home .home-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-scorer-layout {
    gap: 72px;
  }

  .page-home .home-scorer-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}

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

  .page-home .quick-card,
  .page-home .home-tool-card {
    transition: none;
  }
}
