.page-home {
  --home-hero-bg: #0A0E14;
  --home-surface: #141A26;
  --home-surface-2: #1B2333;
  --home-primary: #39FF14;
  --home-secondary: #00E5FF;
  --home-accent: #FF6B00;
  --home-text: #F2F6FC;
  --home-muted: #A6B3CC;
  --home-border: #2A3550;
  --home-skew: -8deg;
  --home-radius: 16px;
  --home-font-display: "Rajdhani", "Oxanium", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: "JetBrains Mono", "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --home-font-body: "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.page-home {
  background: var(--home-hero-bg);
  color: var(--home-text);
  font-family: var(--home-font-body);
  overflow-x: hidden;
}

.page-home .hero-inner,
.page-home .section,
.page-home .hero-stats-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-home .hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 229, 255, 0.03) 3px,
    rgba(0, 229, 255, 0.03) 4px
  );
  pointer-events: none;
}

.page-home .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 60%);
  pointer-events: none;
}

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

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--home-muted);
  margin-bottom: 24px;
}

.page-home .breadcrumb-link {
  color: var(--home-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.page-home .breadcrumb-link:hover {
  color: var(--home-secondary);
}

.page-home .breadcrumb-sep {
  color: var(--home-border);
}

.page-home .breadcrumb-current {
  color: var(--home-secondary);
}

.page-home .hero-eyebrow {
  display: inline-block;
  font-family: var(--home-font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--home-primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 999px;
  text-transform: uppercase;
}

.page-home .hero-title {
  margin: 0;
  font-family: var(--home-font-display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  background: linear-gradient(120deg, var(--home-text) 0%, var(--home-text) 55%, var(--home-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .hero-title-accent {
  display: block;
  font-size: 1.15em;
  background: linear-gradient(30deg, var(--home-primary) 10%, var(--home-secondary) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .hero-subtitle {
  margin-top: 24px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--home-muted);
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  border: 1px solid transparent;
  min-height: 46px;
}

.page-home .btn--primary {
  background: var(--home-primary);
  color: #0A0E14;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.25);
}

.page-home .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(57, 255, 20, 0.45);
}

.page-home .btn--ghost {
  background: transparent;
  border-color: var(--home-border);
  color: var(--home-text);
}

.page-home .btn--ghost:hover {
  border-color: var(--home-secondary);
  color: var(--home-secondary);
  transform: translateY(-2px);
}

.page-home .btn--accent {
  background: var(--home-accent);
  color: #0A0E14;
  box-shadow: 0 0 28px rgba(255, 107, 0, 0.3);
}

.page-home .btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(255, 107, 0, 0.5);
}

.page-home .btn--sm {
  padding: 8px 18px;
  font-size: 13px;
  min-height: 36px;
}

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

.page-home .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  filter: contrast(1.1) brightness(0.7) saturate(1.1);
  transform: scale(1.02);
}

.page-home .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 14, 20, 0.7) 0%, rgba(10, 14, 20, 0.1) 100%);
}

.page-home .hero-stage {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: var(--home-radius);
  padding: 24px 28px;
  z-index: 3;
  transform: rotate(var(--home-skew)) translateY(6px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.page-home .hero-stage-badge {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--home-secondary);
  margin-bottom: 6px;
}

.page-home .hero-stage-number {
  font-family: var(--home-font-mono);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  color: var(--home-primary);
  text-shadow: 0 0 32px rgba(57, 255, 20, 0.5);
}

.page-home .hero-stage-label {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--home-muted);
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--home-hero-bg) 0%, transparent 40%, transparent 100%);
}

.page-home .hero-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--home-border);
  border-block: 1px solid var(--home-border);
  padding: 0;
}

.page-home .hero-stat-item {
  background: var(--home-hero-bg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .hero-stat-value {
  font-family: var(--home-font-mono);
  font-size: 36px;
  font-weight: 800;
  color: var(--home-primary);
}

.page-home .hero-stat-label {
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-home .section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin-bottom: 36px;
  align-items: end;
}

.page-home .section-index {
  font-family: var(--home-font-mono);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--home-primary);
  grid-row: span 2;
  opacity: 0.9;
  transform: rotate(-4deg);
}

.page-home .section-index--blue {
  color: var(--home-secondary);
}

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

.page-home .section-index--green {
  color: var(--home-primary);
}

.page-home .section-title {
  margin: 0;
  font-family: var(--home-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.page-home .section-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--home-muted);
  grid-column: 2;
}

.page-home .section-heading--compact .section-note {
  grid-column: auto;
}

.page-home .section-heading--skewed {
  align-items: start;
}

.page-home .section-heading--skewed .btn--sm {
  justify-self: start;
  margin-top: 12px;
}

.page-home .live-section {
  position: relative;
}

.page-home .live-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.04) 40%, transparent 100%);
  pointer-events: none;
}

