.page-home {
  --home-bg: linear-gradient(165deg, #1A1A1A 0%, #242424 42%, #2D2D2D 100%);
  --home-card: #0A192F;
  --home-card-soft: #0F2238;
  --home-line: rgba(224, 224, 224, 0.14);
  --home-accent: #39FF14;
  --home-warning: #FF6B35;
  --home-text: #E0E0E0;
  --home-text-dim: #A0A0A0;
  --home-font-display: "Bebas Neue", "Arial Narrow", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-body: "Inter", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
  --home-font-data: "Roboto Mono", "SFMono-Regular", sans-serif;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.page-home .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  background: #0A192F;
  color: #39FF14;
  border: 1px solid #39FF14;
  padding: 10px 18px;
  font-family: var(--home-font-body);
  font-size: 14px;
  transform: translateY(-300%);
  transition: transform 0.2s ease;
}
.page-home .skip-link:focus {
  transform: translateY(0);
}

.page-home .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.page-home .eyebrow {
  font-family: var(--home-font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-accent);
  margin: 0 0 12px;
}

.page-home .section-title {
  font-family: var(--home-font-display);
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: #fff;
}

.page-home .section-desc {
  color: var(--home-text-dim);
  font-size: 16px;
  max-width: 620px;
  margin: 0;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--home-font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-home .btn--primary {
  background: var(--home-accent);
  color: #0A192F;
  border-color: var(--home-accent);
}
.page-home .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.22);
}

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

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-family: var(--home-font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}

.page-home .tag--live {
  color: var(--home-accent);
  border-color: rgba(57, 255, 20, 0.35);
  background: rgba(57, 255, 20, 0.08);
}

.page-home .tag--alert {
  color: var(--home-warning);
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.08);
}

/* ---------- Hero ---------- */
.page-home .hero {
  padding: 88px 0 56px;
  position: relative;
}

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

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

.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.06);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.page-home .hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}

.page-home .hero__title {
  font-family: var(--home-font-display);
  font-size: 64px;
  line-height: 0.98;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: 0.02em;
}

.page-home .hero__title-accent {
  color: var(--home-accent);
  display: inline-block;
  position: relative;
}
.page-home .hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: linear-gradient(90deg, rgba(57,255,20,0.28), rgba(57,255,20,0));
  z-index: 0;
  pointer-events: none;
}

.page-home .hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--home-text-dim);
  max-width: 460px;
  margin: 0 0 28px;
}

.page-home .hero__lead-strong {
  color: var(--home-accent);
  font-weight: 600;
  font-family: var(--home-font-data);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.page-home .hero__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--home-line);
  width: 100%;
}

.page-home .hero__meta-item {
  display: flex;
  flex-direction: column;
}

.page-home .hero__meta-num {
  font-family: var(--home-font-data);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

.page-home .hero__visual {
  min-height: 0;
  position: relative;
}

.page-home .hero__visual-frame {
  position: relative;
  border: 1px solid var(--home-line);
  background: var(--home-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  min-height: 360px;
}

.page-home .hero__visual-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #39FF14 0%, rgba(57, 255, 20, 0.2) 60%, transparent 100%);
  z-index: 3;
}

.page-home .hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
  z-index: 0;
}

.page-home .hero__visual-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.35));
}

.page-home .hero__grid-lines path {
  fill: none;
  stroke: rgba(224, 224, 224, 0.13);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.page-home .hero__chart-main {
  fill: none;
  stroke: var(--home-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: home-dash-flow 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.45));
}

.page-home .hero__chart-echo {
  fill: none;
  stroke: rgba(57, 255, 20, 0.22);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: home-dash-flow-echo 5s linear infinite;
}

.page-home .hero__nodes circle {
  animation: home-node-pulse 2.2s ease-in-out infinite;
}
.page-home .hero__nodes circle:nth-of-type(2) {
  animation-delay: 0.4s;
}
.page-home .hero__nodes circle:nth-of-type(3) {
  animation-delay: 0.8s;
}

.page-home .hero__coords text {
  font-family: var(--home-font-data);
  letter-spacing: 0.08em;
}

.page-home .hero__float-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 25, 47, 0.9);
  border: 1px solid rgba(57, 255, 20, 0.45);
  border-radius: 4px;
  padding: 10px 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  color: var(--home-text);
  font-size: 12px;
  font-family: var(--home-font-data);
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
}

