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

:root {
	--bg:           #050404;
	--surface:      rgba(255,255,255,0.04);
	--surface-h:    rgba(255,255,255,0.07);
	--border:       rgba(255,255,255,0.08);
	--border-h:     rgba(255,255,255,0.15);
	--red:          #C1341A;
	--red-h:        #D94020;
	--cream:        #F2EAD8;
	--cream-dim:    rgba(242,234,216,0.75);
	--cream-faint:  rgba(242,234,216,0.4);
	--sans:         'Inter', system-ui, sans-serif;
	--display:      'Plus Jakarta Sans', sans-serif;
	--ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── EXPERIENCE SHELL ── */
.sdgd-experience {
	position: fixed;
	inset: 0;
	overflow: hidden;
	background: var(--bg);
	font-family: var(--sans);
	color: var(--cream);
	-webkit-font-smoothing: antialiased;
	user-select: none;
}

.sdgd-ink-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.55;
	mix-blend-mode: luminosity;
}

.sdgd-ink-fallback {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(ellipse 120% 80% at 60% 40%, #120804 0%, var(--bg) 65%);
}

.sdgd-ink-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(160deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
	pointer-events: none;
}

/* ── TOPBAR ── */
.sdgd-topbar {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 50;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2.5rem;
	background: rgba(5,4,4,0.7);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.sdgd-logo {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--cream);
}
.sdgd-logo img { height: 28px; width: auto; }

.sdgd-dz-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 6px 16px;
	cursor: pointer;
	transition: all 0.2s;
}
.sdgd-dz-trigger:hover { background: var(--surface-h); border-color: var(--border-h); }
.sdgd-dz-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--red);
}
.sdgd-dz-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cream-dim);
	font-family: var(--sans);
}

.sdgd-topbar-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.sdgd-user-name { font-size: 13px; color: var(--cream-faint); }
.sdgd-logout {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream-faint);
	text-decoration: none;
	transition: color 0.2s;
	font-family: var(--sans);
}
.sdgd-logout:hover { color: var(--cream-dim); }

/* ── DRIVE ZONE PANEL ── */
.sdgd-drive-zone {
	position: absolute;
	top: 100px; left: 0; right: 0;
	z-index: 100;
	display: none;
	background: rgba(6,5,4,0.97);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	overflow-y: auto;
	max-height: calc(100vh - 100px);
}
.sdgd-drive-zone.sdgd-dz-open { display: block; }

.sdgd-dz-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 2.5rem 2.5rem;
	position: relative;
}

.sdgd-dz-close {
	position: absolute;
	top: 1.75rem; right: 2rem;
	background: none;
	border: none;
	color: var(--cream-faint);
	font-size: 18px;
	cursor: pointer;
	transition: color 0.2s;
	line-height: 1;
}
.sdgd-dz-close:hover { color: var(--cream); }

.sdgd-dz-heading {
	font-family: var(--display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--cream);
	margin-bottom: 1.5rem;
}

.sdgd-dz-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 1.75rem;
}
.sdgd-dz-tab {
	padding: 6px 16px;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream-faint);
	background: none;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}
.sdgd-dz-tab:hover { color: var(--cream-dim); }
.sdgd-dz-tab.active { color: var(--cream); background: var(--surface); border-color: var(--border); }

/* Mixer presets */
.sdgd-mixer-presets {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 1.5rem;
}
.sdgd-preset-btn {
	padding: 5px 14px;
	border-radius: 16px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--cream-dim);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.2s;
}
.sdgd-preset-btn:hover { border-color: var(--border-h); color: var(--cream); }
.sdgd-preset-btn.active { background: var(--red); border-color: var(--red); color: white; }

/* Mixer tracks */
.sdgd-mixer-tracks {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-bottom: 1.5rem;
}
.sdgd-track {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 12px;
	text-align: center;
	transition: border-color 0.2s;
}
.sdgd-track:hover { border-color: var(--border-h); }
.sdgd-track-header { margin-bottom: 12px; }
.sdgd-track-icon { font-size: 16px; display: block; margin-bottom: 4px; }
.sdgd-track-label { font-size: 11px; font-weight: 500; color: var(--cream-dim); letter-spacing: 0.06em; }
.sdgd-track-vol-display { font-size: 10px; color: var(--cream-faint); margin-top: 6px; }

