.page-home {
  --home-primary-glow: rgba(255, 90, 30, 0.35);
  --home-accent-glow: rgba(249, 211, 66, 0.25);
  --home-purple-glow: rgba(138, 43, 226, 0.3);
  background: var(--tf-bg);
  overflow-x: hidden;
}

.page-home .container {
  width: min(var(--tf-content), calc(100% - 48px));
  margin-inline: auto;
}

.page-home .tf-kicker {
  font-family: var(--tf-f-disp);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tf-accent);
  margin-bottom: 0.75rem;
}

.page-home .tf-display,
.page-home .tf-h2,
.page-home .tf-h3 {
  font-family: var(--tf-f-disp);
  color: var(--tf-text);
}

.page-home .tf-prose {
  color: var(--tf-text-dim);
  line-height: 1.8;
  max-width: 56ch;
}

.page-home .tf-prose strong {
  color: var(--tf-text);
  font-weight: 700;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  padding: 0.9rem 1.8rem;
  font-family: var(--tf-f-disp);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform var(--tf-transition), box-shadow var(--tf-transition), filter var(--tf-transition);
  will-change: transform;
}

.page-home .btn-primary {
  background: var(--tf-primary);
  color: #fff;
  box-shadow: 0 0 0 1px var(--tf-primary), 0 6px 30px var(--home-primary-glow);
}

.page-home .btn-primary:hover,
.page-home .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--tf-primary), 0 10px 40px var(--home-primary-glow);
  filter: brightness(1.1);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--tf-accent);
  box-shadow: inset 0 0 0 2px var(--tf-accent);
  border: none;
}

.page-home .btn-outline:hover,
.page-home .btn-outline:focus-visible {
  background: var(--tf-accent);
  color: var(--tf-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--home-accent-glow);
}

.page-home .tf-section {
  position: relative;
  padding-block: 4.5rem 5rem;
}

.page-home .tf-section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home .tf-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  background: rgba(255, 90, 30, 0.12);
  border: 1px solid rgba(255, 90, 30, 0.4);
  color: var(--tf-primary);
  font-family: var(--tf-f-disp);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== Hero Arena ===== */
.page-home .hero-arena {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--tf-bg);
  overflow: hidden;
}

.page-home .hero-arena::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(138, 43, 226, 0.18) 55%, rgba(255, 90, 30, 0.12) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.page-home .hero-arena::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--tf-primary) 0%, var(--tf-accent) 40%, transparent 40%);
}

.page-home .hero-arena__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .hero-arena__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 90, 30, 0.08);
  border: 1px solid rgba(255, 90, 30, 0.3);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  color: var(--tf-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.4rem;
}

.page-home .hero-arena__title {
  font-size: 2.7rem;
  line-height: 1.12;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--tf-text) 0%, var(--tf-primary) 60%, var(--tf-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.page-home .hero-arena__lede {
  font-size: 1.04rem;
  color: var(--tf-text-dim);
  line-height: 1.85;
  max-width: 56ch;
  margin-bottom: 2rem;
}

.page-home .hero-arena__lede strong {
  color: var(--tf-accent);
}

.page-home .hero-arena__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.page-home .hero-arena__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-home .hero-arena__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.page-home .hero-arena__meta-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 3px;
  height: 80%;
  background: linear-gradient(180deg, var(--tf-primary), var(--tf-purple));
}

.page-home .hero-arena__meta-label {
  font-size: 0.78rem;
  color: var(--tf-text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .hero-arena__meta-unit {
  font-size: 0.9rem;
  color: var(--tf-accent);
  margin-left: 0.2rem;
}

.page-home .hero-arena__visual {
  position: relative;
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  transform: rotate(-1.2deg) translateX(2%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 90, 30, 0.25);
  background: linear-gradient(135deg, var(--tf-bg-card), var(--tf-bg-deep));
}

.page-home .hero-arena__visual-frame {
  position: relative;
  display: block;
  overflow: hidden;
}

.page-home .hero-arena__visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.2) 35%, rgba(255, 90, 30, 0.08) 100%);
  pointer-events: none;
}

