.page-home {
  --home-purple-glow: rgba(122, 92, 255, 0.35);
  --home-green: #A6FF3A;
  --home-cyan: #37E6E6;
  --home-bg-panel: #1B2440;
  --home-bg-deep: #10172E;
  --home-text-body: #F2F5FF;
  --home-text-muted: #C0C8D8;
  --home-container: 1280px;
  --home-slant: -8deg;
  color-scheme: dark;
  background: var(--bg-root);
  color: var(--text-body);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home .container {
  max-width: var(--home-container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-home a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-home a:hover {
  color: var(--accent-green);
}

.page-home .section {
  padding: clamp(48px, 7vw, 72px) 0;
  position: relative;
}

.page-home .section-head {
  margin-bottom: 36px;
}

.page-home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  padding-left: 16px;
  position: relative;
  margin-bottom: 10px;
}

.page-home .section-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--accent-green);
}

.page-home .section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  transform: skewX(-4deg);
  margin: 0 0 12px;
  color: var(--text-body);
  line-height: 1.2;
}

.page-home .section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0;
}

/* HERO */
.page-home .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(32px, 5vw, 56px);
  position: relative;
}

.page-home .home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10vw;
  width: 60vw;
  height: 340px;
  background: radial-gradient(ellipse at top left, rgba(122, 92, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.page-home .home-hero-copy {
  position: relative;
  z-index: 2;
}

.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(55, 230, 230, 0.25);
  border-left: 3px solid var(--accent-cyan);
  background: rgba(16, 23, 46, 0.6);
}

.page-home .home-kicker-dot {
  color: var(--accent-green);
  font-size: 10px;
  animation: home-pulse 2s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.82); }
}

.page-home .home-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  transform: skewX(-3deg);
  text-shadow: 0 0 40px rgba(122, 92, 255, 0.25);
}

.page-home .home-title-slash {
  color: var(--accent-purple);
  margin: 0 8px;
  display: inline-block;
}

.page-home .home-title-sub {
  display: inline-block;
  font-size: 0.52em;
  font-weight: 500;
  color: var(--accent-green);
  vertical-align: middle;
  padding-left: 10px;
}

.page-home .home-hero-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 28px;
  animation: home-fade-slide 0.9s ease both;
  animation-delay: 0.2s;
}

@keyframes home-fade-slide {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.page-home .btn-primary {
  background: var(--accent-purple);
  border: 1px solid var(--accent-purple);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  transform: skewX(-4deg);
  box-shadow: 0 0 28px rgba(122, 92, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .btn-primary:hover {
  transform: skewX(-4deg) translateY(-3px);
  box-shadow: 0 6px 32px rgba(122, 92, 255, 0.5);
}

.page-home .btn-ghost {
  background: transparent;
  border: 1px solid rgba(122, 92, 255, 0.5);
  color: var(--text-body);
  padding: 12px 24px;
  display: inline-block;
  transform: skewX(-4deg);
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-home .btn-ghost:hover {
  background: rgba(122, 92, 255, 0.12);
  transform: skewX(-4deg) translateY(-3px);
}

.page-home .home-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 480px;
  margin-top: 8px;
}

.page-home .home-stat-block {
  background: rgba(27, 36, 64, 0.7);
  border-left: 3px solid var(--accent-purple);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num unit"
    "num label";
  column-gap: 10px;
  align-items: baseline;
  backdrop-filter: blur(4px);
}

.page-home .home-stat-num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-body);
  line-height: 1;
}

.page-home .home-stat-unit {
  grid-area: unit;
  font-size: 12px;
  color: var(--accent-green);
  font-family: var(--font-mono);
}

.page-home .home-stat-label {
  grid-area: label;
  font-size: 12px;
  color: var(--text-muted);
}

.page-home .home-hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.1);
}

.page-home .home-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.5) 0%, rgba(11, 15, 26, 0.15) 45%, rgba(122, 92, 255, 0.3) 100%);
}

.page-home .home-radar {
  position: absolute;
  right: -10px;
  top: 12px;
  width: 88%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(122, 92, 255, 0.3));
}

.page-home .home-radar-dot {
  animation: home-dot-pulse 2.4s ease-in-out infinite;
}

