:root {
  --bg: #0b0d12;
  --bg-alt: #12151d;
  --ink: #ecedf2;
  --muted: #98a0ac;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --line: rgba(255, 255, 255, 0.09);
  --dark: #161a22;
  --radius: 10px;
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.solid,
.site-header.scrolled {
  background: rgba(17, 17, 19, 0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left { display: flex; gap: 34px; align-items: center; justify-content: center; }
.nav-left > a.nav-link { padding: 14px 0; }
.nav-right { display: flex; gap: 34px; justify-content: flex-end; align-items: center; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.92;
  transition: opacity 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active { opacity: 1; color: #5b96ff; }
.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { height: 62px; width: 62px; display: block; }
.brand span { color: var(--accent); }
.site-header:not(.solid):not(.scrolled) .brand span { color: inherit; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.btn-outline { border-color: currentColor; background: transparent; }
.btn-outline:hover { background: #fff; border-color: #fff; color: #0b0d12; }
.btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-dark { background: #fff; color: #0b0d12; border-color: #fff; }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: inherit; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px 0; transition: 0.3s; }
.mobile-nav { display: none; }

/* ---------- Social rail (plain, over hero) ---------- */
.social-rail {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 90;
}
.social-rail a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}
.social-rail a:hover { opacity: 1; transform: translateX(-3px); }
.social-rail a svg, .footer-socials a svg {
  width: 18px; height: 18px;
  fill: currentColor;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0e1116;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-media iframe {
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.77vh;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 70% 30%, rgba(37, 99, 235, 0.4), transparent 62%),
    radial-gradient(ellipse 70% 60% at 25% 75%, rgba(30, 58, 138, 0.55), transparent 65%),
    #0e1116;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(8, 10, 16, 0.55), rgba(8, 10, 16, 0.85)),
    rgba(8, 10, 16, 0.45);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
}
.hero-stat {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.hero-sub {
  margin-top: 24px;
  font-size: 0.9rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 25px; height: 42px; border: 1.5px solid rgba(255,255,255,0.65); border-radius: 14px;
  z-index: 2;
}
.scroll-cue::after {
  content: ''; position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: cue 1.6s infinite;
}
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(15px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Sections ---------- */
.section { padding: 120px 40px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
}
.headline {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  max-width: 1020px;
}
.headline .accent { color: var(--accent); }
.lead { margin-top: 26px; font-size: 1.15rem; color: var(--muted); max-width: 680px; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--bg); border-block: 1px solid var(--line); padding: 70px 40px; }
.stats-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item .num { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: var(--ink); }
.stat-item .num span { color: var(--accent); }
.stat-item .lbl { color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; margin-top: 8px; font-weight: 600; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 32px; margin-top: 64px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Service cards */
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-visual {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #24478f00, #0000), linear-gradient(135deg, var(--accent), #1e3a8a);
}
.service-card:nth-child(2n) .service-visual { background: linear-gradient(135deg, #2b2b2e, #131315); }
.service-body { padding: 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; align-items: flex-start; }
.service-body h3 { font-size: 1.35rem; font-weight: 700; }
.service-body p { color: var(--muted); font-size: 0.97rem; flex: 1; }

/* ---------- Logo marquee ---------- */
.logo-marquee { overflow: hidden; padding: 44px 0; background: var(--bg-alt); border-block: 1px solid var(--line); }
.logo-track { display: flex; gap: 90px; width: max-content; align-items: center; animation: marquee 32s linear infinite; }
.logo-cell { display: flex; align-items: center; justify-content: center; min-width: 130px; }
.logo-cell img { max-height: 52px; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: 0.3s; }
.logo-cell:hover img { filter: none; opacity: 1; }
.logo-cell span { font-family: var(--font-head); font-weight: 700; color: #c2c2bd; font-size: 1.3rem; white-space: nowrap; transition: color 0.3s; }
.logo-cell:hover span { color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Philosophy ---------- */
.philosophy { text-align: center; }
.philosophy .lead {
  margin-inline: auto;
  font-size: 1.5rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
  max-width: 850px;
}

/* ---------- Achievements ---------- */
.achievements-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; margin-top: 64px; }
.achievement-badge { text-align: center; }
.achievement-badge img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 18px; }
.badge-placeholder {
  width: 110px; height: 110px; margin: 0 auto 18px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
  color: var(--accent); background: var(--bg-alt);
}
.achievement-badge p { color: var(--muted); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-carousel { margin-top: 64px; position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-slide { flex: 0 0 100%; text-align: center; padding: 10px 8%; }
.testi-photo {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 28px; box-shadow: var(--shadow);
}
.testi-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--accent), #1e3a8a);
  font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: #fff;
}
.testi-slide blockquote { font-size: 1.4rem; font-family: var(--font-head); font-weight: 500; line-height: 1.5; color: var(--ink); }
.testi-name { margin-top: 26px; font-weight: 700; }
.testi-title { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }
.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }
.testi-nav button {
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 1.1rem;
  transition: 0.25s;
}
.testi-nav button:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: var(--dark); color: #fff; }
.cta-band .headline { margin-inline: auto; }
.cta-band .btn { margin-top: 44px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 210px 40px 90px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }

/* ---------- Archive cards ---------- */
.archive-list { display: flex; flex-direction: column; gap: 36px; }
.archive-card {
  display: grid; grid-template-columns: 340px 1fr; gap: 40px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.archive-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.archive-thumb { min-height: 250px; }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-thumb-placeholder {
  width: 100%; height: 100%; min-height: 250px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 3.6rem; font-weight: 700; color: #fff;
  background: linear-gradient(150deg, var(--accent), #1e3a8a);
}
.archive-logo-box { width: 100%; height: 100%; min-height: 250px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 34px; }
.archive-logo-box img { max-height: 92px; width: auto; height: auto; object-fit: contain; }
.archive-body { padding: 34px 38px 34px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.archive-body h3 { font-size: 1.7rem; font-weight: 700; }
.archive-cat {
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; font-weight: 700;
}
.archive-text { color: var(--muted); }
.archive-socials { display: flex; gap: 12px; margin-top: 8px; }
.archive-socials a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  transition: 0.25s;
}
.archive-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- IP / video cards ---------- */
.ip-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.ip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.ip-card .cover { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.ip-card .cover-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--accent), #1e3a8a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: #fff;
}
.ip-card .body { padding: 28px; }
.ip-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.ip-card p { color: var(--muted); font-size: 0.96rem; }

.video-card {
  border-radius: var(--radius); overflow: hidden; background: var(--bg);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.video-card .frame { aspect-ratio: 16 / 9; width: 100%; border: 0; display: block; }
.video-card .body { padding: 22px 26px; }
.video-card h3 { font-size: 1.1rem; font-weight: 700; }
.video-card p {
  color: var(--accent);
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  margin-top: 6px;
}

/* ---------- Forms ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { font-size: 1.7rem; margin-bottom: 18px; }
.contact-info p, .contact-info a { color: var(--muted); display: block; margin-bottom: 10px; }
.contact-info a:hover { color: var(--accent); }
.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 150px; resize: vertical; }

.alert { padding: 16px 20px; border-radius: 8px; margin: 24px 0; font-weight: 500; }
.alert-success { background: rgba(37, 99, 235, 0.08); border: 1px solid var(--accent); color: var(--accent-dark); }
.alert-error { background: rgba(200, 60, 60, 0.07); border: 1px solid #c84040; color: #a83232; }

.empty-note {
  margin-top: 60px; color: var(--muted); font-size: 1.05rem;
  border: 1px dashed #cfcfc7; border-radius: var(--radius);
  padding: 50px; text-align: center;
}

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

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #eaeae6; }
.footer-top { text-align: center; padding: 80px 40px 10px; }
.footer-top .brand { color: #fff; }
.footer-top .brand span { color: var(--accent); }
.footer-tagline {
  color: #8f8f95; letter-spacing: 0.34em; text-transform: uppercase;
  font-size: 0.75rem; margin-top: 18px; font-weight: 500;
}
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 32px auto 0; }
.newsletter-form input {
  flex: 1; background: #1b1b1e; border: 1px solid #2e2e33; border-radius: 3px;
  color: #fff; padding: 13px 20px; font-family: var(--font-body); font-size: 0.95rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-note { margin-top: 14px; color: var(--accent); font-size: 0.9rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 40px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #8f8f95; margin-bottom: 18px;
}
.footer-col a { display: block; color: #bcbcc0; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: #bcbcc0; font-size: 0.95rem; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { font-size: 0.8rem; font-weight: 600; text-transform: lowercase; margin-bottom: 0 !important; }
.footer-socials a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #232327; text-align: center; padding: 22px; color: #8f8f95; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-left, .nav-right { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .nav-toggle { display: block; justify-self: end; }
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(17, 17, 19, 0.98);
    color: #fff;
    padding: 16px 32px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .social-rail { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-body { padding: 0 28px 30px; }
  .newsletter-form { flex-direction: column; }
  .section { padding: 84px 22px; }
  .hero-stat { white-space: normal; }
  .hero-content { padding: 0 24px; }
}

/* ---------- Hero title & CTA ---------- */
.hero-title {
  font-weight: 300;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.hero-sub-text {
  margin-top: 20px;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  opacity: 0.88;
  font-weight: 300;
  max-width: 640px;
  margin-inline: auto;
}
.hero-cta { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-content .hero-stat { margin-top: 48px; font-size: clamp(1.6rem, 3.4vw, 2.6rem); opacity: 0.92; }

/* ---------- Service image variant ---------- */
.service-visual-img { padding: 0; position: relative; overflow: hidden; }
.service-visual-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.service-visual-img::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 10, 18, 0.85), rgba(8, 10, 18, 0.1) 55%, transparent),
    linear-gradient(135deg, rgba(59, 130, 246, 0.38), rgba(30, 58, 138, 0.18) 45%, transparent 75%);
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-visual-img::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--accent), #1e3a8a);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-visual-img img { transform: scale(1.07); }
.service-card:hover .service-visual-img::before { opacity: 0.75; }
.service-card:hover .service-visual-img::after { transform: scaleX(1); }

/* ---------- Platform marquee ---------- */
.platform-marquee { background: var(--dark); border-block: 1px solid var(--dark); }
.platform-marquee .logo-track { animation-duration: 40s; gap: 60px; }
.platform-chip {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: rgba(255,255,255,0.55); white-space: nowrap; transition: color 0.3s;
}
.logo-cell:hover .platform-chip { color: #fff; }

/* ---------- How it works ---------- */
.hiw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 34px; margin-top: 64px; }
.hiw-step {
  position: relative; padding: 34px 30px 30px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hiw-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hiw-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.8rem;
  color: var(--accent); opacity: 0.35; line-height: 1;
}
.hiw-step h3 { margin-top: 14px; font-size: 1.25rem; }
.hiw-step p { margin-top: 10px; color: var(--muted); font-size: 0.97rem; }

/* ---------- Latest releases ---------- */
.release-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; margin-top: 64px; }
.release-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.release-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.release-cover { aspect-ratio: 1; overflow: hidden; background: var(--bg-alt); display: block; position: relative; }
.release-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  background: rgba(8, 10, 18, 0.45);
  opacity: 0; transition: opacity 0.3s;
}
.release-play::before {
  content: ''; position: absolute; width: 62px; height: 62px; border-radius: 50%;
  background: var(--accent); z-index: -1;
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.5);
}
a.release-cover:hover .release-play { opacity: 1; }
.release-listen {
  background: var(--accent); color: #fff !important; border-color: var(--accent) !important;
}
.release-listen:hover { background: var(--accent-dark); }
.release-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.release-card:hover .release-cover img { transform: scale(1.05); }
.release-cover-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--accent); background: linear-gradient(135deg, var(--bg-alt), #ecece7);
}
.release-body { padding: 18px 20px 20px; }
.release-body h3 { font-size: 1.05rem; }
.release-body p { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }
.release-links { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.release-links a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); transition: 0.2s;
}
.release-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  position: relative; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 300; color: var(--accent); transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { padding: 0 0 24px; color: var(--muted); max-width: 720px; }

/* ---------- Testimonials v2 (artist voices marquee) ---------- */
.testi2-marquee {
  overflow: hidden; margin-top: 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.testi2-track {
  display: flex; align-items: stretch; gap: 28px;
  width: max-content; padding: 12px 0 22px;
  animation: testi2-scroll calc(var(--testi-count, 5) * 6s) linear infinite;
}
.testi2-marquee:hover .testi2-track { animation-play-state: paused; }
@keyframes testi2-scroll { to { transform: translateX(calc(-50% - 14px)); } }

.testi2-card {
  width: 350px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 24px 30px;
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.testi2-card::before {
  content: '\201C';
  position: absolute; top: 4px; right: 18px;
  font-family: var(--font-head); font-size: 6rem; line-height: 1;
  color: var(--accent); opacity: 0.12; pointer-events: none;
}
.testi2-card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #1e3a8a);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s;
}
.testi2-card:hover { transform: translateY(-8px); border-color: rgba(37, 99, 235, 0.5); box-shadow: 0 18px 48px rgba(37, 99, 235, 0.14); }
.testi2-card:hover::after { transform: scaleX(1); }

.testi2-photo {
  position: relative; overflow: hidden; border-radius: 14px;
  aspect-ratio: 4 / 4.6; margin-bottom: 20px;
}
.testi2-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none; user-select: none; -webkit-user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none;
}
.testi2-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(8, 10, 18, 0.55), transparent 45%),
    linear-gradient(135deg, rgba(59, 130, 246, 0.22), transparent 60%);
}
.testi2-card:hover .testi2-photo img { transform: scale(1.06); }
.testi2-photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 3.4rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--accent), #1e3a8a);
}
.testi2-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.testi2-role { font-style: italic; color: var(--muted); font-size: 0.92rem; margin: 4px 0 14px; }
.testi2-quote {
  color: var(--muted); font-size: 0.95rem; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.testi2-static { -webkit-mask-image: none; mask-image: none; }
.testi2-static .testi2-track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }

/* ---------- Artist wall (WMG style) ---------- */
.artist-wall { margin-top: 90px; }
.aw-ribbon-link { display: block; text-decoration: none; }
.aw-ribbon-link .ribbon-track { animation-duration: 16s; }
.aw-ribbon-rev .ribbon-track { animation-direction: reverse; }
.aw-scroll { overflow: hidden; }
.aw-track {
  display: flex; width: max-content;
  animation: aw-scroll calc(var(--aw-count, 5) * 5s) linear infinite;
}
.aw-scroll-rev .aw-track { animation-direction: reverse; }
@keyframes aw-scroll { to { transform: translateX(-50%); } }
.aw-tile { position: relative; display: block; overflow: hidden; background: #10131c; width: 250px; height: 330px; flex-shrink: 0; }
.aw-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none; user-select: none; -webkit-user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none;
}
.aw-tile::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(29, 78, 216, 0.85), rgba(37, 99, 235, 0.1) 55%, transparent);
  opacity: 0; transition: opacity 0.35s;
}
.aw-tile:hover img { transform: scale(1.06); }
.aw-tile:hover::after { opacity: 1; }
.aw-name {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; line-height: 1.25;
  opacity: 0; transform: translateY(10px); transition: opacity 0.35s, transform 0.35s;
}
.aw-tile:hover .aw-name { opacity: 1; transform: translateY(0); }
.aw-name em { display: block; font-style: normal; font-weight: 500; font-size: 0.82rem; color: rgba(255, 255, 255, 0.8); margin-top: 3px; }
@media (max-width: 1100px) { .aw-tile { width: 210px; height: 280px; } }
@media (max-width: 640px) {
  .aw-tile { width: 160px; height: 220px; }
  .aw-name { font-size: 0.95rem; left: 12px; right: 12px; bottom: 10px; }
}
@media (hover: none) {
  .aw-tile::after, .aw-name { opacity: 1; transform: none; }
  .aw-tile::after { background: linear-gradient(to top, rgba(8, 10, 18, 0.72), transparent 45%); }
}
@media (prefers-reduced-motion: reduce) {
  .aw-track { animation: none; }
  .aw-scroll { overflow-x: auto; }
}

