/* ChartHits Studio — Premium Music Production House */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #030306;
  --surface: #0C0C14;
  --card: #111119;
  --border: rgba(255,255,255,0.06);
  --accent: #FF3D00;
  --accent-glow: rgba(255,61,0,0.15);
  --blue: #2962FF;
  --green: #00E676;
  --text: #F0F0F5;
  --text-mid: rgba(255,255,255,0.7);
  --text-dim: rgba(255,255,255,0.4);
  --heading: 'Sora', sans-serif;
  --body: 'Inter', sans-serif;
  --radius: 16px;
}

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

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

.container { max-width:1240px; margin:0 auto; padding:0 32px; }

/* ── NAV ── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(3,3,6,0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; }
.logo { text-decoration:none; display:flex; align-items:center; gap:10px; }
.logo img { height:38px; }
.logo-text { font-family:var(--heading); font-weight:800; font-size:18px; color:#fff; letter-spacing:-0.5px; }
.logo-text span { color:var(--accent); }
.nav-links { display:flex; gap:36px; align-items:center; }
.nav-links a { font-size:13px; font-weight:500; color:var(--text-dim); text-decoration:none; letter-spacing:0.3px; transition:color 0.2s; }
.nav-links a:hover { color:#fff; }
.nav-cta {
  padding:10px 24px; background:var(--accent); color:#fff; font-weight:600; font-size:13px;
  border-radius:10px; text-decoration:none; transition:all 0.2s;
  box-shadow:0 0 20px var(--accent-glow);
}
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 4px 30px var(--accent-glow); }
.mobile-menu { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; }
.mobile-menu span { width:22px; height:2px; background:var(--accent); border-radius:2px; }

/* ── HERO ── */
.hero {
  min-height:100vh; display:flex; align-items:center; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,61,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(41,98,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0,230,118,0.03) 0%, transparent 40%);
}
.hero-content { position:relative; padding:160px 0 100px; max-width:700px; }
.hero-label {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 18px; background:rgba(255,61,0,0.08); border:1px solid rgba(255,61,0,0.15);
  border-radius:100px; font-size:12px; font-weight:600; color:var(--accent);
  letter-spacing:1.5px; text-transform:uppercase; margin-bottom:32px;
}
.hero-label .dot { width:6px; height:6px; border-radius:50%; background:var(--accent); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family:var(--heading); font-size:clamp(44px,6vw,72px); font-weight:800;
  line-height:1.05; letter-spacing:-2px; margin-bottom:28px;
}
.hero h1 .line2 { color:var(--text-dim); }
.hero p { font-size:18px; color:var(--text-mid); max-width:520px; line-height:1.7; margin-bottom:40px; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:16px 36px; font-weight:600; font-size:14px;
  border-radius:12px; text-decoration:none; transition:all 0.25s; border:none; cursor:pointer;
}
.btn-fill {
  background:var(--accent); color:#fff;
  box-shadow:0 4px 24px var(--accent-glow);
}
.btn-fill:hover { transform:translateY(-2px); box-shadow:0 8px 40px rgba(255,61,0,0.3); }
.btn-outline {
  background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color:rgba(255,255,255,0.4); background:rgba(255,255,255,0.03); }

