/* ================================================
   INDEX PAGE STYLES
   ================================================ */

/* --- HERO --- */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 50%,
      rgba(45, 125, 210, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(45, 125, 210, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #0b1f3a 0%, #132847 50%, #0b1f3a 100%);
  pointer-events: none;
}
/* Subtle dot grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.hero-text {
  max-width: 560px;
}
.hero-headline {
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin: 12px 0 28px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  word-break: keep-all;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.hero-phone-wrap {
  position: relative;
  z-index: 2;
}
.hero-phone {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 100px;
  z-index: 3;
}
.hero-badge img {
  width: 180px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.hero-badge:hover img {
  transform: scale(1.05);
}

/* --- Stats bar --- */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  padding: 24px 40px;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* --- Business Section --- */
.biz-section {
  background: var(--off-white);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.7;
}
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.biz-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
}
.biz-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 16px;
}
.biz-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.biz-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.biz-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- Reborn Market --- */
.market-section {
  background: var(--navy);
  padding: var(--section-pad);
}
.market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.market-text .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.market-text .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}
.market-text h2 {
  color: var(--white);
}
.market-text p {
  color: rgba(255, 255, 255, 0.72);
  word-break: keep-all;
}
.market-brand {
  color: var(--accent-bright);
  font-style: normal;
}
.market-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.market-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.market-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.market-img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
}

/* --- Partner Section --- */
.partner-section {
  background: var(--white);
}
.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.partner-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.partner-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    display: none;
  }
  .hero-text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    padding-top: 60px;
  }
  .hero-headline {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .market-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .partner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .partner-img-wrap img {
    height: 260px;
  }
  .biz-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