@media (max-width: 700px) {
  .testi2-card { width: 280px; padding: 18px 18px 26px; }
  .testi2-track { gap: 18px; }
  @keyframes testi2-scroll { to { transform: translateX(calc(-50% - 9px)); } }
}
@media (prefers-reduced-motion: reduce) {
  .testi2-track { animation: none; }
  .testi2-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 700px) {
  .hero-cta .btn { padding: 12px 22px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

/* ---------- Distribution page ---------- */
.dist-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 160px 24px 100px;
  background:
    radial-gradient(ellipse 85% 70% at 70% 25%, rgba(37, 99, 235, 0.35), transparent 62%),
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(30, 58, 138, 0.45), transparent 65%),
    var(--dark);
}
.dist-hero-inner { max-width: 1100px; margin: 0 auto; }
.dist-accent { color: #5b96ff; }
.ownership-band { background: var(--dark); color: #fff; }
.ownership-band .headline { color: #fff; }

/* ---------- Publishing compare cards ---------- */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 64px; max-width: 900px; }
.compare-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
  background: var(--bg); transition: transform 0.3s, box-shadow 0.3s;
}
.compare-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.compare-card-accent { background: var(--dark); color: #fff; border-color: var(--dark); }
.compare-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.compare-card-accent .compare-tag { color: #5b96ff; }
.compare-card h3 { font-size: 1.5rem; }
.compare-card ul { list-style: none; margin: 20px 0 28px; }
.compare-card li { padding: 9px 0 9px 26px; position: relative; color: var(--muted); }
.compare-card-accent li { color: rgba(255,255,255,0.75); }
.compare-card li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); opacity: 0.2;
}
.compare-card li::after {
  content: ''; position: absolute; left: 4px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 3px; height: 7px; margin-top: -1px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
}

/* ---------- Centered sections (publishing page) ---------- */
.section-center .section-inner { text-align: center; }
.section-center .headline,
.section-center .lead,
.section-center .faq-list,
.section-center .compare-grid { margin-inline: auto; }
.section-center .hiw-step { text-align: center; }
.section-center .compare-card { text-align: center; }
.section-center .compare-card ul { display: inline-block; text-align: left; }
.section-center .faq-item summary { text-align: center; padding-left: 44px; }
.section-center .faq-item p { margin-inline: auto; }

/* ---------- Artist & Label Services page ---------- */
.las-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 160px 24px 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(37, 99, 235, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 55% at 85% 80%, rgba(30, 58, 138, 0.5), transparent 62%),
    var(--dark);
}
.las-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
}
.las-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }
.las-display {
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.las-amp {
  font-weight: 300;
  font-size: 0.36em;
  color: #5b96ff;
  line-height: 1.4;
}
.las-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
  text-stroke: 2px rgba(255,255,255,0.85);
}

