/* ============================================================
   NADEEM MASOOD BJS — Premium Modern 3D Single-Tone Design
   Signature: violet glass cards, floating orbs, spotlight glow,
   film-grain texture, photo-frame components
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --ink:       #05040c;
  --bg-900:    #08071a;
  --bg-800:    #12102a;
  --bg-700:    #1c1840;
  --bg-600:    #2c2560;
  --accent:    #7c5cff;
  --accent-2:  #9b7bff;
  --accent-3:  #c4b3ff;
  --accent-hot:#ff5cb3;
  --glow:      rgba(124,92,255,0.5);
  --text:      #f5f3fd;
  --muted:     #a79fcf;
  --line:      rgba(124,92,255,0.2);
  --glass:     rgba(30,26,68,0.55);
  --radius:    18px;
  --fDisplay:  'Sora', sans-serif;
  --fBody:     'Inter', sans-serif;
  --fMono:     'Space Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg-900);
  color: var(--text);
  font-family: var(--fBody);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ─── AMBIENT BACKGROUND: floating orbs + grain + spotlight ─── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
  animation: floatOrb 18s ease-in-out infinite;
}
.orb.o1 { width: 480px; height: 480px; top: -120px; left: -80px; background: radial-gradient(circle, var(--accent), transparent 70%); animation-duration: 22s; }
.orb.o2 { width: 420px; height: 420px; top: 20%; right: -140px; background: radial-gradient(circle, var(--accent-hot), transparent 70%); opacity: .28; animation-duration: 26s; animation-delay: -6s; }
.orb.o3 { width: 520px; height: 520px; bottom: -160px; left: 25%; background: radial-gradient(circle, var(--accent-2), transparent 70%); opacity: .35; animation-duration: 30s; animation-delay: -12s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-30px,25px) scale(0.95); }
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 550px at 15% -5%, rgba(124,92,255,0.18), transparent 60%),
    radial-gradient(ellipse 800px 550px at 100% 20%, rgba(255,92,179,0.10), transparent 60%),
    radial-gradient(ellipse 1000px 650px at 50% 100%, rgba(124,92,255,0.12), transparent 60%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── GLASS 3D CARD ────────────────────────────────────────── */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative; overflow: hidden; z-index: 2;
}
.tilt-card { transition: transform .25s cubic-bezier(.22,.6,.36,1), box-shadow .25s; transform-style: preserve-3d; will-change: transform; }
.tilt-card:hover { box-shadow: 0 30px 70px rgba(124,92,255,0.35), 0 0 0 1px rgba(124,92,255,0.4); }
.tilt-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(124,92,255,0.14), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.tilt-card:hover::after { opacity: 1; }

/* ─── PHOTO FRAME (for real photos — drop <img> straight in) ── */
.photo-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.photo-frame:hover img { transform: scale(1.06); }
.photo-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(5,4,12,0.55) 100%);
}
.photo-frame .badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--fMono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(124,92,255,0.85); color: #fff; padding: .4rem .9rem; border-radius: 20px;
  backdrop-filter: blur(6px);
}

.ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(124,92,255,0.25), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255,92,179,0.15), transparent 55%),
    linear-gradient(155deg, var(--bg-700), var(--bg-800));
  color: var(--accent-3);
  font-family: var(--fMono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 1rem;
}
.ph svg { width: 34px; height: 34px; opacity: .5; }

/* ─── ORNAMENT / EYEBROW ──────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--fMono); font-size: .74rem; letter-spacing: .16em;
  color: var(--accent-3); text-transform: uppercase; margin-bottom: .8rem;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

/* ─── TRUST TICKER ────────────────────────────────────────── */
.ticker-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; position: relative; z-index: 1; background: rgba(124,92,255,0.04); }
.ticker { display: flex; gap: 3.5rem; white-space: nowrap; animation: tickerScroll 26s linear infinite; width: max-content; }
.ticker span { font-family: var(--fMono); font-size: .82rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; display: flex; align-items: center; gap: .6rem; }
.ticker span::before { content: '✦'; color: var(--accent-3); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,4,12,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo .mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fDisplay); font-weight: 800; font-size: 1rem; color: #fff;
  box-shadow: 0 6px 20px rgba(124,92,255,0.5);
}
.nav-logo .word { font-family: var(--fDisplay); font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.nav-logo .word span { color: var(--accent-3); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; flex-wrap: wrap; }
.nav-links a { font-family: var(--fBody); font-size: .89rem; font-weight: 500; text-decoration: none; color: var(--muted); transition: color .25s; position: relative; padding-bottom: 4px; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-hot)); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #fff; border-radius: 10px; padding: .6rem 1.4rem;
  font-family: var(--fBody); font-size: .88rem; font-weight: 600;
  text-decoration: none; box-shadow: 0 6px 22px rgba(124,92,255,0.4);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(124,92,255,0.55); }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.ham span { width: 24px; height: 2px; background: var(--accent-3); display: block; border-radius: 2px; }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero { position: relative; padding: 160px 5% 70px; text-align: center; z-index: 2; }
