.page-home {
  --bd-soft-line: rgba(245, 240, 230, 0.14);
  --bd-soft-line-2: rgba(245, 240, 230, 0.08);
  --bd-deep-bg: #0A1128;
  background: var(--color-primary-deep-blue);
  color: var(--color-off-white);
  overflow-x: clip;
  font-family: var(--font-body);
}

.page-home .section-heading {
  margin-bottom: 2.6rem;
}

.page-home .section-heading .eyebrow {
  color: var(--color-accent-neon);
  font-family: var(--font-data);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.page-home .section-heading h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0.8rem 0 1rem;
}

.page-home .section-heading .section-lede {
  color: rgba(245, 240, 230, 0.72);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.8;
}

.page-home .media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.page-home .js [data-tab-panel] {
  display: none;
}

.page-home .js [data-tab-panel].is-active {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero */
.page-home .bd-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 8.5rem;
  isolation: isolate;
}

.page-home .bd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home .bd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.06);
}

.page-home .bd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(10, 17, 40, 0.94) 0%, rgba(10, 17, 40, 0.76) 52%, rgba(10, 17, 40, 0.28) 100%);
}

.page-home .bd-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: 18%;
  top: 68%;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--color-accent-neon), transparent);
  transform: rotate(-5deg);
}

.page-home .bd-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-home .bd-hero .eyebrow {
  color: var(--color-accent-neon);
  font-family: var(--font-data);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-home .bd-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0.6rem 0 1.2rem;
}

.page-home .bd-hero-lede {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245, 240, 230, 0.84);
}

.page-home .bd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.page-home .bd-hero-index {
  position: relative;
  z-index: 2;
  margin-top: 2.6rem;
  max-width: 340px;
  background: var(--color-glass);
  border: 1px solid rgba(0, 255, 135, 0.35);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.page-home .bd-hero-index-list {
  list-style: none;
  margin: 1.1rem 0 1rem;
  padding: 0;
  border-top: 1px solid var(--bd-soft-line);
}

.page-home .bd-hero-index-list li {
  border-bottom: 1px solid var(--bd-soft-line-2);
}

.page-home .bd-hero-index-list a {
  display: block;
  padding: 0.65rem 0.2rem;
  color: var(--color-off-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
}

.page-home .bd-hero-index-list a:hover {
  color: var(--color-accent-neon);
  padding-left: 0.55rem;
}

.page-home .bd-hero-index-note {
  margin: 0;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(245, 240, 230, 0.56);
  letter-spacing: 0.04em;
}

.page-home .bd-hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--bd-soft-line);
  background: rgba(10, 17, 40, 0.72);
  backdrop-filter: blur(12px);
}

.page-home .bd-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--bd-soft-line-2);
}

.page-home .bd-stat:nth-child(even) {
  border-right: 0;
}

.page-home .bd-stat-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--color-accent-neon);
}

.page-home .bd-stat-label {
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.66);
  letter-spacing: 0.06em;
}

.page-home .bd-possession-media {
  max-width: 100%;
}

/* Direct */
.page-home .bd-direct {
  padding: 5.5rem 1.5rem;
  position: relative;
  background: var(--color-primary-deep-blue);
}

.page-home .bd-direct::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 36%;
  background: linear-gradient(180deg, transparent, var(--color-accent-bright-orange), transparent);
}

.page-home .bd-direct-grid {
  display: grid;
  gap: 2.2rem;
}

.page-home .bd-direct-card {
  background: var(--color-glass);
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.page-home .bd-direct-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 24px solid rgba(0, 255, 135, 0.08);
}

.page-home .bd-direct-num {
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--color-accent-neon);
}