.page-home .hero-arena__visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.page-home .hero-arena__speedline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
}

.page-home .hero-arena__speedline svg {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

/* ===== Countdown ===== */
.page-home .countdown-section {
  padding-block: 3rem;
}

.page-home .countdown-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tf-border) 20%, var(--tf-border) 80%, transparent);
}

.page-home .countdown-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 19, 48, 0.92), rgba(10, 14, 39, 0.95));
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  clip-path: polygon(0 16px, 16px 0, 100% 0, 100% 100%, 0 100%);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
}

.page-home .countdown-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--home-primary-glow), transparent 70%);
  z-index: 0;
}

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

.page-home .countdown-panel__title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.page-home .countdown-panel__desc {
  color: var(--tf-text-dim);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 58ch;
}

.page-home .countdown-panel__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.page-home .countdown-panel__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 70px;
  background: var(--tf-bg-deep);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius);
  padding: 0.5rem 0.8rem;
}

.page-home .countdown-panel__num {
  font-family: var(--tf-f-disp);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tf-accent);
  line-height: 1;
}

.page-home .countdown-panel__num--alert {
  color: var(--tf-danger);
}

.page-home .countdown-panel__unit {
  font-family: var(--tf-f-disp);
  font-size: 0.7rem;
  color: var(--tf-text-dim);
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.page-home .countdown-panel__sep {
  font-family: var(--tf-f-disp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tf-primary);
  align-self: center;
}

/* ===== Data Wall ===== */
.page-home .data-wall {
  position: relative;
}

.page-home .data-wall__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-home .data-wall__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.page-home .data-wall__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--tf-bg) 0%, transparent 25%, transparent 75%, var(--tf-bg) 100%);
}

.page-home .data-wall__head,
.page-home .data-wall__grid {
  position: relative;
  z-index: 1;
}

.page-home .data-wall__intro {
  color: var(--tf-text-dim);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 70ch;
}

.page-home .data-wall__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .data-card {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(13, 19, 48, 0.95), rgba(10, 14, 39, 0.98));
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius);
  transition: transform var(--tf-transition), border-color var(--tf-transition), box-shadow var(--tf-transition);
}

.page-home .data-card:hover,
.page-home .data-card:focus-within {
  border-color: rgba(255, 90, 30, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 90, 30, 0.35), 0 14px 40px rgba(0, 0, 0, 0.45);
  transform: scale(1.015);
}

.page-home .data-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.page-home .data-card__update {
  font-family: var(--tf-f-disp);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--tf-success);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.page-home .data-card__update::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--tf-success);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
}

.page-home .data-card__table {
  display: flex;
  flex-direction: column;
}

.page-home .data-card__row {
  display: grid;
  grid-template-columns: 56px 1.4fr 0.8fr 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(31, 42, 74, 0.6);
  font-size: 0.84rem;
  transition: background var(--tf-transition);
}

.page-home .data-card__row:last-child {
  border-bottom: none;
}

.page-home .data-card__row:hover {
  background: rgba(255, 90, 30, 0.06);
}

.page-home .data-card__row--head {
  font-family: var(--tf-f-disp);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--tf-text-dim);
  text-transform: uppercase;
  padding-bottom: 0.55rem;
}

.page-home .data-card__rank {
  font-family: var(--tf-f-disp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tf-primary);
}

.page-home .data-card__row:nth-child(3) .data-card__rank {
  color: var(--tf-accent);
}

.page-home .data-card__team {
  font-weight: 500;
  color: var(--tf-text);
}

.page-home .data-card__rate {
  font-family: var(--tf-f-disp);
  font-weight: 700;
  color: var(--tf-text);
}

