/* GUYZ - Home Page Styles */

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(11,11,20,0.4) 0%,
    rgba(11,11,20,0.6) 50%,
    rgba(11,11,20,0.95) 90%,
    rgba(11,11,20,1) 100%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 900px;
  padding: 0 var(--container-padding);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  background: rgba(232,213,183,0.08); border: 1px solid rgba(232,213,183,0.15);
  font-size: var(--text-xs); font-weight: var(--font-medium); color: var(--color-secondary);
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  margin-bottom: var(--space-8);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-secondary);
  animation: pulse-glow 2s infinite;
}
.hero-title {
  font-family: var(--font-display); font-size: var(--text-hero);
  font-weight: var(--font-bold); line-height: 1.05; margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--color-secondary); font-style: italic; }
.hero-desc {
  font-size: var(--text-xl); color: var(--color-text-secondary);
  line-height: var(--leading-relaxed); margin-bottom: var(--space-10);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions {
  display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: var(--space-10); left: 50%;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  color: var(--color-text-muted); font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
}
.hero-scroll .scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--color-secondary), transparent);
}

/* Hero Decoration Orbs */
.hero .orb-1 { width: 400px; height: 400px; top: 10%; left: -10%; }
.hero .orb-2 { width: 300px; height: 300px; bottom: 20%; right: -5%; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: var(--space-12) 0; border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8);
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display); font-size: var(--text-4xl);
  font-weight: var(--font-bold); color: var(--color-secondary);
  margin-bottom: var(--space-2);
}
.stat-item .stat-label {
  font-size: var(--text-sm); color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
}

/* ---------- Portfolio Section ---------- */
.portfolio-section .section-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-6); margin-bottom: var(--space-10);
}
.portfolio-section .section-top .filter-tabs { margin-top: var(--space-4); }

/* ---------- Featured Section ---------- */
.featured-section {
  position: relative; overflow: hidden;
}
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6);
  min-height: 500px;
}
.featured-large {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  grid-row: span 2;
}
.featured-large img { width: 100%; height: 100%; object-fit: cover; }
.featured-small { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.featured-small img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Companies Section ---------- */
.companies-section {
  background: var(--color-surface); position: relative;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.companies-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative; text-align: center; overflow: hidden;
}
.cta-box {
  position: relative; padding: var(--space-16) var(--space-8);
  border-radius: var(--radius-2xl); overflow: hidden;
  background: linear-gradient(135deg, rgba(232,213,183,0.08), rgba(255,107,53,0.05));
  border: 1px solid var(--color-border-accent);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232,213,183,0.06), transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display); font-size: var(--text-4xl);
  font-weight: var(--font-bold); margin-bottom: var(--space-4);
}
.cta-desc {
  font-size: var(--text-lg); color: var(--color-text-secondary);
  margin-bottom: var(--space-8); max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-title { font-size: var(--text-5xl); }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-large { grid-row: auto; }
  .portfolio-section .section-top { flex-direction: column; align-items: flex-start; }
}