.sdgd-track-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 2px;
	background: rgba(255,255,255,0.1);
	border-radius: 1px;
	outline: none;
	cursor: pointer;
}
.sdgd-track-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--cream);
	cursor: pointer;
	transition: transform 0.15s;
}
.sdgd-track-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }

.sdgd-mixer-save {
	display: flex;
	gap: 8px;
	align-items: center;
}
.sdgd-preset-name-input {
	flex: 1;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 8px 12px;
	color: var(--cream);
	font-family: var(--sans);
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s;
}
.sdgd-preset-name-input:focus { border-color: rgba(193,52,26,0.5); }
.sdgd-preset-name-input::placeholder { color: var(--cream-faint); }

/* Planner */
.sdgd-planner-desc { font-size: 13px; color: var(--cream-dim); margin-bottom: 1.25rem; font-weight: 300; }
.sdgd-planner-days { display: flex; flex-direction: column; gap: 8px; }
.sdgd-planner-day {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 12px 14px;
}
.sdgd-planner-day-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sdgd-day-label { font-size: 12px; font-weight: 500; color: var(--cream-dim); letter-spacing: 0.06em; }
.sdgd-add-slot { background: none; border: none; color: var(--red); font-size: 12px; cursor: pointer; font-family: var(--sans); }
.sdgd-slots { display: flex; flex-direction: column; gap: 6px; }
.sdgd-slot { display: flex; align-items: center; gap: 8px; }
.sdgd-time-start, .sdgd-time-end {
	background: rgba(255,255,255,0.05);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 4px 8px;
	color: var(--cream);
	font-family: var(--sans);
	font-size: 12px;
	outline: none;
	width: 90px;
}
.sdgd-remove-slot { background: none; border: none; color: var(--cream-faint); cursor: pointer; font-size: 12px; }
.sdgd-save-msg { font-size: 12px; color: var(--red); margin-left: 10px; }

/* ── WEEK NAVIGATION PILLS ── */
.sdgd-week-nav {
	position: absolute;
	top: 56px; left: 0; right: 0;
	z-index: 40;
	height: 44px;
	display: flex;
	align-items: center;
	padding: 0 2.5rem;
	gap: 5px;
	background: rgba(5,4,4,0.5);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.sdgd-week-dot {
	height: 3px;
	width: 22px;
	border-radius: 2px;
	background: rgba(255,255,255,0.08);
	cursor: pointer;
	transition: all 0.25s;
	flex-shrink: 0;
}
.sdgd-week-dot.sdgd-dot-unlocked { background: rgba(255,255,255,0.18); }
.sdgd-week-dot.sdgd-dot-current { background: var(--red); width: 36px; }
.sdgd-week-dot:hover { background: rgba(255,255,255,0.35); }

.sdgd-week-indicator {
	margin-left: auto;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cream-faint);
	font-family: var(--sans);
	white-space: nowrap;
}

/* ── SLIDER TRACK ── */
.sdgd-slider-track {
	position: absolute;
	top: 100px; left: 0; right: 0; bottom: 0;
	z-index: 10;
	display: flex;
	transition: transform 0.6s var(--ease-out);
	will-change: transform;
}

.sdgd-week-slide {
	flex: 0 0 100vw;
	width: 100vw;
	height: 100%;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.sdgd-slide-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Locked */
.sdgd-locked-slide {
	text-align: center;
	opacity: 0.4;
}
.sdgd-lock-icon { font-size: 2rem; margin-bottom: 1rem; }
.sdgd-lock-week {
	font-family: var(--display);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 6px;
}
.sdgd-lock-days { font-size: 13px; color: var(--cream-dim); margin-bottom: 4px; }
.sdgd-lock-date { font-size: 11px; color: var(--red); letter-spacing: 0.08em; }

/* Unlocked slide */
.sdgd-slide-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 0;
}

.sdgd-slide-header {
	padding: 2rem clamp(2rem, 8vw, 5rem) 1rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.sdgd-slide-eyebrow {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--red);
	font-family: var(--sans);
	font-weight: 500;
}

