/*!
 * Copyright (c) 2024-2026 Entreprises Miron & Co. All rights reserved.
 * Onboarding-first signup flow — 8 étapes fullscreen, pop art/neon.
 */

.academy-signup-root {
	--sig-bg-deep:     #0f0f1e;
	--sig-bg-1:        #1a1a2e;
	--sig-bg-2:        #22223e;
	--sig-border:      rgba(255, 255, 255, 0.08);
	--sig-pink:        #e94560;
	--sig-pink-glow:   rgba(233, 69, 96, 0.4);
	--sig-yellow:      #f5c518;
	--sig-yellow-glow: rgba(245, 197, 24, 0.5);
	--sig-cyan:        #00d2ff;
	--sig-cyan-glow:   rgba(0, 210, 255, 0.4);
	--sig-purple:      #b44aff;
	--sig-green:       #52d060;
	--sig-text:        #ffffff;
	--sig-text-dim:    #b0bace;
	--sig-text-muted:  #6a7490;
	--sig-radius:      16px;
	--sig-font:        'Nunito', 'Segoe UI', system-ui, sans-serif;

	position: fixed;
	inset: 0;
	z-index: 99998;
	background:
		radial-gradient(ellipse at 20% 20%, rgba(233, 69, 96, 0.25), transparent 55%),
		radial-gradient(ellipse at 80% 80%, rgba(0, 210, 255, 0.25), transparent 55%),
		radial-gradient(ellipse at 50% 50%, rgba(180, 74, 255, 0.18), transparent 55%),
		linear-gradient(135deg, #0f0f1e, #1a1a2e 50%, #0f3460);
	background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
	animation: sig-bg-shift 22s ease-in-out infinite;
	color: var(--sig-text);
	font-family: var(--sig-font);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
}

/* v2.6.2 — Fond animé Alcove-like : gradients qui respirent et bougent */
@keyframes sig-bg-shift {
	0%, 100% {
		background-position: 20% 20%, 80% 80%, 50% 50%, 0% 0%;
	}
	33% {
		background-position: 70% 10%, 20% 60%, 80% 40%, 0% 0%;
	}
	66% {
		background-position: 30% 70%, 60% 30%, 20% 80%, 0% 0%;
	}
}

/* Particules flottantes (Pierres qui dérivent) */
.academy-signup-root::before,
.academy-signup-root::after {
	content: '';
	position: absolute;
	pointer-events: none;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.6;
	z-index: 0;
}
.academy-signup-root::before {
	top: 10%;
	left: -100px;
	background: var(--sig-pink);
	animation: sig-float-1 15s ease-in-out infinite;
}
.academy-signup-root::after {
	bottom: 10%;
	right: -100px;
	background: var(--sig-cyan);
	animation: sig-float-2 18s ease-in-out infinite;
}

@keyframes sig-float-1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(80px, 120px) scale(1.15); }
}
@keyframes sig-float-2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(-100px, -80px) scale(0.9); }
}

/* Le modal reste au-dessus */
.academy-signup-modal {
	position: relative;
	z-index: 2;
}

.academy-signup-root *, .academy-signup-root *::before, .academy-signup-root *::after {
	box-sizing: border-box;
}