.page-home .hero__float-tag--a {
  top: 14%;
  right: 8%;
}
.page-home .hero__float-tag--b {
  left: 8%;
  bottom: 12%;
}

.page-home .hero__float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  animation: home-dot-blink 1.6s ease-in-out infinite;
}

.page-home .hero__float-num {
  font-size: 22px;
  color: var(--home-accent);
  font-weight: 600;
}

.page-home .hero__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.5), transparent);
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- Stats strip ---------- */
.page-home .stats-strip {
  padding-top: 44px;
  padding-bottom: 24px;
}

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

.page-home .stats-strip__item {
  display: flex;
  flex-direction: column;
  padding: 18px 4px;
  border-left: 2px solid rgba(57, 255, 20, 0.6);
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.6), transparent);
  padding-left: 16px;
}

.page-home .stats-strip__num {
  font-family: var(--home-font-data);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}

.page-home .stats-strip__label {
  font-size: 13px;
  color: var(--home-text-dim);
  line-height: 1.4;
  margin-top: 4px;
}

/* ---------- Panel section ---------- */
.page-home .panel-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

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

.page-home .panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.page-home .panel-card {
  background: linear-gradient(160deg, #0F2238, #0A192F);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .panel-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--home-accent);
  border-radius: 0 3px 3px 0;
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.page-home .panel-card--tilt {
  transform: rotate(0.6deg);
}
.page-home .panel-card--tilt-reverse {
  transform: rotate(-0.6deg);
}

.page-home .panel-card:hover {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(57, 255, 20, 0.15);
}

.page-home .panel-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.page-home .panel-card__time {
  font-family: var(--home-font-data);
  font-size: 11px;
  color: var(--home-text-dim);
  letter-spacing: 0.05em;
}

.page-home .panel-card__value {
  font-family: var(--home-font-data);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-home .panel-card__desc {
  font-size: 14px;
  color: var(--home-text-dim);
  margin: 0 0 12px;
}

.page-home .panel-card__extra {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(224, 224, 224, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.page-home .panel-card__extra-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--home-font-data);
}

.page-home .panel-card__extra-row span {
  font-size: 11px;
  color: var(--home-text-dim);
  letter-spacing: 0.04em;
}

.page-home .panel-card__extra-row strong {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.page-home .panel-card:hover .panel-card__value {
  color: var(--home-accent);
  transition: color 0.2s ease;
}

.page-home .panel-section__foot {
  text-align: center;
}

/* ---------- Scenario section ---------- */
.page-home .scenario-section {
  padding-top: 36px;
  padding-bottom: 60px;
}

.page-home .section-head--split {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .section-note {
  font-size: 14px;
  color: var(--home-text-dim);
  margin: 0;
}

.page-home .scenario-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  margin-top: 34px;
}

.page-home .scenario-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: #0D1F36;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.page-home .scenario-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.page-home .scenario-card__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #0A192F;
}

.page-home .scenario-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-home .scenario-card:hover .scenario-card__media img {
  transform: scale(1.04);
}

.page-home .scenario-card__index {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--home-font-data);
  font-size: 18px;
  font-weight: 600;
  color: #0A192F;
  background: rgba(57, 255, 20, 0.92);
  padding: 4px 10px;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.page-home .scenario-card__body {
  padding: 26px 22px 24px;
  position: relative;
}

.page-home .scenario-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 6px;
  color: var(--home-accent);
  margin-bottom: 16px;
}

.page-home .scenario-card__title {
  font-family: var(--home-font-display);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: #fff;
}

.page-home .scenario-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--home-text-dim);
  margin: 0 0 18px;
  max-width: 46ch;
}

.page-home .scenario-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
}

.page-home .scenario-card__tags .tag {
  color: var(--home-text);
  border-color: var(--home-line);
  background: rgba(10, 25, 47, 0.5);
}

.page-home .scenario-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-accent);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.2s ease;
}

.page-home .scenario-card__link:hover {
  border-bottom-color: var(--home-accent);
}

.page-home .scenario-card__link span {
  transition: transform 0.2s ease;
}
.page-home .scenario-card__link:hover span {
  transform: translateX(4px);
}

/* ---------- Feature section ---------- */
.page-home .feature-section {
  padding-top: 36px;
  padding-bottom: 60px;
}

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