.las-locations {
  background: var(--dark); color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px 38px;
}
.las-loc-label {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600; margin-right: 8px;
}
.las-loc { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.las-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: las-pulse 2.2s infinite; }
@keyframes las-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.55); }
  55% { box-shadow: 0 0 0 7px rgba(37, 99, 235, 0); }
}

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; text-align: left; }
.bento-card {
  position: relative; padding: 32px 28px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.4); }
.bento-wide { grid-column: span 2; }
.bento-featured { background: linear-gradient(140deg, var(--accent), #1e3a8a); border-color: transparent; color: #fff; }
.bento-featured p { color: rgba(255,255,255,0.82); }
.bento-featured .bento-num { color: rgba(255,255,255,0.4); }
.bento-num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--accent); opacity: 0.4; line-height: 1; }
.bento-card h3 { margin-top: 12px; font-size: 1.18rem; }
.bento-card p { margin-top: 8px; color: var(--muted); font-size: 0.94rem; }
.bento-featured h3 { color: #fff; }

.las-counter .headline, .las-counter { color: var(--accent); }
.roster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 34px; margin-top: 64px; max-width: 1100px; margin-inline: auto; }
.roster-card img, .roster-placeholder {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.roster-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: #fff;
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 700;
}
.roster-card h3 { font-size: 1.05rem; }
.roster-card p { color: var(--muted); font-size: 0.85rem; margin-top: 3px; }

.cta-band .lead { max-width: 560px; margin-top: 20px; }
.cta-band .btn { margin-top: 34px; }

@media (max-width: 1000px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .las-locations { gap: 12px 22px; }
}

/* ---------- Rights Management page ---------- */
.rm-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 160px 24px 110px;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(30, 58, 138, 0.45), transparent 70%), var(--dark);
}
.rm-rings { position: absolute; inset: 0; pointer-events: none; }
.rm-rings span {
  position: absolute; left: 50%; top: 45%;
  width: 340px; height: 340px; margin: -170px 0 0 -170px;
  border: 1px solid rgba(91, 150, 255, 0.35); border-radius: 50%;
  animation: rm-sonar 5s linear infinite;
}
.rm-rings span:nth-child(2) { animation-delay: 1.66s; }
.rm-rings span:nth-child(3) { animation-delay: 3.33s; }
@keyframes rm-sonar {
  0% { transform: scale(0.4); opacity: 0; }
  25% { opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}
.rm-hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.rm-hero .hero-title { font-size: clamp(2.2rem, 5.4vw, 4.4rem); font-weight: 700; line-height: 1.12; }

.rm-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 64px; }
.rm-pillar {
  padding: 40px 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.rm-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.rm-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 235, 0.1); color: var(--accent);
}
.rm-icon svg { width: 30px; height: 30px; }
.rm-pillar h3 { font-size: 1.25rem; }
.rm-pillar p { margin-top: 10px; color: var(--muted); font-size: 0.96rem; }

.rm-fraud {
  position: relative; background: var(--dark); color: #fff;
  padding: 110px 40px;
  border-block: 12px solid transparent;
  border-image: repeating-linear-gradient(45deg, #2563eb 0 18px, #0e1116 18px 36px) 12;
}

.rm-rows { max-width: 940px; margin: 64px auto 0; text-align: left; }
.rm-row {
  display: flex; align-items: center; gap: 26px;
  padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); margin-bottom: 18px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.rm-row:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.45); }
.rm-row-num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--accent); opacity: 0.4; }
.rm-row-body { flex: 1; }
.rm-row-body h3 { font-size: 1.18rem; }
.rm-row-body p { color: var(--muted); font-size: 0.94rem; margin-top: 5px; }
.rm-status {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(37, 99, 235, 0.35);
  padding: 8px 14px; border-radius: 999px; background: rgba(37, 99, 235, 0.06);
}

.rm-stepper {
  display: flex; justify-content: center; gap: 0; margin-top: 64px; flex-wrap: wrap;
}
.rm-step { position: relative; flex: 1; min-width: 150px; max-width: 240px; padding: 0 14px; }
.rm-step::before {
  content: ''; position: absolute; top: 24px; left: -50%; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0.35));
}
.rm-step:first-child::before { display: none; }
.rm-step-dot {
  position: relative; width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}
.rm-step p { font-weight: 600; font-size: 0.95rem; }

@media (max-width: 720px) {
  .rm-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rm-row:hover { transform: none; }
  .rm-step::before { display: none; }
  .rm-stepper { gap: 26px; }
}

/* ---------- YouTube MCN page ---------- */
.mcn-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 160px 24px 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 60% at 50% 110%, rgba(37, 99, 235, 0.4), transparent 65%),
    var(--dark);
}
.mcn-hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.mcn-play {
  width: 92px; height: 64px; margin: 0 auto 34px;
  background: var(--accent); border-radius: 18px;
  position: relative;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  animation: mcn-glow 2.6s infinite;
}
.mcn-play::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-40%, -50%);
  border-left: 22px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
@keyframes mcn-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  55% { box-shadow: 0 0 0 22px rgba(37, 99, 235, 0); }
}

.mcn-vcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 64px; text-align: left; }
.mcn-vcard {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg); transition: transform 0.3s, box-shadow 0.3s;
}
.mcn-vcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.mcn-thumb { position: relative; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; }
.mcn-thumb-1 { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.mcn-thumb-2 { background: linear-gradient(135deg, #0e1116, #1e3a8a); }
.mcn-thumb-3 { background: linear-gradient(135deg, #1d4ed8, #0e1116); }
.mcn-thumb-play {
  width: 58px; height: 40px; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 12px;
  position: relative; transition: 0.3s;
}
.mcn-thumb-play::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-38%, -50%);
  border-left: 13px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.mcn-vcard:hover .mcn-thumb-play { background: var(--accent); border-color: var(--accent); transform: scale(1.12); }
.mcn-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,0,0,0.45); color: #fff;
  padding: 5px 10px; border-radius: 6px;
}
.mcn-vcard-body { padding: 22px 24px 26px; }
.mcn-vcard-body h3 { font-size: 1.25rem; }
.mcn-vcard-body p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

.mcn-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 64px; max-width: 980px; margin-inline: auto; text-align: left; }
.mcn-step-card {
  position: relative; overflow: hidden;
  padding: 40px 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg);
}
.mcn-step-accent { background: var(--dark); color: #fff; border-color: var(--dark); }
.mcn-step-accent p, .mcn-step-accent .mcn-check li { color: rgba(255,255,255,0.78); }
.mcn-watermark {
  position: absolute; right: -6px; top: -30px;
  font-family: var(--font-head); font-weight: 800; font-size: 8rem; line-height: 1;
  color: var(--accent); opacity: 0.09; pointer-events: none;
}
.mcn-step-accent .mcn-watermark { color: #5b96ff; opacity: 0.14; }
.mcn-step-card h3 { font-size: 1.35rem; max-width: 85%; }
.mcn-step-card > p { margin-top: 10px; color: var(--muted); font-size: 0.95rem; }
.mcn-check { list-style: none; margin-top: 22px; }
.mcn-check li { padding: 8px 0 8px 30px; position: relative; color: var(--muted); }
.mcn-check li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
}
.mcn-check li::after {
  content: ''; position: absolute; left: 5px; top: 50%; transform: translateY(-58%) rotate(45deg);
  width: 4px; height: 8px;
  border-right: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent);
}

/* ---------- Music Video Distribution page ---------- */
.mvd-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 180px 24px 130px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(37, 99, 235, 0.32), transparent 68%),
    var(--dark);
}
.mvd-strip {
  position: absolute; left: 0; right: 0; height: 16px;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.22) 0 18px, transparent 18px 40px);
  opacity: 0.75;
}
.mvd-strip-top { top: 96px; }
.mvd-strip-bottom { bottom: 34px; }
.mvd-hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }

.mvd-tickets { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 34px; margin-top: 64px; max-width: 940px; margin-inline: auto; text-align: left; }
.mvd-ticket {
  position: relative; padding: 42px 38px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mvd-ticket:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvd-ticket::before, .mvd-ticket::after {
  content: ''; position: absolute; top: 50%; width: 26px; height: 26px;
  border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--line);
}
.mvd-ticket::before { left: -14px; transform: translateY(-50%); }
.mvd-ticket::after { right: -14px; transform: translateY(-50%); }
.mvd-ticket-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.mvd-ticket-dark::before, .mvd-ticket-dark::after { border-color: var(--dark); }
.mvd-ticket-dark .mcn-check li { color: rgba(255,255,255,0.78); }
.mvd-ticket-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.mvd-ticket h3 { font-size: 1.45rem; }
.mvd-price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--accent); margin-top: 10px; }
.mvd-price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); margin-left: 6px; }
.mvd-ticket-dark .mvd-price span { color: rgba(255,255,255,0.6); }

.mvd-badge {
  display: inline-block; padding: 10px 22px; border-radius: 999px;
  background: rgba(37, 99, 235, 0.16); border: 1px solid rgba(91, 150, 255, 0.5);
  color: #5b96ff; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
}
.mvd-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; max-width: 900px; margin-inline: auto; }
.mvd-benefit {
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85);
  font-size: 0.92rem; transition: 0.25s;
}
.mvd-benefit:hover { border-color: var(--accent); background: rgba(37, 99, 235, 0.16); color: #fff; }

.mvd-elig { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 64px; max-width: 880px; margin-inline: auto; text-align: left; }
.mvd-elig-card { padding: 36px 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.mvd-elig-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; }
.mvd-mark {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
}
.mvd-mark-yes { background: rgba(37, 99, 235, 0.12); color: var(--accent); }
.mvd-mark-no { background: rgba(28, 28, 30, 0.08); color: var(--muted); }
.mvd-elig-no { background: var(--bg-alt); }
.mvd-elig-card ul { list-style: none; margin-top: 18px; }
.mvd-elig-card li { padding: 8px 0; color: var(--muted); border-bottom: 1px dashed var(--line); }
.mvd-elig-card li:last-child { border-bottom: none; }

/* ---------- Distribution Partners page ---------- */
.dp-hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 160px 24px 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 20% 25%, rgba(37, 99, 235, 0.3), transparent 62%),
    radial-gradient(ellipse 55% 45% at 80% 75%, rgba(30, 58, 138, 0.42), transparent 62%),
    var(--dark);
}
.dp-hero-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.dp-count { color: var(--accent); font-weight: 800; }