.sdgd-slide-progress {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,0.06);
	border-radius: 1px;
	overflow: hidden;
}
.sdgd-slide-progress-bar {
	height: 100%;
	background: var(--red);
	border-radius: 1px;
	transition: width 0.6s ease;
}

/* Lessons scroll */
.sdgd-lessons-scroll {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0 clamp(2rem, 8vw, 5rem) 5rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(193,52,26,0.4) transparent;
}
.sdgd-lessons-scroll::-webkit-scrollbar { width: 2px; }
.sdgd-lessons-scroll::-webkit-scrollbar-track { background: transparent; }
.sdgd-lessons-scroll::-webkit-scrollbar-thumb { background: rgba(193,52,26,0.4); border-radius: 1px; }

.sdgd-lesson-section {
	max-width: 680px;
	margin-bottom: 3.5rem;
	padding-bottom: 3.5rem;
	border-bottom: 1px solid var(--border);
	transition: opacity 0.3s;
}
.sdgd-lesson-section:last-child { border-bottom: none; }
.sdgd-lesson-section.sdgd-lesson-done { opacity: 0.55; }

.sdgd-lesson-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.sdgd-lesson-title {
	font-family: var(--display);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: var(--cream);
}

.sdgd-check-btn {
	width: 30px; height: 30px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--cream-faint);
	font-size: 12px;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
}
.sdgd-check-btn:hover { border-color: var(--red); color: var(--red); }
.sdgd-check-btn.sdgd-checked { background: var(--red); border-color: var(--red); color: white; }

.sdgd-quote {
	font-family: var(--display);
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 500;
	color: var(--red);
	border-left: 2px solid var(--red);
	padding-left: 1.25rem;
	margin: 0 0 1.5rem;
	line-height: 1.5;
	opacity: 0.9;
}

.sdgd-sam-text {
	font-size: 15px;
	line-height: 1.85;
	color: rgba(242,234,216,0.85);
	margin-bottom: 1.75rem;
	font-weight: 300;
}

.sdgd-lesson-body {
	font-size: 14px;
	line-height: 1.85;
	color: rgba(242,234,216,0.7);
	margin-bottom: 1.75rem;
	font-weight: 300;
}

.sdgd-block-label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cream-faint);
	font-weight: 500;
	margin-bottom: 10px;
	font-family: var(--sans);
}

/* Audio */
.sdgd-audio-block { margin-bottom: 1.5rem; }
.sdgd-audio-player {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 20px;
	transition: border-color 0.2s;
}
.sdgd-audio-player:hover { border-color: var(--border-h); }

.sdgd-play-btn {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--red);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.1s;
}
.sdgd-play-btn:hover { background: var(--red-h); }
.sdgd-play-btn:active { transform: scale(0.93); }
.sdgd-play-icon { color: white; font-size: 14px; margin-left: 2px; }

.sdgd-audio-body { flex: 1; min-width: 0; }
.sdgd-audio-name { font-size: 12px; font-weight: 500; color: var(--cream); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sdgd-timeline { display: flex; flex-direction: column; gap: 5px; }
.sdgd-timeline-bg {
	position: relative;
	height: 2px;
	background: rgba(255,255,255,0.08);
	border-radius: 1px;
	cursor: pointer;
}
.sdgd-timeline-fill { height: 100%; background: var(--red); border-radius: 1px; width: 0%; transition: width 0.1s linear; }
.sdgd-timeline-handle {
	position: absolute;
	top: 50%; left: 0%;
	transform: translate(-50%, -50%);
	width: 10px; height: 10px;
	border-radius: 50%;
	background: white;
}
.sdgd-audio-times { display: flex; justify-content: space-between; font-size: 10px; color: var(--cream-faint); }

/* Video */
.sdgd-video-block { margin-bottom: 1.5rem; }
.sdgd-video-wrap {
	position: relative;
	padding-top: 56.25%;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(0,0,0,0.5);
}
.sdgd-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* PDF */
.sdgd-pdf-block { margin-bottom: 1.5rem; }
.sdgd-pdf-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 13px 18px;
	border: none;
	border-radius: 10px;
	background: var(--red);
	color: white;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: background .2s;
}
.sdgd-pdf-btn:hover { background: var(--red-h); color: white; }
.sdgd-pdf-arrow { margin-left: auto; opacity: 0.7; }

