/* === HOTPL X — Hub Dispatcher Styles === */
:root { --color-accent: #c1c400; }

/* GNB override (dark hub) */
.gnb { background: rgba(10, 14, 20, 0.85); }
.gnb-logo { height: 32px; }

body.hotplx-hub {
  background: #0a0e14;
  color: #fff;
}

/* ===== Hero / Dispatcher ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  background:
    radial-gradient(ellipse at 50% 30%, #2a3848 0%, #141a24 40%, #080b10 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(193, 196, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(100, 120, 160, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-kicker {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.hero-quote {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

/* 3D metallic wordmark */
.hero-wordmark {
  margin: 16px 0 40px;
  line-height: 1;
}

.hero-wordmark img {
  display: block;
  width: min(80vw, 900px);
  aspect-ratio: 5 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.55))
          drop-shadow(0 2px 2px rgba(255, 255, 255, 0.15));
}

.hero-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto 56px;
}

.hero-desc--def {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding: 0 16px;
}

.hero-def-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: baseline;
}

.hero-def-row dt {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.hero-def-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.hero-def-row--sum {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-def-row--sum dd {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* ===== Split Cards ===== */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.split-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 32px 32px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-decoration: none;
  min-height: 240px;
}

.split-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.split-card--light {
  background: #ffffff;
  color: #1a1a1a;
}

.split-card--dark {
  background: #0f131a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.split-card-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.split-card-desc {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 28px;
  color: inherit;
  opacity: 0.85;
}

.split-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.split-card--light .split-card-cta {
  border: 1px solid #b8c8d8;
  color: #344452;
}
.split-card--light:hover .split-card-cta {
  background: #344452;
  color: #fff;
  border-color: #344452;
}

.split-card--dark .split-card-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.split-card--dark:hover .split-card-cta {
  background: #fff;
  color: #0f131a;
  border-color: #fff;
}

/* ===== Footer (mini) ===== */
.footer-mini {
  background: #05080c;
  color: rgba(255, 255, 255, 0.45);
  padding: 24px 0;
  font-size: 12px;
}

.footer-mini-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-mini .footer-company {
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .split-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero {
    padding: 48px 20px 64px;
  }

  .hero-wordmark {
    margin: 12px 0 32px;
  }

  .hero-desc {
    margin-bottom: 40px;
  }

  .hero-def-row {
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }

  .footer-mini-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-kicker { margin-bottom: 20px; }
  .split-card { padding: 32px 24px 28px; min-height: auto; }
  .split-card-logo { height: 32px; margin-bottom: 16px; }
}