.dp-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 54px; }
.dp-tab {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--bg); color: var(--muted);
  transition: 0.2s;
}
.dp-tab:hover { border-color: var(--accent); color: var(--accent); }
.dp-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.dp-tab-count {
  display: inline-block; margin-left: 6px; padding: 1px 8px; border-radius: 999px;
  background: rgba(37, 99, 235, 0.12); color: var(--accent); font-size: 0.75rem;
}
.dp-tab.active .dp-tab-count { background: rgba(255,255,255,0.22); color: #fff; }

.dp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; margin-top: 44px; text-align: left; }
.dp-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.dp-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.4); }
.dp-mono {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff;
}
.dp-mono-1 { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.dp-mono-2 { background: linear-gradient(135deg, #1d4ed8, #0e1116); }
.dp-mono-3 { background: linear-gradient(135deg, #0e1116, #2563eb); }
.dp-mono-4 { background: linear-gradient(135deg, #1e3a8a, #5b96ff); }
.dp-name { font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.dp-cat { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

.dp-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; max-width: 860px; margin-inline: auto; }
.dp-service {
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85);
  font-size: 0.92rem; font-weight: 600; transition: 0.25s;
}
.dp-service span { color: #5b96ff; transition: 0.25s; }
.dp-service:hover { border-color: var(--accent); background: rgba(37, 99, 235, 0.16); color: #fff; }
.dp-service:hover span { transform: translateX(2px); display: inline-block; }

/* ---------- About page ---------- */
.about-hero {
  position: relative; min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 160px 24px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(37, 99, 235, 0.32), transparent 62%),
    radial-gradient(ellipse 55% 45% at 75% 70%, rgba(30, 58, 138, 0.4), transparent 62%),
    var(--dark);
}
.about-hero-inner { max-width: 1000px; margin: 0 auto; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.about-locations { width: 100%; margin-top: 70px; border-top: 1px solid rgba(255,255,255,0.08); background: transparent; }

.about-timeline { position: relative; max-width: 860px; margin: 70px auto 0; text-align: left; }
.about-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.45) 8%, rgba(37, 99, 235, 0.45) 92%, transparent);
}
.tl-item { position: relative; width: 50%; padding: 0 44px 46px 0; }
.tl-item.tl-right { margin-left: 50%; padding: 0 0 46px 44px; }
.tl-dot {
  position: absolute; top: 26px; right: -8px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.15);
}
.tl-right .tl-dot { right: auto; left: -8px; }
.tl-card {
  padding: 28px 28px 26px; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tl-year {
  display: inline-block; font-family: var(--font-head); font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: rgba(37, 99, 235, 0.1);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.tl-card h3 { font-size: 1.2rem; }
.tl-card p { margin-top: 8px; color: var(--muted); font-size: 0.94rem; }

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 56px; max-width: 1000px; margin-inline: auto; text-align: left; }
.about-value {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius);
  color: rgba(255,255,255,0.85); font-weight: 600;
  transition: 0.25s;
}
.about-value:hover { border-color: var(--accent); background: rgba(37, 99, 235, 0.14); color: #fff; }
.about-value-num { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #5b96ff; opacity: 0.7; }

@media (max-width: 720px) {
  .about-timeline::before { left: 8px; }
  .tl-item, .tl-item.tl-right { width: 100%; margin-left: 0; padding: 0 0 36px 36px; }
  .tl-dot, .tl-right .tl-dot { left: 0; right: auto; }
}

/* ---------- Founder letter page ---------- */
.fl-hero {
  position: relative; min-height: 74vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 170px 24px 90px;
  background:
    radial-gradient(ellipse 65% 55% at 50% 30%, rgba(30, 58, 138, 0.45), transparent 68%),
    var(--dark);
}
.fl-hero-inner { max-width: 1000px; margin: 0 auto; }
.fl-seal {
  width: 74px; height: 74px; margin: 0 auto 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 30%, #3b82f6, #1e3a8a);
  font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18), 0 10px 28px rgba(0,0,0,0.4);
}
.fl-journey { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 14px; margin-top: 40px; }
.fl-stop {
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 600;
}
.fl-arrow { color: #5b96ff; font-weight: 700; }

.fl-wrap { display: flex; justify-content: center; padding-inline: 20px; }
.fl-paper {
  max-width: 760px; width: 100%;
  background: var(--bg);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 58px 62px 64px;
  box-shadow: 0 24px 60px rgba(20, 20, 22, 0.13);
  position: relative;
}
.fl-paper::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--accent), #1e3a8a);
  border-radius: 6px 6px 0 0;
}
.fl-letterhead {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 38px;
}
.fl-lh-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; }
.fl-lh-brand span { color: var(--accent); }
.fl-lh-est { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.fl-salute { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 22px; }
.fl-paper p { color: #b9bfca; line-height: 1.85; margin-bottom: 20px; font-size: 1.02rem; }
.fl-drop::first-letter {
  font-family: var(--font-head); font-weight: 800; font-size: 3.4em;
  float: left; line-height: 0.85; padding: 6px 12px 0 0; color: var(--accent);
}
.fl-quote {
  margin: 34px 0; padding: 26px 30px;
  border-left: 4px solid var(--accent);
  background: rgba(37, 99, 235, 0.05); border-radius: 0 10px 10px 0;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; line-height: 1.5;
  color: var(--ink);
}
.fl-close { margin-top: 34px; }
.fl-sign { font-family: 'Caveat', cursive; font-size: 2.6rem; color: var(--accent); line-height: 1; margin-top: 6px; }
.fl-sign-title { color: var(--muted); font-size: 0.9rem; margin-top: 8px; font-weight: 600; }

@media (max-width: 640px) { .fl-paper { padding: 40px 26px 46px; } }

/* ---------- Contact Artists & Labels (wizard) ---------- */
.cal-page {
  min-height: 100vh; color: #fff;
  padding: 170px 20px 110px;
  background:
    radial-gradient(ellipse 60% 45% at 80% 10%, rgba(37, 99, 235, 0.3), transparent 62%),
    radial-gradient(ellipse 55% 45% at 15% 90%, rgba(30, 58, 138, 0.35), transparent 62%),
    var(--dark);
}
.cal-head { text-align: center; max-width: 860px; margin: 0 auto 54px; }
.cal-card {
  max-width: 860px; margin: 0 auto;
  background: var(--bg); color: var(--ink);
  border-radius: 16px; padding: 44px 46px 48px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  position: relative;
}
.cal-progress { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.cal-p-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
}
.cal-p-step span {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); background: var(--bg-alt);
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  transition: 0.25s;
}
.cal-p-step.active { color: var(--accent); }
.cal-p-step.active span { background: var(--accent); border-color: var(--accent); color: #fff; }
.cal-p-step.done span { background: rgba(37, 99, 235, 0.12); border-color: var(--accent); color: var(--accent); }
.cal-bar { height: 4px; border-radius: 999px; background: var(--line); margin-bottom: 36px; overflow: hidden; }
.cal-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), #5b96ff); border-radius: 999px; transition: width 0.4s ease; }

.cal-step { display: none; }
.cal-step.active { display: block; animation: cal-in 0.35s ease; }
@keyframes cal-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.cal-field { margin-bottom: 18px; }
.cal-grid .cal-field { margin-bottom: 0; }
.cal-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.cal-field input, .cal-field select, .cal-field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 0.95rem;
  border: 1.5px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--ink);
  transition: border-color 0.2s;
}
.cal-field input:focus, .cal-field select:focus, .cal-field textarea:focus { outline: none; border-color: var(--accent); }
.cal-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.cal-chip input { position: absolute; opacity: 0; pointer-events: none; }
.cal-chip span {
  display: inline-block; padding: 10px 18px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); font-size: 0.88rem; font-weight: 600; color: var(--muted);
  transition: 0.2s;
}
.cal-chip input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.cal-chip:hover span { border-color: var(--accent); color: var(--accent); }
.cal-chip input:checked:hover + span { color: #fff; }
.cal-note { margin-top: 10px; font-size: 0.83rem; color: var(--muted); background: rgba(37, 99, 235, 0.06); border-left: 3px solid var(--accent); padding: 10px 14px; border-radius: 0 8px 8px 0; }
.cal-agree { display: flex; gap: 12px; align-items: flex-start; margin-top: 8px; font-size: 0.9rem; color: var(--muted); cursor: pointer; }
.cal-agree input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--accent); }
.cal-nav { display: flex; justify-content: space-between; margin-top: 34px; gap: 12px; }
.btn-ghost-dark { background: transparent; border: 1px solid var(--line); color: var(--muted); }
.btn-ghost-dark:hover { border-color: var(--ink); color: var(--ink); }

.cal-done { text-align: center; padding: 30px 10px; }
.cal-done-mark {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 235, 0.12); color: var(--accent);
  font-size: 2rem; font-weight: 800;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.06);
}
.cal-done h2 { font-size: 1.6rem; }
.cal-done p { color: var(--muted); margin-top: 10px; }