/* Sessions */
.sdgd-sessions-block { margin-top: 2.5rem; }
.sdgd-session-card {
	background: rgba(193,52,26,0.06);
	border: 1px solid rgba(193,52,26,0.2);
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
}
.sdgd-session-info { margin-bottom: 1rem; }
.sdgd-session-title { display: block; font-family: var(--display); font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.sdgd-session-date { font-size: 11px; color: var(--red); letter-spacing: 0.08em; font-weight: 500; }
.sdgd-session-desc { font-size: 13px; color: var(--cream-dim); margin-top: 8px; line-height: 1.6; font-weight: 300; }
.sdgd-session-past { font-size: 11px; color: var(--cream-faint); letter-spacing: 0.08em; }
.sdgd-question-hint { font-size: 13px; color: var(--cream-dim); margin-bottom: 10px; font-weight: 300; }
.sdgd-question-input {
	width: 100%;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 10px 14px;
	color: var(--cream);
	font-family: var(--sans);
	font-size: 13px;
	resize: vertical;
	min-height: 80px;
	outline: none;
	margin-bottom: 10px;
	transition: border-color 0.2s;
}
.sdgd-question-input:focus { border-color: rgba(193,52,26,0.4); }

/* Empty week */
.sdgd-empty-week { padding: 3rem 0; }
.sdgd-empty-week p { font-size: 14px; color: var(--cream-faint); font-weight: 300; }

/* Complete button */
.sdgd-check-btn.sdgd-checked { background: var(--red); border-color: var(--red); color: white; }

/* ── NAV ARROWS ── */
.sdgd-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: rgba(5,4,4,0.5);
	color: var(--cream-dim);
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.sdgd-nav-arrow:hover { border-color: var(--border-h); color: var(--cream); background: rgba(255,255,255,0.05); }
.sdgd-nav-prev { left: 1rem; }
.sdgd-nav-next { right: 1rem; }

/* ── BUTTONS ── */
.sdgd-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	border-radius: 7px;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: all 0.2s;
}
.sdgd-btn-primary { background: var(--red); color: white; }
.sdgd-btn-primary:hover { background: var(--red-h); color: white; }
.sdgd-btn-sm { padding: 6px 12px; font-size: 10px; }

/* ── LOGIN ── */
.sdgd-login-scene {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: var(--bg);
}

.sdgd-login-card {
	width: 100%;
	max-width: 380px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2.5rem;
}

.sdgd-logo-text {
	font-family: var(--display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--red);
	display: block;
	text-align: center;
	margin-bottom: 2rem;
}

.sdgd-login-step h2 {
	font-family: var(--display);
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 8px;
	color: var(--cream);
}
.sdgd-login-sub {
	font-size: 13px;
	color: var(--cream-dim);
	margin-bottom: 1.75rem;
	line-height: 1.6;
	font-weight: 300;
}

.sdgd-field { margin-bottom: 1rem; }
.sdgd-field label {
	display: block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--cream-faint);
	margin-bottom: 8px;
	font-family: var(--sans);
}
.sdgd-field input {
	width: 100%;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 12px 14px;
	color: var(--cream);
	font-family: var(--sans);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.sdgd-field input:focus { border-color: rgba(193,52,26,0.5); }
.sdgd-field input::placeholder { color: var(--cream-faint); }
.sdgd-code-input { font-size: 20px; letter-spacing: 0.4em; text-align: center; }

.sdgd-btn-full {
	width: 100%;
	justify-content: center;
	padding: 13px 20px;
	font-size: 12px;
	background: var(--red);
	color: white;
	border: none;
	border-radius: 8px;
	font-family: var(--display);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}
.sdgd-btn-full:hover { background: var(--red-h); }

.sdgd-login-back { text-align: center; margin-top: 1.25rem; font-size: 13px; }
.sdgd-login-back a { color: var(--cream-dim); text-decoration: none; font-weight: 300; }
.sdgd-login-back a:hover { color: var(--cream); }

.sdgd-alert { border-radius: 7px; padding: 10px 14px; margin-bottom: 1rem; font-size: 13px; font-weight: 400; }
.sdgd-alert-error { background: rgba(193,52,26,0.1); border: 1px solid rgba(193,52,26,0.25); color: #f87171; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
	.sdgd-topbar { padding: 0 1rem; }
	.sdgd-dz-label { display: none; }
	.sdgd-lessons-scroll { padding: 0 1.25rem 5rem; }
	.sdgd-slide-header { padding: 1.5rem 1.25rem 0.75rem; }
	.sdgd-nav-prev { left: 0.25rem; }
	.sdgd-nav-next { right: 0.25rem; }
	.sdgd-dz-inner { padding: 1.5rem 1.25rem 2rem; }
	.sdgd-mixer-tracks { grid-template-columns: repeat(3, 1fr); }
	.sdgd-week-nav { padding: 0 1.25rem; }
}

/* ── WEEK BADGE IN TOPBAR ── */
.sdgd-week-badge {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream-faint);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 4px 12px;
}