.page-home .bd-direct-label {
  color: rgba(245, 240, 230, 0.72);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.page-home .bd-direct-channels {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.page-home .bd-direct-channels-title {
  margin: 0;
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.page-home .bd-channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-home .bd-channel-list li {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.86);
  border: 1px solid var(--bd-soft-line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.page-home .bd-channel-list li:hover {
  border-color: var(--color-accent-neon);
  background: rgba(0, 255, 135, 0.08);
}

.page-home .bd-direct-slogan {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent-bright-orange);
}

/* Possession */
.page-home .bd-possession {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(180deg, var(--color-primary-deep-blue), rgba(28, 28, 36, 0.5));
}

.page-home .bd-possession-grid {
  display: grid;
  gap: 2.4rem;
}

.page-home .bd-possession-media .panel--data {
  padding: 1rem;
}

.page-home .bd-possession-media .media-frame-caption {
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.56);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.page-home .bd-tabs-triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.page-home .bd-possession-tabs .tab-button {
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.68);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bd-soft-line-2);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.page-home .bd-possession-tabs .tab-button.is-active {
  color: var(--color-primary-deep-blue);
  background: var(--color-accent-neon);
  border-color: var(--color-accent-neon);
  font-weight: 700;
}

.page-home .bd-possession-tabs .tab-panel {
  border-left: 2px solid var(--color-accent-neon);
  background: var(--color-glass);
  border-radius: 0 14px 14px 0;
  padding: 1.4rem 1.5rem;
}

.page-home .bd-possession-tabs .tab-panel h3 {
  margin: 0.9rem 0 0.5rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
}

.page-home .bd-possession-tabs .tab-panel p {
  margin: 0;
  color: rgba(245, 240, 230, 0.74);
  line-height: 1.75;
  font-size: 0.96rem;
}

/* Tags */
.page-home .bd-tags {
  padding: 5.5rem 1.5rem;
}

.page-home .bd-tags-grid {
  display: grid;
  gap: 2.4rem;
}

.page-home .bd-tags-visual .media-frame {
  border: 1px solid var(--bd-soft-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-background-ash);
}

.page-home .bd-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: flex-start;
}

.page-home .bd-tags-note {
  width: 100%;
  margin: 1rem 0 0.4rem;
  color: rgba(245, 240, 230, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-home .bd-tags-cloud .btn {
  margin-top: 0.6rem;
}

/* Ranking */
.page-home .bd-ranking {
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-home .bd-ranking::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(0, 255, 135, 0.35) 0 8px, transparent 8px 20px);
  transform: rotate(-3deg);
  opacity: 0.45;
}

.page-home .bd-ranking .container {
  position: relative;
  z-index: 1;
}

.page-home .bd-ranking-steps {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.page-home .bd-step {
  background: var(--color-glass);
  border: 1px solid var(--bd-soft-line);
  border-radius: 18px;
  padding: 1.8rem 1.8rem 1.6rem;
  position: relative;
}

.page-home .bd-step::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 135, 0.4);
}

.page-home .bd-step-num {
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(0, 255, 135, 0.34);
  display: block;
  margin-bottom: 1rem;
}

.page-home .bd-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
}

.page-home .bd-step p {
  margin: 0;
  color: rgba(245, 240, 230, 0.72);
  line-height: 1.7;
}

.page-home .bd-step-arrow {
  font-family: var(--font-data);
  font-size: 2rem;
  color: var(--color-accent-neon);
  text-align: center;
}

.page-home .bd-ranking-result {
  font-family: var(--font-data);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--color-accent-bright-orange);
  margin: 0 0 1.2rem;
}

/* Profile */
.page-home .bd-profile {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(180deg, var(--color-primary-deep-blue), var(--color-background-ash));
}

.page-home .bd-profile-grid {
  display: grid;
  gap: 2.4rem;
}

.page-home .bd-profile-copy > p {
  margin: 0 0 1.4rem;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.85;
}

.page-home .bd-profile-facts {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.page-home .bd-profile-facts li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.6;
}

.page-home .bd-profile-facts li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-neon);
  font-family: var(--font-data);
}

.page-home .bd-profile-media .media-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--bd-soft-line);
  transform: rotate(1.5deg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

/* Plate */
.page-home .bd-plate {
  margin: 0 1.5rem 6rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-accent-bright-orange), #FF9F1C);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-home .bd-plate::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.18);
}

.page-home .bd-plate::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 24px solid rgba(10, 17, 40, 0.12);
}

.page-home .bd-plate-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-home .bd-plate .eyebrow {
  color: rgba(10, 17, 40, 0.75);
  font-family: var(--font-data);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.page-home .bd-plate h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-primary-deep-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-home .bd-plate p {
  margin: 0;
  max-width: 620px;
  color: rgba(10, 17, 40, 0.8);
  line-height: 1.8;
}

.page-home .bd-plate-btn.btn {
  background: var(--color-primary-deep-blue);
  border-color: var(--color-primary-deep-blue);
  color: var(--color-off-white);
  padding: 0.85rem 2rem;
  border-radius: 999px;
}

.page-home .bd-plate-btn.btn:hover {
  background: #111B3D;
  border-color: #111B3D;
}

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

  .page-home .bd-stat:nth-child(even) {
    border-right: 1px solid var(--bd-soft-line-2);
  }

  .page-home .bd-stat:last-child {
    border-right: 0;
  }

  .page-home .bd-ranking-steps {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .page-home .bd-step-arrow {
    padding: 0 0.5rem;
  }
}

@media (min-width: 900px) {
  .page-home .bd-direct-grid {
    grid-template-columns: 360px 1fr;
    gap: 4rem;
  }

  .page-home .bd-possession-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
  }

  .page-home .bd-tags-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
  }

  .page-home .bd-profile-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .page-home .bd-hero {
    padding-left: calc((100% - var(--content-max)) / 2 + 1.5rem);
    padding-right: calc((100% - var(--content-max)) / 2 + 1.5rem);
  }

  .page-home .bd-hero-index {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    max-width: 320px;
  }

  .page-home .bd-direct,
  .page-home .bd-possession,
  .page-home .bd-tags,
  .page-home .bd-ranking,
  .page-home .bd-profile {
    padding-left: calc((100% - var(--content-max)) / 2 + 1.5rem);
    padding-right: calc((100% - var(--content-max)) / 2 + 1.5rem);
  }
}
