/* ==========================================================================
   Gospel Waves Radio — scoped design system
   Everything is scoped under .gw so it can never leak into, or be clobbered
   by, the host theme. Colours come from CSS variables so they can be wired to
   Elementor Global Colours / overridden per widget.
   ========================================================================== */

.gw {
	--gw-bg: #0a0a1a;
	--gw-bg-2: #1a1a2e;
	--gw-card: rgba(255, 255, 255, 0.05);
	--gw-card-2: rgba(255, 255, 255, 0.08);
	--gw-line: rgba(255, 255, 255, 0.10);
	--gw-text: #ffffff;
	--gw-muted: rgba(255, 255, 255, 0.70);
	--gw-muted-2: rgba(255, 255, 255, 0.55);
	--gw-faint: rgba(255, 255, 255, 0.40);
	--gw-pink: #ec4899;
	--gw-orange: #f97316;
	--gw-purple: #a855f7;
	--gw-yellow: #fde047;
	--gw-red: #ef4444;
	--gw-grad: linear-gradient(90deg, var(--gw-pink), var(--gw-orange));
	--gw-grad-3: linear-gradient(90deg, var(--gw-pink), var(--gw-purple), var(--gw-orange));
	--gw-radius: 1rem;
	--gw-font: "Inter", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	background: var(--gw-bg);
	color: var(--gw-text);
	font-family: var(--gw-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.gw *,
.gw *::before,
.gw *::after { box-sizing: border-box; }

.gw a { color: inherit; text-decoration: none; }
.gw img { display: block; max-width: 100%; height: auto; }
.gw h1, .gw h2, .gw h3, .gw h4, .gw p, .gw ul { margin: 0; }
.gw ul { list-style: none; padding: 0; }
.gw h1, .gw h2, .gw h3, .gw h4 { color: var(--gw-text); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.gw button { font-family: inherit; cursor: pointer; }

/* Layout helpers ---------------------------------------------------------- */
.gw-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gw-section { padding: 80px 0; position: relative; }
.gw-section--lg { padding: 112px 0; }
.gw-center { text-align: center; }

/* Buttons ----------------------------------------------------------------- */
.gw-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 30px; border-radius: 999px; border: 1px solid transparent;
	font-weight: 600; font-size: 15px; line-height: 1; transition: all 0.25s ease;
}
.gw-btn svg { width: 18px; height: 18px; }
.gw-btn--grad { background: var(--gw-grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(236, 72, 153, 0.45); }
.gw-btn--grad:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(236, 72, 153, 0.6); }
.gw-btn--ghost { background: var(--gw-card); color: #fff; border-color: rgba(255, 255, 255, 0.20); }
.gw-btn--ghost:hover { background: var(--gw-card-2); }
.gw-btn--sm { padding: 11px 22px; font-size: 14px; }

/* Live badge -------------------------------------------------------------- */
.gw-live {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px; border-radius: 999px;
	background: var(--gw-card); border: 1px solid var(--gw-line);
}
.gw-live__txt { color: #f87171; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.gw-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.gw-dot span { position: absolute; inset: 0; border-radius: 999px; background: var(--gw-red); }
.gw-dot span:first-child { animation: gw-ping 1.5s cubic-bezier(0,0,0.2,1) infinite; }

/* Section heading --------------------------------------------------------- */
.gw-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.gw-head h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.gw-head p { color: var(--gw-muted); font-size: 18px; }

/* ==========================================================================
   Header
   ========================================================================== */
.gw-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s ease; background: transparent; }
.gw-header.is-scrolled { background: rgba(10, 10, 26, 0.95); backdrop-filter: blur(10px); box-shadow: 0 10px 30px -15px rgba(0,0,0,0.6); }
.gw-header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.gw-logo { display: inline-flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.gw-logo svg { width: 24px; height: 24px; color: var(--gw-pink); }
.gw-logo .gw-accent { color: var(--gw-yellow); }
.gw-nav { display: flex; align-items: center; gap: 4px; }
.gw-nav a { padding: 8px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--gw-muted); transition: all 0.2s ease; }
.gw-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.gw-nav a.is-active { color: var(--gw-yellow); background: rgba(255,255,255,0.10); }
.gw-header__cta { display: inline-flex; }
.gw-burger { display: none; background: none; border: 0; color: #fff; padding: 8px; border-radius: 10px; }
.gw-burger svg { width: 26px; height: 26px; }
.gw-mobile { display: none; }
.gw-mobile.is-open { display: block; background: rgba(10,10,26,0.98); backdrop-filter: blur(12px); border-top: 1px solid var(--gw-line); }
.gw-mobile nav { display: flex; flex-direction: column; gap: 4px; padding: 16px; }
.gw-mobile a { padding: 12px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--gw-muted); }
.gw-mobile a.is-active { color: var(--gw-yellow); background: rgba(255,255,255,0.10); }

/* ==========================================================================
   Hero
   ========================================================================== */
.gw-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.gw-hero__bg { position: absolute; inset: 0; background:
	radial-gradient(ellipse at center, rgba(120,50,180,0.15) 0%, transparent 70%),
	linear-gradient(to bottom, rgba(88,28,135,0.30), rgba(10,10,26,0.80) 50%, var(--gw-bg)); }
.gw-hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.gw-hero__particles span { position: absolute; width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.20); animation: gw-float 5s ease-in-out infinite; }
.gw-hero__inner { position: relative; z-index: 10; max-width: 900px; padding: 120px 24px 80px; }
.gw-hero h1 { font-size: clamp(48px, 9vw, 110px); margin: 28px 0 24px; }
.gw-hero__sub { color: var(--gw-muted); font-size: clamp(18px, 2.4vw, 22px); max-width: 620px; margin: 0 auto 40px; }
.gw-hero__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.gw-grad-text { background: var(--gw-grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Now-playing card (hero + reusable) */
.gw-now { max-width: 420px; margin: 64px auto 0; text-align: left; background: var(--gw-card); backdrop-filter: blur(20px); border: 1px solid var(--gw-line); border-radius: var(--gw-radius); padding: 24px; }
.gw-now__label { color: var(--gw-muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.gw-now h3 { font-size: 19px; margin-bottom: 4px; }
.gw-now__host { color: var(--gw-muted); font-size: 14px; }
.gw-now__next { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--gw-line); }
.gw-now__next svg { width: 20px; height: 20px; color: var(--gw-pink); }

/* ==========================================================================
   Stats
   ========================================================================== */
.gw-stats { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.gw-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.gw-stat { text-align: center; }
.gw-stat__num { font-size: clamp(30px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.gw-stat__label { color: var(--gw-muted-2); font-size: 14px; }

/* ==========================================================================
   Card grids (shows / news / blog / hosts)
   ========================================================================== */
.gw-grid { display: grid; gap: 24px; }
.gw-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gw-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gw-grid--2 { grid-template-columns: repeat(2, 1fr); }

.gw-card { position: relative; overflow: hidden; border-radius: var(--gw-radius); background: var(--gw-card); border: 1px solid var(--gw-line); transition: all 0.3s ease; display: flex; flex-direction: column; }
.gw-card:hover { transform: translateY(-4px); border-color: rgba(236,72,153,0.30); box-shadow: 0 22px 50px -25px rgba(236,72,153,0.35); }
.gw-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, rgba(88,28,135,0.5), var(--gw-bg-2)); display: flex; align-items: center; justify-content: center; }
.gw-card__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gw-card__media svg { width: 48px; height: 48px; color: rgba(255,255,255,0.10); }
.gw-card__tag { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.gw-card__tag--live { background: rgba(239,68,68,0.9); color: #fff; }
.gw-card__tag--cat { background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); color: #fff; border: 1px solid var(--gw-line); }
.gw-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.gw-card__date { color: var(--gw-faint); font-size: 12px; margin-bottom: 8px; }
.gw-card__body h3 { font-size: 18px; margin-bottom: 6px; transition: color 0.2s ease; }
.gw-card:hover .gw-card__body h3 { color: #f472b6; }
.gw-card__host { color: var(--gw-muted-2); font-size: 14px; margin-bottom: 12px; }
.gw-card__excerpt { color: var(--gw-muted); font-size: 14px; margin-bottom: 14px; flex: 1; }
.gw-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.gw-card__meta { color: var(--gw-faint); font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.gw-card__meta svg { width: 14px; height: 14px; }
.gw-readmore { color: var(--gw-yellow); font-size: 13px; font-weight: 600; }

.gw-more { text-align: center; margin-top: 40px; }

/* ==========================================================================
   Hosts
   ========================================================================== */
.gw-host { text-align: center; background: var(--gw-card); border: 1px solid var(--gw-line); border-radius: var(--gw-radius); padding: 28px 22px; transition: all 0.3s ease; }
.gw-host:hover { transform: translateY(-4px); border-color: rgba(236,72,153,0.30); }
.gw-host__avatar { width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 999px; overflow: hidden; background: var(--gw-grad); display: flex; align-items: center; justify-content: center; }
.gw-host__avatar img { width: 100%; height: 100%; object-fit: cover; }
.gw-host__avatar svg { width: 40px; height: 40px; color: #fff; }
.gw-host h3 { font-size: 18px; margin-bottom: 4px; }
.gw-host__role { color: var(--gw-yellow); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.gw-host__bio { color: var(--gw-muted); font-size: 14px; }

/* ==========================================================================
   Mission (two column)
   ========================================================================== */
.gw-mission { position: relative; overflow: hidden; }
.gw-mission__bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(88,28,135,0.20), rgba(131,24,67,0.20)); }
.gw-mission__grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gw-mission h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 24px; }
.gw-mission__eyebrow { color: var(--gw-yellow); font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; margin-bottom: 24px; }
.gw-mission p { color: var(--gw-muted); font-size: 18px; margin-bottom: 24px; }
.gw-mission__art { position: relative; }
.gw-mission__art-inner { aspect-ratio: 4 / 3; border-radius: var(--gw-radius); overflow: hidden; background: linear-gradient(135deg, rgba(88,28,135,0.4), rgba(131,24,67,0.4)); border: 1px solid var(--gw-line); display: flex; align-items: center; justify-content: center; }
.gw-mission__art-inner img { width: 100%; height: 100%; object-fit: cover; }
.gw-mission__art-inner svg { width: 96px; height: 96px; color: rgba(255,255,255,0.10); }
.gw-mission__art::after { content: ""; position: absolute; bottom: -24px; right: -24px; width: 128px; height: 128px; border-radius: 999px; background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(168,85,247,0.2)); filter: blur(40px); }
.gw-mission__art::before { content: ""; position: absolute; top: -24px; left: -24px; width: 96px; height: 96px; border-radius: 999px; background: linear-gradient(135deg, rgba(253,224,71,0.2), rgba(249,115,22,0.2)); filter: blur(40px); }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.gw-pagehead { position: relative; padding: 180px 0 80px; text-align: center; overflow: hidden; }
.gw-pagehead__bg { position: absolute; inset: 0; background:
	radial-gradient(ellipse at top, rgba(120,50,180,0.18) 0%, transparent 60%),
	linear-gradient(to bottom, rgba(88,28,135,0.25), var(--gw-bg)); }
.gw-pagehead__inner { position: relative; z-index: 10; max-width: 760px; margin: 0 auto; }
.gw-pagehead h1 { font-size: clamp(40px, 6vw, 72px); margin: 16px 0; }
.gw-pagehead p { color: var(--gw-muted); font-size: 19px; }

/* ==========================================================================
   Spotlight
   ========================================================================== */
.gw-spot__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; background: var(--gw-card); border: 1px solid var(--gw-line); border-radius: var(--gw-radius); padding: 40px; }
.gw-spot__art { aspect-ratio: 1; border-radius: var(--gw-radius); overflow: hidden; background: var(--gw-grad); display: flex; align-items: center; justify-content: center; }
.gw-spot__art img { width: 100%; height: 100%; object-fit: cover; }
.gw-spot__art svg { width: 72px; height: 72px; color: #fff; }
.gw-spot__tag { color: var(--gw-yellow); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.gw-spot h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; }
.gw-spot p { color: var(--gw-muted); font-size: 17px; margin-bottom: 24px; }

/* ==========================================================================
   Donate tiers
   ========================================================================== */
.gw-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.gw-tier { position: relative; background: var(--gw-card); border: 1px solid var(--gw-line); border-radius: var(--gw-radius); padding: 28px 24px; display: flex; flex-direction: column; transition: all 0.3s ease; }
.gw-tier:hover { transform: translateY(-4px); border-color: rgba(236,72,153,0.30); }
.gw-tier.is-featured { border-color: rgba(236,72,153,0.5); background: linear-gradient(180deg, rgba(236,72,153,0.10), var(--gw-card)); }
.gw-tier__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gw-grad); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 14px; border-radius: 999px; }
.gw-tier__name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.gw-tier__price { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.gw-tier__price span { font-size: 14px; font-weight: 500; color: var(--gw-muted-2); }
.gw-tier__desc { color: var(--gw-muted); font-size: 14px; margin-bottom: 20px; }
.gw-tier__benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.gw-tier__benefits li { display: flex; align-items: flex-start; gap: 8px; color: var(--gw-muted); font-size: 14px; }
.gw-tier__benefits svg { width: 16px; height: 16px; color: var(--gw-yellow); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.gw-contact__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.gw-contact__info { display: flex; flex-direction: column; gap: 20px; }
.gw-contact__row { display: flex; align-items: flex-start; gap: 14px; color: var(--gw-muted); font-size: 15px; }
.gw-contact__row svg { width: 20px; height: 20px; color: var(--gw-pink); flex-shrink: 0; margin-top: 2px; }
.gw-contact__row strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.gw-form { background: var(--gw-card); border: 1px solid var(--gw-line); border-radius: var(--gw-radius); padding: 32px; }
.gw-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gw-field { margin-bottom: 16px; }
.gw-field label { display: block; font-size: 13px; font-weight: 600; color: var(--gw-muted); margin-bottom: 6px; }
.gw-field input, .gw-field textarea { width: 100%; background: rgba(0,0,0,0.25); border: 1px solid var(--gw-line); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: inherit; font-size: 15px; }
.gw-field input:focus, .gw-field textarea:focus { outline: none; border-color: var(--gw-pink); }
.gw-field textarea { min-height: 130px; resize: vertical; }

/* ==========================================================================
   CTA
   ========================================================================== */
.gw-cta { text-align: center; }
.gw-cta__inner { max-width: 760px; margin: 0 auto; }
.gw-cta h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 24px; }
.gw-cta p { color: var(--gw-muted); font-size: 18px; margin-bottom: 40px; }
.gw-cta__btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.gw-footer { background: var(--gw-bg); border-top: 1px solid var(--gw-line); }
.gw-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0; }
.gw-footer__brand .gw-logo { margin-bottom: 16px; }
.gw-footer__about { color: var(--gw-muted-2); font-size: 14px; margin-bottom: 24px; }
.gw-footer__social { display: flex; gap: 12px; }
.gw-footer__social a { display: inline-flex; padding: 10px; border-radius: 10px; background: var(--gw-card); color: var(--gw-muted-2); transition: all 0.2s ease; }
.gw-footer__social a:hover { color: #f472b6; background: var(--gw-card-2); }
.gw-footer__social svg { width: 18px; height: 18px; }
.gw-footer__col h3 { font-size: 16px; margin-bottom: 16px; }
.gw-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.gw-footer__col a, .gw-footer__col li { color: var(--gw-muted-2); font-size: 14px; transition: color 0.2s ease; }
.gw-footer__col a:hover { color: var(--gw-yellow); }
.gw-footer__contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.gw-footer__contact svg { width: 16px; height: 16px; color: var(--gw-pink); flex-shrink: 0; margin-top: 3px; }
.gw-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 0; border-top: 1px solid var(--gw-line); }
.gw-footer__bottom p { color: var(--gw-faint); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.gw-footer__bottom svg { width: 14px; height: 14px; color: var(--gw-pink); }

/* ==========================================================================
   Floating radio player (rendered site-wide from dashboard settings)
   ========================================================================== */
.gwr-player { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 360px; max-width: calc(100vw - 32px); font-family: var(--gw-font, sans-serif); }
.gwr-player__card { background: rgba(26, 26, 46, 0.96); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; box-shadow: 0 25px 60px -20px rgba(0,0,0,0.7); overflow: hidden; }
.gwr-player__top { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.gwr-player__live { display: inline-flex; align-items: center; gap: 8px; }
.gwr-player__live .gwr-txt { color: #f87171; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.gwr-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.gwr-dot span { position: absolute; inset: 0; border-radius: 999px; background: #ef4444; }
.gwr-dot span:first-child { animation: gw-ping 1.5s cubic-bezier(0,0,0.2,1) infinite; }
.gwr-player__tools { display: flex; gap: 4px; }
.gwr-iconbtn { display: inline-flex; padding: 6px; border-radius: 8px; background: none; border: 0; color: rgba(255,255,255,0.45); transition: all 0.2s ease; }
.gwr-iconbtn:hover { color: #fff; background: rgba(255,255,255,0.10); }
.gwr-iconbtn svg { width: 16px; height: 16px; }
.gwr-player__song { display: flex; align-items: center; gap: 16px; padding: 16px; }
.gwr-player__art { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, #ec4899, #9333ea); display: flex; align-items: center; justify-content: center; }
.gwr-player__art img { width: 100%; height: 100%; object-fit: cover; }
.gwr-player__art svg { width: 28px; height: 28px; color: #fff; }
.gwr-player__meta { min-width: 0; flex: 1; }
.gwr-player__title { color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gwr-player__artist { color: rgba(255,255,255,0.6); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gwr-player__listeners { display: inline-flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 4px; }
.gwr-player__listeners svg { width: 12px; height: 12px; }
.gwr-player__controls { padding: 0 16px 16px; }
.gwr-player__bar { width: 100%; height: 4px; background: rgba(255,255,255,0.10); border-radius: 999px; margin-bottom: 16px; overflow: hidden; }
.gwr-player__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, #ec4899, #f97316); border-radius: 999px; transition: width 0.4s linear; }
.gwr-player.is-playing .gwr-player__bar span { width: 100%; transition: width 6s linear; }
.gwr-player__row { display: flex; align-items: center; justify-content: space-between; }
.gwr-player__left { display: flex; align-items: center; gap: 10px; }
.gwr-play { width: 44px; height: 44px; border-radius: 999px; border: 0; background: linear-gradient(90deg, var(--gwr-c1, #ec4899), var(--gwr-c2, #f97316)); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -8px rgba(236,72,153,0.5); transition: transform 0.2s ease; }
.gwr-play:hover { transform: scale(1.06); }
.gwr-play svg { width: 22px; height: 22px; }
.gwr-play .gwr-pause-ic { display: none; }
.gwr-player.is-playing .gwr-play .gwr-play-ic { display: none; }
.gwr-player.is-playing .gwr-play .gwr-pause-ic { display: inline-flex; }
.gwr-ctrlbtn { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.gwr-ctrlbtn:hover { color: #fff; background: rgba(255,255,255,0.12); }
.gwr-ctrlbtn svg { width: 18px; height: 18px; }
.gwr-player__vol { width: 96px; accent-color: #ec4899; }
.gwr-player__loading { display: none; font-size: 11px; color: rgba(255,255,255,0.5); }
.gwr-player.is-loading .gwr-player__loading { display: inline; }

/* Collapsed pill */
.gwr-pill { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: none; }
.gwr-pill button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gwr-c1, #ec4899), var(--gwr-c2, #f97316)); color: #fff; font-weight: 600; font-size: 14px; box-shadow: 0 18px 40px -12px rgba(236,72,153,0.55); }
.gwr-pill button svg { width: 20px; height: 20px; }
.gwr-player.is-collapsed { display: none; }
.gwr-player.is-collapsed + .gwr-pill { display: block; }

/* ==========================================================================
   Eyebrows + dark gradient sections (Watch Now / Live Stats / Partners)
   ========================================================================== */
.gw-night { background: linear-gradient(180deg, #0d0a1a 0%, #14101f 50%, #0d0a1a 100%); }
.gw-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gw-yellow); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.gw-eyebrow--pink { color: var(--gw-pink); letter-spacing: 0.18em; }
.gw-eyebrow--live { color: var(--gw-yellow); }
.gw-empty { text-align: center; color: var(--gw-muted-2); font-size: 15px; padding: 24px 0; }

/* ==========================================================================
   Watch Now (featured video + grid)
   ========================================================================== */
.gw-watch__head { margin-bottom: 40px; }
.gw-watch__title { font-size: clamp(40px, 7vw, 72px); margin-top: 8px; letter-spacing: -0.03em; }

.gw-video { position: relative; border-radius: var(--gw-radius); overflow: hidden; margin-bottom: 40px; }
.gw-video__media { position: relative; aspect-ratio: 16 / 9; background: var(--gw-bg-2); cursor: pointer; }
.gw-video__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.7s ease; }
.gw-video:hover .gw-video__media img { transform: scale(1.02); }
.gw-video__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 50%, transparent); }
.gw-video__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; pointer-events: none; padding: 0 16px; }
.gw-video__os { color: rgba(255,255,255,0.8); font-size: clamp(13px, 1.6vw, 20px); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-style: italic; margin-bottom: 6px; }
.gw-video__ot { color: #fff; font-size: clamp(28px, 5vw, 60px); font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase; line-height: 1; }
.gw-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 84px; height: 84px; border: 0; border-radius: 999px; background: var(--gw-pink); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6); transition: transform 0.2s ease; z-index: 2; }
.gw-video__play:hover { transform: translate(-50%, -50%) scale(1.1); }
.gw-video__play svg { width: 34px; height: 34px; margin-left: 4px; }
.gw-video__bar { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 24px; }
.gw-video__bar h3 { font-size: clamp(15px, 2vw, 19px); font-weight: 600; }
.gw-video__meta { display: flex; gap: 14px; margin-top: 6px; }
.gw-video__meta span { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.6); font-size: 13px; }
.gw-video__meta svg { width: 14px; height: 14px; }
.gw-video__yt { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); border-radius: 10px; padding: 8px 12px; color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.gw-video__yt svg { width: 18px; height: 18px; color: var(--gw-red); }

.gw-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gw-video-card { background: var(--gw-card); border: 1px solid var(--gw-line); border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.3s ease; }
.gw-video-card:hover { transform: translateY(-4px); border-color: rgba(236,72,153,0.30); }
.gw-video-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--gw-bg-2); display: flex; align-items: center; justify-content: center; }
.gw-video-card__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s ease; }
.gw-video-card:hover .gw-video-card__media img { transform: scale(1.05); }
.gw-video-card__media > svg { width: 36px; height: 36px; color: rgba(255,255,255,0.12); }
.gw-video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border: 0; border-radius: 999px; background: var(--gw-pink); color: #fff; display: inline-flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s ease; }
.gw-video-card__play svg { width: 16px; height: 16px; margin-left: 2px; }
.gw-video-card:hover .gw-video-card__play { opacity: 1; }
.gw-video-card__dur { position: absolute; right: 8px; bottom: 8px; background: rgba(0,0,0,0.7); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 5px; }
.gw-video-card__body { padding: 12px; }
.gw-video-card__body h4 { font-size: 14px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s ease; }
.gw-video-card:hover .gw-video-card__body h4 { color: #f472b6; }
.gw-video-card__meta { display: flex; align-items: center; gap: 6px; margin-top: 6px; color: var(--gw-faint); font-size: 12px; }
.gw-video-card__meta svg { width: 13px; height: 13px; color: var(--gw-red); }
.gw-video__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Live listening stats
   ========================================================================== */
.gw-lstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gw-lstat { text-align: center; background: var(--gw-card); border: 1px solid var(--gw-line); border-radius: var(--gw-radius); padding: 28px 20px; }
.gw-lstat__ic { display: inline-flex; margin-bottom: 12px; }
.gw-lstat__ic svg { width: 26px; height: 26px; }
.gw-lstat__ic--pink { color: var(--gw-pink); }
.gw-lstat__ic--yellow { color: var(--gw-yellow); }
.gw-lstat__num { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: #fff; }
.gw-lstat__label { color: var(--gw-muted-2); font-size: 14px; margin-top: 4px; }

/* ==========================================================================
   Partners marquee
   ========================================================================== */
.gw-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.gw-marquee + .gw-marquee { margin-top: 16px; }
.gw-marquee__track { display: flex; gap: 16px; width: max-content; will-change: transform; }
.gw-marquee--l .gw-marquee__track { animation: gw-marquee-l 38s linear infinite; }
.gw-marquee--r .gw-marquee__track { animation: gw-marquee-r 38s linear infinite; }
.gw-marquee:hover .gw-marquee__track { animation-play-state: paused; }
.gw-partner { display: inline-flex; align-items: center; justify-content: center; min-width: 220px; padding: 20px 32px; border-radius: 12px; background: var(--gw-card); border: 1px solid var(--gw-line); color: var(--gw-muted-2); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; white-space: nowrap; transition: border-color 0.2s ease; }
.gw-partner:hover { border-color: rgba(236,72,153,0.30); }
@keyframes gw-marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gw-marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes gw-ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes gw-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes gw-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.gw-pulse { animation: gw-pulse 2s ease-in-out infinite; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.gw-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.gw-tiers { grid-template-columns: repeat(2, 1fr); }
	.gw-lstats { grid-template-columns: repeat(2, 1fr); }
	.gw-mission__grid, .gw-spot__grid, .gw-contact__grid { grid-template-columns: 1fr; gap: 36px; }
	.gw-footer__grid { grid-template-columns: 1fr 1fr; }
	.gw-nav, .gw-header__cta { display: none; }
	.gw-burger { display: inline-flex; }
}

@media (max-width: 767px) {
	.gw-section { padding: 56px 0; }
	.gw-section--lg { padding: 72px 0; }
	.gw-container { padding: 0 18px; }
	.gw-grid--4, .gw-grid--3, .gw-grid--2, .gw-stats__grid, .gw-tiers { grid-template-columns: 1fr; }
	.gw-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.gw-video-grid { grid-template-columns: repeat(2, 1fr); }
	.gw-lstats { grid-template-columns: repeat(2, 1fr); }
	.gw-video__bar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
	.gw-video__play { width: 64px; height: 64px; }
	.gw-video__play svg { width: 26px; height: 26px; }
	.gw-form__row { grid-template-columns: 1fr; }
	.gw-footer__grid { grid-template-columns: 1fr; }
	.gw-pagehead { padding: 140px 0 56px; }
	.gw-hero h1 { font-size: clamp(40px, 13vw, 64px); }
	.gwr-player { width: calc(100vw - 32px); }
}

@media (prefers-reduced-motion: reduce) {
	.gw-marquee--l .gw-marquee__track,
	.gw-marquee--r .gw-marquee__track { animation: none; }
}