.academy-signup-modal {
	background: var(--sig-bg-1);
	border-radius: 24px;
	max-width: 560px;
	width: 100%;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
	border: 1px solid var(--sig-border);
	position: relative;
	animation: sig-modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sig-modal-in {
	from { opacity: 0; transform: translateY(20px) scale(0.95); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.academy-signup-progress {
	height: 4px;
	background: rgba(255, 255, 255, 0.06);
	position: relative;
}

.academy-signup-progress-bar {
	position: absolute;
	top: 0; left: 0; bottom: 0;
	width: 0%;
	background: linear-gradient(90deg, var(--sig-pink), var(--sig-yellow), var(--sig-cyan));
	transition: width 0.4s ease;
	box-shadow: 0 0 12px var(--sig-cyan-glow);
}

.academy-signup-content {
	padding: 40px 32px 32px;
	min-height: 420px;
}

/* Titles */
.sig-title {
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 8px;
	background: linear-gradient(90deg, var(--sig-pink), var(--sig-yellow));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sig-sub {
	color: var(--sig-text-dim);
	font-size: 0.95rem;
	margin: 0 0 24px;
	line-height: 1.5;
}

/* Form inputs */
.sig-field { margin-bottom: 16px; }

.sig-field label {
	display: block;
	font-size: 0.82rem;
	color: var(--sig-text-dim);
	margin-bottom: 6px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.sig-input, .sig-select {
	width: 100%;
	padding: 12px 14px;
	background: var(--sig-bg-2);
	border: 1.5px solid var(--sig-border);
	border-radius: 10px;
	color: var(--sig-text);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 120ms, box-shadow 120ms;
	/* v2.7.3 — color-scheme: dark pour widgets natifs (dropdown, date picker) */
	color-scheme: dark;
}

/* v2.6.3 — custom arrow + appearance none pour contrôler le rendu du select */
.sig-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' stroke='%23b0bace' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.sig-input:focus, .sig-select:focus {
	outline: none;
	border-color: var(--sig-cyan);
	box-shadow: 0 0 0 3px var(--sig-cyan-glow);
}

/* v2.7.3 — Fond sombre + texte clair pour les options du dropdown (anciennement blanc sur blanc) */
.sig-select option {
	background: #1a1a2e;
	color: #ffffff;
	padding: 8px;
	font-family: inherit;
}

/* v2.7.3 — Date input : rend l'icône calendar visible sur fond dark */
.sig-input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
	cursor: pointer;
	opacity: 0.8;
}

/* v2.7.3 — Grille 3 colonnes pour la date de naissance (jour / mois / année) */
.sig-birthdate-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr 1fr;
	gap: 8px;
}

.sig-input.error, .sig-select.error {
	border-color: var(--sig-pink);
}

.sig-input.valid {
	border-color: var(--sig-green);
	box-shadow: 0 0 0 2px rgba(82, 208, 96, 0.2);
}

.sig-error {
	color: var(--sig-pink);
	font-size: 0.82rem;
	margin-top: 4px;
}

.sig-error.valid {
	color: var(--sig-green);
}

.sig-hint {
	color: var(--sig-text-muted);
	font-size: 0.8rem;
	margin-top: 4px;
	font-style: italic;
}

/* Radio cards (école type) */
.sig-radio-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 18px;
}

.sig-radio-card {
	padding: 18px 14px;
	background: var(--sig-bg-2);
	border: 2px solid var(--sig-border);
	border-radius: var(--sig-radius);
	cursor: pointer;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	transition: all 120ms;
	font-family: inherit;
	color: var(--sig-text);
}

.sig-radio-card:hover {
	border-color: var(--sig-cyan);
}

.sig-radio-card.selected {
	background: linear-gradient(135deg, var(--sig-cyan), var(--sig-purple));
	border-color: var(--sig-cyan);
	box-shadow: 0 0 18px var(--sig-cyan-glow);
	color: #fff;
}

/* Choice grid (avatars/titres) */
.sig-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 18px;
}

