.page-home {
  --home-hero-gap: 36px;
  --home-radius-lg: 18px;
  --home-radius-sm: 10px;
  --home-tile-offset: 18px;
}

.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 76px 0 64px;
  background: var(--grad-ocean);
  overflow: hidden;
  isolation: isolate;
}

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

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

.page-home .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 18, 36, 0.92) 0%, rgba(10, 30, 63, 0.78) 42%, rgba(27, 79, 114, 0.42) 100%);
}

.page-home .hero-shard {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.page-home .hero-shard--1 {
  bottom: -1px;
  right: 0;
  width: 30vw;
  height: 30vw;
  min-width: 220px;
  min-height: 220px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.24), rgba(255, 107, 53, 0.14));
}

.page-home .hero-shard--2 {
  top: 14%;
  left: -3vw;
  width: 11vw;
  height: 11vw;
  min-width: 84px;
  min-height: 84px;
  background: rgba(57, 255, 20, 0.1);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(24deg);
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-hero-gap);
  width: 100%;
}

.page-home .hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .breadcrumbs {
  margin-bottom: 20px;
}

.page-home .hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 107, 53, 0.45);
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.08);
}

.page-home .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0.015em;
  margin: 0 0 22px;
  color: var(--c-white);
  text-transform: uppercase;
  text-shadow: 0 8px 32px rgba(5, 18, 36, 0.35);
}

.page-home .hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
  margin: 0 0 28px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.page-home .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
}

.page-home .hero-facts li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .fact-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-neon);
  letter-spacing: 0.02em;
}

.page-home .hero-right {
  min-width: 0;
}

.page-home .hero-ticker {
  position: relative;
  padding: 20px;
  border-radius: var(--home-radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--c-glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.page-home .ticker-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--c-glass-border);
}

.page-home .ticker-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.page-home .ticker-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, 0.38);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.08);
  white-space: nowrap;
}

.page-home .ticker-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--home-radius-sm);
  background: rgba(10, 30, 63, 0.35);
  padding: 6px 0;
}

.page-home .ticker-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 63, 0.5) 0%, transparent 12%, transparent 88%, rgba(10, 30, 63, 0.5) 100%);
  pointer-events: none;
}

.page-home .ticker-track {
  display: flex;
  width: max-content;
  animation: page-home-ticker 28s linear infinite;
}

.page-home .ticker-viewport:hover .ticker-track {
  animation-play-state: paused;
}

.page-home .ticker-group {
  display: flex;
  gap: 0;
}

.page-home .ticker-item {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .ticker-item em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-accent);
  background: rgba(255, 107, 53, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
}

.page-home .ticker-item:last-child {
  border-right: none;
}

.page-home .ticker-note {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  letter-spacing: 0.06em;
}

.page-home .section {
  padding: var(--section-space) 0;
}

.page-home .home-version {
  background: var(--c-bg);
}

.page-home .version-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--home-radius-lg);
  box-shadow: 0 10px 30px rgba(10, 30, 63, 0.08);
}

.page-home .version-visual {
  position: relative;
  background: var(--c-primary);
}

.page-home .version-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}

.page-home .version-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 30, 63, 0.16) 0%, rgba(255, 107, 53, 0.08) 100%);
}

.page-home .version-copy {
  padding: 30px 24px 34px;
}

.page-home .version-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--c-text);
  line-height: 1.2;
}

.page-home .version-copy p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--c-muted);
  margin: 0 0 18px;
}

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

.page-home .version-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-text);
}

.page-home .version-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 2px;
  background: var(--grad-speed);
  border-radius: 2px;
}

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

.page-home .home-entrance {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(255, 255, 255, 0.06) calc(100% - 1px)),
    var(--c-primary);
}

.page-home .home-entrance .section-head {
  flex-wrap: wrap;
}

.page-home .home-entrance .section-index {
  color: rgba(57, 255, 20, 0.72);
}

.page-home .home-entrance .section-title {
  color: var(--c-white);
}

.page-home .entrance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

.page-home .entrance-card {
  position: relative;
  display: block;
  padding: 30px 26px 34px;
  background: var(--c-white);
  border-radius: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-tile-offset)), 0 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--c-text);
}

