/* ============================================
   Zeus Medya — Coming Soon
   ============================================ */

:root {
  --bg-deep: #060912;
  --bg-surface: #0d1220;
  --bg-card: rgba(15, 20, 35, 0.7);
  --gold: #ffb800;
  --gold-light: #ffe566;
  --gold-dark: #ff8a00;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.15);
  --purple: #7c3aed;
  --text-primary: #f0f4ff;
  --text-secondary: #8b95b0;
  --text-muted: #5a6478;
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(255, 184, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- Background layers ---- */

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -150px;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -14s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

.lightning-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cursor-glow {
  position: fixed;
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 245, 180, 0.14) 0%, rgba(255, 200, 50, 0.06) 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: left, top;
}

.cursor-glow.drift {
  transition: opacity 0.5s ease, left 4s ease, top 4s ease;
}

.cursor-glow.visible {
  opacity: 1;
}

.cursor-glow.pulse {
  animation: glow-pulse 0.35s ease-out;
}

@keyframes glow-pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  40% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.screen-flash {
  position: fixed;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--flash-x, 50%) var(--flash-y, 30%),
      rgba(255, 252, 230, 0.45) 0%,
      rgba(255, 220, 80, 0.15) 18%,
      rgba(0, 180, 255, 0.04) 40%,
      transparent 65%
    );
}

.screen-flash.active {
  animation: screen-flash 0.35s ease-out forwards;
}

@keyframes screen-flash {
  0% { opacity: 0; }
  12% { opacity: 1; }
  100% { opacity: 0; }
}

.bolt-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lightning-bolt {
  opacity: 0;
}

.lightning-bolt.strike {
  animation: bolt-strike 0.45s ease-out forwards;
}

@keyframes bolt-strike {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  100% { opacity: 0; }
}

/* ---- Layout ---- */

.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fade-down 0.8s ease-out both;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.5));
  animation: bolt-pulse 3s ease-in-out infinite;
}

@keyframes bolt-pulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.5)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.8)); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-zeus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-medya {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
}

.header-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-instagram svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-instagram:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.35);
  background: rgba(225, 48, 108, 0.08);
  transform: translateY(-2px);
}

.main {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* ---- Hero ---- */

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
  animation: fade-up 0.8s ease-out 0.15s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.02em;
}

.title-accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

/* ---- Platforms & Services ---- */

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: default;
}

.platform-chip svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.platform-chip:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.platform-chip[data-platform="instagram"]:hover { color: #e1306c; border-color: rgba(225, 48, 108, 0.3); }
.platform-chip[data-platform="tiktok"]:hover { color: #69c9d0; border-color: rgba(105, 201, 208, 0.3); }
.platform-chip[data-platform="youtube"]:hover { color: #ff0000; border-color: rgba(255, 0, 0, 0.3); }
.platform-chip[data-platform="twitter"]:hover { color: var(--text-primary); border-color: rgba(255, 255, 255, 0.2); }

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.service-tag {
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border-radius: var(--radius-sm);
}

/* ---- Instagram follow ---- */

.instagram-section {
  padding: 1rem 0 3rem;
  animation: fade-up 0.8s ease-out 0.3s both;
}

.instagram-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instagram-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.35), transparent 40%, rgba(255, 184, 0, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(255, 184, 0, 0.15));
  border-radius: var(--radius-md);
  color: #e1306c;
}

.instagram-icon svg {
  width: 26px;
  height: 26px;
}

.instagram-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.instagram-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-instagram svg:first-child {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-instagram:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(225, 48, 108, 0.4);
}

.btn-instagram:active {
  transform: scale(0.98);
}

.btn-instagram-arrow {
  width: 16px;
  height: 16px;
  opacity: 0.8;
  transition: transform var(--transition);
}

.btn-instagram:hover .btn-instagram-arrow {
  transform: translate(2px, -2px);
}

/* ---- Features ---- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 2rem;
  animation: fade-up 0.8s ease-out 0.6s both;
}

.feature-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--cyan);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Footer ---- */

.footer {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  animation: fade-up 0.8s ease-out 0.75s both;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links a,
.footer-email {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--gold);
}

.footer-noscript {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ---- Utilities ---- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .header-nav {
    display: flex;
  }

  .nav-instagram span {
    display: none;
  }

  .nav-instagram {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-sm);
  }

  .instagram-card {
    padding: 1.5rem;
  }

  .main {
    padding: 0 1rem 3rem;
  }

  .hero {
    padding: 1rem 0 2rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem;
  }

  .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 400px) {
  .platform-chip {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
