/* ============================================================
   RUDRAX.CLOUD — HOMEPAGE (QCLAY AESTHETIC)
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-text-wrap { text-align: center; }
  .hero-3d-wrap { height: auto !important; margin-top: var(--space-8); }
}

.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

@media (max-width: 768px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
}

.hero__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  background: rgba(74, 58, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.hero__headline {
  font-size: var(--text-hero);
  max-width: 1200px;
  margin-bottom: var(--space-8);
  line-height: 1;
}

.hero__sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-12);
}

/* ============================================================
   BENTO GRID (INDUSTRIES)
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 350px; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
}

/* Asymmetric styling */
.bento-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-item--wide { grid-column: span 2; }
.bento-item--tall { grid-row: span 2; }

@media (max-width: 1024px) {
  .bento-item--wide { grid-column: span 1; }
  .bento-item--tall { grid-row: span 1; }
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.bento-item ul {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.bento-item li {
  font-size: var(--text-body);
  color: var(--text-secondary);
  padding-left: var(--space-4);
  position: relative;
}
.bento-item li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
}

/* ============================================================
   DARK SECTION (PLATFORM)
   ============================================================ */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 768px) {
  .platform-grid { grid-template-columns: 1fr; }
}

.platform-visual {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-secondary);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
}

.marquee__inner {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee span {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 var(--space-8);
}
.marquee span.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HUGE CTA
   ============================================================ */
.huge-cta {
  text-align: center;
  padding: var(--space-32) 0;
}
.huge-cta h2 {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  margin-bottom: var(--space-12);
}