.page-home .entrance-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 24px;
  width: 42px;
  height: 4px;
  background: var(--grad-speed);
  border-radius: 0 0 4px 4px;
}

.page-home .entrance-card:hover {
  transform: translateY(-6px) skewX(-1deg);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.page-home .entrance-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: transparent;
  background: var(--grad-speed);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  margin-bottom: 18px;
}

.page-home .entrance-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}

.page-home .entrance-card p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0 0 20px;
}

.page-home .entrance-link {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  border-bottom: 1px solid rgba(255, 107, 53, 0.32);
  padding-bottom: 3px;
}

.page-home .home-live-data {
  background: var(--c-bg);
}

.page-home .live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 36px;
}

.page-home .live-stats {
  padding: 28px 24px;
  border-radius: var(--home-radius-lg);
  background: var(--grad-ocean);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

.page-home .stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
}

.page-home .stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--c-white);
  line-height: 1.1;
}

.page-home .live-stats .stat-row:nth-child(2) .stat-value {
  color: var(--c-neon);
}

.page-home .live-stats .stat-row:nth-child(3) .stat-value {
  color: var(--c-accent);
}

.page-home .chart-frame {
  grid-column: 1 / -1;
  border-radius: var(--home-radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 12px;
}

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

.page-home .live-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 8px 4px;
}

.page-home .live-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--c-text);
  margin: 0 0 16px;
}

.page-home .live-note > p:not(.live-lead) {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--c-muted);
  margin: 0 0 20px;
}

.page-home .trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.24);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-primary);
  align-self: flex-start;
  margin-bottom: 22px;
}

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

.page-home .home-news {
  background: var(--c-white);
}

.page-home .section-more {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-accent);
  text-decoration: none;
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home .section-more:hover {
  background: var(--c-accent);
  color: var(--c-white);
}

.page-home .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  margin-top: 36px;
}

.page-home .news-main {
  display: grid;
  gap: 18px;
}

.page-home .news-item {
  position: relative;
  padding: 24px 26px;
  background: var(--c-bg);
  border-radius: var(--home-radius-sm);
  border-left: 3px solid var(--c-accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .news-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(10, 30, 63, 0.08);
}

.page-home .news-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 12px 0 8px;
  color: var(--c-text);
  line-height: 1.35;
}

.page-home .news-item p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0;
}

.page-home .news-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-home .image-frame-dynamic {
  width: 100%;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-primary);
}

.page-home .image-frame-dynamic img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.page-home .image-frame-dynamic:hover img {
  transform: scale(1.03);
}

.page-home .image-frame-dynamic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(57, 255, 20, 0.06));
  pointer-events: none;
}

.page-home .news-caption {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0 4px;
}

.page-home .btn-small {
  font-size: 0.8rem;
  padding: 8px 16px;
}

.page-home .home-cta {
  position: relative;
  background: var(--grad-ocean);
  overflow: hidden;
}

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

.page-home .cta-panel {
  position: relative;
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--home-radius-lg);
  background: rgba(10, 30, 63, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.page-home .cta-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 220px;
  background: radial-gradient(ellipse, rgba(57, 255, 20, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.2;
  color: var(--c-white);
  margin: 0 0 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.page-home .cta-sub {
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
  max-width: 52ch;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

@keyframes page-home-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .page-home .hero-inner {
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
  }

  .page-home .hero-left {
    padding-right: 20px;
  }

  .page-home .hero-title {
    font-size: clamp(3rem, 9vw, 5.6rem);
  }

  .page-home .version-card {
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
  }

  .page-home .version-visual {
    min-height: 360px;
  }

  .page-home .version-copy {
    padding: 40px 38px;
  }

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

  .page-home .live-grid {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

  .page-home .news-layout {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

  .page-home .news-item {
    padding: 28px 32px;
  }

  .page-home .cta-panel {
    padding: 70px 48px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }

  .page-home .hero-title {
    font-size: 5.8rem;
  }

  .page-home .entrance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .entrance-card {
    padding: 32px 22px 38px;
  }

  .page-home .live-grid {
    gap: 64px;
  }

  .page-home .news-layout {
    gap: 56px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}