.page-hero h1 { font-family: var(--fDisplay); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -.01em; }
.page-hero h1 .grad { background: linear-gradient(135deg, var(--accent-2), var(--accent-hot)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p.lead { max-width: 600px; margin: 1.2rem auto 0; color: var(--muted); font-size: 1.05rem; }
.breadcrumb { font-family: var(--fMono); font-size: .78rem; letter-spacing: .08em; color: var(--muted); margin-top: 1.4rem; }
.breadcrumb a { color: var(--accent-3); text-decoration: none; }

/* ─── SECTION ─────────────────────────────────────────────── */
.section { position: relative; z-index: 2; padding: 90px 5%; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(28,24,64,0.4), transparent); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-head h2 { font-family: var(--fDisplay); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -.01em; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1rem; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--fBody); font-size: .92rem; font-weight: 600;
  text-decoration: none; padding: .85rem 1.9rem; border-radius: 10px; cursor: pointer; border: none;
  transition: transform .2s, box-shadow .25s, background .25s, color .25s;
}
.btn-solid { background: linear-gradient(135deg, var(--accent), var(--accent-hot)); color: #fff; box-shadow: 0 10px 30px rgba(124,92,255,0.4); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(124,92,255,0.55); }
.btn-ghost { background: rgba(124,92,255,0.08); border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { background: rgba(124,92,255,0.18); border-color: var(--accent); transform: translateY(-2px); }

/* ─── GRID / CARDS ────────────────────────────────────────── */
.grid { display: grid; gap: 1.8rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { border-radius: var(--radius); overflow: hidden; }
.card-body { padding: 1.5rem 1.6rem 1.8rem; position: relative; z-index: 2; }
.card-body .tag { font-family: var(--fMono); font-size: .72rem; letter-spacing: .1em; color: var(--accent-3); text-transform: uppercase; margin-bottom: .5rem; display: block; }
.card-body h3 { font-family: var(--fDisplay); font-weight: 700; font-size: 1.2rem; margin-bottom: .5rem; }
.card-body p { color: var(--muted); font-size: .9rem; }
.thumb { aspect-ratio: 16/10; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; position: relative; }

.ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--fMono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 20px; backdrop-filter: blur(6px);
}
.ribbon.upcoming { background: rgba(124,92,255,0.9); color: #fff; }
.ribbon.past { background: rgba(167,159,207,0.25); color: var(--muted); border: 1px solid var(--line); }

/* ─── TABS ────────────────────────────────────────────────── */
.tabs { display: flex; gap: .8rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn { font-family: var(--fBody); font-size: .9rem; font-weight: 600; background: rgba(124,92,255,0.08); border: 1px solid var(--line); color: var(--muted); padding: .6rem 1.5rem; border-radius: 30px; cursor: pointer; transition: all .2s; }
.tab-btn.active, .tab-btn:hover { background: linear-gradient(135deg, var(--accent), var(--accent-hot)); color: #fff; border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── VIDEO EMBED ─────────────────────────────────────────── */
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; background: var(--bg-800); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ─── VIEW MORE ───────────────────────────────────────────── */
.hidden-item { display: none; }
.view-more-wrap { text-align: center; margin-top: 2.5rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { position: relative; z-index: 2; background: var(--ink); border-top: 1px solid var(--line); padding: 70px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; text-decoration: none; }
.footer-brand .logo .mark { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-hot)); display: flex; align-items: center; justify-content: center; font-family: var(--fDisplay); font-weight: 800; color: #fff; }
.footer-brand .logo .word { font-family: var(--fDisplay); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.footer-brand p { color: var(--muted); font-size: .88rem; }
.social-row { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-btn { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: rgba(124,92,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--accent-3); text-decoration: none; font-size: 1rem; transition: background .2s, border-color .2s; }
.social-btn:hover { background: rgba(124,92,255,0.22); border-color: var(--accent); }
.footer-col h5 { font-family: var(--fMono); font-size: .74rem; letter-spacing: .14em; color: var(--accent-3); text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent-3); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--muted); font-size: .8rem; }
.footer-bottom .accent { color: var(--accent-3); }

/* ─── WHATSAPP POPUP ──────────────────────────────────────── */
#wa-popup { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; }
.wa-bubble { background: linear-gradient(135deg, #25d366, #1eb857); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 22px rgba(37,211,102,.5); animation: waPulse 2.6s infinite; transition: transform .2s; }
.wa-bubble:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 22px rgba(37,211,102,.5);} 50%{box-shadow:0 4px 34px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.08);} }
.wa-bubble svg { width: 30px; height: 30px; fill: #fff; }
.wa-tooltip { background: var(--bg-800); color: var(--text); padding: .9rem 1.2rem; border-radius: 12px; border: 1px solid var(--line); font-family: var(--fBody); font-size: .88rem; max-width: 230px; line-height: 1.5; display: none; flex-direction: column; gap: .4rem; position: relative; box-shadow: 0 10px 34px rgba(0,0,0,.5); }
.wa-tooltip.open { display: flex; }
.wa-tooltip strong { font-family: var(--fDisplay); color: #4ade80; font-size: 1.02rem; }
.wa-close { position: absolute; top: .3rem; right: .5rem; background: none; border: none; cursor: pointer; color: var(--muted); font-size: .95rem; }
.wa-link { display: inline-block; background: #25d366; color: #fff; border-radius: 8px; padding: .4rem .9rem; text-decoration: none; font-family: var(--fBody); font-weight: 600; font-size: .85rem; margin-top: .2rem; text-align: center; }

/* ─── FORMS ───────────────────────────────────────────────── */
.form-box { padding: 2.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-field label { display: block; font-family: var(--fMono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-3); margin-bottom: .5rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; background: rgba(5,4,12,0.4); border: 1px solid var(--line); border-radius: 8px; padding: .75rem .9rem; color: var(--text); font-family: var(--fBody); font-size: .95rem; outline: none; transition: border-color .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ─── STEPS ───────────────────────────────────────────────── */
.step-num { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-hot)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--fDisplay); font-weight: 700; }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .nav-links { gap: 1.1rem; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .nav-links { display: none; position: fixed; top: 78px; left: 0; right: 0; background: rgba(5,4,12,0.98); flex-direction: column; padding: 2rem 8%; gap: 1.2rem; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .ham { display: flex; }
  .grid-2, .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   NODE.JS REBUILD — ADDITIONS
   Widescreen hero group photo, 3D ambient canvas, utility classes
   ============================================================ */

/* ─── 3D AMBIENT CANVAS (three.js particle field, sits behind orbs) ─── */
#three-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .55; }
#three-bg canvas { display: block; width: 100%; height: 100%; }

/* ─── HERO (rebuilt: centered copy + full-width widescreen group photo) ─── */
.hero-section {
  position: relative; z-index: 2;
  padding: 150px 5% 30px;
  display: flex; flex-direction: column; align-items: center; gap: 2.6rem;
}
.hero-text { max-width: 820px; text-align: center; }
.hero-h1 {
  font-family: var(--fDisplay); font-weight: 900;
  font-size: clamp(2.3rem, 5.8vw, 4.1rem); line-height: 1.08; letter-spacing: -.02em;
}
.grad-text, .grad {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-hot));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 1.4rem auto 2.2rem; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.stat-value { font-family: var(--fDisplay); font-size: 1.9rem; color: var(--accent-3); font-weight: 800; text-align: center; }
.stat-label { font-family: var(--fMono); font-size: .72rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; text-align: center; }

/* Widescreen group photo banner */
.photo-frame-wide {
  width: 100%; max-width: 1180px;
  aspect-ratio: 21 / 8;
  position: relative;
}
.photo-frame-wide::after {
  content: ''; position: absolute; inset: -2px; z-index: -1; border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(from 0deg, var(--accent), var(--accent-hot), var(--accent-2), var(--accent));
  filter: blur(18px); opacity: .45; animation: ringSpin 12s linear infinite;
}
@keyframes ringSpin { to { filter: blur(18px) hue-rotate(360deg); } }
@media (max-width: 800px) { .photo-frame-wide { aspect-ratio: 4 / 3; } }

/* Utility classes replacing repeated inline styles */
.h2-display { font-family: var(--fDisplay); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.muted-p { color: var(--muted); margin-top: 1rem; }
.field-label { font-family: var(--fMono); font-size: .74rem; letter-spacing: .08em; color: var(--accent-3); text-transform: uppercase; }
.step-desc { color: var(--muted); font-size: .9rem; margin-top: .3rem; }

/* Track rows (music page + home preview) */
.track-row { display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem 1.4rem; }
.track-play { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-hot)); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.track-title { font-family: var(--fDisplay); font-size: 1.02rem; }
.track-sub { color: var(--muted); font-size: .85rem; }

/* Deeper 3D on tilt cards */
.tilt-card { transform-style: preserve-3d; }
.card.tilt-card:hover, .photo-frame.tilt-card:hover { box-shadow: 0 35px 80px rgba(124,92,255,0.4), 0 0 0 1px rgba(124,92,255,0.45); }

@media (max-width: 800px) {
  .hero-section { padding: 120px 6% 20px; }
}