/* ── MIXER STOP BUTTON ── */
.sdgd-mixer-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 1rem;
	flex-wrap: wrap;
}
.sdgd-mixer-stop-btn {
	padding: 6px 16px;
	border-radius: 6px;
	border: 1px solid rgba(193,52,26,0.3);
	background: rgba(193,52,26,0.08);
	color: var(--red);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
}
.sdgd-mixer-stop-btn:hover { background: rgba(193,52,26,0.18); border-color: var(--red); }
.sdgd-mixer-stop-btn.playing { background: var(--red); border-color: var(--red); color: white; }

/* ── MEDITATIE TAB ── */
.sdgd-meditation-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}
.sdgd-med-btn {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
}
.sdgd-med-btn:hover { border-color: var(--border-h); background: var(--surface-h); }
.sdgd-med-btn.playing { border-color: var(--red); background: rgba(193,52,26,0.08); }
.sdgd-med-duration { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.sdgd-med-title { font-size: 12px; font-weight: 500; color: var(--cream); line-height: 1.3; }
.sdgd-med-play { font-size: 18px; color: var(--cream-dim); margin-top: 4px; }
.sdgd-med-btn.playing .sdgd-med-play { color: var(--red); }

/* ── INTERACTIEVE VIDEO ── */
.sdgd-video-choices {
	margin-top: 1rem;
	padding: 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
}
.sdgd-video-choices.sdgd-choices-highlight {
	border-color: rgba(193,52,26,0.4);
	animation: choicePulse 0.6s ease;
}
@keyframes choicePulse {
	0%   { box-shadow: 0 0 0 0 rgba(193,52,26,0.3); }
	50%  { box-shadow: 0 0 0 8px rgba(193,52,26,0); }
	100% { box-shadow: none; }
}
.sdgd-choices-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cream-faint);
	margin-bottom: 12px;
}
.sdgd-choice-btn {
	display: block;
	width: 100%;
	text-align: left;
	padding: 12px 16px;
	margin-bottom: 8px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--cream-dim);
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	padding-right: 40px;
}
.sdgd-choice-btn::after { content: '→'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); opacity: 0.4; transition: all 0.2s; }
.sdgd-choice-btn:hover { border-color: var(--red); color: var(--cream); background: rgba(193,52,26,0.06); }
.sdgd-choice-btn:hover::after { opacity: 1; right: 12px; }
.sdgd-choice-btn.active { border-color: var(--red); background: rgba(193,52,26,0.12); color: var(--cream); }
.sdgd-choice-btn:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
	.sdgd-meditation-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── MIXER TRACK KAARTEN ── */
.sdgd-mixer-tracks {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin-bottom: 1.25rem;
}

.sdgd-track-card {
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 10px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: var(--surface);
	transition: border-color 0.2s, background 0.2s;
	cursor: pointer;
	user-select: none;
}
.sdgd-track-card:hover { border-color: var(--border-h); }
.sdgd-track-card.on {
	border-color: var(--accent, var(--red));
	background: rgba(193,52,26,0.08);
}

.sdgd-track-indicator {
	width: 28px; height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}
