.page-home {
  overflow-x: hidden;
  background: rgba(8, 23, 48, 0.6);
}

.page-home .mono {
  font-family: var(--font-mono);
}

.page-home .home-crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(154, 174, 187, 0.18);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.page-home .crumb-root {
  color: var(--mist);
}

.page-home .crumb-sep {
  color: var(--gold);
}

.page-home .home-crumb .breadcrumb-current {
  color: var(--cream);
}

.page-home .home-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  margin-bottom: clamp(3rem, 7vw, 5rem);
  position: relative;
}

.page-home .hero-copy {
  position: relative;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.page-home .hero-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  flex: 0 0 30px;
}

.page-home .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.06;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}

.page-home .hero-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mist);
  margin: 0 0 1.75rem;
  max-width: 36em;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.page-home .hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
}

.page-home .hero-facts li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--mist);
}

.page-home .facts-num {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.page-home .hero-console {
  position: relative;
}

.page-home .console-panel {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.22);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  padding: 1rem;
}

.page-home .console-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(10, 31, 68, 0.85);
  border-bottom: 1px solid rgba(154, 174, 187, 0.15);
}

.page-home .console-title {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  flex: 1;
}

.page-home .console-status {
  font-size: 0.7rem;
  color: var(--green);
}

.page-home .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  animation: page-home-pulse 2s ease-in-out infinite;
}

@keyframes page-home-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(53, 196, 141, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(53, 196, 141, 0);
  }
}

.page-home .console-visual {
  position: relative;
  margin: 0.75rem 0;
  overflow: hidden;
}

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

.page-home .console-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0 12px,
    transparent 12px 24px
  );
  animation: page-home-flow 1.2s linear infinite;
}

@keyframes page-home-flow {
  to {
    background-position: 24px 0;
  }
}

.page-home .console-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-home .ctile {
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.9), rgba(8, 23, 48, 0.72));
  border-left: 3px solid var(--gold);
  padding: 1rem;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-home .ctile-main {
  grid-column: 1 / -1;
}

.page-home .ctile-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--mist);
  letter-spacing: 0.06em;
}

.page-home .ctile-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1;
}

.page-home .ctile-note {
  font-size: 0.8rem;
  color: var(--mist);
}

.page-home .home-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}

.page-home .band-item {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 2.4rem;
  background: var(--navy);
  border: 1px solid rgba(154, 174, 187, 0.15);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-home .band-index {
  position: absolute;
  top: 1.4rem;
  left: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  writing-mode: vertical-rl;
}

.page-home .band-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.35rem;
}

.page-home .band-label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--mist);
  margin: 0;
}

.page-home .section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.page-home .section-index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.55rem;
  display: inline-flex;
  align-items: center;
  transform: skewX(-8deg);
}

.page-home .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home .section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.5), transparent);
  margin-left: 1rem;
}

.page-home .section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  margin: 0 0 1.5rem;
  max-width: 50em;
}

.page-home .home-member {
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
  position: relative;
}

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

.page-home .member-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.page-home .member-list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(154, 174, 187, 0.12);
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .member-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.15rem;
}

.page-home .member-list strong {
  color: var(--cream);
  font-weight: 600;
}

.page-home .member-visual {
  position: relative;
  align-self: start;
}

.page-home .member-visual img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.page-home .member-badge {
  position: absolute;
  left: 1rem;
  bottom: 1.5rem;
  background: rgba(10, 31, 68, 0.93);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-home .badge-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--mist);
  letter-spacing: 0.06em;
}

.page-home .badge-status {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
}

.page-home .badge-extra {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--cream);
}

.page-home .badge-extra .status-dot {
  width: 7px;
  height: 7px;
}

.page-home .home-history {
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}

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

.page-home .history-visual {
  position: relative;
  align-self: center;
}

.page-home .history-visual img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.page-home .history-copy .section-lead {
  margin-bottom: 0;
}

.page-home .history-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.page-home .data-card {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 1.25rem;
}

.page-home .data-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--mist);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.page-home .data-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  line-height: 1.1;
}

.page-home .data-note {
  display: block;
  font-size: 0.78rem;
  color: var(--mist);
  margin-top: 0.35rem;
}

.page-home .history-note {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  padding-left: 1rem;
}

.page-home .history-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.page-home .text-link {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(31, 182, 200, 0.4);
  padding-bottom: 2px;
  transition: color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

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

.page-home .home-desktop {
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}

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

.page-home .desktop-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.page-home .desktop-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .dot-marker {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.5em;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .desktop-visual {
  position: relative;
  align-self: center;
}

.page-home .desktop-visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(154, 174, 187, 0.2);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.page-home .home-cta {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.3);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.page-home .cta-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}

.page-home .cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  margin: 0 0 1.5rem;
}

.page-home .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 720px) {
  .page-home .home-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .console-tiles {
    grid-template-columns: 0.8fr 1fr 1fr;
  }

  .page-home .ctile-main {
    grid-column: auto;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }

  .page-home .hero-copy {
    border-right: 1px solid rgba(212, 175, 55, 0.25);
    padding-right: 2.5rem;
  }

  .page-home .member-grid {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }

  .page-home .history-grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }

  .page-home .desktop-grid {
    grid-template-columns: 6fr 6fr;
    align-items: center;
  }
}

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