.page-home .home-radar-dot:nth-child(7) { animation-delay: 0.4s; }
.page-home .home-radar-dot:nth-child(8) { animation-delay: 1.1s; }
.page-home .home-radar-dot:nth-child(9) { animation-delay: 1.8s; }

@keyframes home-dot-pulse {
  0%, 100% { opacity: 1; r: 8; }
  50% { opacity: 0.45; r: 5; }
}

.page-home .home-radar-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: home-draw-line 4s ease-in-out forwards;
}

@keyframes home-draw-line {
  30% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

.page-home .home-scan-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(55, 230, 230, 0.08), transparent);
  z-index: 1;
  animation: home-scan 4.5s linear infinite;
}

@keyframes home-scan {
  0% { top: -20%; }
  100% { top: 110%; }
}

/* STRIP SECTION */
.page-home .home-strip-section {
  background: var(--bg-deep);
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: clamp(48px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.page-home .home-strip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-green), var(--accent-purple));
  opacity: 0.6;
}

.page-home .home-strip-container {
  margin-top: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(122, 92, 255, 0.2);
  border-bottom: 1px solid rgba(122, 92, 255, 0.2);
}

.page-home .home-strip-rail {
  display: flex;
  width: 200%;
  animation: home-strip-move 22s linear infinite;
  background: linear-gradient(90deg, rgba(16, 23, 46, 0.9), rgba(27, 36, 64, 0.9));
}

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

@keyframes home-strip-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-home .home-strip-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 50%;
  min-width: 50%;
  padding: 14px 0;
}

.page-home .home-strip-item {
  white-space: nowrap;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text-body);
  border-right: 1px solid rgba(122, 92, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
}

.page-home .home-strip-item strong {
  color: var(--accent-green);
  font-weight: 600;
}

.page-home .home-strip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
  animation: home-pulse 1.6s ease-in-out infinite;
}

/* FAST / TIMELINE */
.page-home .home-fast-section {
  position: relative;
}

.page-home .home-fast-section::before {
  content: '';
  position: absolute;
  right: -20%;
  top: 40px;
  width: 55%;
  height: 360px;
  background: radial-gradient(circle, rgba(166, 255, 58, 0.08), transparent 72%);
  pointer-events: none;
}

.page-home .home-fast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.page-home .home-fast-copy {
  position: relative;
  z-index: 2;
}

.page-home .home-fast-desc {
  margin-bottom: 16px;
}

.page-home .home-fast-subtext {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-green);
  padding-left: 16px;
  margin-bottom: 24px;
}

.page-home .home-timeline-wrap {
  position: relative;
}

.page-home .home-timeline-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  filter: saturate(1.1);
}

.page-home .home-timeline-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 26, 0.72), rgba(11, 15, 26, 0.2));
  z-index: 1;
}

.page-home .home-timeline {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 440px;
  background: rgba(11, 15, 26, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(55, 230, 230, 0.2);
  border-left: 3px solid var(--accent-purple);
}

.page-home .home-tl-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(192, 200, 216, 0.08);
}

.page-home .home-tl-row:last-child {
  border-bottom: none;
}

.page-home .home-tl-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-cyan);
}

.page-home .home-tl-label {
  font-size: 13px;
  color: var(--text-body);
}

.page-home .home-tl-status {
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 3px 8px;
}

.page-home .home-tl-done {
  color: var(--accent-green);
  border: 1px solid rgba(166, 255, 58, 0.3);
}

.page-home .home-tl-live {
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  animation: home-pulse 1.5s ease-in-out infinite;
}

.page-home .home-tl-wait {
  color: var(--text-muted);
  border: 1px solid rgba(192, 200, 216, 0.3);
}

.page-home .home-tl-muted {
  opacity: 0.6;
}

.page-home .note-vertical {
  writing-mode: vertical-rl;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 3px;
  position: absolute;
  right: 12px;
  bottom: 16px;
  z-index: 3;
  font-family: var(--font-mono);
}

/* LEAGUE */
.page-home .home-league-section {
  background: linear-gradient(180deg, rgba(16, 23, 46, 0.6), rgba(11, 15, 26, 0));
}

.page-home .home-league-head {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: flex-end;
  margin-bottom: 32px;
}

.page-home .home-league-head .section-title {
  margin-bottom: 0;
}

.page-home .home-league-desc {
  max-width: 460px;
}