.sdgd-track-card.on .sdgd-track-indicator {
	border-color: var(--accent, var(--red));
	background: var(--accent, var(--red));
}
.sdgd-track-play-icon {
	width: 0; height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid var(--cream-faint);
	margin-left: 2px;
	transition: all 0.15s;
}
.sdgd-track-card.on .sdgd-track-play-icon {
	border: none;
	width: 10px; height: 10px;
	margin-left: 0;
	background: white;
	-webkit-mask: linear-gradient(white,white) 0/3px 10px no-repeat, linear-gradient(white,white) 7px/3px 10px no-repeat;
	mask: linear-gradient(white,white) 0/3px 10px no-repeat, linear-gradient(white,white) 7px/3px 10px no-repeat;
}

.sdgd-track-name {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--cream-dim);
	text-align: center;
}
.sdgd-track-card.on .sdgd-track-name { color: var(--cream); }

.sdgd-vol-bar {
	width: 100%;
	height: 20px;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.sdgd-vol-track {
	width: 100%;
	height: 2px;
	background: rgba(255,255,255,0.1);
	border-radius: 1px;
	overflow: hidden;
	position: relative;
}
.sdgd-vol-fill {
	height: 100%;
	width: 0%;
	border-radius: 1px;
	transition: width 0.05s;
}
.sdgd-vol-handle {
	position: absolute;
	top: 50%; left: 0%;
	transform: translate(-50%, -50%);
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--cream);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s;
}
.sdgd-track-card:hover .sdgd-vol-handle,
.sdgd-track-card.on .sdgd-vol-handle { opacity: 1; }

.sdgd-vol-pct {
	font-size: 10px;
	font-weight: 600;
	min-height: 14px;
	opacity: 0;
	transition: opacity 0.15s;
}
.sdgd-track-card:hover .sdgd-vol-pct,
.sdgd-track-card.on .sdgd-vol-pct { opacity: 1; }

@media (max-width: 640px) {
	.sdgd-mixer-tracks { grid-template-columns: repeat(3, 1fr); }
}

/* ── PRESET ROW + DELETE ── */
.sdgd-preset-row {
	display: inline-flex;
	align-items: center;
	gap: 0;
}
.sdgd-preset-row .sdgd-preset-btn {
	border-radius: 14px 0 0 14px;
	border-right: none;
}
.sdgd-preset-row .sdgd-preset-btn.active {
	border-radius: 14px 0 0 14px;
}
.sdgd-preset-delete {
	display: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 0 14px 14px 0;
	border: 1px solid var(--border);
	border-left: 1px solid rgba(193,52,26,0.3);
	background: rgba(193,52,26,0.08);
	color: var(--red);
	font-size: 10px;
	cursor: pointer;
	transition: all 0.2s;
	padding: 0;
	line-height: 1;
}
.sdgd-preset-delete:hover { background: rgba(193,52,26,0.2); }
.sdgd-preset-row:has(.sdgd-preset-btn.active) .sdgd-preset-delete { display: flex; }

/* ── TERUG NAAR KEUZE KNOP ── */
.sdgd-choice-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	padding: 6px 14px;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--cream-dim);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: all 0.2s;
}
.sdgd-choice-back:hover { border-color: var(--border-h); color: var(--cream); }

/* ── DOWNLOADS PANEL ── */
.sdgd-dl-week {
	margin-bottom: 1.25rem;
}
.sdgd-dl-week-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 8px;
}
.sdgd-dl-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	margin-bottom: 6px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--surface);
	color: var(--cream-dim);
	text-decoration: none;
	font-size: 13px;
	font-weight: 400;
	transition: all 0.2s;
}
.sdgd-dl-item:hover {
	border-color: var(--border-h);
	color: var(--cream);
	background: var(--surface-h);
}
.sdgd-dl-icon {
	color: var(--red);
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.sdgd-dl-name { flex: 1; }
.sdgd-dl-arrow {
	opacity: 0.4;
	font-size: 14px;
	transition: opacity 0.2s;
}
.sdgd-dl-item:hover .sdgd-dl-arrow { opacity: 1; }

/* ── WEEK FOOTER ── */
.sdgd-week-footer {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.875rem clamp(2rem, 8vw, 5rem);
	border-top: 1px solid var(--border);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.sdgd-week-footer.visible {
	opacity: 1;
	pointer-events: all;
}
.sdgd-week-footer-label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cream-faint);
}
.sdgd-week-footer-btn {
	background: none;
	border: none;
	padding: 0;
	color: var(--cream-faint);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: color 0.2s;
}
.sdgd-week-footer-btn:hover { color: var(--cream); }

