/* ═══ THE MIX — CHARTE GRAPHIQUE GLOBALE ═══ */
:root {
  --black: #0D0D0D;
  --black2: #111111;
  --black3: #1A1A1A;
  --violet: #6B35D4;
  --violet-bright: #7B3FE4;
  --violet-deep: #3B0F8C;
  --green: #C8F135;
  --white: #FFFFFF;
  --white-soft: #E8E8E8;
  --font-title: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.themix-page {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
  margin: 0 !important;
  padding: 0 !important;
}

body.themix-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
}

/* ─── RESET ASTRA ─── */
body.themix-page .site-content,
body.themix-page #content,
body.themix-page .content-area,
body.themix-page .ast-container,
body.themix-page .entry-content,
body.themix-page article.hentry,
body.themix-page .hentry {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
}

/* ─── NAV ─── */
.themix-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,53,212,0.2);
}

.themix-nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.themix-nav-logo .the {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-text-stroke: 0.5px var(--white);
  color: transparent;
  text-transform: uppercase;
}
.themix-nav-logo .mix {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 0.85;
}

.themix-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.themix-nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.themix-nav-links a:hover,
.themix-nav-links a.active { color: var(--violet-bright); }

.themix-nav-cta {
  background: var(--violet-bright) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.themix-nav-cta:hover { background: var(--violet) !important; }

.themix-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ─── HERO ─── */
.themix-hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.themix-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 110%, var(--violet-deep) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(107,53,212,0.15) 0%, transparent 60%),
    var(--black2);
  z-index: 0;
}

.themix-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,53,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,53,212,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
}

.themix-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 40px;
  min-height: calc(100vh - 80px);
}

.themix-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,53,212,0.2);
  border: 1px solid rgba(107,53,212,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet-bright);
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s ease both;
}

.themix-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-bright);
  animation: pulse 2s infinite;
}

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

.themix-hero-title {
  font-family: var(--font-title);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--white);
  animation: fadeSlideUp 0.8s 0.1s ease both;
  margin-bottom: 24px;
}

.themix-hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.themix-hero-pill {
  display: inline-block;
  background: var(--violet-bright);
  border-radius: 16px;
  padding: 8px 24px 10px;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -2px;
  position: relative;
}

.themix-hero-pill::before,
.themix-hero-pill::after {
  content: '✦';
  position: absolute;
  color: var(--white);
  font-size: 20px;
  top: -10px;
}
.themix-hero-pill::before { left: -30px; }
.themix-hero-pill::after { right: -30px; }

.themix-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-soft);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.themix-hero-subtitle strong { color: var(--white); font-weight: 700; }

.themix-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.themix-btn-primary {
  background: var(--violet-bright);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.themix-btn-primary:hover { background: var(--violet); transform: translateY(-2px); color: var(--white); }

.themix-btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.themix-btn-outline:hover { border-color: var(--violet-bright); transform: translateY(-2px); color: var(--white); }

.themix-hero-stats {
  display: flex;
  gap: 64px;
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.8s 0.4s ease both;
  justify-content: center;
}

.themix-stat { text-align: center; }
.themix-stat .number {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.themix-stat .number span { color: var(--violet-bright); }
.themix-stat .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION BASE ─── */
.themix-section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.themix-section-full {
  padding: 100px 0;
  background: var(--black2);
}
.themix-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.themix-section-header { margin-bottom: 64px; }

.themix-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--violet-bright);
  margin-bottom: 16px;
}
.themix-section-eyebrow::before { content: '✦'; font-size: 8px; }

.themix-section-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--white);
}

.themix-section-title .pill {
  display: inline-block;
  background: var(--violet-bright);
  border-radius: 10px;
  padding: 2px 16px 4px;
  color: var(--white);
}

.themix-section-link {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--violet-bright);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  margin-top: 12px;
}
.themix-section-link:hover { gap: 12px; color: var(--violet-bright); }