/* ── STATS BAR ── */
.stats-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:var(--surface);
}
.stat-item { padding:40px 32px; text-align:center; border-right:1px solid var(--border); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:var(--heading); font-size:42px; font-weight:800; color:#fff; }
.stat-num .accent { color:var(--accent); }
.stat-label { font-size:13px; color:var(--text-dim); margin-top:4px; text-transform:uppercase; letter-spacing:1px; }

/* ── SECTIONS ── */
.section { padding:100px 0; }
.section-label {
  font-size:11px; font-weight:700; color:var(--accent); letter-spacing:3px;
  text-transform:uppercase; margin-bottom:16px;
}
.section-title {
  font-family:var(--heading); font-size:40px; font-weight:800;
  letter-spacing:-1px; margin-bottom:20px; line-height:1.15;
}
.section-desc { font-size:16px; color:var(--text-dim); max-width:560px; line-height:1.7; margin-bottom:56px; }
.section-center { text-align:center; }
.section-center .section-desc { margin-left:auto; margin-right:auto; }

/* ── SERVICES GRID ── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card {
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  padding:40px 32px; transition:all 0.3s; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--accent), var(--blue)); opacity:0; transition:opacity 0.3s;
}
.service-card:hover { border-color:rgba(255,61,0,0.2); transform:translateY(-4px); }
.service-card:hover::before { opacity:1; }
.service-icon {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:24px;
  background:rgba(255,61,0,0.08); border:1px solid rgba(255,61,0,0.12);
}
.service-card h3 { font-family:var(--heading); font-size:20px; font-weight:700; margin-bottom:12px; }
.service-card p { font-size:14px; color:var(--text-dim); line-height:1.7; }

/* ── CLIENTS ── */
.clients-row {
  display:flex; align-items:center; justify-content:center; gap:48px;
  padding:48px 0; flex-wrap:wrap; opacity:0.4;
}
.clients-row span { font-family:var(--heading); font-size:18px; font-weight:600; color:var(--text-dim); letter-spacing:1px; }

/* ── TEAM ── */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card {
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; transition:all 0.3s;
}
.team-card:hover { border-color:rgba(255,61,0,0.2); transform:translateY(-4px); }
.team-photo { width:100%; aspect-ratio:1; object-fit:cover; }
.team-info { padding:20px; }
.team-name { font-family:var(--heading); font-size:16px; font-weight:700; margin-bottom:2px; }
.team-role { font-size:12px; color:var(--accent); font-weight:500; margin-bottom:8px; }
.team-bio { font-size:12px; color:var(--text-dim); line-height:1.5; }

/* ── STUDIO ── */
.studio-grid { display:grid; grid-template-columns:2fr 1fr; gap:24px; }
.studio-img { width:100%; height:100%; min-height:400px; object-fit:cover; border-radius:var(--radius); }
.studio-features { display:flex; flex-direction:column; gap:16px; }
.studio-feat {
  flex:1; background:var(--card); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; justify-content:center;
}
.studio-feat h4 { font-family:var(--heading); font-size:15px; font-weight:700; margin-bottom:6px; }
.studio-feat p { font-size:13px; color:var(--text-dim); line-height:1.5; }

/* ── CTA ── */
.cta-section {
  background:linear-gradient(135deg, rgba(255,61,0,0.08) 0%, rgba(41,98,255,0.06) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:80px 0; text-align:center;
}

/* ── FOOTER ── */
.footer { background:var(--surface); border-top:1px solid var(--border); padding:80px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2.5fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer h5 {
  font-family:var(--heading); font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:2px; color:var(--text-mid); margin-bottom:20px;
}
.footer-links { display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:14px; color:var(--text-dim); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--accent); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:32px; border-top:1px solid var(--border); flex-wrap:wrap; gap:16px;
}
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:12px; color:rgba(255,255,255,0.2); text-decoration:none; }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.15); }
.social-icons { display:flex; gap:10px; margin-top:20px; }
.social-icon {
  width:40px; height:40px; border-radius:10px; background:var(--card);
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  text-decoration:none; transition:all 0.2s;
}
.social-icon:hover { border-color:rgba(255,61,0,0.3); background:rgba(255,61,0,0.05); }
.social-icon svg { fill:var(--text-dim); width:16px; height:16px; }

/* ── PAGE ── */
.page-header {
  padding:140px 0 64px; text-align:center;
  background:var(--surface); border-bottom:1px solid var(--border);
}
.page-header h1 { font-family:var(--heading); font-size:48px; font-weight:800; letter-spacing:-1px; margin-bottom:12px; }
.page-header p { color:var(--text-dim); font-size:16px; }
.page-content { padding:80px 0; }
.page-content p { font-size:16px; color:var(--text-mid); line-height:1.8; margin-bottom:24px; }
.page-content h2 { font-family:var(--heading); font-size:30px; font-weight:700; margin:48px 0 16px; letter-spacing:-0.5px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .services-grid, .team-grid { grid-template-columns:repeat(2,1fr); }
  .studio-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display:none; position:absolute; top:72px; left:0; right:0; background:rgba(3,3,6,0.98); flex-direction:column; padding:24px; gap:16px; }
  .nav-links.open { display:flex; }
  .mobile-menu { display:flex; }
  .services-grid, .team-grid { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .hero h1 { font-size:36px; letter-spacing:-1px; }
  .footer-grid { grid-template-columns:1fr; }
}
