.page-home {
  --home-orange: #FF6B35;
  --home-green: #B8FF3E;
  --home-deep: #C8431F;
  --home-glass: rgba(16, 31, 59, 0.78);
  --home-border: rgba(179, 195, 214, 0.16);
  --home-text: #F0F4FA;
  --home-muted: #B3C3D6;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .container {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

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

.page-home .section--tight {
  padding: 40px 0 72px;
}

.page-home .home-hero {
  position: relative;
  padding: 144px 0 56px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(184, 255, 62, 0.04) 18px 20px),
    linear-gradient(135deg, transparent 0 40%, rgba(16, 31, 59, 0.35) 100%);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  text-transform: uppercase;
}

.page-home .home-hero__title .text-accent {
  color: var(--home-orange);
}

.page-home .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 32em;
  margin-bottom: 28px;
}

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

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.page-home .home-hero__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-hero__number {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 24vw, 19rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(240, 244, 250, 0.08);
  z-index: 0;
  top: 0;
  left: -8px;
  transform: rotate(-8deg);
  pointer-events: none;
  user-select: none;
}

.page-home .home-hero__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.page-home .home-hero__svg .speed-lines-home line {
  stroke: url(#lineGrad);
  stroke-width: 2.5;
  stroke-linecap: square;
  opacity: 0.55;
}

.page-home .home-hero__svg .star-field polygon,
.page-home .home-hero__svg .star-field circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: home-star-pulse 3s ease-in-out infinite;
}

.page-home .home-hero__svg .star-field polygon:nth-child(2) {
  animation-delay: 0.4s;
}

.page-home .home-hero__svg .star-field polygon:nth-child(3) {
  animation-delay: 0.8s;
}

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

.page-home .home-ticker {
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  background: var(--color-bg-alt);
  padding: 14px 0;
  font-size: 0.9rem;
  color: var(--home-muted);
  overflow: hidden;
}

.page-home .home-ticker p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}

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

.page-home .home-ticker .separator {
  color: var(--home-orange);
}

.page-home .home-section__head {
  margin-bottom: 40px;
}

.page-home .home-section--alt {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.page-home .home-directory {
  gap: 40px;
  align-items: center;
}

.page-home .home-directory__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .home-directory__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-directory__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--home-muted);
  line-height: 1.6;
}

.page-home .home-directory__list li strong {
  color: var(--home-text);
}

.page-home .home-directory__dot {
  width: 14px;
  height: 14px;
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-home .home-directory__dot--home {
  background: var(--home-orange);
}

.page-home .home-directory__dot--away {
  background: var(--home-green);
}

.page-home .home-directory__dot--data {
  background: var(--color-text-muted);
}

.page-home .home-directory .img-frame {
  width: 100%;
}

.page-home .img-frame {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  border-radius: 0 18px 0 18px;
  border: 1px solid var(--home-border);
}

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

.page-home .img-frame--portrait {
  aspect-ratio: 7 / 4;
}

.page-home .home-collection {
  gap: 40px;
  align-items: center;
}

.page-home .home-collection__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .panel--solid.home-collection__card {
  background: var(--home-glass);
  border: 1px solid var(--home-border);
  border-radius: 0 20px 0 20px;
  padding: 32px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.36);
}

.page-home .home-collection__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin: 0 0 8px;
}

.page-home .home-collection__name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--home-text);
  margin: 0 0 10px;
}

.page-home .home-collection__desc {
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 22px;
}

.page-home .home-collection__steps {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--home-border);
  padding-top: 18px;
}

.page-home .home-collection__steps p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--home-text);
  margin: 0;
  line-height: 1.6;
}

.page-home .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--home-orange);
  border: 1px solid var(--home-orange);
  border-radius: 0 6px 0 6px;
}

.page-home .home-collection__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-collection__features {
  display: grid;
  gap: 14px;
}

.page-home .home-report {
  gap: 40px;
  align-items: start;
}

.page-home .home-report__timeline {
  position: relative;
}

.page-home .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.page-home .timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--home-orange), var(--home-green));
  opacity: 0.35;
}

.page-home .timeline__item {
  position: relative;
  padding: 0 0 32px 50px;
}

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