/* ─── MARQUEE ─── */
.themix-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(107,53,212,0.15);
  border-bottom: 1px solid rgba(107,53,212,0.15);
  background: var(--black3);
}
.themix-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.themix-marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}
.themix-marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-bright);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── LIVE SESSIONS ─── */
.themix-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.themix-live-card {
  background: var(--black3);
  border: 1px solid rgba(107,53,212,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.themix-live-card:hover { transform: translateY(-4px); border-color: rgba(107,53,212,0.5); }

.themix-live-card-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--black3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.themix-live-card-img .waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(0deg, rgba(107,53,212,0.3), transparent);
}

.themix-live-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--violet-bright);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.themix-live-date {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.themix-live-icon { font-size: 64px; opacity: 0.2; }

.themix-live-card-body { padding: 24px; }

.themix-live-card-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--white);
}

.themix-live-card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.themix-live-credits {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
}

.themix-live-features {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.themix-live-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.themix-live-features li span { color: var(--green); margin-top: 2px; }

.themix-live-no-replay {
  background: rgba(107,53,212,0.1);
  border: 1px solid rgba(107,53,212,0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 12px;
  color: var(--white-soft);
}

.themix-live-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.themix-live-price {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}
.themix-live-price span { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 400; font-family: var(--font-body); }

.themix-btn-register {
  background: var(--violet-bright);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.themix-btn-register:hover { background: var(--violet); color: var(--white); }

/* ─── PODCASTS ─── */
.themix-podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.themix-podcast-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.themix-podcast-card:hover { transform: translateY(-4px); border-color: rgba(107,53,212,0.4); }

.themix-podcast-cover {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--violet-deep), #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.themix-podcast-cover-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--black3) 100%);
}

.themix-play-btn {
  width: 56px; height: 56px;
  background: var(--violet-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  color: var(--white);
}

.themix-podcast-ep {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.themix-podcast-label {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

.themix-podcast-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.themix-podcast-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.themix-podcast-guest {
  font-size: 13px;
  color: var(--violet-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.themix-podcast-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  flex: 1;
}

.themix-podcast-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.themix-podcast-duration {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.themix-podcast-platforms {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.themix-platform-btn {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
  color: var(--white);
}
.themix-platform-btn:hover { background: var(--violet); color: var(--white); }

/* ─── INGÉ FEATURE ─── */
.themix-inge-section { background: var(--black2); }
.themix-inge-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.themix-inge-photo {
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--black) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  font-size: 80px;
  padding: 40px;
}
.themix-inge-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--black2) 100%);
}
.themix-inge-photo-label {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--violet-bright);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.themix-inge-content {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.themix-inge-name {
  font-family: var(--font-title);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 16px;
  color: var(--white);
}
.themix-inge-credits {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.themix-inge-credits::before { content: '✦ '; }
.themix-inge-bio {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 32px;
}
.themix-inge-bio strong { color: var(--white); }
.themix-inge-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.themix-tool-tag {
  background: rgba(107,53,212,0.15);
  border: 1px solid rgba(107,53,212,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white-soft);
}

/* ─── ARTICLES ─── */
.themix-articles-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.themix-article-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.themix-article-card:hover { border-color: rgba(107,53,212,0.4); transform: translateY(-3px); }

.themix-article-card-featured { grid-row: 1 / 3; }

.themix-article-img {
  width: 100%;
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--black3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.themix-article-card-featured .themix-article-img { height: 360px; }
.themix-article-card:not(.themix-article-card-featured) .themix-article-img { height: 160px; }

.themix-article-category {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--violet-bright);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.themix-article-body { padding: 20px; }

.themix-article-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--white);
}
.themix-article-card-featured .themix-article-title { font-size: 32px; }

.themix-article-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.themix-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.themix-article-meta-dot { color: var(--violet-bright); }

/* ─── NEWSLETTER ─── */
.themix-newsletter {
  background: none;
}
.themix-newsletter-inner {
  background: linear-gradient(135deg, var(--violet-deep) 0%, #1a0a40 50%, var(--black2) 100%);
  border-top: 1px solid rgba(107,53,212,0.3);
  border-bottom: 1px solid rgba(107,53,212,0.3);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.themix-newsletter-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,53,212,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,53,212,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.themix-newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.themix-newsletter-sparkles {
  font-size: 32px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.themix-newsletter-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 16px;
  color: var(--white);
}
.themix-newsletter-sub {
  font-size: 16px;
  color: var(--white-soft);
  margin-bottom: 40px;
  line-height: 1.7;
}
.themix-newsletter-sub strong { color: var(--green); }

.themix-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.themix-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.themix-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.themix-newsletter-input:focus { border-color: var(--violet-bright); }
.themix-newsletter-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ─── PLUGINS ─── */
.themix-plugins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.themix-plugin-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.themix-plugin-card:hover { border-color: rgba(107,53,212,0.4); transform: translateY(-3px); }

.themix-plugin-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.themix-plugin-name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.themix-plugin-brand {
  font-size: 12px;
  color: var(--violet-bright);
  font-weight: 600;
  margin-bottom: 12px;
}
.themix-plugin-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}
.themix-plugin-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.themix-plugin-tag {
  background: rgba(107,53,212,0.15);
  border: 1px solid rgba(107,53,212,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--violet-bright);
}
.themix-plugin-tag-green {
  background: rgba(200,241,53,0.1);
  border-color: rgba(200,241,53,0.3);
  color: var(--green);
}

/* ─── TEMPLATES ─── */
.themix-templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.themix-template-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.themix-template-card:hover { border-color: rgba(107,53,212,0.4); transform: translateY(-3px); }

.themix-template-preview {
  height: 180px;
  background: linear-gradient(135deg, #0d0d1a 0%, var(--violet-deep) 100%);
  position: relative;
  overflow: hidden;
}
.themix-daw-ui {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 4px;
  opacity: 0.7;
}
.themix-daw-track {
  height: 18px;
  border-radius: 3px;
  background: rgba(107,53,212,0.3);
  position: relative;
  overflow: hidden;
}
.themix-daw-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(107,53,212,0.4) 8px, rgba(107,53,212,0.4) 9px);
}
.themix-daw-track:nth-child(2) { background: rgba(200,241,53,0.15); width: 85%; }
.themix-daw-track:nth-child(3) { background: rgba(107,53,212,0.2); width: 70%; }
.themix-daw-track:nth-child(4) { background: rgba(200,241,53,0.1); width: 90%; }
.themix-daw-track:nth-child(5) { background: rgba(107,53,212,0.25); width: 60%; }
.themix-daw-track:nth-child(6) { background: rgba(200,241,53,0.12); width: 75%; }
.themix-daw-track:nth-child(7) { background: rgba(107,53,212,0.15); width: 95%; }

.themix-template-daw {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.themix-template-body { padding: 20px; }
.themix-template-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--white);
}
.themix-template-by {
  font-size: 12px;
  color: var(--violet-bright);
  font-weight: 600;
  margin-bottom: 8px;
}
.themix-template-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.themix-template-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.themix-template-price {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}
.themix-btn-buy {
  background: var(--black);
  color: var(--white);
  border: 2px solid rgba(107,53,212,0.5);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.themix-btn-buy:hover { background: var(--violet-bright); border-color: var(--violet-bright); color: var(--white); }

/* ─── GEAR ─── */
.themix-gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.themix-gear-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.themix-gear-card:hover { border-color: rgba(107,53,212,0.4); transform: translateY(-3px); }

.themix-gear-img {
  height: 140px;
  background: linear-gradient(135deg, var(--black2) 0%, var(--violet-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.themix-gear-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--violet-bright);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.themix-gear-body { padding: 16px; }
.themix-gear-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--white);
}
.themix-gear-brand {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.themix-gear-inge {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.themix-gear-inge::before { content: '✦ '; }

/* ─── FOOTER ─── */
.themix-footer {
  background: var(--black2);
  border-top: 1px solid rgba(107,53,212,0.2);
  padding: 80px 48px 40px;
}
.themix-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}
.themix-footer-logo-the {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.themix-footer-logo-mix {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 0.85;
  letter-spacing: -1px;
  display: block;
}
.themix-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
  margin-top: 20px;
}
.themix-footer-socials { display: flex; gap: 12px; }
.themix-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s;
  color: var(--white);
}
.themix-social-link:hover { background: var(--violet); border-color: var(--violet); color: var(--white); }

.themix-footer-col h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}
.themix-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.themix-footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.themix-footer-col ul a:hover { color: var(--violet-bright); }

.themix-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  max-width: 1400px;
  margin: 0 auto;
}
.themix-footer-bottom-logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.5px;
}

/* ─── PAGE HEADER (sous-pages) ─── */
.themix-page-header {
  background: var(--black2);
  padding: 160px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.themix-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, var(--violet-deep) 0%, transparent 70%),
    var(--black2);
}
.themix-page-header-content { position: relative; z-index: 1; }
.themix-page-header-title {
  font-family: var(--font-title);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 16px;
}
.themix-page-header-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ─── POPUP ─── */
.themix-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.themix-popup-overlay.active { opacity: 1; pointer-events: all; }
.themix-popup {
  background: var(--black3);
  border: 1px solid rgba(107,53,212,0.4);
  border-radius: 24px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  text-align: center;
}
.themix-popup-overlay.active .themix-popup { transform: translateY(0); }
.themix-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.themix-popup-close:hover { background: rgba(255,255,255,0.15); }
.themix-popup-badge {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  border-radius: 100px;
  padding: 4px 20px;
  margin-bottom: 20px;
}
.themix-popup-title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 12px;
  color: var(--white);
}
.themix-popup-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}
.themix-popup-form { display: flex; flex-direction: column; gap: 12px; }
.themix-popup-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.themix-popup-input::placeholder { color: rgba(255,255,255,0.3); }
.themix-popup-input:focus { border-color: var(--violet-bright); }

