/*
Theme Name: TEDx Starter
Theme URI: https://www.tedxlaval.com
Description: Thème TEDx Starter v4.0 — Bold, cinématique, WOW. Vrais logos TEDx, design inspiré de TEDxToronto/Québec/VilleMarie.
Author: Cinequinox / IDNation OSBL
Version: 4.0
Template: hello-elementor
Text Domain: tedx-starter
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ══════════════════════════════════════
   VARIABLES
   ══════════════════════════════════════ */
:root {
  --red: #EB0028;
  --red-light: #FF1A3D;
  --red-dark: #C50020;
  --red-glow: rgba(235,0,40,0.3);
  --black: #111;
  --black-deep: #0a0a0a;
  --white: #fff;
  --off: #F8F6F3;
  --cream: #FFF8F2;
  --warm: #FFF3EA;
  --grey-100: #eee;
  --grey-400: #888;
  --grey-600: #666;
  --grey-900: #222;
  --radius: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Montserrat', sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all .3s var(--ease); }

/* ══════════════════════════════════════
   TYPOGRAPHY — Google Fonts loaded in functions.php
   ══════════════════════════════════════ */

/* ══════════════════════════════════════
   HEADER — White glass with REAL logo
   ══════════════════════════════════════ */
.tx-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 80px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  transition: all .4s var(--ease);
}
.tx-header.scrolled {
  height: 60px;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-bottom-color: rgba(0,0,0,0.08);
}
.tx-logo { display: flex; align-items: center; }
.tx-logo-img { height: 38px; width: auto; transition: height .3s var(--ease); }
.tx-header.scrolled .tx-logo-img { height: 30px; }
.tx-logo:hover { transform: scale(1.03); }

