/* ---------- Tokens ---------- */
:root {
  --bg: #07070b;
  --bg-alt: #0d0e14;
  --card: #12131b;
  --card-border: #21232f;
  --cyan: #7fe3f0;
  --cyan-bright: #a6f0f8;
  --cyan-dim: rgba(127, 227, 240, 0.15);
  --magenta: #ff5fb0;
  --text: #f2f6f8;
  --text-muted: #9aa3ab;
  --radius: 16px;
  --max-width: 1140px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--cyan); }

/* ---------- Background glow ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 10%, rgba(127, 227, 240, 0.16), transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(255, 95, 176, 0.10), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(127, 227, 240, 0.08), transparent 50%),
    var(--bg);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 11, 0.75);
  border-bottom: 1px solid var(--card-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(127, 227, 240, 0.5));
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--cyan);
  color: #07070b !important;
  font-weight: 700 !important;
}

.nav-cta:hover { color: #07070b !important; opacity: 0.9; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-bright));
  color: #07070b;
  box-shadow: 0 0 30px rgba(127, 227, 240, 0.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(127, 227, 240, 0.4); }

.btn-ghost {
  border-color: var(--card-border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.btn-large { padding: 16px 38px; font-size: 1rem; margin-top: 30px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 80vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 14px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 0 40px rgba(127, 227, 240, 0.25);
}

.hero-tagline {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: relative;
  z-index: 2;
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 0 50px rgba(127, 227, 240, 0.35));
  animation: float 5s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(127, 227, 240, 0.25);
  box-shadow: 0 0 80px rgba(127, 227, 240, 0.15) inset;
  animation: spin 30s linear infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 95, 176, 0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Sections ---------- */
.section { padding: 90px 24px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }

.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.section-sub {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-copy strong { color: var(--cyan); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cyan);
}

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

/* ---------- Genres ---------- */
.genre-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.genre-chip {
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-border);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.genre-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
  transform: translateY(-3px);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
}

.service-icon { font-size: 1.8rem; margin-bottom: 14px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 22px;
  text-align: center;
}

.price-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--cyan);
  margin: 14px 0 8px;
}

.price span { font-size: 1.1rem; font-weight: 600; color: var(--text-muted); }

.price-note { font-size: 0.85rem; color: var(--text-muted); }

.price-featured {
  border-color: var(--cyan);
  background: linear-gradient(160deg, rgba(127, 227, 240, 0.08), var(--card));
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(127, 227, 240, 0.15);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #07070b;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ---------- Contact ---------- */
.contact-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(127, 227, 240, 0.12), transparent 60%);
  pointer-events: none;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
  text-align: left;
}

.contact-link:hover { border-color: var(--cyan); transform: translateY(-3px); }

.contact-icon { font-size: 1.6rem; }

.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 34px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-brand .brand-logo { width: 28px; height: 28px; }
.footer-brand .brand-name { font-size: 0.9rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cyan);
  color: #07070b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 25px rgba(127, 227, 240, 0.35);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
  .hero-text { order: 1; }
  .hero-art { order: 0; }
  .hero-actions { justify-content: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 7, 11, 0.97);
    border-bottom: 1px solid var(--card-border);
    padding: 24px;
    gap: 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 50px 22px; }
}