.page-home .home-league-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-home .home-league-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "index name arrow"
    "index meta arrow";
  column-gap: 12px;
  align-items: center;
  background: var(--bg-panel);
  border-left: 3px solid var(--accent-purple);
  padding: 16px 14px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform: skewX(-2deg);
}

.page-home .home-league-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(122, 92, 255, 0.18), transparent);
  transition: width 0.3s ease;
  z-index: 0;
}

.page-home .home-league-card:hover {
  transform: skewX(-2deg) translateY(-4px);
  box-shadow: 0 8px 28px rgba(11, 15, 26, 0.7);
  border-left-color: var(--accent-green);
}

.page-home .home-league-card:hover::before {
  width: 100%;
}

.page-home .home-league-index {
  grid-area: index;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent-purple);
  z-index: 1;
}

.page-home .home-league-name {
  grid-area: name;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-body);
  font-family: var(--font-display);
  z-index: 1;
}

.page-home .home-league-meta {
  grid-area: meta;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  z-index: 1;
}

.page-home .home-league-arrow {
  grid-area: arrow;
  color: var(--accent-green);
  font-size: 22px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.page-home .home-league-card:hover .home-league-arrow {
  transform: translateX(4px);
}

/* SCORE */
.page-home .home-score-section {
  background: var(--bg-deep);
  position: relative;
}

.page-home .home-score-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55, 230, 230, 0.3), transparent);
}

.page-home .home-score-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.page-home .home-score-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-panel);
  border-radius: var(--radius);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-home .home-score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 15, 26, 0.85);
}

.page-home .home-score-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.9);
  transition: filter 0.3s ease;
}

.page-home .home-score-card:hover .home-score-img {
  filter: saturate(1.1) brightness(1);
}

.page-home .home-score-body {
  padding: 16px 18px;
  position: relative;
}

.page-home .home-score-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .tag-pill {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  border: 1px solid rgba(55, 230, 230, 0.25);
  padding: 3px 10px;
  letter-spacing: 1px;
}

.page-home .home-score-match {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.page-home .home-score-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-body);
}

.page-home .home-score-colon {
  font-size: 20px;
  color: var(--accent-purple);
}

.page-home .home-team {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  max-width: 6em;
  text-align: center;
}

.page-home .home-score-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.page-home .home-score-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  margin-right: 6px;
  animation: home-pulse 1.2s ease-in-out infinite;
}

.page-home .home-score-card.is-live .home-score-live-dot {
  background: var(--signal-orange);
}

.page-home .home-score-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 26, 0.92);
  padding: 10px 16px;
  font-size: 12px;
  color: var(--accent-green);
  font-family: var(--font-mono);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}

.page-home .home-score-card:hover .home-score-hover {
  transform: translateY(0);
}

.page-home .home-score-footer {
  text-align: center;
  margin-top: 28px;
}

/* IOS */
.page-home .home-ios-section {
  background: var(--bg-root);
  position: relative;
  overflow: hidden;
}

.page-home .home-ios-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.page-home .home-ios-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.page-home .home-ios-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.page-home .home-ios-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 400px;
}

.page-home .home-ios-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.3), rgba(122, 92, 255, 0.12));
}

.page-home .home-ios-glow {
  position: absolute;
  left: -20%;
  bottom: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--accent-green), transparent 68%);
  opacity: 0.04;
  z-index: 2;
  animation: home-ios-breathe 4s ease-in-out infinite;
}

@keyframes home-ios-breathe {
  0%, 100% { opacity: 0.03; transform: scale(1); }
  50% { opacity: 0.07; transform: scale(1.08); }
}

.page-home .home-ios-copy {
  position: relative;
  z-index: 2;
}

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

.page-home .home-ios-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

.page-home .home-ios-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 2px;
  background: var(--accent-green);
}

.page-home .home-ios-copy .btn-primary {
  position: relative;
  overflow: hidden;
}

.page-home .home-ios-copy .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: home-btn-shine 3s ease-in-out infinite;
}

@keyframes home-btn-shine {
  0%, 55% { left: -80%; }
  85%, 100% { left: 130%; }
}

/* COMPARE */
.page-home .home-compare-section {
  background: linear-gradient(180deg, var(--bg-root), rgba(16, 23, 46, 0.8));
}