.page-home .data-card__delta {
  font-family: var(--tf-f-disp);
  font-size: 0.76rem;
  font-weight: 700;
}

.page-home .data-card__delta--up {
  color: var(--tf-success);
}

.page-home .data-card__delta--down {
  color: var(--tf-danger);
}

.page-home .data-card__delta--flat {
  color: var(--tf-text-dim);
}

.page-home .data-highlight {
  background: linear-gradient(160deg, rgba(138, 43, 226, 0.12), rgba(13, 19, 48, 0.98));
  border: 1px solid rgba(138, 43, 226, 0.35);
  border-radius: var(--tf-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.page-home .data-highlight__title {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}

.page-home .data-highlight__bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.page-home .data-highlight__bar-item {
  display: grid;
  grid-template-columns: 88px 1fr 52px;
  align-items: center;
  gap: 0.6rem;
}

.page-home .data-highlight__bar-label {
  font-size: 0.78rem;
  color: var(--tf-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .data-highlight__bar-track {
  height: 8px;
  background: rgba(245, 247, 250, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.page-home .data-highlight__bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--tf-primary), var(--tf-accent));
  border-radius: 999px;
  box-shadow: 0 0 12px var(--home-primary-glow);
}

.page-home .data-highlight__bar-value {
  font-family: var(--tf-f-disp);
  font-size: 0.76rem;
  color: var(--tf-accent);
  text-align: right;
}

.page-home .data-highlight__link {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== Reward Section ===== */
.page-home .reward-section {
  position: relative;
}

.page-home .reward-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--tf-border) 0%, var(--tf-primary) 50%, transparent 100%);
}

.page-home .reward-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.page-home .reward-layout__visual {
  position: relative;
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 90, 30, 0.15), rgba(249, 211, 66, 0.08));
  box-shadow: 0 0 60px rgba(255, 90, 30, 0.12);
}

.page-home .reward-layout__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.page-home .reward-layout__copy {
  position: relative;
}

.page-home .reward-layout__copy::before {
  content: '999';
  position: absolute;
  top: -0.7rem;
  right: 0;
  font-family: var(--tf-f-disp);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--tf-accent);
  opacity: 0.09;
  pointer-events: none;
}

.page-home .reward-layout__desc {
  margin-bottom: 1.4rem;
}

.page-home .reward-layout__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.page-home .reward-layout__item {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.92rem;
  color: var(--tf-text-dim);
  line-height: 1.65;
}

.page-home .reward-layout__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  background: var(--tf-accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 8px var(--home-accent-glow);
}

.page-home .reward-layout__cta {
  min-width: 220px;
}

/* ===== Transfer Section ===== */
.page-home .transfer-section {
  position: relative;
}

.page-home .transfer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--tf-primary) 0%, transparent 30%, transparent 60%, var(--tf-purple) 100%);
}

.page-home .transfer-section__intro {
  color: var(--tf-text-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.page-home .transfer-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .transfer-section__files {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-home .transfer-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid var(--tf-border);
  background: linear-gradient(145deg, var(--tf-bg-card), var(--tf-bg-deep));
  border-radius: var(--tf-radius);
  transition: border-color var(--tf-transition), box-shadow var(--tf-transition), transform var(--tf-transition);
  position: relative;
  overflow: hidden;
}

.page-home .transfer-card:hover {
  border-color: rgba(255, 90, 30, 0.6);
  box-shadow: 0 0 30px rgba(255, 90, 30, 0.15);
  transform: translateX(4px);
}

.page-home .transfer-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--tf-primary), var(--tf-primary-dark));
  color: #fff;
  font-family: var(--tf-f-disp);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.page-home .transfer-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.page-home .transfer-card__desc {
  color: var(--tf-text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.page-home .transfer-card__meta {
  display: inline-block;
  font-size: 0.74rem;
  color: var(--tf-text-dim);
  letter-spacing: 0.04em;
  background: rgba(245, 247, 250, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 247, 250, 0.08);
}

.page-home .transfer-section__preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(160deg, rgba(31, 42, 74, 0.3), rgba(13, 19, 48, 0.98));
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  padding: 1.5rem;
}

.page-home .transfer-section__preview img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--tf-radius);
  border: 1px solid rgba(31, 42, 74, 0.4);
  max-height: 240px;
}

