/* ============================================
   KITIFY COMMERCIAL — HERO
   ============================================ */

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* ── BACKGROUND GRID ── */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 224, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
}

/* ── GLOW EFFECT ── */
#home::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 217, 0, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 80px 120px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* ── HERO LEFT ── */
.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}

.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
  margin-top: 24px;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

/* ── HERO RIGHT ── */
.hero-right {
  position: relative;
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 200, 224, 0.2);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), var(--cyan), var(--orange));
}

.hero-card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.hero-stat-num span {
  color: var(--yellow);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
}

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  animation: fadeUp 0.8s 0.6s var(--ease) both;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--mid);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.4; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}