/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   BASE
===================== */
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  background: #0b0b0f;
  color: #828181;
  line-height: 1.6;
}

/* TITLES */
h1, h2, h3 {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

/* 🔽 REDUCED H2 LINE HEIGHT */
h2 {
  line-height: 1.15;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  padding: 28px 40px;
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* EMAIL */
.nav-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav-email img {
  width: 18px;
  height: 18px;
}

.nav-email:hover {
  opacity: 1;
}

/* =====================
   HERO
===================== */
.hero {
  padding: 140px 20px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2c2c3c;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #8b8b99;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60C9EC, #a78bfa);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.6); opacity: 1; }
  100% { transform: scale(1); opacity: .6; }
}

/* MAIN TITLE */
.hero h1 {
  font-size: 112px;
  font-weight: 800;
  margin: 36px 0 20px;
  line-height: 1.15;
  padding-bottom: 8px;
}

.hero h1 span {
  background: linear-gradient(135deg, #60C9EC, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ROTATING TEXT */
.rotating-text {
  display: inline-block;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.7s ease;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.7s ease;
}

/* HERO TEXT */
.coming-soon {
  font-size: 14px;
  color: #a78bfa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto;
}

/* =====================
   HERO BUTTONS
===================== */
.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;

  /* 🔽 ICON SUPPORT */
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: block;
}

/* INSTAGRAM */
.btn-primary {
  background: linear-gradient(135deg, #66c4ed);
  color: #0b0b0f;
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-primary .btn-icon {
  filter: brightness(0);
}

/* LINKEDIN */
.btn-outline {
  color: #9a9a9a;
  border: 1px solid #3a3a3a;
  background: transparent;
}

.btn-outline:hover {
  color: #ffffff;
  border-color: #a78bfa;
}

/* =====================
   SERVICES
===================== */
.services {
  padding: 120px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.services h2 {
  font-size: 42px;
  margin: 12px 0 60px;
}

.services span {
  color: #a78bfa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* SERVICE CARD */
.card {
  background: #12121a;
  padding: 36px;
  border-radius: 20px;
  position: relative;
}

.card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  opacity: 0.85;
}

.card h3 {
  margin-bottom: 10px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   SPLIT SECTION
===================== */
.split-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.split-section h2 {
  font-size: 42px;
}

.split-section span {
  color: #60C9EC;
}

.split-section p {
  margin-top: 18px;
}


.contact-info {
  margin-top: 30px;
  color: #c2c2c2;
}

/* =====================
   FOOTER
===================== */
footer {
  padding: 40px;
  text-align: center;
  color: #565656;
  border-top: 1px solid #1f1f2a;
}

footer p {
  font-size: 14px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .navbar {
    padding: 20px;
  }

  .services {
    padding: 80px 0;
  }

  .container,
  .split-section {
    padding: 50px 20px;
  }

  .split-section {
    gap: 40px;
  }
}

/* =====================
   ONPLAY SECTION
===================== */
.onplay-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #9b6efd, #60c9ec);
  border-radius: 30px;
  color: #ffffff;
  margin: 80px 60px;
}

.onplay-section .container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT TEXT CONTENT */
.onplay-left {
  max-width: 700px;
}

.onplay-section small {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.onplay-section h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

.onplay-section p {
  font-size: 18px;
  line-height: 1.6;
}

/* RIGHT ACTIONS */
.onplay-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
}

.onplay-logo img {
  height: 56px;
}

.onplay-actions img {
  height: 56px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.onplay-actions img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .onplay-section {
    padding: 80px 20px;
    margin: 60px 20px;
  }

  .onplay-section .container {
    flex-direction: column;
  }

  .onplay-right {
    align-items: flex-start;
    margin-top: 32px;
  }

  .onplay-section h2 {
    font-size: 42px;
  }

  .onplay-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .onplay-section {
    padding: 60px 10px;
    margin: 40px 10px;
  }

  .onplay-section h2 {
    font-size: 42px;
  }

  .onplay-section p {
    font-size: 15px;
  }

  .onplay-logo img {
    height: 56px;
  }

  .onplay-actions img {
    height: 46px;
  }
}