/* Navigation */
.tx-nav { display: flex; align-items: center; gap: 2px; }
.tx-nav a {
  color: #555; font-size: 11.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 8px 14px; position: relative;
}
.tx-nav a::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform .4s var(--ease);
}
.tx-nav a:hover { color: var(--red); }
.tx-nav a:hover::after { transform: scaleX(1); }
.tx-nav a.active { color: var(--red); }
.tx-nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  border-radius: 50px; padding: 11px 26px !important;
  margin-left: 10px; box-shadow: 0 4px 18px var(--red-glow);
  font-weight: 800 !important;
}
.tx-nav-cta::after { display: none !important; }
.tx-nav-cta:hover {
  background: var(--red-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(235,0,40,0.35) !important;
}

/* Mobile burger */
.tx-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
.tx-burger span { width: 24px; height: 2px; background: var(--black); transition: all .3s var(--ease); }
.tx-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.tx-burger.open span:nth-child(2) { opacity: 0; }
.tx-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.tx-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.tx-mobile-nav.open { display: flex; }
.tx-mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 28px;
  color: var(--black); text-transform: uppercase; letter-spacing: .05em;
}
.tx-mobile-nav a:hover { color: var(--red); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.tx-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 80px;
  background: linear-gradient(160deg, #0c0c0c, #1a0508 40%, #0c0c0c);
}
.tx-hero-x {
  position: absolute; font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 80vw;
  color: rgba(235,0,40,0.04); top: 50%; left: 50%;
  transform: translate(-50%,-50%); line-height: 1; pointer-events: none; user-select: none;
}
.tx-hero-orb1 {
  position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(235,0,40,0.2) 0%, transparent 70%);
  top: -15%; right: -15%; pointer-events: none;
}
.tx-hero-orb2 {
  position: absolute; width: 45vw; height: 45vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(235,0,40,0.12) 0%, transparent 65%);
  bottom: 5%; left: -10%; pointer-events: none;
}
.tx-hero-dots {
  position: absolute; inset: 0; opacity: .15;
  background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.tx-hero-video {
  position: absolute; inset: 0; z-index: 0;
}
.tx-hero-video video,
.tx-hero-video iframe {
  width: 100%; height: 100%; object-fit: cover; opacity: .3;
}
.tx-hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 1050px; padding: 40px 24px 80px;
}
.tx-hero-logo { margin-bottom: 32px; animation: tx-fu .8s var(--ease) .1s both; }
.tx-hero-logo img { height: 60px; margin: 0 auto; }
.tx-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(235,0,40,0.15); border: 1.5px solid rgba(235,0,40,0.3);
  color: var(--red-light); padding: 10px 28px; border-radius: 50px;
  font-family: 'Space Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 40px;
  animation: tx-fu .8s var(--ease) .2s both;
}
.tx-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-light); animation: tx-pulse 2s ease-in-out infinite;
}
.tx-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(40px, 8vw, 100px);
  color: var(--white); line-height: .95; letter-spacing: -1px;
  margin: 0 0 28px; animation: tx-fu .8s var(--ease) .35s both;
  text-transform: uppercase;
}
.tx-hero h1 .dot { color: var(--red); }
.tx-hero h1 .red { color: var(--red); }
.tx-hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2.2vw, 28px);
  color: rgba(255,255,255,0.4); font-style: italic;
  margin: 0 0 16px; animation: tx-fu .8s var(--ease) .5s both;
}
.tx-hero-desc {
  font-size: clamp(14px, 1.3vw, 16px); color: rgba(255,255,255,0.28);
  max-width: 520px; margin: 0 auto 44px; line-height: 1.7;
  animation: tx-fu .8s var(--ease) .6s both;
}
.tx-hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: tx-fu .8s var(--ease) .8s both;
}
.tx-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.2); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; animation: tx-fu .8s var(--ease) 1.2s both;
}
.tx-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
  animation: tx-sl 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.tx-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  text-decoration: none; transition: all .3s var(--ease);
  border: none; cursor: pointer; font-size: 14px; padding: 18px 44px;
}
.tx-btn-red { background: var(--red); color: var(--white); box-shadow: 0 6px 30px var(--red-glow); }
.tx-btn-red:hover { background: var(--red-light); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(235,0,40,0.5); color: var(--white); }
.tx-btn-out { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); }
.tx-btn-out:hover { border-color: var(--white); transform: translateY(-3px); background: rgba(255,255,255,0.04); color: var(--white); }
.tx-btn-white { background: var(--white); color: var(--red); }
.tx-btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); color: var(--red); }
.tx-btn-dark { background: var(--black); color: var(--white); }
.tx-btn-dark:hover { background: var(--grey-900); transform: translateY(-3px); color: var(--white); }
.tx-btn-ghost { background: transparent; color: var(--red); border: 2px solid var(--red); }
.tx-btn-ghost:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }
.tx-btn-sm { font-size: 13px; padding: 15px 34px; }

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.tx-marquee { background: var(--red); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.tx-marquee-track { display: inline-flex; animation: tx-mq 20s linear infinite; }
.tx-marquee-item {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 20px; color: var(--white);
  letter-spacing: .1em; text-transform: uppercase; padding: 0 36px;
  display: inline-flex; align-items: center; gap: 18px;
}
.tx-marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════
   COUNTDOWN
   ══════════════════════════════════════ */
.tx-countdown-sec { background: linear-gradient(180deg, var(--cream), var(--white)); padding: 80px 0; text-align: center; }
.tx-countdown-label {
  font-family: 'Space Mono', monospace; font-size: 12px; color: var(--red);
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 10px; font-weight: 700;
}
.tx-countdown { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.tx-countdown-block {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  min-width: 115px; text-align: center;
  box-shadow: 0 10px 40px rgba(235,0,40,0.1); border: 2px solid rgba(235,0,40,0.06);
  transition: all .3s var(--ease);
}
.tx-countdown-block:hover { border-color: rgba(235,0,40,0.2); transform: translateY(-4px); }
.tx-countdown-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 48px; color: var(--red); line-height: 1; }
.tx-countdown-unit { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: .15em; margin-top: 6px; font-weight: 700; }
.tx-countdown-event { margin-top: 28px; color: #999; font-size: 15px; }
.tx-countdown-event strong { color: var(--black); }

/* ══════════════════════════════════════
   STATS BAR — RED
   ══════════════════════════════════════ */
.tx-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--red); }
.tx-stat {
  padding: 52px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background .3s var(--ease);
}
.tx-stat:last-child { border-right: none; }
.tx-stat:hover { background: rgba(255,255,255,0.06); }
.tx-stat-icon { font-size: 28px; margin-bottom: 10px; }
.tx-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: clamp(36px, 4.5vw, 56px);
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.tx-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: .15em; font-weight: 700;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.tx-sec { padding: 110px 0; }
.tx-sec-dark { background: var(--black); color: var(--white); }
.tx-sec-deep { background: var(--black-deep); color: var(--white); }
.tx-sec-off { background: var(--off); }
.tx-sec-cream { background: var(--cream); }
.tx-sec-white { background: var(--white); }
.tx-sec-red { background: var(--red); color: var(--white); }
.tx-contain { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tx-sec-head { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.tx-overline {
  font-family: 'Space Mono', monospace; font-size: 11px; color: var(--red);
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px;
  display: block; font-weight: 700;
}
.tx-sec-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: clamp(28px, 4.5vw, 52px);
  margin: 0 0 14px; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.5px;
}
.tx-sec-dark .tx-sec-head h2 { color: var(--white); }
.tx-red-bar { width: 56px; height: 5px; background: var(--red); margin: 16px auto; border-radius: 3px; }
.tx-sec-head p { font-size: 16px; color: var(--grey-400); line-height: 1.7; }
.tx-sec-dark .tx-sec-head p { color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════
   ABOUT SPLIT
   ══════════════════════════════════════ */
.tx-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tx-about-grid h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: clamp(28px, 3.5vw, 48px);
  color: var(--black); line-height: 1.02; margin: 0 0 20px;
}
.tx-about-grid .accent { color: var(--red); }
.tx-about-img { position: relative; }
.tx-about-img img { border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.tx-about-float {
  position: absolute; bottom: -28px; right: -16px;
  background: var(--red); color: var(--white); border-radius: var(--radius);
  padding: 24px 32px; box-shadow: 0 12px 40px rgba(235,0,40,0.35);
  animation: tx-float 4s ease-in-out infinite;
}
.tx-about-float-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 44px; line-height: 1; }
.tx-about-float-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }

/* ══════════════════════════════════════
   NARRATIVE
   ══════════════════════════════════════ */
.tx-narrative { max-width: 750px; margin: 0 auto; text-align: center; padding: 90px 24px; }
.tx-narrative h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400; font-style: italic; color: var(--white);
  line-height: 1.35; margin-bottom: 20px;
}
.tx-narrative .accent { color: var(--red); font-weight: 600; font-style: normal; }
.tx-narrative p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ══════════════════════════════════════
   SPEAKER CARDS
   ══════════════════════════════════════ */
.tx-spk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.tx-spk { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.tx-spk img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: all .7s var(--ease);
}
.tx-spk:hover img { filter: grayscale(0%) contrast(1); transform: scale(1.08); }
.tx-spk-ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 65%);
  transition: all .5s var(--ease);
}
.tx-spk:hover .tx-spk-ov {
  background: linear-gradient(0deg, rgba(235,0,40,0.92) 0%, rgba(235,0,40,0.08) 55%, transparent 65%);
}
.tx-spk-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: var(--white);
  padding: 4px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
}
.tx-spk-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.tx-spk-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 22px;
  color: var(--white); margin: 0 0 4px; text-transform: uppercase;
}
.tx-spk-talk {
  font-size: 13px; color: rgba(255,255,255,0.75); font-style: italic;
  font-family: 'Playfair Display', serif;
  opacity: 0; transform: translateY(8px);
  transition: all .4s var(--ease) .1s;
}
.tx-spk:hover .tx-spk-talk { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   SCHEDULE TIMELINE
   ══════════════════════════════════════ */
.tx-sched { max-width: 800px; margin: 0 auto; }
.tx-sch-item { display: flex; gap: 24px; margin-bottom: 20px; align-items: flex-start; }
.tx-sch-time { min-width: 85px; text-align: right; padding-top: 4px; flex-shrink: 0; }
.tx-sch-time span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 30px; color: var(--red); }
.tx-sch-time small { display: block; font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: .1em; }
.tx-sch-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--red);
  flex-shrink: 0; margin-top: 8px; box-shadow: 0 0 0 5px rgba(235,0,40,0.12);
}
.tx-sch-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius); padding: 22px 28px; flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: all .3s var(--ease);
}
.tx-sch-card:hover { transform: translateX(4px); border-color: rgba(235,0,40,0.15); box-shadow: 0 8px 30px rgba(235,0,40,0.06); }
.tx-sch-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 18px; color: var(--black); margin: 0 0 6px; }
.tx-sch-card p { font-size: 14px; color: var(--grey-400); line-height: 1.6; }

