.page-home {
  --home-line-glow: rgba(46, 229, 157, 0.14);
  --home-orange-glow: rgba(255, 107, 0, 0.2);
  --home-purple-glow: rgba(181, 55, 242, 0.2);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  background: var(--grad-field);
  padding: 24px 0 52px;
  isolation: isolate;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 42%, rgba(46, 229, 157, 0.06) 42.5%, transparent 43.5%),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255, 255, 255, 0.02) 14px 16px);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--home-purple-glow), transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.page-home .breadcrumb {
  margin-bottom: 30px;
}

.page-home .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-dim);
}

.page-home .breadcrumb-link {
  color: var(--green);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

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

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

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

.page-home .home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(46, 229, 157, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(46, 229, 157, 0.08);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 18px;
}

.page-home .home-eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: home-pulse 1.6s ease-in-out infinite;
}

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

.page-home .home-hero-title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4.1rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.page-home .home-title-accent {
  display: block;
  background: linear-gradient(92deg, var(--green), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.page-home .home-hero-sub {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 56ch;
}

.page-home .home-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.page-home .home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .home-hero-note {
  font-size: 13px;
  color: var(--text-dim);
}

.page-home .home-hero-right {
  min-width: 0;
}

.page-home .home-hero-card {
  position: relative;
  background: linear-gradient(150deg, rgba(30, 30, 30, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid var(--line);
  border-radius: 24px 6px 24px 6px;
  padding: 14px;
  box-shadow: var(--shadow-float);
  overflow: hidden;
}

.page-home .home-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(46, 229, 157, 0.12) 42%, transparent 50%, rgba(181, 55, 242, 0.08) 55%, transparent 62%);
  background-size: 220% 100%;
  pointer-events: none;
  animation: home-linesweep 5s linear infinite;
}

@keyframes home-linesweep {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.page-home .home-hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .home-hero-card-label {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.page-home .home-hero-card-badge {
  background: rgba(181, 55, 242, 0.14);
  color: var(--purple);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .home-hero-card .image-frame {
  border: 1px solid var(--line);
  border-radius: 14px 4px 14px 4px;
  overflow: hidden;
}

.page-home .home-hero-card .image-frame img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home .home-hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.page-home .home-panel-box {
  background: rgba(10, 32, 22, 0.5);
  border: 1px solid rgba(46, 229, 157, 0.18);
  border-radius: 10px 2px 10px 2px;
  padding: 10px 6px;
  text-align: center;
}

.page-home .home-panel-box-label {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 4px;
}

.page-home .home-panel-box-value {
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 24px;
  color: var(--green);
}

.page-home .home-hero-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.page-home .home-hero-foot-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: auto;
}

.page-home .home-league-chip {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--text);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-feature {
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}

.page-home .home-feature-data {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 31, 10, 0.36) 100%);
}

.page-home .home-feature-row {
  display: grid;
  gap: 30px;
  align-items: center;
}

.page-home .home-feature-media {
  position: relative;
}

.page-home .home-feature-frame {
  border-radius: 20px 6px 20px 6px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.page-home .home-feature-mobile .home-feature-frame {
  aspect-ratio: 1 / 1;
}

.page-home .home-feature-body .section-eyebrow {
  margin-bottom: 8px;
}

.page-home .home-feature-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 12px;
}

.page-home .home-feature-sub {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-home .home-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.page-home .home-feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.page-home .home-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 10px rgba(46, 229, 157, 0.5);
}

.page-home .home-feature-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-float-badge {
  position: absolute;
  bottom: -12px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #06190f;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px rgba(46, 229, 157, 0.28);
}

.page-home .home-float-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #06190f;
  border-radius: 50%;
}

.page-home .home-float-badge-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 10px 28px rgba(181, 55, 242, 0.28);
}

.page-home .home-float-badge-purple::before {
  background: #fff;
}

.page-home .home-float-badge-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.28);
}

.page-home .home-float-badge-orange::before {
  background: #fff;
}

.page-home .home-feed {
  padding: 56px 0;
  background: var(--grad-field);
  border-top: 1px solid var(--line-soft);
}

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

.page-home .home-section-head h2 {
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.page-home .home-section-sub {
  color: var(--text-dim);
  text-align: center;
  margin: 8px 0 0;
}

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

.page-home .home-feed-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px 4px 16px 4px;
  padding: 20px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.page-home .home-feed-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 229, 157, 0.4);
  background: var(--bg-elev);
}

.page-home .home-feed-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .home-feed-time {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--text-dim);
}

.page-home .home-feed-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
}

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

.page-home .home-feed-link {
  display: inline-block;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease-out);
}

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

.page-home .home-metrics {
  padding: 56px 0;
}

.page-home .home-section-head-center {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.page-home .home-metric-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.page-home .home-metric-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px 4px 14px 4px;
  padding: 18px;
  border-top: 3px solid var(--green);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.page-home .home-metric-card:hover,
.page-home .home-metric-card:focus-within {
  transform: translateY(-3px);
  background: var(--bg-elev);
}

.page-home .home-metric-card-orange {
  border-top-color: var(--orange);
}

.page-home .home-metric-card-purple {
  border-top-color: var(--purple);
}

.page-home .home-metric-num {
  font-family: var(--font-num);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .home-metric-unit {
  font-size: 1.1rem;
  color: var(--text-dim);
}

.page-home .home-metric-label {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.page-home .home-metric-note {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

.page-home .home-trust {
  padding: 50px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
}

.page-home .home-trust-inner {
  display: grid;
  gap: 22px;
}

.page-home .home-trust-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.16;
}

.page-home .home-trust-copy p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 72ch;
}

.page-home .home-faq-strip {
  padding: 36px 0;
  background: linear-gradient(100deg, rgba(181, 55, 242, 0.12), rgba(46, 229, 157, 0.08));
  border-top: 1px solid var(--line);
}

.page-home .home-faq-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.page-home .home-faq-strip h2 {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  line-height: 1.2;
}

.page-home .home-faq-strip p {
  margin: 0;
  color: var(--text-dim);
}

.page-home .home-contact-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.page-home .home-contact-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.page-home .home-contact-label {
  color: var(--green);
  font-weight: 800;
}

.page-home .home-contact-note {
  color: var(--text-dim);
  font-size: 13px;
}

.page-home .btn {
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .top-btn:hover {
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .page-home .home-feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-home .home-feature-body {
    padding: 12px 0;
  }

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

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

  .page-home .home-trust-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .page-home .home-faq-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .home-contact-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .home-metric-note {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.35s var(--ease-out), opacity 0.35s var(--ease-out), margin-top 0.35s var(--ease-out);
  }

  .page-home .home-metric-card:hover .home-metric-note,
  .page-home .home-metric-card:focus-within .home-metric-note {
    max-height: 48px;
    opacity: 1;
    margin-top: 6px;
  }
}

@media (min-width: 920px) {
  .page-home .home-hero {
    padding: 28px 0 72px;
  }

  .page-home .home-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 56px;
    align-items: center;
  }

  .page-home .home-hero-card {
    transform: rotate(0.5deg);
  }

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

@media (min-width: 1120px) {
  .page-home .home-feed-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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