.sig-choice {
	padding: 0;
	background: var(--sig-bg-2);
	border: 2px solid var(--sig-border);
	border-radius: var(--sig-radius);
	cursor: pointer;
	transition: all 120ms;
	font-family: inherit;
	color: var(--sig-text);
	overflow: hidden;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sig-choice.selected {
	border-color: var(--sig-green);
	box-shadow: 0 0 16px rgba(82, 208, 96, 0.5);
}

.sig-choice img {
	width: 80%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
}

.sig-choice-label {
	padding: 8px;
	text-align: center;
	font-weight: 700;
	font-style: italic;
	font-size: 0.9rem;
}

.sig-choice-label.rarity-common { color: #d0d5e0; }
.sig-choice-label.rarity-rare { color: var(--sig-cyan); }
.sig-choice-label.rarity-epic { color: #cc88ff; }
.sig-choice-label.rarity-legendary { color: var(--sig-yellow); }

/* Buttons */
.sig-actions {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.sig-btn {
	padding: 14px 22px;
	border-radius: 10px;
	font-weight: 800;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 120ms;
	flex: 1;
}

.sig-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.sig-btn-primary {
	background: linear-gradient(135deg, var(--sig-pink), var(--sig-yellow));
	color: #000;
	box-shadow: 0 4px 14px var(--sig-pink-glow);
}

.sig-btn-primary:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px var(--sig-pink-glow);
}

.sig-btn-secondary {
	background: transparent;
	color: var(--sig-text-dim);
	border: 1.5px solid var(--sig-border);
	flex: 0 0 auto;
	padding: 14px 18px;
}

.sig-btn-secondary:hover {
	background: var(--sig-bg-2);
}

.sig-btn-skip {
	background: transparent;
	color: var(--sig-text-muted);
	text-decoration: underline;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	padding: 8px;
	margin-top: 8px;
}

/* v2.6.7 — Logo AcadémieCo réutilisé dans l'onboarding */
.sig-logo-welcome {
	width: 100px;
	height: 100px;
	margin: 0 auto 18px;
	display: block;
	animation: sig-logo-welcome-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 0 20px rgba(245, 164, 5, 0.5));
}

@keyframes sig-logo-welcome-in {
	0%   { opacity: 0; transform: scale(0.3) rotate(-30deg); }
	60%  { opacity: 1; transform: scale(1.15) rotate(5deg); }
	100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* v2.6.3 — Creating animation (étape 4 pendant création compte) */
.sig-creating {
	text-align: center;
	padding: 30px 0;
}

.sig-creating-logo {
	width: 160px;
	height: 160px;
	margin: 0 auto 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sig-creating-rings {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.sig-creating-logo svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

/* v2.6.7 — Logo AcadémieCo au centre des cercles animés */
.sig-creating-logo-img {
	width: 70px;
	height: 70px;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 0 12px rgba(245, 164, 5, 0.7));
	animation: sig-creating-logo-pulse 2s ease-in-out infinite;
}

@keyframes sig-creating-logo-pulse {
	0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 8px rgba(245, 164, 5, 0.5)); }
	50%      { transform: scale(1.08); filter: drop-shadow(0 0 18px rgba(245, 164, 5, 0.85)); }
}

.sig-logo-ring {
	transform-origin: center;
	animation: sig-ring-rotate 3s linear infinite;
}
.sig-logo-ring-1 {
	stroke: var(--sig-pink);
	stroke-dasharray: 50 314;
	filter: drop-shadow(0 0 8px var(--sig-pink-glow));
}
.sig-logo-ring-2 {
	stroke: var(--sig-cyan);
	stroke-dasharray: 40 240;
	animation-direction: reverse;
	animation-duration: 2.2s;
	filter: drop-shadow(0 0 8px var(--sig-cyan-glow));
}
.sig-logo-ring-3 {
	stroke: var(--sig-yellow);
	stroke-dasharray: 30 164;
	animation-duration: 1.8s;
	filter: drop-shadow(0 0 8px var(--sig-yellow-glow));
}

.sig-logo-text {
	fill: #fff;
	animation: sig-logo-pulse 1.5s ease-in-out infinite;
}

@keyframes sig-ring-rotate {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes sig-logo-pulse {
	0%, 100% { opacity: 0.8; transform: scale(1) translateY(0); }
	50%      { opacity: 1;   transform: scale(1.1) translateY(0); }
}

.sig-creating-text {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--sig-text);
	min-height: 1.5em;
	transition: opacity 0.3s;
}

.sig-creating-dots {
	display: flex;
	gap: 6px;
	justify-content: center;
}

.sig-creating-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sig-cyan);
	animation: sig-dot-bounce 1.2s ease-in-out infinite;
}
.sig-creating-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--sig-pink); }
.sig-creating-dots span:nth-child(3) { animation-delay: 0.4s; background: var(--sig-yellow); }

@keyframes sig-dot-bounce {
	0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
	40%           { transform: scale(1.2); opacity: 1; }
}

/* Celebration step */
.sig-celebrate {
	text-align: center;
	padding: 20px 0;
}