.page-home .live-layout {
  display: grid;
  gap: 32px;
}

.page-home .live-aside {
  display: flex;
  flex-direction: column;
}

.page-home .live-status-card {
  background: linear-gradient(135deg, var(--home-surface) 0%, var(--home-surface-2) 100%);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 28px;
  transform: rotate(var(--home-skew));
  position: relative;
  box-shadow: var(--shadow);
}

.page-home .live-status-card .tag--live {
  background: rgba(57, 255, 20, 0.15);
  color: var(--home-primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--home-font-mono);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 16px;
}

.page-home .live-status-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .live-status-time {
  margin: 14px 0 0;
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: var(--home-secondary);
}

.page-home .live-tabs {
  min-width: 0;
}

.page-home .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--home-border);
}

.page-home .tab-btn {
  background: transparent;
  border: 1px solid var(--home-border);
  color: var(--home-muted);
  font-family: var(--home-font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.page-home .tab-btn:hover {
  border-color: var(--home-secondary);
  color: var(--home-secondary);
}

.page-home .tab-btn[aria-selected="true"] {
  background: var(--home-secondary);
  border-color: var(--home-secondary);
  color: #0A0E14;
}

.page-home .tab-panel:focus-visible {
  outline: 2px solid var(--home-primary);
  outline-offset: 4px;
  border-radius: var(--home-radius);
}

.page-home .data-grid {
  display: grid;
  gap: 16px;
}

.page-home .data-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--home-surface) 0%, var(--home-surface-2) 100%);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 22px 22px 18px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.page-home .data-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--home-primary), var(--home-secondary));
  opacity: 0;
  transition: opacity 0.4s;
}

.page-home .data-card:hover,
.page-home .data-card:focus-within {
  transform: translateY(-4px) rotate(0.5deg);
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 12px 32px rgba(57, 255, 20, 0.12);
}

.page-home .data-card:hover::before,
.page-home .data-card:focus-within::before {
  opacity: 1;
}

.page-home .data-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.page-home .data-label {
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .data-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-primary);
  animation: home-pulse-dot 1.6s infinite;
}

@keyframes home-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(57, 255, 20, 0); }
}

.page-home .data-match {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
  font-size: 15px;
  font-weight: 600;
}

.page-home .team-name {
  flex: 1;
  min-width: 90px;
}

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

.page-home .score-sep {
  font-family: var(--home-font-mono);
  color: var(--home-border);
  font-size: 18px;
}

.page-home .data-status {
  margin: 0;
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .reports-section {
  position: relative;
  background: radial-gradient(ellipse at 10% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
}

.page-home .report-list {
  display: grid;
  gap: 24px;
}

.page-home .report-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  overflow: hidden;
  padding: 12px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.page-home .report-card:hover,
.page-home .report-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.1);
}

.page-home .report-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  filter: contrast(1.05);
}

.page-home .report-body {
  padding: 4px 4px 4px 0;
  min-width: 0;
}

.page-home .report-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.page-home .tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.page-home .tag--hot {
  background: rgba(255, 107, 0, 0.16);
  color: var(--home-accent);
}

.page-home .tag--live {
  background: rgba(57, 255, 20, 0.16);
  color: var(--home-primary);
}

.page-home .report-league {
  font-size: 13px;
  color: var(--home-muted);
  font-family: var(--home-font-mono);
}

.page-home .report-title {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.page-home .report-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--home-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home .quick-section {
  position: relative;
  background: linear-gradient(170deg, rgba(0, 229, 255, 0.05) 0%, transparent 40%);
}

.page-home .quick-split {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .quick-visual {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  transform: rotate(2deg);
}

.page-home .quick-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: block;
}

.page-home .quick-float-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: rgba(10, 14, 20, 0.88);
  border: 1px solid rgba(57, 255, 20, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.2);
}