/* ══════════════════════════════════════
   TICKETS
   ══════════════════════════════════════ */
.tx-tix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.tx-ticket {
  border-radius: 24px; padding: 44px 32px; text-align: center;
  position: relative; overflow: hidden; transition: all .4s var(--ease);
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
}
.tx-ticket:hover { transform: translateY(-8px); }
.tx-ticket.featured { border: 2px solid var(--red); background: rgba(235,0,40,0.06); }
.tx-ticket-pop {
  position: absolute; top: 22px; right: -26px;
  background: var(--red); color: var(--white);
  font-size: 9px; font-weight: 900; padding: 4px 36px;
  transform: rotate(45deg); letter-spacing: .1em;
}
.tx-ticket h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 24px; margin: 0 0 8px; text-transform: uppercase; color: var(--white); }
.tx-ticket .price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 56px; color: var(--red); line-height: 1; margin: 16px 0; }
.tx-ticket .price small { font-size: 22px; color: var(--grey-400); }
.tx-ticket ul { list-style: none; margin: 0 0 28px; }
.tx-ticket li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.55); font-size: 14px; }

/* ══════════════════════════════════════
   EDITIONS
   ══════════════════════════════════════ */
.tx-ed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.tx-ed { border-radius: 24px; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); background: var(--off); transition: all .4s var(--ease); }
.tx-ed:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.tx-ed-img { height: 190px; position: relative; overflow: hidden; }
.tx-ed-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tx-ed:hover .tx-ed-img img { transform: scale(1.06); }
.tx-ed-yr {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: var(--white);
  padding: 6px 18px; border-radius: 50px;
  font-family: 'Space Mono', monospace; font-size: 15px; font-weight: 700;
}
.tx-ed-body { padding: 24px; }
.tx-ed-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 24px; color: var(--black); margin: 0 0 8px; text-transform: uppercase; }
.tx-ed-meta { display: flex; gap: 16px; font-size: 13px; color: var(--grey-400); }

/* ══════════════════════════════════════
   CTA — FULL RED
   ══════════════════════════════════════ */
.tx-cta { background: var(--red); padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.tx-cta-x {
  position: absolute; font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 55vw;
  color: rgba(255,255,255,0.04); top: 50%; left: 50%;
  transform: translate(-50%,-50%); line-height: 1; pointer-events: none;
}
.tx-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: clamp(28px, 4.5vw, 52px);
  color: var(--white); margin: 0 0 18px; line-height: 1.05;
}
.tx-cta p { font-size: 18px; color: rgba(255,255,255,0.85); margin: 0 auto 36px; max-width: 520px; }

/* ══════════════════════════════════════
   SPONSORS
   ══════════════════════════════════════ */