.sig-celebrate-emoji {
	font-size: 5rem;
	animation: sig-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* v2.6.7 — Logo AcadémieCo à la célébration */
.sig-celebrate-logo {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sig-logo-celebrate {
	width: 120px;
	height: 120px;
	animation: sig-celebrate-bounce 1s cubic-bezier(0.34, 1.56, 0.64, 1),
	           sig-celebrate-float 3s ease-in-out 1s infinite;
	filter: drop-shadow(0 0 24px rgba(245, 164, 5, 0.8));
}

@keyframes sig-celebrate-bounce {
	0%   { opacity: 0; transform: scale(0) rotate(-180deg); }
	60%  { opacity: 1; transform: scale(1.2) rotate(15deg); }
	100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes sig-celebrate-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-8px) rotate(-3deg); }
}

.sig-celebrate-sparkle {
	position: absolute;
	top: -6px;
	right: 0;
	font-size: 2rem;
	animation: sig-sparkle-rotate 4s linear infinite;
}

@keyframes sig-sparkle-rotate {
	0%, 100% { transform: rotate(0deg) scale(1); }
	25%      { transform: rotate(15deg) scale(1.2); }
	50%      { transform: rotate(-10deg) scale(0.9); }
	75%      { transform: rotate(20deg) scale(1.1); }
}

@keyframes sig-bounce {
	0%   { transform: scale(0); }
	60%  { transform: scale(1.2); }
	100% { transform: scale(1); }
}

.sig-rewards {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin: 20px 0 8px;
}

.sig-reward {
	padding: 14px 18px;
	background: var(--sig-bg-2);
	border: 2px solid var(--sig-yellow);
	border-radius: 14px;
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--sig-yellow);
	box-shadow: 0 0 18px var(--sig-yellow-glow);
}

/* Code de conduite block */
.sig-conduct {
	background: var(--sig-bg-2);
	border: 1px solid var(--sig-border);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 0.85rem;
	color: var(--sig-text-dim);
	margin: 14px 0;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 500px) {
	.academy-signup-content { padding: 32px 20px 20px; }
	.sig-title { font-size: 1.35rem; }
	.sig-choice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.academy-signup-root, .academy-signup-root::before, .academy-signup-root::after,
	.academy-signup-modal, .sig-celebrate-emoji, .academy-signup-progress-bar,
	.sig-logo-welcome, .sig-creating-logo-img, .sig-logo-celebrate, .sig-celebrate-sparkle,
	.sig-logo-ring {
		animation: none !important;
		transition: none !important;
	}
}

/* Already logged in */
.academy-signup-already {
	max-width: 500px;
	margin: 40px auto;
	padding: 24px;
	text-align: center;
	background: #1a1a2e;
	color: #fff;
	border-radius: 16px;
}
.academy-signup-already a {
	color: #00d2ff;
	font-weight: 700;
}

/* ===================================================================
 * Parent-first wizard (v3.10.0) — minimal additive styles
 * =================================================================== */
.academy-ob-hero {
	text-align: center;
	padding: 30px 20px;
}
.academy-ob-logo {
	width: 80px;
	height: auto;
	margin-bottom: 20px;
}
.academy-ob-logo-pulse {
	animation: aca-ob-pulse 1.2s ease-in-out infinite;
}
@keyframes aca-ob-pulse {
	0%,100% { transform: scale(1); opacity: 1; }
	50%     { transform: scale(1.08); opacity: 0.85; }
}
.academy-ob-title {
	font-size: 28px;
	margin: 0 0 12px;
	color: #fff;
}
.academy-ob-sub {
	font-size: 16px;
	color: rgba(255,255,255,0.75);
	margin: 0 0 24px;
	line-height: 1.5;
}
.academy-ob-step-title {
	font-size: 24px;
	color: #fff;
	margin: 0 0 8px;
}
.academy-ob-step-sub {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	margin: 0 0 20px;
}
.academy-ob-label {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin: 0 0 14px;
	font-weight: 500;
}
.academy-ob-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-top: 6px;
	padding: 12px 14px;
	font-size: 15px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	background: rgba(0,0,0,0.3);
	color: #fff;
	color-scheme: dark;
	transition: border-color 0.15s;
}
.academy-ob-input:focus {
	outline: none;
	border-color: #f5a405;
}
.academy-ob-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	margin: 0 0 12px;
	cursor: pointer;
	line-height: 1.5;
}
.academy-ob-check input { flex-shrink: 0; margin-top: 3px; }
.academy-ob-consent-box {
	background: rgba(0,0,0,0.35);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 10px;
	padding: 16px 20px;
	margin: 0 0 18px;
	color: rgba(255,255,255,0.82);
	font-size: 13px;
	line-height: 1.55;
}
.academy-ob-consent-box ul { margin: 8px 0 0; padding-left: 20px; }
.academy-ob-consent-box li { margin-bottom: 6px; }
.academy-ob-error {
	color: #ff6b6b;
	font-size: 13px;
	min-height: 18px;
	margin: 4px 0 12px;
	font-weight: 500;
}
.academy-ob-btn-row {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 24px;
}
.academy-ob-btn {
	flex: 1;
	padding: 14px 22px;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s;
}
.academy-ob-btn:hover { transform: translateY(-2px); }
.academy-ob-btn-primary {
	background: linear-gradient(135deg, #f5a405, #ff6b35);
	color: #fff;
	box-shadow: 0 4px 14px rgba(245,164,5,0.35);
}
.academy-ob-btn-secondary {
	background: rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.9);
	border: 1px solid rgba(255,255,255,0.2);
	flex: 0 0 auto;
}