.page-home .transfer-section__preview-note {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--tf-text-dim);
  line-height: 1.6;
  padding: 0.8rem;
  background: rgba(10, 14, 39, 0.5);
  border-left: 3px solid var(--tf-primary);
  border-radius: 0 var(--tf-radius) var(--tf-radius) 0;
}

.page-home .transfer-section__preview-note strong {
  color: var(--tf-text);
  font-family: var(--tf-f-disp);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.page-home .transfer-section__download {
  margin-top: 0.4rem;
}

/* ===== Version Section ===== */
.page-home .version-section {
  position: relative;
}

.page-home .version-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(138, 43, 226, 0.08), transparent);
  z-index: 0;
}

.page-home .version-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.page-home .version-shell__desc {
  margin-bottom: 2rem;
}

.page-home .version-shell__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.page-home .version-shell__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-left: 2px solid var(--tf-purple);
  padding-left: 1rem;
}

.page-home .version-shell__stat-label {
  font-size: 0.78rem;
  color: var(--tf-text-dim);
  letter-spacing: 0.05em;
}

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

.page-home .version-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--tf-purple) 0 8px, transparent 8px 16px);
  opacity: 0.4;
}

.page-home .version-steps__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2rem;
}

.page-home .version-steps__item:last-child {
  padding-bottom: 0;
}

.page-home .version-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  background: var(--tf-bg-card);
  border: 1px solid rgba(138, 43, 226, 0.5);
  color: var(--tf-purple);
  font-family: var(--tf-f-disp);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(138, 43, 226, 0.15);
  z-index: 1;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.page-home .version-steps__content {
  padding-top: 0.2rem;
}

.page-home .version-steps__title {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.page-home .version-steps__desc {
  color: var(--tf-text-dim);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 46ch;
}

.page-home .version-shell__link {
  margin-top: 1rem;
}

/* ===== Articles ===== */
.page-home .articles-section {
  position: relative;
}

.page-home .articles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tf-border) 25%, var(--tf-border) 75%, transparent);
}

.page-home .articles-section__more {
  align-self: flex-start;
  margin-bottom: 2rem;
}

.page-home .articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.page-home .article-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(13, 19, 48, 0.9), rgba(10, 14, 39, 0.96));
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius);
  transition: transform var(--tf-transition), border-color var(--tf-transition), box-shadow var(--tf-transition);
  position: relative;
  overflow: hidden;
}

.page-home .article-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 90, 30, 0.06), transparent);
  transition: width var(--tf-transition);
}

.page-home .article-card:hover {
  border-color: rgba(255, 90, 30, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.page-home .article-card:hover::after {
  width: 100%;
}

.page-home .article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.page-home .article-card__date {
  font-size: 0.76rem;
  color: var(--tf-text-dim);
  letter-spacing: 0.04em;
}

.page-home .article-card__title {
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.page-home .article-card__excerpt {
  font-size: 0.86rem;
  color: var(--tf-text-dim);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.page-home .article-card__link {
  margin-top: auto;
  font-family: var(--tf-f-disp);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tf-primary);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--tf-transition), gap var(--tf-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.page-home .article-card__link:hover {
  color: var(--tf-accent);
  gap: 0.7rem;
}

/* ===== Trust Section ===== */
.page-home .trust-section {
  padding-bottom: 4rem;
}

.page-home .trust-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 19, 48, 0.75) 100%);
  pointer-events: none;
}

.page-home .trust-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(13, 19, 48, 0.9), rgba(10, 14, 39, 0.95));
  border: 1px solid rgba(255, 90, 30, 0.25);
  border-radius: var(--tf-radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 0 50px rgba(255, 90, 30, 0.08);
}