.tx-sp-tier { margin-bottom: 48px; }
.tx-sp-label {
  text-align: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: 14px;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tx-sp-label.vis { color: var(--red); }
.tx-sp-label.gold { color: #D4A437; }
.tx-sp-label.silver { color: #999; }
.tx-sp-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; }
.tx-sp-box {
  background: var(--white); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:700; color: #bbb; text-transform: uppercase;
  letter-spacing: .06em; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03); transition: all .3s var(--ease);
  filter: grayscale(100%); opacity: .6;
}
.tx-sp-box:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.tx-sp-box.big { width: 190px; height: 85px; font-size: 14px; }
.tx-sp-box.med { width: 150px; height: 65px; font-size: 12px; }
.tx-sp-box.sm { width: 140px; height: 55px; font-size: 11px; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════ */
.tx-page-hero {
  padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.tx-page-hero-dark { background: linear-gradient(160deg, #0c0c0c, #1a0508 40%, #0c0c0c); color: var(--white); }
.tx-page-hero-red { background: var(--red); color: var(--white); }
.tx-page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; font-size: clamp(34px, 6vw, 64px);
  margin: 0 0 16px; text-transform: uppercase; line-height: 1;
}
.tx-page-hero p { font-size: 18px; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }
.tx-page-hero .tx-page-hero-logo { margin-bottom: 24px; }
.tx-page-hero .tx-page-hero-logo img { height: 48px; margin: 0 auto; }

/* ══════════════════════════════════════
   YOUTH & STUDIO SPECIFICS
   ══════════════════════════════════════ */
.tx-youth-hero {
  background: linear-gradient(160deg, #0a0a2a, #1a0828 40%, #0a0a2a);
}
.tx-youth-hero .tx-overline { color: #8B5CF6; }
.tx-youth-accent { color: #8B5CF6; }
.tx-studio-hero {
  background: linear-gradient(160deg, #0a1a0a, #081a08 40%, #0a1a0a);
}
.tx-studio-hero .tx-overline { color: #10B981; }
.tx-studio-accent { color: #10B981; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.tx-footer { background: var(--black-deep); color: rgba(255,255,255,0.35); padding: 80px 0 28px; }
.tx-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.tx-footer-logo { margin-bottom: 16px; }
.tx-footer-logo img { height: 40px; }
.tx-footer-desc { font-size: 13px; line-height: 1.8; max-width: 360px; }
.tx-footer h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight:800; color: var(--white); font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px;
}
.tx-footer a { color: rgba(255,255,255,0.35); font-size: 13px; display: block; padding: 4px 0; }
.tx-footer a:hover { color: var(--red); transform: translateX(4px); }
.tx-footer-social { display: flex; gap: 8px; }
.tx-footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 0; font-size: 16px; color: rgba(255,255,255,0.5); transform: none !important;
}
.tx-footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px) !important; }
.tx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; flex-wrap: wrap; gap: 12px;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
.tx-reveal { opacity: 0; transform: translateY(30px); transition: all .8s var(--ease); }
.tx-reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes tx-fu { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tx-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(1.8); } }
@keyframes tx-mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tx-sl { 0%, 100% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(.2); } }
@keyframes tx-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .tx-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tx-about-float { position: relative; bottom: auto; right: auto; display: inline-flex; gap: 12px; align-items: center; margin-top: 16px; }
}
@media (max-width: 900px) {
  .tx-nav { display: none; }
  .tx-burger { display: flex; }
  .tx-stats { grid-template-columns: 1fr 1fr; }
  .tx-spk-grid { grid-template-columns: 1fr 1fr; }
  .tx-footer-grid { grid-template-columns: 1fr 1fr; }
  .tx-sch-item { flex-direction: column; gap: 10px; }
  .tx-sch-dot { display: none; }
  .tx-sch-time { text-align: left; }
  .tx-ed-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tx-stats { grid-template-columns: 1fr 1fr; }
  .tx-stat { padding: 32px 16px; }
  .tx-spk-grid { grid-template-columns: 1fr; }
  .tx-tix-grid { grid-template-columns: 1fr; }
  .tx-footer-grid { grid-template-columns: 1fr; }
  .tx-footer-bottom { flex-direction: column; text-align: center; }
  .tx-countdown { gap: 8px; }
  .tx-countdown-block { min-width: 72px; padding: 16px 12px; }
  .tx-countdown-num { font-size: 40px; }
  .tx-hero h1 { font-size: clamp(32px, 10vw, 56px); }
  .tx-hero-logo img { height: 40px; }
}

/* ══════════════════════════════════════
   HIDE ALL OLD THEME/PLUGIN ELEMENTS
   Aggressively override TSM, Hello Elementor,
   and any old theme header/footer/nav.
   ══════════════════════════════════════ */
/* Hello Elementor */
.site-header, #site-header, .elementor-location-header { display: none !important; }
.site-footer, #site-footer, .elementor-location-footer { display: none !important; }
/* TSM Plugin / Old theme headers & menus */
header:not(.tx-header) { display: none !important; }
footer:not(.tx-footer) { display: none !important; }
/* Old nav menus that aren't ours */
nav:not(.tx-nav):not(.tx-mobile-nav):not([class*="tx-"]) { display: none !important; }
/* WordPress default elements */
.skip-link, a[href="#content"].skip-link, .screen-reader-text.skip-link { display: none !important; }
/* TSM specific elements */
#tsm-header, .tsm-header, .tsm-nav, .tsm-footer { display: none !important; }
/* Hello Elementor default header/footer hooks */
.ehf-header, .ehf-footer, .hfe-header, .hfe-footer { display: none !important; }
/* WP admin bar spacing fix */
.tx-header { top: 0 !important; }
body.admin-bar .tx-header { top: 32px !important; }
/* Ensure our content is on top of everything */
.tx-header { z-index: 99999 !important; }
.tx-mobile-nav { z-index: 99998 !important; }