@media (max-width: 640px) {
  .cal-card { padding: 30px 20px 36px; }
  .cal-grid { grid-template-columns: 1fr; }
  .cal-p-step { font-size: 0; gap: 0; }
  .cal-p-step span { font-size: 0.8rem; }
}

/* ---------- Header dropdowns ---------- */
.nav-drop { position: relative; }
.nav-drop-btn {
  background: none; border: none; cursor: pointer; color: inherit;
  font-family: var(--font-body); display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 0;
}
.nav-caret {
  width: 7px; height: 7px; margin-top: -3px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s;
}
.nav-drop:hover .nav-caret, .nav-drop:focus-within .nav-caret { transform: rotate(225deg); margin-top: 3px; }
.nav-drop-menu {
  position: absolute; top: 100%; left: -18px; min-width: 240px;
  background: rgba(17, 17, 19, 0.98); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px;
  padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  z-index: 120;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-menu a {
  display: block; padding: 11px 22px;
  color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; font-weight: 500;
  transition: 0.15s;
}
.nav-drop-menu a:hover, .nav-drop-menu a.active { color: #5b96ff; background: rgba(37, 99, 235, 0.12); }
.nav-right .btn { padding: 11px 22px; font-size: 0.78rem; }

/* mobile grouped nav */
.mobile-nav .mnav-h {
  padding: 16px 0 6px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 980px) {
  .mobile-nav a.mnav-sub { padding: 11px 0 11px 14px; font-size: 0.98rem; }
  .mobile-nav a.mnav-cta { color: #5b96ff; font-weight: 700; border-bottom: none; }
  .mobile-nav { max-height: calc(100vh - 90px); overflow-y: auto; }
}

/* hero title slider */
#heroTitle { transition: opacity 0.45s ease, transform 0.45s ease; will-change: opacity, transform; }
#heroTitle.hero-title-out { opacity: 0; transform: translateY(20px); }

/* ---------- Homepage unique touches ---------- */
/* equalizer bars under hero headline */
.hero-eq {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 6px; height: 46px; margin-top: 44px;
}
.hero-eq span {
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, #5b96ff, var(--accent));
  animation: eq-bounce 1.1s ease-in-out infinite alternate;
  opacity: 0.85;
}
.hero-eq span:nth-child(1)  { height: 30%; animation-delay: -0.9s; }
.hero-eq span:nth-child(2)  { height: 55%; animation-delay: -0.4s; }
.hero-eq span:nth-child(3)  { height: 80%; animation-delay: -0.7s; }
.hero-eq span:nth-child(4)  { height: 45%; animation-delay: -0.1s; }
.hero-eq span:nth-child(5)  { height: 95%; animation-delay: -0.5s; }
.hero-eq span:nth-child(6)  { height: 60%; animation-delay: -0.8s; }
.hero-eq span:nth-child(7)  { height: 35%; animation-delay: -0.3s; }
.hero-eq span:nth-child(8)  { height: 88%; animation-delay: -0.6s; }
.hero-eq span:nth-child(9)  { height: 50%; animation-delay: -1.0s; }
.hero-eq span:nth-child(10) { height: 72%; animation-delay: -0.2s; }
.hero-eq span:nth-child(11) { height: 40%; animation-delay: -0.65s; }
.hero-eq span:nth-child(12) { height: 90%; animation-delay: -0.35s; }
.hero-eq span:nth-child(13) { height: 58%; animation-delay: -0.75s; }
.hero-eq span:nth-child(14) { height: 33%; animation-delay: -0.15s; }
.hero-eq span:nth-child(15) { height: 78%; animation-delay: -0.55s; }
.hero-eq span:nth-child(16) { height: 48%; animation-delay: -0.85s; }
@keyframes eq-bounce { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

/* scrolling service ribbon */
.ribbon {
  background: var(--accent);
  margin: 0;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.3);
  position: relative; z-index: 5;
}
.ribbon-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content; padding: 16px 0;
  animation: marquee 28s linear infinite;
}
.ribbon-word {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: #fff; white-space: nowrap;
}
.ribbon-word.ribbon-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
}
.ribbon-dot { color: rgba(255, 255, 255, 0.55); font-size: 0.6rem; }

/* CTA band glow */
.cta-band { overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 45% 60% at 12% 100%, rgba(37, 99, 235, 0.35), transparent 65%),
    radial-gradient(ellipse 45% 60% at 88% 0%, rgba(30, 58, 138, 0.45), transparent 65%);
}
.cta-band .section-inner { position: relative; }