/* v3.13.0 — Dropdown fix (contrast white-on-white) */
.academy-ob-input.academy-ob-select,
select.academy-ob-input {
	color-scheme: dark;
	background: rgba(0,0,0,0.3);
	color: #fff;
}
.academy-ob-input.academy-ob-select option,
select.academy-ob-input option {
	background: #1a1a2e;
	color: #fff;
}

/* Pseudo availability status */
.academy-ob-pseudo-status {
	font-size: 13px;
	margin: 4px 0 12px;
	min-height: 18px;
	color: rgba(255,255,255,0.8);
}

/* v3.15.2 — Select height fix (pere/mere/etc cut off) */
select.academy-ob-input,
.academy-ob-input.academy-ob-select {
	min-height: 52px;
	line-height: 1.4;
	padding-top: 14px;
	padding-bottom: 14px;
	background-color: rgba(0,0,0,0.3);
	color: #fff;
	-webkit-appearance: menulist;
	   -moz-appearance: menulist;
	        appearance: menulist;
}

/* v3.23.0 — Pass selection step (Co vs Co+) */
.academy-ob-pass-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
	margin: 16px 0;
}
.academy-ob-pass-card {
	position: relative;
	background: rgba(0,0,0,0.3);
	border: 2px solid rgba(255,255,255,0.18);
	border-radius: 14px;
	padding: 20px 18px;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, transform 0.15s;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.academy-ob-pass-card:hover { transform: translateY(-2px); border-color: rgba(245,164,5,0.4); }
.academy-ob-pass-card.is-selected {
	border-color: #f5a405;
	background: linear-gradient(135deg, rgba(245,164,5,0.18), rgba(255,107,53,0.10));
	box-shadow: 0 0 0 3px rgba(245,164,5,0.25);
}
.academy-ob-pass-card input[type="radio"] {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 18px;
	height: 18px;
}
.academy-ob-pass-card__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.academy-ob-pass-label { font-size: 22px; font-weight: 800; color: #fff; }
.academy-ob-pass-badge {
	display: inline-block;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
	background: linear-gradient(135deg, #ec4899, #f59e0b);
	color: #fff;
	border-radius: 999px;
	text-transform: uppercase;
}
.academy-ob-pass-tagline { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: -4px; }
.academy-ob-pass-price {
	font-size: 14px;
	font-weight: 700;
	color: #f5a405;
	padding: 6px 10px;
	background: rgba(245,164,5,0.12);
	border-radius: 8px;
	display: inline-block;
	width: fit-content;
}
.academy-ob-pass-desc { font-size: 13px; color: rgba(255,255,255,0.85); margin: 4px 0; line-height: 1.45; }
.academy-ob-pass-features { font-size: 12px; color: rgba(255,255,255,0.7); margin: 4px 0 0; padding-left: 18px; line-height: 1.5; }
.academy-ob-pass-features li { margin-bottom: 2px; }