.page-home .home-compare-head {
  margin-bottom: 28px;
}

.page-home .home-compare-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .home-compare-tab {
  background: var(--bg-panel);
  border: 1px solid rgba(122, 92, 255, 0.3);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 24px;
  cursor: pointer;
  transform: skewX(-4deg);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-home .home-compare-tab[data-active="1"] {
  background: rgba(122, 92, 255, 0.2);
  border-color: var(--accent-purple);
  color: var(--text-body);
}

.page-home .home-compare-tab:hover {
  background: rgba(122, 92, 255, 0.12);
  color: var(--text-body);
}

.page-home .home-compare-wrap {
  background: var(--bg-panel);
  border: 1px solid rgba(122, 92, 255, 0.2);
  border-left: 4px solid var(--accent-purple);
  padding: 18px;
}

.page-home .data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .data-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(55, 230, 230, 0.2);
  white-space: nowrap;
}

.page-home .data-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(192, 200, 216, 0.08);
  color: var(--text-body);
}

.page-home .data-table tbody tr {
  transition: background 0.2s ease;
}

.page-home .data-table tbody tr:hover {
  background: rgba(122, 92, 255, 0.1);
}

.page-home .home-compare-done {
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .home-compare-live {
  color: var(--signal-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  animation: home-pulse 1.6s ease-in-out infinite;
}

.page-home .home-compare-link {
  margin-top: 20px;
  text-align: right;
}

/* JOURNAL PREVIEW */
.page-home .home-journal-section {
  background: rgba(16, 23, 46, 0.5);
}

.page-home .home-journal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.page-home .home-journal-head .section-kicker {
  margin-bottom: 6px;
}

.page-home .home-journal-head .section-title {
  margin-bottom: 0;
}

.page-home .home-journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .home-journal-card {
  background: var(--bg-panel);
  border-left: 3px solid var(--accent-purple);
  padding: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(11, 15, 26, 0.6);
}

.page-home .home-journal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-body);
  margin: 12px 0 8px;
  line-height: 1.4;
  font-family: var(--font-display);
}

.page-home .home-journal-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.page-home .home-journal-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.page-home .home-journal-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
}

.page-home .home-journal-live {
  color: var(--accent-green);
}

.page-home .home-journal-live .home-journal-dot {
  background: var(--accent-green);
  animation: home-pulse 1s ease-in-out infinite;
}

/* TRUST */
.page-home .home-trust-section {
  border-top: 1px solid rgba(122, 92, 255, 0.2);
  background: var(--bg-deep);
  padding: 24px 0;
}

.page-home .home-trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
}

.page-home .home-trust-text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 720px;
}

.page-home .home-trust-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--font-mono);
}

.page-home .home-trust-links a {
  color: var(--text-muted);
}

.page-home .home-trust-links a:hover {
  color: var(--accent-green);
}

.page-home .home-trust-sep {
  color: var(--accent-purple);
  opacity: 0.5;
}

/* MEDIA QUERIES */
@media (min-width: 640px) {
  .page-home .home-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .page-home .home-score-img {
    height: 90px;
  }

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

  .page-home .home-timeline {
    left: 24px;
    right: auto;
    min-width: 380px;
  }

  .page-home .home-timeline-wrap::before {
    background: linear-gradient(90deg, rgba(11, 15, 26, 0.72), rgba(11, 15, 26, 0.15));
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: 56fr 44fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-hero-visual {
    min-height: 480px;
  }

  .page-home .home-radar {
    width: 96%;
    right: -16px;
  }

  .page-home .home-fast-grid {
    grid-template-columns: 42fr 58fr;
    gap: 48px;
  }

  .page-home .home-timeline-wrap {
    min-height: 440px;
  }

  .page-home .home-ios-grid {
    grid-template-columns: 50fr 50fr;
    gap: 48px;
  }

  .page-home .home-score-card {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  }

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

  .page-home .home-score-card:nth-child(2) {
    transform: translateY(8px);
  }

  .page-home .home-score-card:nth-child(2):hover {
    transform: translateY(4px);
  }

  .page-home .home-league-card:nth-child(3n) {
    transform: skewX(-2deg) translateY(6px);
  }

  .page-home .home-league-card:nth-child(3n):hover {
    transform: skewX(-2deg) translateY(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
