/* ══════════════════════════════
   HOME PAGE
══════════════════════════════ */
/*#page-home{}*/

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.hero .glow-orb:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--purple-glow);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
.hero .glow-orb:nth-child(2) {
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, 0.07);
  bottom: 10%;
  right: 10%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
}
.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--purple-light), #c4b5fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 520px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  border-top: 1px solid var(--border2);
  padding-top: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-stat-num {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Product showcase strip */
.products-strip {
  padding: 80px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
.strip-title {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 48px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.strip-card {
  background: var(--surface);
  padding: 28px 24px;
  cursor: pointer;
  transition: background 0.25s;
  border-radius: 0;
}
.strip-card:first-child {
  border-radius: 12px 0 0 12px;
}
.strip-card:last-child {
  border-radius: 0 12px 12px 0;
}
.strip-card:hover {
  background: var(--surface2);
}
.strip-card-name {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.strip-card-type {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.dot-live {
  background: #34d399;
}
.dot-soon {
  background: #fbbf24;
}
.dot-purple {
  background: var(--purple-light);
}

/* About strip */
.home-about {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title {
  text-align: left;
}
.about-text .section-sub {
  max-width: none;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.badge {
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  font-size: 0.72rem;
  color: var(--muted);
}
.about-visual-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    var(--purple-glow),
    transparent 65%
  );
}
.av-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  position: relative;
}
.av-name {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
}
.av-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  position: relative;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Home responsive */
@media (max-width: 768px) {
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-about {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
}
