.page-home {
  --home-lime: var(--accent-lime);
  --home-cyan: var(--accent-cyan);
  --home-violet: var(--accent-violet);
  --home-panel: var(--bg-panel);
  --home-raised: var(--bg-raised);
  --home-border: var(--border-subtle);
  --home-corner: 14px;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home a {
  color: var(--home-cyan);
  text-decoration: none;
}
.page-home a:focus-visible {
  outline: 3px solid var(--home-lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.page-home .home-statement {
  position: relative;
  border-bottom: 1px solid var(--home-border);
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 229, 255, 0.12), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(198, 255, 61, 0.06), transparent 30%),
    linear-gradient(145deg, #0A0E1A 0%, #111726 100%);
  padding: 56px 0 40px;
}

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

.page-home .home-statement__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-statement__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--home-lime);
  text-transform: uppercase;
  background: rgba(198, 255, 61, 0.08);
  border: 1px solid rgba(198, 255, 61, 0.25);
  padding: 6px 12px;
  margin-bottom: 16px;
}

.page-home .home-statement__content h1 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  font-family: var(--font-heading);
}

.page-home .home-statement__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 0 24px;
}

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

.page-home .home-statement__media {
  position: relative;
  border-radius: var(--home-corner);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #05070C;
}

.page-home .home-statement__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(198, 255, 61, 0) 62%, rgba(198, 255, 61, 0.14) 100%);
  pointer-events: none;
}

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

.page-home .home-index {
  margin-top: 36px;
  border-top: 1px solid var(--home-border);
  padding-top: 20px;
}

.page-home .home-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.page-home .home-index__list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.page-home .home-index__list a span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--home-lime);
}

.page-home .home-index__list a:hover {
  color: var(--home-lime);
  border-bottom-color: rgba(198, 255, 61, 0.4);
}

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

.page-home .home-section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
}

.page-home .home-section-head__index {
  font-family: var(--font-mono);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--home-lime);
  opacity: 0.9;
}

.page-home .home-section-head h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.3px;
}

.page-home .home-section-head__desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin: 8px 0 0;
}

.page-home .home-data {
  background: transparent;
}

.page-home .home-data-tabs {
  margin-top: 8px;
}

.page-home .home-data-tabs__list {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.page-home .home-data-tabs__tab {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.5px;
  background: var(--home-raised);
  border: 1px solid var(--home-border);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.page-home .home-bento-card {
  position: relative;
  background: var(--home-panel);
  border: 1px solid var(--home-border);
  border-radius: var(--home-corner);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 255, 61, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.page-home .home-bento-card__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #070A12;
}

.page-home .home-bento-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.page-home .home-bento-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.page-home .home-bento-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.page-home .home-bento-card__stats {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--home-border);
  padding-top: 16px;
  margin-top: auto;
}

.page-home .home-stat__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--home-lime);
  display: block;
  line-height: 1.1;
}

.page-home .home-stat__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.page-home .home-bento-card__kicker {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--home-cyan);
  letter-spacing: -2px;
}

.page-home .home-bento-card__tags {
  list-style: none;
  margin: auto 0 0;
  padding: 12px 0 0;
  display: flex;
  gap: 8px;
}

.page-home .home-bento-card--accent {
  background: linear-gradient(145deg, rgba(198, 255, 61, 0.1), var(--home-panel) 70%);
  border-color: rgba(198, 255, 61, 0.3);
}

.page-home .home-chart {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.page-home .home-chart__bar {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.page-home .home-chart__bar span {
  display: block;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--home-lime), var(--home-cyan));
  opacity: 0.85;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #05070C;
  padding-left: 6px;
  line-height: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .home-workflow {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.page-home .home-workflow li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--home-border);
  font-size: 15px;
  color: var(--text-primary);
}

.page-home .home-workflow li:last-child {
  border-bottom: none;
}

.page-home .home-workflow span {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-cyan);
  min-width: 28px;
}

.page-home .home-bento-card__list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-bento-card__list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

.page-home .home-bento-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--home-lime);
  transform: rotate(45deg);
}

.page-home .home-league-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.page-home .home-league-switch__item {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 6px;
  padding: 8px 14px;
}

.page-home .home-league-switch__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

.page-home .home-pricing {
  border-top: 1px solid var(--home-border);
  margin-top: 40px;
}

.page-home .home-pricing__grid {
  display: grid;
  gap: 18px;
  padding-bottom: 8px;
}