/* ── PHILUX FULLSCREEN ── */
.sdgd-philux-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: #000;
	display: none;
	flex-direction: column;
}
.sdgd-philux-overlay.active { display: flex; }

.sdgd-philux-light {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 65% 55% at 50% 50%, var(--philux-col, #fff) 0%, transparent 100%);
	opacity: 0;
}
.sdgd-philux-guide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	z-index: 2;
	pointer-events: none;
}
.sdgd-philux-circle {
	width: 100px; height: 100px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 4s cubic-bezier(.4,0,.2,1);
}
.sdgd-philux-count {
	font-family: var(--display);
	font-size: 32px;
	font-weight: 300;
	color: rgba(255,255,255,.65);
}
.sdgd-philux-phase {
	font-size: 11px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: rgba(255,255,255,.25);
}
.sdgd-philux-bar {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	z-index: 10;
	padding: 1.5rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, transparent 100%);
	opacity: 0;
	transition: opacity .3s;
}
.sdgd-philux-overlay:hover .sdgd-philux-bar,
.sdgd-philux-overlay.controls-visible .sdgd-philux-bar { opacity: 1; }
.sdgd-philux-bar-left   { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sdgd-philux-bar-center { display: flex; align-items: center; gap: 8px; }
.sdgd-philux-bar-right  { display: flex; align-items: center; gap: 12px; }
.sdgd-philux-timer {
	font-size: 12px;
	letter-spacing: .15em;
	color: rgba(255,255,255,.3);
	min-width: 42px;
}
.sdgd-px-btn {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 6px;
	color: rgba(255,255,255,.45);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .08em;
	padding: 6px 14px;
	cursor: pointer;
	transition: all .2s;
}
.sdgd-px-btn:hover { background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.sdgd-px-btn.active { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.9); }
.sdgd-px-btn-start {
	background: rgba(193,52,26,.8);
	border-color: transparent;
	color: white;
}
.sdgd-px-btn-start:hover { background: var(--red); }
.sdgd-px-color {
	width: 20px; height: 20px;
	border-radius: 50%;
	border: 2px solid transparent;
	cursor: pointer;
	opacity: .4;
	transition: all .2s;
	padding: 0;
}
.sdgd-px-color:hover { opacity: .8; }
.sdgd-px-color.active { opacity: 1; border-color: rgba(255,255,255,.7); }
.sdgd-px-close {
	background: none;
	border: none;
	color: rgba(255,255,255,.3);
	font-size: 18px;
	cursor: pointer;
	padding: 4px 8px;
	transition: color .2s;
	line-height: 1;
}
.sdgd-px-close:hover { color: rgba(255,255,255,.8); }
.sdgd-philux-open-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	background: var(--red);
	border: none;
	border-radius: 8px;
	color: white;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	cursor: pointer;
	transition: background .2s;
}
.sdgd-philux-open-btn:hover { background: var(--red-h); }
.sdgd-philux-tab-content { text-align: center; padding: 1rem 0; }
.sdgd-philux-tagline {
	font-size: 12px;
	color: var(--cream-faint);
	margin-bottom: 1rem;
	font-weight: 300;
	letter-spacing: .05em;
}

/* ── PHILUX TAB INFO ── */
.sdgd-philux-tab-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.sdgd-philux-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.sdgd-philux-info-block {
	padding: 1rem 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
}
.sdgd-philux-info-title {
	font-size: 12px;
	font-weight: 600;
	color: var(--cream);
	margin-bottom: 6px;
	font-family: var(--display);
	letter-spacing: -0.01em;
}
.sdgd-philux-info-text {
	font-size: 13px;
	line-height: 1.7;
	color: var(--cream-dim);
	font-weight: 300;
}
.sdgd-philux-open-btn {
	align-self: flex-start;
}
.sdgd-philux-upload-hint {
	font-size: 11px;
	color: var(--cream-faint);
	text-align: center;
}
.sdgd-philux-upload-hint a {
	color: var(--red);
	text-decoration: none;
}
.sdgd-philux-upload-hint a:hover { text-decoration: underline; }