/* ---------- WMG-style manifesto blocks ---------- */
.manifesto .section-inner { display: flex; flex-direction: column; gap: 90px; }
.mt-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px); align-items: center;
}
.mt-flip .mt-media { order: 2; }
.mt-flip .mt-text { order: 1; }
.mt-media {
  aspect-ratio: 4 / 3; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mt-media-1 { background: linear-gradient(135deg, #2563eb, #1e3a8a 60%, #0e1116); }
.mt-media-2 { background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(37, 99, 235, 0.4), transparent 70%), #0e1116; }
.mt-media-3 { background: linear-gradient(160deg, #0e1116 20%, #1e3a8a 80%, #5b96ff); }
.mt-glyph { font-size: clamp(4rem, 8vw, 7rem); color: rgba(255, 255, 255, 0.9); font-family: var(--font-head); }
.mt-pulse { animation: las-pulse 2.4s infinite; border-radius: 50%; line-height: 1; }
.mt-eq { height: 40%; margin: 0; }
.mt-eq span { width: 6px; }
.mt-text h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.12;
}
.mt-text p { margin-top: 18px; color: var(--muted); font-size: 1.05rem; max-width: 520px; }
.mt-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-weight: 700; font-size: 0.95rem;
  color: var(--accent); letter-spacing: 0.02em;
}
.mt-link span { transition: transform 0.2s; }
.mt-link:hover span { transform: translateX(5px); }
.mt-link:hover { color: var(--accent-dark); }

/* WMG-style service card variants */
.service-card:nth-child(3n) .service-visual { background: linear-gradient(135deg, #5b96ff, #1d4ed8); }
.service-body .mt-link { margin-top: 4px; }

@media (max-width: 860px) {
  .mt-block { grid-template-columns: 1fr; gap: 26px; }
  .mt-flip .mt-media { order: 0; }
  .manifesto .section-inner { gap: 64px; }
}

/* ---------- Legal pages & footer legal links ---------- */
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.footer-legal { margin-top: 10px; font-size: 0.82rem; opacity: 0.75; }
.footer-legal a:hover { color: #5b96ff; }

/* ---------- Professional design pass ---------- */
/* section labels get a blue tick bar */
.section-label { display: flex; align-items: center; gap: 12px; }
.section-label::before {
  content: ''; width: 26px; height: 3px; border-radius: 2px;
  background: var(--accent); flex-shrink: 0;
}
.section-center .section-label { justify-content: center; }
.page-hero .section-label, .dist-hero .section-label, .las-hero .section-label,
.rm-hero .section-label, .mcn-hero .section-label, .mvd-hero .section-label,
.about-hero .section-label, .fl-hero .section-label, .cal-head .section-label,
.dp-hero .section-label { justify-content: center; }

/* hero trust chips */
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 0; margin-top: 40px;
}
.hero-trust span {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-trust span:last-child { border-right: none; }

/* partners CTA under platform marquee */
.platform-more { background: var(--dark); text-align: center; padding: 0 20px 54px; }
.platform-more .btn-dark { border-color: rgba(255,255,255,0.3); background: transparent; }
.platform-more .btn-dark:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

@media (max-width: 640px) {
  .hero-trust span { border-right: none; padding: 0 10px; }
}

/* ---------- Services index page ---------- */
.svc-index { max-width: 1100px; }
.svc-row {
  display: grid; grid-template-columns: 70px 1fr 60px;
  align-items: center; gap: 24px;
  padding: 38px 26px;
  border-top: 1px solid var(--line);
  border-radius: 12px;
  transition: background 0.3s, transform 0.3s;
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--accent); opacity: 0.6;
}
.svc-title {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.05;
  transition: color 0.3s;
}
.svc-desc { display: block; color: var(--muted); margin-top: 8px; font-size: 0.98rem; transition: color 0.3s; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.svc-tags em {
  font-style: normal; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.svc-arrow {
  font-size: 1.8rem; color: var(--muted);
  transition: transform 0.3s, color 0.3s;
  justify-self: end;
}
.svc-row:hover { background: var(--dark); transform: translateX(6px); }
.svc-row:hover .svc-title { color: #fff; }
.svc-row:hover .svc-desc { color: rgba(255, 255, 255, 0.7); }
.svc-row:hover .svc-tags em { border-color: rgba(91, 150, 255, 0.5); color: #5b96ff; }
.svc-row:hover .svc-arrow { color: #5b96ff; transform: translateX(8px); }

.svc-paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 64px; max-width: 1020px; margin-inline: auto; }
.svc-path {
  padding: 44px 34px; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc-path:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-path h3 { font-size: 1.4rem; }
.svc-path p { color: var(--muted); margin: 12px 0 24px; font-size: 0.96rem; }

@media (max-width: 700px) {
  .svc-row { grid-template-columns: 1fr; gap: 8px; padding: 30px 16px; }
  .svc-arrow, .svc-row:hover { transform: none; }
}

/* ---------- Services detail blocks ---------- */
.svcd-list { max-width: 960px; display: flex; flex-direction: column; gap: 34px; }
.svcd-block {
  padding: 44px 46px;
  border: 1px solid var(--line); border-radius: 16px; background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.svcd-block:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.35); }
.svcd-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.svcd-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 0.95rem; color: var(--accent); opacity: 0.6; margin-bottom: 6px;
}
.svcd-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin: 0; }
.svcd-badge {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(37, 99, 235, 0.35);
  padding: 8px 14px; border-radius: 999px; background: rgba(37, 99, 235, 0.06);
}
.svcd-desc { margin-top: 16px; color: var(--muted); max-width: 720px; line-height: 1.75; }
.svcd-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0 26px; margin-top: 20px;
}
.svcd-actions { display: flex; align-items: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.svcd-actions .mt-link { margin-top: 0; }

@media (max-width: 640px) { .svcd-block { padding: 30px 22px; } }

/* ---------- Services page — pdigital-style dark blocks ---------- */
.svcp-wrap { background: #0b0d12; color: #fff; padding: 20px 40px 60px; }
.svcp-hue-1 { --hue: #2563eb; }
.svcp-hue-2 { --hue: #5b96ff; }
.svcp-hue-3 { --hue: #38bdf8; }
.svcp-hue-4 { --hue: #818cf8; }
.svcp-block {
  max-width: 1240px; margin: 0 auto; padding: 90px 0;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.svcp-block:last-child { border-bottom: none; }
.svcp-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--hue);
  background: color-mix(in srgb, var(--hue) 10%, transparent);
  color: var(--hue);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.svcp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hue); }
.svcp-info h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; margin-top: 24px; letter-spacing: -0.01em; }
.svcp-desc { margin-top: 18px; color: rgba(255, 255, 255, 0.65); line-height: 1.8; max-width: 620px; }
.svcp-checks {
  list-style: none; margin-top: 26px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 4px 30px;
}
.svcp-checks li { position: relative; padding: 8px 0 8px 26px; color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; }
.svcp-checks li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--hue); font-weight: 700;
}
.svcp-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; flex-wrap: wrap; }
.svcp-btn {
  display: inline-block; padding: 15px 32px; border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #5b96ff);
  color: #fff; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svcp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(37, 99, 235, 0.5); }
.svcp-more { color: rgba(255, 255, 255, 0.6); font-weight: 600; font-size: 0.92rem; transition: color 0.2s; }
.svcp-more:hover { color: #fff; }
.svcp-card {
  border-radius: 22px; padding: 70px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 70% 15%, color-mix(in srgb, var(--hue) 20%, transparent), transparent 65%),
    #12151d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, border-color 0.3s;
}
.svcp-block:hover .svcp-card { transform: translateY(-6px); border-color: color-mix(in srgb, var(--hue) 45%, transparent); }
.svcp-tile {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; margin: 0 auto 30px;
  border-radius: 26px; font-size: 2.6rem;
  background: color-mix(in srgb, var(--hue) 26%, #10131a);
  color: var(--hue);
}
.svcp-card h3 { font-size: 1.55rem; font-weight: 800; }
.svcp-avail { display: block; margin-top: 10px; color: var(--hue); font-weight: 600; font-size: 0.95rem; }

@media (max-width: 880px) {
  .svcp-wrap { padding: 10px 22px 40px; }
  .svcp-block { grid-template-columns: 1fr; padding: 60px 0; }
}

/* dark theme adjustments */
.cal-card { background: #12151d; border: 1px solid var(--line); }
.mvd-ticket::before, .mvd-ticket::after { background: var(--bg-alt); }
.logo-cell img { filter: grayscale(1) brightness(1.6); }
.tl-card:hover, .svc-path:hover, .rm-pillar:hover { border-color: rgba(37, 99, 235, 0.4); }

/* SEO intro section */
.seo-intro { padding-bottom: 60px; }
.seo-intro .section-label { font-size: 0.85rem; margin-bottom: 26px; }
.seo-intro-text {
  max-width: 880px; margin-inline: auto;
  color: var(--muted); line-height: 1.95; font-size: 1.04rem;
}

/* header: logo left, menu centered */
.header-inner .brand { justify-self: start; }

/* ---------- Newsroom ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 20px; text-align: left; }
.news-card {
  display: flex; flex-direction: column;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.4); }
.news-thumb { aspect-ratio: 16 / 9; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-thumb span { font-size: 2.6rem; color: rgba(255, 255, 255, 0.85); }
.news-thumb-1 { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.news-thumb-2 { background: linear-gradient(135deg, #0e1116, #1e3a8a); }
.news-thumb-3 { background: linear-gradient(135deg, #1d4ed8, #5b96ff); }
.news-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.news-body h3 { margin-top: 10px; font-size: 1.25rem; line-height: 1.3; }
.news-body p { margin-top: 10px; color: var(--muted); font-size: 0.93rem; flex: 1; }
.news-body .mt-link { margin-top: 16px; }

.news-article { max-width: 820px; }
.news-cover { width: 100%; border-radius: 16px; margin-bottom: 40px; }
.news-content h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.news-content h3 { font-size: 1.25rem; margin: 30px 0 10px; }
.news-content h4 { font-size: 1.08rem; margin: 24px 0 8px; }
.news-content p { color: var(--muted); line-height: 1.9; margin-bottom: 18px; font-size: 1.03rem; }
.news-content ul, .news-content ol { color: var(--muted); line-height: 1.85; margin: 0 0 18px 24px; font-size: 1.03rem; }
.news-content li { margin-bottom: 8px; }
.news-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.news-content blockquote {
  border-left: 3px solid var(--accent); margin: 0 0 18px; padding: 14px 22px;
  background: rgba(37, 99, 235, 0.06); border-radius: 0 12px 12px 0;
  color: var(--muted); font-size: 1.05rem; font-style: italic;
}
.news-content img { max-width: 100%; height: auto; border-radius: 12px; }
.news-content figure { margin: 0 0 18px; }
.news-content figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 8px; text-align: center; }
.news-content iframe { max-width: 100%; aspect-ratio: 16 / 9; height: auto; width: 100%; border-radius: 12px; margin-bottom: 18px; }
.news-content hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.12); margin: 32px 0; }
.news-content table { width: 100%; border-collapse: collapse; margin-bottom: 18px; color: var(--muted); font-size: 0.95rem; }
.news-content th, .news-content td { border: 1px solid rgba(255, 255, 255, 0.12); padding: 10px 14px; text-align: left; }
.news-content th { color: var(--text); }

.news-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; color: var(--muted); font-size: 0.92rem; }
.news-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.news-tag {
  background: rgba(37, 99, 235, 0.1); color: var(--accent);
  border-radius: 999px; padding: 5px 14px; font-size: 0.82rem; font-weight: 600;
}
.news-share { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.news-share span { color: var(--muted); font-size: 0.88rem; }
.news-share a, .news-share .copy-link {
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px;
  padding: 7px 16px; font-size: 0.84rem; font-weight: 600; color: var(--text);
  background: transparent; cursor: pointer; font-family: inherit; transition: 0.2s;
}
.news-share a:hover, .news-share .copy-link:hover { border-color: var(--accent); color: var(--accent); }
.news-pn { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.news-pn-item {
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 6px; transition: 0.2s;
}
.news-pn-item:hover { border-color: var(--accent); }
.news-pn-item span { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.news-pn-item strong { font-size: 0.95rem; line-height: 1.4; }
.news-pn-next { text-align: right; align-items: flex-end; }

.news-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.news-cat {
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px;
  padding: 8px 20px; font-size: 0.88rem; font-weight: 600; transition: 0.2s;
}
.news-cat span { color: var(--muted); font-size: 0.78rem; margin-left: 4px; }
.news-cat:hover { border-color: var(--accent); color: var(--accent); }
.news-cat.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.news-cat.active span { color: rgba(255, 255, 255, 0.8); }

.news-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; overflow: hidden;
  background: var(--card, rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px; margin-bottom: 46px; text-align: left; transition: 0.25s;
}
.news-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.4); }
.news-featured-media { min-height: 300px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.news-featured-media span { font-size: 3.2rem; color: rgba(255, 255, 255, 0.85); }
.news-featured-body { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.news-featured-body h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.25; margin-top: 12px; }
.news-featured-body p { color: var(--muted); margin-top: 14px; line-height: 1.7; }
.news-featured-body .mt-link { margin-top: 20px; }
@media (max-width: 820px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-media { min-height: 200px; aspect-ratio: 16 / 9; }
  .news-featured-body { padding: 26px 24px; }
  .news-pn { grid-template-columns: 1fr; }
  .news-pn-next { text-align: left; align-items: flex-start; }
}

/* ---------- Footer redesign: centered columns ---------- */
.footer-inner {
  max-width: 1100px;
  justify-content: center;
  justify-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
}
.footer-col h4 { position: relative; }
.footer-col h4::after { display: none; }
.footer-col h4::after-off {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--accent); border-radius: 2px;
  margin: 10px auto 0;
}
.footer-socials { justify-content: center; }

/* ---------- Footer v2 (ptune.io style) ---------- */
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 90px 40px 70px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  text-align: left;
}
.footer-brandcol .brand-logo { height: 56px; width: 56px; }
.footer-mission { color: #bcbcc0; margin-top: 24px; max-width: 340px; line-height: 1.8; font-size: 0.98rem; }
.footer-brandcol .footer-socials { margin-top: 26px; justify-content: flex-start; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.25s;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); }
.footer-nl { margin-top: 28px; display: flex; gap: 10px; max-width: 380px; }
.footer-nl input { flex: 1; }
.footer-nl .btn { padding: 12px 20px; font-size: 0.75rem; }
.footer-grid .footer-col h4::after { margin-inline: 0; }
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1280px; margin: 0 auto;
  padding: 26px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  color: #9aa1ad; font-size: 0.92rem;
}
.footer-bar strong { color: #fff; }
.footer-bar-links { display: flex; gap: 26px; }
.footer-bar-links a { transition: color 0.2s; }
.footer-bar-links a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 60px 24px 40px; }
  .footer-bar { justify-content: center; text-align: center; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* hide dropdown carets */
.nav-caret { display: none; }

/* ---------- DSP logo marquee ---------- */
.dsp-marquee .logo-track { gap: 70px; animation-duration: 80s; }
.dsp-marquee .logo-cell { min-width: auto; }
.dsp-marquee .logo-cell img {
  height: 32px; width: auto; max-width: 150px; object-fit: contain;
  filter: none; opacity: 0.92; transition: opacity 0.3s, transform 0.3s;
}
.dsp-marquee .logo-cell:hover img { filter: none; opacity: 1; transform: scale(1.08); }

/* remove section-label tick bars */
.section-label::before { display: none; }

/* partner tile logos */
.dp-logo {
  width: 64px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dp-logo img { max-width: 64px; max-height: 34px; object-fit: contain; }

/* bigger partner tile logos */
.dp-logo { width: 100px; height: 60px; }
.dp-logo img { max-width: 100px; max-height: 48px; }
.dp-tile { padding: 20px 20px; gap: 16px; }

/* ---------- Partner detail rows (TuneCore style) ---------- */
.dpd-list { max-width: 980px; margin: 50px auto 0; text-align: left; }
.dpd-row {
  display: grid; grid-template-columns: 220px 1fr;
  gap: clamp(24px, 5vw, 70px); align-items: center;
  padding: 46px 10px;
  border-bottom: 1px solid var(--line);
}
.dpd-row:last-child { border-bottom: none; }
.dpd-logo { display: flex; align-items: center; justify-content: center; }
.dpd-logo img { max-width: 190px; max-height: 74px; object-fit: contain; }
.dpd-body h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dpd-chip {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 5px 12px; border-radius: 999px;
}
.dpd-body p { margin-top: 12px; color: var(--muted); line-height: 1.85; max-width: 640px; }

@media (max-width: 720px) {
  .dpd-row { grid-template-columns: 1fr; gap: 18px; text-align: center; padding: 36px 0; }
  .dpd-body h3 { justify-content: center; }
  .dpd-body p { margin-inline: auto; }
}

/* partner read-more */
.dpd-more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; overflow: hidden; }
.dpd-more > p { overflow: hidden; color: var(--muted); line-height: 1.85; max-width: 640px; }
.dpd-more.open { grid-template-rows: 1fr; }
.dpd-more.open > p { margin-top: 12px; }
.dpd-toggle {
  margin-top: 14px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  color: var(--accent); padding: 0; display: inline-flex; align-items: center; gap: 7px;
  transition: color 0.2s;
}
.dpd-toggle:hover { color: #5b96ff; }

/* ---------- Partner detail page ---------- */
.pd-hero {
  min-height: 62vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 170px 24px 80px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(37, 99, 235, 0.3), transparent 65%),
    var(--dark);
}
.pd-hero-inner { max-width: 900px; margin: 0 auto; }
.pd-logo-card {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 200px; height: 110px; padding: 20px 36px;
  background: #12151d; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px;
  margin: 26px 0 30px;
}
.pd-logo-card img { max-height: 62px; max-width: 220px; object-fit: contain; }
.pd-body { max-width: 780px; }
.pd-more { margin-top: 24px; color: var(--muted); line-height: 1.9; font-size: 1.05rem; }
.pd-includes {
  margin-top: 50px; padding: 36px 38px; text-align: left;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
}
.pd-includes h2 { font-size: 1.25rem; margin-bottom: 6px; }

/* MCN play button — YouTube red */
.mcn-play { background: #ff0000; animation: mcn-glow-red 2.6s infinite; }
@keyframes mcn-glow-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.45); }
  55% { box-shadow: 0 0 0 22px rgba(255, 0, 0, 0); }
}

/* centered service cards */
.section-center .service-body { align-items: center; }

/* second logo row scrolling right */
.logo-track-rev { animation-direction: reverse; margin-top: 34px; }

/* ribbon: same dark background as logo marquee */
.ribbon {
  background: var(--dark);
  border-block: 1px solid var(--line);
  box-shadow: none;
}
.ribbon-word { color: #fff; }
.ribbon-word.ribbon-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55); }
.ribbon-dot { color: var(--accent); }

/* ribbon + logo marquee: both blue */
.ribbon {
  background: var(--accent);
  border-block: none;
}
.ribbon-word.ribbon-outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9); }
.ribbon-dot { color: rgba(255, 255, 255, 0.55); }
.dsp-marquee {
  background: var(--accent);
  border-block: none;
}

/* marquee matches ribbon height */
.dsp-marquee { padding: 18px 0; }
.dsp-marquee .logo-cell img { height: 36px; }

/* equal fixed height for both blue strips */
.ribbon, .dsp-marquee {
  height: 84px; padding: 0;
  display: flex; align-items: center;
  overflow: hidden;
}
.ribbon-track { padding: 0; }
.dsp-marquee .logo-track { padding: 0; }
.ribbon-word { font-size: clamp(1.1rem, 2vw, 1.55rem); }

/* styled SEO intro */
.seo-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}
.seo-title span { color: var(--accent); margin: 0 14px; font-size: 0.85em; }
.seo-intro-text { font-size: 1.12rem; line-height: 2.05; color: var(--muted); }
.seo-intro-text .hl { color: #fff; font-weight: 600; }
.seo-intro-text .hl-blue { color: #5b96ff; font-weight: 600; }

/* ---------- professional pass: calm, subtle strips ---------- */
.ribbon, .dsp-marquee {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.ribbon-word { color: rgba(255, 255, 255, 0.88); }
.ribbon-word.ribbon-outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.3);
}
.ribbon-dot { color: var(--accent); font-size: 0.5rem; }
.seo-title { letter-spacing: 0.2em; }
.seo-title span { margin: 0 10px; font-size: 0.75em; }
.seo-intro-text { font-size: 1.08rem; line-height: 1.95; }
.seo-intro-text .hl-blue { color: #7fa8f8; font-weight: 500; }

/* keep the blue strips */
.ribbon, .dsp-marquee {
  background: var(--accent);
  border-block: none;
}
.ribbon-word { color: #fff; }
.ribbon-word.ribbon-outline { -webkit-text-stroke: 1.3px rgba(255, 255, 255, 0.85); }
.ribbon-dot { color: rgba(255, 255, 255, 0.6); }
.seo-intro-text .hl-blue { color: #5b96ff; font-weight: 600; }

/* ---------- SEO intro: editorial two-column ---------- */
.seo2-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start; text-align: left;
  max-width: 1180px;
}
.seo2-eyebrow {
  display: block;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.seo2-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.06;
}
.seo2-text { color: var(--muted); line-height: 1.95; font-size: 1.05rem; margin-bottom: 20px; }
.seo2-text:last-child { margin-bottom: 0; }
.seo2-text .hl { color: #fff; font-weight: 600; }

@media (max-width: 860px) {
  .seo2-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Why Choose P Tune ---------- */
.wc-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center; text-align: left;
  max-width: 1180px;
}
.wc-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.06;
}
.wc-text { color: var(--muted); line-height: 1.95; font-size: 1.05rem; margin: 24px 0 34px; max-width: 520px; }
.wc-btn { border-radius: 999px; padding: 15px 34px; }
.wc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 40px; }
.wc-feat { display: flex; gap: 18px; align-items: flex-start; }
.wc-check {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: #0b0d12;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem;
}
.wc-feat h3 {
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.wc-feat p { color: var(--muted); font-size: 0.97rem; margin-top: 8px; line-height: 1.75; }

@media (max-width: 860px) {
  .wc-grid { grid-template-columns: 1fr; gap: 44px; }
  .wc-feats { grid-template-columns: 1fr; gap: 30px; }
}

/* seo intro alignment: paragraph top lines up with headline top */
.seo2-grid { align-items: start; }
@media (min-width: 861px) {
  .seo2-grid > div:last-child { padding-top: 40px; }
}

/* seo intro: vertically centered columns */
.seo2-grid { align-items: center; }
@media (min-width: 861px) {
  .seo2-grid > div:last-child { padding-top: 0; }
}

/* ---------- professional hero headline ---------- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #8ab2ff; margin-bottom: 30px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 44px; height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.hero-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hero-title .hw {
  background: linear-gradient(92deg, #5b96ff, #9db9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tags {
  margin-top: 34px;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-tags i { font-style: normal; color: var(--accent); margin: 0 14px; }

@media (max-width: 640px) {
  .hero-eyebrow::before, .hero-eyebrow::after { width: 22px; }
  .hero-tags { letter-spacing: 0.18em; }
  .hero-tags i { margin: 0 8px; }
}

/* eyebrow: no side lines */
.hero-eyebrow::before, .hero-eyebrow::after { display: none; }

/* ---------- Artist Directory ---------- */
.ad-tools { max-width: 900px; margin: 0 auto 50px; }
.ad-search {
  width: 100%; max-width: 480px;
  padding: 16px 24px; border-radius: 999px;
  background: var(--bg-alt); border: 1.5px solid var(--line);
  color: var(--ink); font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s;
}
.ad-search:focus { outline: none; border-color: var(--accent); }
.ad-cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.ad-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 28px; max-width: 1180px; margin: 0 auto;
}
.ad-card {
  padding: 30px 22px 26px; text-align: center;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ad-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.45); }
.ad-photo { width: 110px; height: 110px; margin: 0 auto 18px; }
.ad-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent);
}
.ad-mono {
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: #fff;
}
.ad-card h3 { font-size: 1.1rem; }
.ad-role { color: var(--muted); font-size: 0.82rem; margin-top: 4px; }
.ad-tags { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.ad-tags em {
  font-style: normal; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
}
.ad-card:hover .ad-tags em { border-color: rgba(37, 99, 235, 0.4); color: #5b96ff; }

/* ---------- Artist profile ---------- */
.ap-hero {
  padding: 190px 40px 90px; color: #fff;
  background:
    radial-gradient(ellipse 60% 55% at 25% 30%, rgba(37, 99, 235, 0.3), transparent 62%),
    var(--dark);
}
.ap-hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.ap-photo { width: 280px; height: 280px; }
.ap-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.ap-genres { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ap-genres span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(91, 150, 255, 0.5); color: #8ab2ff;
}
.ap-dist { margin-top: 24px; color: rgba(255, 255, 255, 0.7); max-width: 520px; }
.ap-dist strong { color: #fff; }
.ap-socials { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.ap-socials a {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25); color: #fff;
  font-size: 0.85rem; font-weight: 600; transition: 0.25s;
}
.ap-socials a:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 760px) {
  .ap-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .ap-photo { margin: 0 auto; width: 220px; height: 220px; }
  .ap-hero .hero-title { text-align: center !important; }
  .ap-genres, .ap-socials { justify-content: center; }
  .ap-dist { margin-inline: auto; }
}

/* artist cards: always visible, block layout */
.ad-card { display: block; opacity: 1 !important; transform: none !important; }

/* booking card on artist profile */
.ap-book-card {
  position: relative;
  margin-top: 50px; padding: 44px 46px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px;
  text-align: left;
}
@media (max-width: 640px) { .ap-book-card { padding: 30px 20px; } }

/* ---------- Artist profile v2: cover + avatar ---------- */
.apx-cover { position: relative; height: 46vh; min-height: 300px; margin-top: 86px; overflow: hidden; }
.apx-cover-img { width: 100%; height: 100%; object-fit: cover; }
.apx-cover-fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 70% 80% at 25% 20%, rgba(37, 99, 235, 0.5), transparent 62%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(30, 58, 138, 0.55), transparent 65%),
    #10131a;
}
.apx-cover-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.25) 0%, rgba(11, 13, 18, 0.05) 40%, rgba(11, 13, 18, 0.95) 100%);
}
.apx-head { max-width: 1180px; margin: 0 auto; padding: 0 40px 10px; }
.apx-head-inner {
  display: flex; align-items: flex-end; gap: 34px; flex-wrap: wrap;
  margin-top: -84px; position: relative; z-index: 2;
}
.apx-avatar {
  width: 168px; height: 168px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  background: var(--bg-alt);
}
.apx-avatar img { width: 100%; height: 100%; object-fit: cover; }
.apx-id { flex: 1; min-width: 240px; padding-bottom: 8px; }
.apx-verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #5b96ff; margin-bottom: 10px;
}
.apx-id h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
.apx-role { color: var(--muted); margin-top: 8px; font-size: 0.98rem; }
.apx-actions { padding-bottom: 14px; }
.apx-platforms {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 30px; padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.apx-platforms a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink);
  font-size: 0.86rem; font-weight: 600;
  transition: 0.25s;
}
.apx-platforms a:hover { border-color: var(--accent); background: rgba(37, 99, 235, 0.1); }
.apx-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