.page-home .home-pricing__card {
  position: relative;
  background: var(--home-panel);
  border: 1px solid var(--home-border);
  border-radius: var(--home-corner);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-pricing__card--featured {
  border-color: rgba(198, 255, 61, 0.5);
  background: linear-gradient(180deg, rgba(198, 255, 61, 0.08), var(--home-panel));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.page-home .home-pricing__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--home-lime);
  color: #05070C;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
}

.page-home .home-pricing__plan {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.page-home .home-pricing__price {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.page-home .home-pricing__price span {
  font-size: 56px;
  color: var(--home-lime);
}

.page-home .home-pricing__note {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  min-height: 42px;
}

.page-home .home-pricing__link {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.page-home .home-pricing__note-box {
  margin-top: 28px;
  background: var(--home-raised);
  border-left: 4px solid var(--home-cyan);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.page-home .home-pricing__note-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.page-home .home-mobile {
  border-top: 1px solid var(--home-border);
  margin-top: 40px;
}

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

.page-home .home-mobile__visual {
  text-align: center;
}

.page-home .home-mobile__visual img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--home-border);
  background: #05070C;
  box-shadow: var(--shadow-float);
}

.page-home .home-mobile__features {
  display: grid;
  gap: 0;
}

.page-home .home-mobile__feature {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--home-border);
}

.page-home .home-mobile__feature:last-of-type {
  border-bottom: none;
}

.page-home .home-mobile__num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-cyan);
  min-width: 34px;
  line-height: 1.4;
}

.page-home .home-mobile__feature h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-primary);
}

.page-home .home-mobile__feature p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

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

.page-home .home-download {
  margin-top: 40px;
  padding-bottom: 60px;
}

.page-home .home-download__panel {
  position: relative;
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(198, 255, 61, 0.03) 10px 12px),
    linear-gradient(145deg, var(--home-panel), #0C111D);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  overflow: hidden;
}

.page-home .home-download__panel::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  filter: blur(60px);
  top: -60px;
  right: -40px;
  pointer-events: none;
}

.page-home .home-download__panel .home-section-head {
  position: relative;
  z-index: 1;
}

.page-home .home-download__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.page-home .home-download__btn {
  gap: 14px;
  min-width: 220px;
  padding: 16px 22px;
}

.page-home .home-download__icon {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
}

.page-home .home-download__text {
  font-size: 15px;
  font-weight: 600;
}

.page-home .home-download__note {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 560px;
}

@media (min-width: 640px) {
  .page-home .home-statement__content h1 {
    font-size: 40px;
  }

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

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

  .page-home .home-bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }

  .page-home .home-bento-card--span8 {
    grid-column: span 12;
  }

  .page-home .home-bento-card--span4 {
    grid-column: span 12;
  }

  .page-home .home-bento-card--span6 {
    grid-column: span 12;
  }
}

@media (min-width: 820px) {
  .page-home .home-statement {
    padding: 72px 0 48px;
  }

  .page-home .home-statement__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }

  .page-home .home-statement__content h1 {
    font-size: 48px;
  }

  .page-home .home-statement__lead {
    font-size: 17px;
  }

  .page-home .home-bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }

  .page-home .home-bento-card--span8 {
    grid-column: span 8;
  }

  .page-home .home-bento-card--span4 {
    grid-column: span 4;
  }

  .page-home .home-bento-card--span6 {
    grid-column: span 6;
  }

  .page-home .home-section-head {
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .page-home .home-section-head__index {
    grid-row: 1;
    font-size: 60px;
  }

  .page-home .home-section-head h2 {
    grid-row: 1;
    font-size: 36px;
    padding-left: 20px;
  }

  .page-home .home-section-head__desc {
    grid-column: 2;
    margin-top: 4px;
  }

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

  .page-home .home-pricing__card--featured {
    transform: translateY(-10px);
  }

  .page-home .home-mobile__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .page-home .home-mobile__visual img {
    max-width: 380px;
  }

  .page-home .home-download__panel {
    padding: 56px 48px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-statement__content h1 {
    font-size: 52px;
    line-height: 1.15;
  }

  .page-home .home-section-head__desc {
    font-size: 16px;
  }

  .page-home .home-pricing__price {
    font-size: 42px;
  }

  .page-home .home-pricing__price span {
    font-size: 60px;
  }
}