/* ─── DIVIDER ─── */
.themix-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,53,212,0.3), transparent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .themix-live-grid { grid-template-columns: 1fr; }
  .themix-podcast-grid { grid-template-columns: 1fr 1fr; }
  .themix-articles-grid { grid-template-columns: 1fr 1fr; }
  .themix-article-card-featured { grid-column: 1 / 3; grid-row: auto; }
  .themix-plugins-grid { grid-template-columns: 1fr 1fr; }
  .themix-gear-grid { grid-template-columns: 1fr 1fr; }
  .themix-templates-grid { grid-template-columns: 1fr 1fr; }
  .themix-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .themix-inge-feature { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .themix-nav { padding: 16px 24px; }
  .themix-nav-links { display: none; }
  .themix-mobile-btn { display: block; }
  .themix-section { padding: 64px 24px; }
  .themix-section-full { padding: 64px 0; }
  .themix-section-inner { padding: 0 24px; }
  .themix-hero-content { padding: 40px 24px; }
  .themix-hero-stats { flex-wrap: wrap; gap: 32px; padding: 32px 24px; }
  .themix-hero-ctas { flex-direction: column; }
  .themix-podcast-grid { grid-template-columns: 1fr; }
  .themix-articles-grid { grid-template-columns: 1fr; }
  .themix-article-card-featured { grid-column: auto; }
  .themix-plugins-grid { grid-template-columns: 1fr 1fr; }
  .themix-gear-grid { grid-template-columns: 1fr 1fr; }
  .themix-templates-grid { grid-template-columns: 1fr; }
  .themix-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .themix-footer { padding: 48px 24px 32px; }
  .themix-newsletter-inner { padding: 64px 24px; }
  .themix-newsletter-form { flex-direction: column; }
  .themix-inge-content { padding: 40px 24px; }
}