.page-home .timeline__mark {
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 0 10px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--home-border);
  color: var(--home-orange);
  z-index: 1;
}

.page-home .timeline__item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--home-text);
  margin: 0 0 8px;
}

.page-home .timeline__item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
}

.page-home .home-report__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-report__data {
  border-left: 4px solid var(--home-green);
  padding: 18px 20px;
}

.page-home .home-report__data-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-green);
  margin: 0 0 6px;
}

.page-home .home-report__data-value {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--home-orange);
  margin: 0 0 8px;
}

.page-home .home-report__data-note {
  color: var(--home-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.page-home .home-compat {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 31, 59, 0.6) 0%, rgba(10, 20, 40, 0.4) 100%);
  border-radius: 0 24px 0 24px;
  padding: 32px 20px;
  border: 1px solid var(--home-border);
  overflow: hidden;
}

.page-home .home-compat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(255, 107, 53, 0.06) 22px 24px);
  pointer-events: none;
}

.page-home .home-compat .eyebrow,
.page-home .home-compat .section-title,
.page-home .home-compat .section-lead,
.page-home .home-compat__grid,
.page-home .home-compat__strip {
  position: relative;
  z-index: 1;
}

.page-home .home-compat__grid {
  margin: 28px 0 32px;
  gap: 16px;
}

.page-home .home-compat__strip {
  overflow: hidden;
  border-radius: 0 16px 0 16px;
  margin-top: 16px;
}

.page-home .home-compat__strip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.6s var(--ease-snap);
}

.page-home .home-compat__strip:hover img {
  opacity: 0.8;
  transform: scale(1.02);
}

.page-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-green);
  margin: 0 0 14px;
}

.page-home .eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--home-orange);
  transform: rotate(45deg);
  display: inline-block;
}

.page-home .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--home-text);
}

.page-home .section-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--home-muted);
  max-width: 52em;
  margin: 0;
}

.page-home .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .panel {
  background: var(--home-glass);
  border: 1px solid var(--home-border);
  border-radius: 0 16px 0 16px;
  padding: 24px 22px;
  transition: transform 0.3s var(--ease-snap), border-color 0.3s ease, background 0.3s ease;
}

.page-home .panel:hover {
  transform: translateY(-4px);
  border-color: var(--home-orange);
  background: rgba(16, 31, 59, 0.92);
}

.page-home .panel__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--home-text);
  margin: 0 0 10px;
  line-height: 1.4;
}

.page-home .panel__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--home-orange);
  border-radius: 0 12px 0 12px;
  padding: 13px 24px;
  text-decoration: none;
  border: 2px solid var(--home-orange);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-home .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

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

.page-home .btn--ghost:hover {
  background: var(--home-green);
  color: var(--color-bg);
  box-shadow: 0 8px 20px rgba(184, 255, 62, 0.2);
}

.page-home .text-link {
  display: inline-block;
  color: var(--home-orange);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 107, 53, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
  padding-bottom: 2px;
}

.page-home .text-link:hover {
  border-color: var(--home-orange);
  color: var(--home-text);
}

.page-home .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-green);
  border: 1px solid rgba(184, 255, 62, 0.5);
  border-radius: 0 8px 0 8px;
  padding: 5px 12px;
  background: rgba(184, 255, 62, 0.06);
}

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

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-snap), transform 0.6s var(--ease-snap);
}

.page-home [data-reveal][data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
  }

  .page-home .home-directory {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-home .home-collection {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .page-home .home-report {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .page-home .home-ticker p {
    flex-wrap: nowrap;
  }

  .page-home .home-compat {
    padding: 40px 36px;
  }
}

@media (min-width: 992px) {
  .page-home .home-hero {
    padding-top: 160px;
    padding-bottom: 72px;
  }

  .page-home .home-hero__inner {
    gap: 60px;
  }

  .page-home .home-hero__title {
    font-size: clamp(3rem, 6vw, 5rem);
  }

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

  .page-home .home-directory__text {
    padding-right: 30px;
  }

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

  .page-home .section--tight {
    padding: 56px 0 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__svg .star-field polygon,
  .page-home .home-hero__svg .star-field circle {
    animation: none;
  }

  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