.page-home .trust-panel__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--tf-primary), var(--tf-accent));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: 0 0 24px var(--home-primary-glow);
}

.page-home .trust-panel__badge-inner {
  font-family: var(--tf-f-disp);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tf-bg);
}

.page-home .trust-panel__copy {
  flex: 1;
}

.page-home .trust-panel__title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.page-home .trust-panel__desc {
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.page-home .trust-panel__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}

.page-home .trust-panel__item {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.84rem;
  color: var(--tf-text-dim);
}

.page-home .trust-panel__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  background: var(--tf-accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
}

/* ===== Breadcrumb ===== */
.page-home .page-breadcrumb {
  padding: 0 24px 2.5rem;
}

.page-home .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .breadcrumb-item {
  font-size: 0.78rem;
  color: var(--tf-text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-home .breadcrumb-item a {
  color: var(--tf-accent);
  text-decoration: none;
  transition: color var(--tf-transition);
}

.page-home .breadcrumb-item a:hover {
  color: var(--tf-primary);
}

.page-home .breadcrumb-item + .breadcrumb-item::before {
  content: '→';
  color: var(--tf-primary);
  font-family: var(--tf-f-disp);
  font-size: 0.75rem;
}

.page-home .breadcrumb-item[aria-current="page"] {
  color: var(--tf-primary);
  font-weight: 500;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-arena__visual {
    transform: rotate(-1.2deg) translateX(2%);
    transition: none;
  }

  .page-home .data-card,
  .page-home .article-card,
  .page-home .transfer-card {
    transition: none;
  }

  .page-home .hero-arena__speedline {
    opacity: 0.4;
  }
}

/* ===== Desktop ≥ 768px ===== */
@media (min-width: 768px) {
  .page-home .tf-section {
    padding-block: 5.5rem 6rem;
  }

  .page-home .tf-section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }

  .page-home .tf-section-head > *:last-child {
    max-width: 54%;
  }

  .page-home .hero-arena {
    padding: 7rem 0 6rem;
  }

  .page-home .hero-arena__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .page-home .hero-arena__title {
    font-size: 3.2rem;
  }

  .page-home .hero-arena__visual {
    min-height: 450px;
  }

  .page-home .countdown-section {
    padding-block: 3.5rem;
  }

  .page-home .countdown-panel {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 2.5rem 2.8rem;
  }

  .page-home .countdown-panel__timer {
    justify-content: flex-end;
  }

  .page-home .data-wall__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }

  .page-home .data-highlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
  }

  .page-home .data-highlight__title {
    margin-bottom: 0;
  }

  .page-home .data-highlight__bars {
    margin-bottom: 0;
  }

  .page-home .data-highlight__link {
    align-self: center;
  }

  .page-home .reward-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .page-home .reward-layout__visual img {
    min-height: 420px;
  }

  .page-home .transfer-section__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }

  .page-home .version-shell {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .page-home .articles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .page-home .trust-panel {
    flex-direction: row;
    align-items: center;
    padding: 2.5rem 3rem;
  }

  .page-home .trust-panel__list {
    margin-bottom: 0;
  }
}

/* ===== Desktop ≥ 1080px ===== */
@media (min-width: 1080px) {
  .page-home .hero-arena__title {
    font-size: 3.6rem;
  }

  .page-home .data-wall__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-home .data-highlight {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .page-home .data-highlight__title {
    margin-bottom: 0.4rem;
  }

  .page-home .data-highlight__bars {
    margin-bottom: 0;
  }

  .page-home .data-highlight__link {
    align-self: flex-start;
    margin-top: auto;
  }

  .page-home .articles-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .page-home .transfer-section__preview {
    padding: 2rem;
  }

  .page-home .transfer-section__preview img {
    max-height: 280px;
  }
}