/* ── TOUR ── */
.sdgd-tour-btn {
	width: 26px; height: 26px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--cream-faint);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--sans);
}
.sdgd-tour-btn:hover { border-color: var(--border-h); color: var(--cream-dim); }

.sdgd-tour-overlay {
	position: fixed;
	inset: 0;
	z-index: 300;
	pointer-events: none;
}
.sdgd-tour-overlay.active { pointer-events: all; }

.sdgd-tour-bg {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.6);
}

.sdgd-tour-highlight {
	position: absolute;
	border: 2px solid rgba(193,52,26,.7);
	border-radius: 8px;
	z-index: 2;
	transition: all .35s cubic-bezier(.16,1,.3,1);
	box-shadow: 0 0 0 2000px rgba(0,0,0,.6);
	pointer-events: none;
}

.sdgd-tour-popup {
	position: absolute;
	z-index: 10;
	width: 300px;
	background: #0e0b09;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	padding: 1.25rem;
	transition: top .35s cubic-bezier(.16,1,.3,1), left .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1);
}

.sdgd-tour-close {
	position: absolute;
	top: 10px; right: 12px;
	background: none; border: none;
	color: rgba(242,234,216,.25);
	font-size: 16px;
	cursor: pointer;
	transition: color .2s;
	line-height: 1;
	padding: 2px 4px;
}
.sdgd-tour-close:hover { color: rgba(242,234,216,.8); }

.sdgd-tour-icon {
	width: 40px; height: 40px;
	border-radius: 10px;
	background: rgba(193,52,26,.12);
	border: 1px solid rgba(193,52,26,.22);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	margin-bottom: 12px;
	color: var(--red);
}
.sdgd-tour-step {
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(193,52,26,.8);
	margin-bottom: 5px;
}
.sdgd-tour-title {
	font-family: var(--display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--cream);
	margin-bottom: 8px;
}
.sdgd-tour-text {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(242,234,216,.55);
	font-weight: 300;
	margin-bottom: 1.25rem;
}
.sdgd-tour-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sdgd-tour-dots { display: flex; gap: 5px; }
.sdgd-tour-dot {
	width: 5px; height: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,.14);
	transition: background .2s;
}
.sdgd-tour-dot.active { background: var(--red); }
.sdgd-tour-actions { display: flex; gap: 8px; align-items: center; }
.sdgd-tour-skip {
	background: none; border: none;
	color: rgba(242,234,216,.28);
	font-size: 12px; cursor: pointer;
	letter-spacing: .06em;
	transition: color .2s;
	font-family: var(--sans);
}
.sdgd-tour-skip:hover { color: rgba(242,234,216,.6); }
.sdgd-tour-next {
	background: var(--red);
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	padding: 8px 16px;
	cursor: pointer;
	transition: background .2s;
	font-family: var(--sans);
}
.sdgd-tour-next:hover { background: var(--red-h); }

/* ── DRIVE ZONE SECTIE TITEL ── */
.sdgd-dz-section-title {
	font-family: var(--display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--cream);
	margin-bottom: 4px;
}

/* ── LESSON GATE ── */
.sdgd-gate {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1.25rem;
	margin-bottom: 1rem;
}
.sdgd-gate-question {
	font-size: 14px;
	font-weight: 500;
	color: var(--cream);
	margin-bottom: 1rem;
	line-height: 1.5;
}
.sdgd-gate-input {
	width: 100%;
	background: rgba(255,255,255,.05);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 10px 14px;
	color: var(--cream);
	font-family: var(--sans);
	font-size: 13px;
	min-height: 80px;
	resize: vertical;
	outline: none;
	margin-bottom: 10px;
	transition: border-color .2s;
}
.sdgd-gate-input:focus { border-color: rgba(193,52,26,.4); }
.sdgd-gate-mc { display: flex; flex-direction: column; gap: 8px; }
.sdgd-gate-mc-btn {
	text-align: left;
	padding: 11px 16px;
	border-radius: 7px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--cream-dim);
	font-family: var(--sans);
	font-size: 13px;
	cursor: pointer;
	transition: all .2s;
}
.sdgd-gate-mc-btn:hover { border-color: var(--red); color: var(--cream); background: rgba(193,52,26,.06); }