.page-home .feature-card {
  background: rgba(10, 25, 47, 0.82);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 24px 20px;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-home .feature-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(57, 255, 20, 0.3);
  border-top: 2px solid rgba(57, 255, 20, 0.3);
  transition: opacity 0.25s ease;
  opacity: 0.4;
}

.page-home .feature-card:hover {
  background: #0F2238;
  border-color: rgba(57, 255, 20, 0.45);
  transform: translateY(-2px);
}
.page-home .feature-card:hover::after {
  opacity: 1;
}

.page-home .feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-accent);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 6px;
  margin-bottom: 18px;
}

.page-home .feature-card__title {
  font-family: var(--home-font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: #fff;
}

.page-home .feature-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text-dim);
  margin: 0;
  max-width: 34ch;
}

/* ---------- Update section ---------- */
.page-home .update-section {
  padding-top: 36px;
  padding-bottom: 60px;
}

.page-home .update-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .update-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: rgba(10, 25, 47, 0.7);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .update-item:hover {
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.page-home .update-item__thumb {
  display: none;
}

.page-home .update-item__content {
  padding: 20px 18px;
}

.page-home .update-item__title {
  font-family: var(--home-font-display);
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: 0.015em;
  margin: 10px 0 8px;
}

.page-home .update-item__title a {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--home-accent), var(--home-accent));
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease, color 0.3s ease;
}
.page-home .update-item__title a:hover {
  background-size: 100% 2px;
  color: var(--home-accent);
}

.page-home .update-item__summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text-dim);
  margin: 0;
}

/* ---------- CTA ---------- */
.page-home .cta-section {
  padding-top: 36px;
  padding-bottom: 80px;
}

.page-home .cta-card {
  background: linear-gradient(135deg, #0A192F 0%, #102945 100%);
  border: 1px solid rgba(57, 255, 20, 0.26);
  border-radius: 8px;
  padding: 44px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-home .cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #39FF14, transparent);
  opacity: 0.7;
}

.page-home .cta-card__corner {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  transform: rotate(45deg);
}

.page-home .cta-card__title {
  font-family: var(--home-font-display);
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: 0.02em;
}

.page-home .cta-card__text {
  color: var(--home-text-dim);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
}

.page-home .cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Motion ---------- */
@keyframes home-dash-flow {
  from { stroke-dashoffset: 800; }
  to { stroke-dashoffset: 0; }
}

@keyframes home-dash-flow-echo {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: -400; }
}

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

@keyframes home-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 360px) {
  .page-home .hero__title {
    font-size: 52px;
  }
  .page-home .hero__meta {
    gap: 20px;
  }
  .page-home .stats-strip__grid {
    gap: 14px;
  }
}

@media (min-width: 720px) {
  .page-home .container {
    padding: 0 28px;
  }

  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
  }

  .page-home .hero__visual-frame {
    min-height: 440px;
  }

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

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

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

  .page-home .scenario-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .scenario-card--reverse .scenario-card__media {
    order: 2;
  }

  .page-home .scenario-card__body {
    padding: 30px 28px;
  }

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

  .page-home .update-item {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .page-home .update-item__thumb {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 150px;
    object-fit: cover;
    border-right: 1px solid var(--home-line);
  }

  .page-home .update-item__content {
    padding: 22px 24px;
  }
}

@media (min-width: 1024px) {
  .page-home .section {
    padding: 80px 0;
  }

  .page-home .hero {
    padding: 110px 0 70px;
  }

  .page-home .hero__title {
    font-size: 92px;
  }

  .page-home .hero__lead {
    font-size: 18px;
  }

  .page-home .stats-strip {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .page-home .panel-section {
    padding-top: 56px;
  }

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

  .page-home .section-title {
    font-size: 48px;
  }

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

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

  .page-home .scenario-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  }

  .page-home .scenario-card__media {
    min-height: 320px;
  }

  .page-home .feature-grid {
    gap: 26px;
  }

  .page-home .feature-card {
    padding: 30px 26px;
  }

  .page-home .update-list {
    gap: 22px;
  }

  .page-home .update-item__title {
    font-size: 25px;
  }

  .page-home .cta-card {
    padding: 60px 40px 54px;
  }

  .page-home .cta-card__title {
    font-size: 48px;
  }
}

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