@media (max-width: 700px) {
  .apx-head { padding: 0 20px; }
  .apx-head-inner { flex-direction: column; align-items: center; text-align: center; margin-top: -70px; }
  .apx-avatar { width: 140px; height: 140px; }
  .apx-actions { padding-bottom: 0; }
  .apx-platforms { justify-content: center; }
}

/* artist platform pills with DSP logos */
.apx-platforms a { min-height: 44px; padding: 10px 22px; }
.apx-platforms a img { height: 20px; width: auto; max-width: 110px; object-fit: contain; display: block; }

/* verified line: white text + blue tick badge */
.apx-verified { color: #fff; }
.apx-verified svg { width: 17px; height: 17px; flex-shrink: 0; }

/* artist profile: share, about, embeds */
.apx-share { display: inline-flex; gap: 10px; margin-left: auto; align-items: center; }
.apx-share button, .apx-share a {
  background: none; border: 1px dashed var(--line); border-radius: 999px;
  padding: 10px 18px; color: var(--muted); font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: 0.2s;
  display: inline-flex; align-items: center;
}
.apx-share button:hover, .apx-share a:hover { color: var(--accent); border-color: var(--accent); }
.apx-about p { color: var(--muted); line-height: 1.95; font-size: 1.05rem; margin-top: 18px; }
.apx-embeds { margin-top: 50px; display: flex; flex-direction: column; gap: 30px; }
.apx-embeds iframe { border-radius: 14px; border: none; }
.apx-video { position: relative; padding-top: 56.25%; border-radius: 14px; overflow: hidden; }
.apx-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

@media (max-width: 700px) { .apx-share { margin-left: 0; } }

/* section labels back to plain block (tick bars removed) — centers correctly everywhere */
.section-label { display: block; }

/* PRO chips readable on blue marquee */
.dsp-marquee .platform-chip { color: rgba(255, 255, 255, 0.92); }

/* PRO marquee: name + role stacked */
.pro-marquee { height: 96px; }
.pro-cell { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.pro-marquee .platform-chip { font-size: 1.1rem; }
.pro-role {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65); white-space: nowrap;
}

/* ---- Royalty flow diagram (music publishing) ---- */
.royalty-flow { margin-top: 64px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.royalty-flow svg {
  display: block; width: 100%; min-width: 720px; max-width: 960px;
  margin-inline: auto; height: auto; font-family: var(--font-head);
}
.rf-title  { fill: var(--ink); font-size: 34px; font-weight: 700; letter-spacing: 0.14em; }
.rf-note   { fill: var(--muted); font-size: 21px; font-weight: 500; }
.rf-glabel { fill: #2fae68; font-size: 30px; font-weight: 700; }
.rf-blabel { fill: #5b96ff; font-size: 30px; font-weight: 700; }
.rf-gsub   { fill: #2fae68; font-size: 25px; font-weight: 600; }
.rf-bsub   { fill: #5b96ff; font-size: 25px; font-weight: 600; }
.rf-leaf   { fill: var(--ink); font-size: 23px; font-weight: 600; }
.rf-small  { fill: var(--muted); font-size: 15px; }
.rf-badge  { fill: #fff; font-size: 19px; font-weight: 700; letter-spacing: 0.08em; }

/* ---- Comparison table (Bangladesh landing page) ---- */
.cmp-wrap { margin-top: 56px; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
.cmp-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 0.92rem; text-align: center; }
.cmp-table th, .cmp-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.cmp-table thead th { background: var(--dark); font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cmp-table thead th.cmp-hero-col { color: #fff; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }
.cmp-table .cmp-feature { text-align: left; font-weight: 600; color: var(--ink); }
.cmp-table td { color: var(--muted); }
.cmp-table td.cmp-hero-col { color: #fff; font-weight: 600; background: rgba(37, 99, 235, 0.14); }
.cmp-table th.cmp-hero-col { background: var(--accent); }

/* date input on dark application form */
.cal-field input[type="date"] { color-scheme: dark; }
.cal-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .7; }
.cal-grid-4 { grid-template-columns: 2fr 1fr 1fr 2fr; }
@media (max-width: 900px) { .cal-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cal-grid-4 { grid-template-columns: 1fr; } }

/* custom date picker (application form DOB) */
.dp-wrap { position: relative; }
.dp-pop { position: absolute; top: calc(100% + 8px); left: 0; z-index: 60; width: 322px; max-width: 100%; background: #12151d; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 14px; box-shadow: 0 18px 44px rgba(0,0,0,0.55); }
.dp-head { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.dp-nav { width: 34px; height: 34px; flex: none; border-radius: 9px; background: transparent; border: 1px solid rgba(255,255,255,0.12); color: var(--ink); cursor: pointer; font-size: 1.15rem; line-height: 1; }
.dp-nav:hover { border-color: var(--accent); color: var(--accent); }
.dp-sel { flex: 1; min-width: 0; padding: 8px; background: #0b0d12; border: 1px solid rgba(255,255,255,0.12); border-radius: 9px; color: var(--ink); font-family: inherit; font-size: 0.88rem; cursor: pointer; }
.dp-sel:focus { outline: none; border-color: var(--accent); }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.dp-dow { font-size: 0.72rem; color: var(--muted); padding: 6px 0; font-weight: 700; }
.dp-day { padding: 9px 0; border: none; background: transparent; color: var(--ink); border-radius: 9px; cursor: pointer; font-size: 0.88rem; font-family: inherit; }
.dp-day:hover { background: rgba(37,99,235,0.2); }
.dp-day.dp-selected { background: var(--accent); color: #fff; font-weight: 700; }
.dp-day:disabled { opacity: 0.22; cursor: default; background: transparent; }
.dp-foot { display: flex; justify-content: flex-end; margin-top: 10px; }
.dp-clear { background: transparent; border: none; color: var(--accent); cursor: pointer; font-family: inherit; font-size: 0.86rem; font-weight: 600; }
.dp-clear:hover { text-decoration: underline; }

/* seo intro: top-aligned columns (long text), heading lines up with first paragraph */
.seo2-grid { align-items: start; }
@media (min-width: 861px) {
  .seo2-grid > div:first-child { padding-top: 6px; }
  .seo2-grid > div:last-child { padding-top: 0; }
}