.page-home .quick-float-num {
  font-family: var(--home-font-mono);
  font-size: 30px;
  font-weight: 800;
  color: var(--home-primary);
}

.page-home .quick-float-label {
  font-size: 12px;
  color: var(--home-muted);
}

.page-home .quick-content {
  min-width: 0;
}

.page-home .quick-desc {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-muted);
}

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

.page-home .quick-list-item {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
}

.page-home .quick-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 10px;
  background: linear-gradient(60deg, var(--home-primary), var(--home-secondary));
  clip-path: polygon(0 0, 100% 0, 75% 50%, 100% 100%, 0 100%);
}

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

.page-home .download-section {
  position: relative;
}

.page-home .download-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .download-visual {
  position: relative;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--home-border);
}

.page-home .download-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.page-home .download-content {
  min-width: 0;
}

.page-home .download-desc {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .download-formats {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .format-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.3s;
}

.page-home .format-card:hover,
.page-home .format-card:focus-within {
  border-color: rgba(255, 107, 0, 0.5);
}

.page-home .format-type {
  font-family: var(--home-font-mono);
  font-weight: 800;
  font-size: 18px;
  color: var(--home-accent);
  background: rgba(255, 107, 0, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
}

.page-home .format-desc {
  font-size: 14px;
  color: var(--home-muted);
}

.page-home .feedback-section {
  position: relative;
  overflow: hidden;
}

.page-home .feedback-inner {
  display: grid;
  gap: 32px;
}

.page-home .feedback-copy {
  min-width: 0;
}

.page-home .feedback-desc {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--home-text);
  max-width: 640px;
}

.page-home .feedback-extra {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-muted);
  max-width: 640px;
}

.page-home .feedback-stats {
  display: grid;
  gap: 16px;
}

.page-home .feedback-stat-main {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.12) 0%, rgba(10, 14, 20, 0.9) 60%);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: var(--home-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(var(--home-skew));
}

.page-home .feedback-stat-num {
  font-family: var(--home-font-mono);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--home-primary);
}

.page-home .feedback-stat-label {
  font-size: 15px;
  color: var(--home-text);
}

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

.page-home .feedback-stat-sub {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .feedback-stat-sub .feedback-stat-num {
  font-size: 36px;
  color: var(--home-secondary);
}

.page-home .feedback-marquee {
  margin-top: 48px;
  border-block: 1px solid var(--home-border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 24px;
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: rgba(0, 229, 255, 0.5);
}

.page-home .feedback-marquee span {
  animation: home-marquee-scroll 24s linear infinite;
}

.page-home .feedback-marquee span:nth-child(even) {
  animation: none;
}

.page-home .feedback-marquee span:first-child {
  flex-shrink: 0;
}

.page-home .feedback-marquee span:nth-child(2) {
  flex-shrink: 0;
}

.page-home .feedback-marquee span:nth-child(3) {
  flex-shrink: 0;
}

.page-home .feedback-marquee span:nth-child(4) {
  flex-shrink: 0;
}

.page-home .feedback-marquee span:nth-child(5) {
  flex-shrink: 0;
}

.page-home .feedback-marquee span:nth-child(6) {
  flex-shrink: 0;
}

.page-home .feedback-marquee span:nth-child(7) {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .page-home .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .page-home .report-card {
    grid-template-columns: 120px 1fr;
  }

  .page-home .report-thumb {
    width: 120px;
    height: 100%;
    min-height: 140px;
  }

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

@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .page-home .hero-img {
    min-height: 460px;
  }

  .page-home .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .page-home .live-layout {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .page-home .live-aside {
    position: sticky;
    top: 120px;
    align-self: start;
  }

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

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

  .page-home .report-card {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .page-home .report-thumb {
    width: 100%;
    height: 160px;
    min-height: 160px;
    border-radius: 0;
  }

  .page-home .report-body {
    padding: 18px;
  }

  .page-home .quick-split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
  }

  .page-home .quick-visual {
    margin: 0;
    justify-self: end;
  }

  .page-home .download-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }

  .page-home .download-img {
    max-height: 420px;
  }

  .page-home .feedback-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 48px;
  }
}

@media (min-width: 1280px) {
  .page-home .hero-title {
    font-size: 108px;
  }

  .page-home .section-heading--skewed {
    grid-template-columns: auto 1fr auto;
  }

  .page-home .section-heading--skewed .btn--sm {
    justify-self: end;
  }
}

@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;
  }
}
