/* ═══════════════════════════════════════════════════════
   UPPER CLUB — PREMIUM FIGHT GYM STYLES
   Aggressive, powerful, Nike/Apple-inspired dark UI
   ═══════════════════════════════════════════════════════ */

:root {
	--bg-main: #050505;
	--bg-soft: #0c0c0c;
	--panel: #111111;
	--accent: #ffffff;
	--accent-fire: #e63946;
	--accent-fire-dark: #c1121f;
	--text: #ffffff;
	--text-muted: #888888;
	--stroke: rgba(255, 255, 255, 0.07);
	--glow-fire: rgba(230, 57, 70, 0.15);
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 32px;
	--radius-pill: 100px;
	--ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--transition-fast: 0.3s var(--ease-smooth);
	--transition-smooth: 0.6s var(--ease-smooth);
	--transition-slow: 1s var(--ease-smooth);
}

/* ── Reset & Base ─────────────────────────────────── */

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

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	background: var(--bg-main);
	overflow-x: hidden;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: var(--accent-fire);
	color: #fff;
}

/* ── Custom Cursor ────────────────────────────────── */

.cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;
	mix-blend-mode: difference;
	transition: transform 0.15s var(--ease-smooth);
}

.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	mix-blend-mode: difference;
	transition: width 0.4s var(--ease-spring),
	height 0.4s var(--ease-spring),
	transform 0.08s linear,
	border-color 0.3s var(--ease-smooth);
}

.cursor-hover .cursor-ring {
	width: 64px;
	height: 64px;
	border-color: var(--accent-fire);
}

/* ── Reveal on Scroll Animations ──────────────────── */

.reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-80px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-scale {
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal-scale.is-visible {
	opacity: 1;
	transform: scale(1);
}

.reveal-blur {
	opacity: 0;
	filter: blur(12px);
	transform: translateY(30px);
	transition: opacity 0.8s var(--ease-smooth), filter 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-blur.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Keyframes ────────────────────────────────────── */

@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0), 0 8px 32px rgba(0, 0, 0, 0.3); }
	50% { box-shadow: 0 0 40px rgba(230, 57, 70, 0.25), 0 8px 32px rgba(0, 0, 0, 0.3); }
}

@keyframes gradient-shift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes hero-zoom {
	0% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

@keyframes fade-in-up {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes line-draw {
	from { width: 0; }
	to { width: 60px; }
}

/* ── Navbar ───────────────────────────────────────── */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 0 clamp(24px, 5vw, 80px);
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background var(--transition-fast),
	            backdrop-filter var(--transition-fast),
	            border-color var(--transition-fast),
	            height var(--transition-fast);
	border-bottom: 1px solid transparent;
}

.navbar.scrolled {
	background: rgba(5, 5, 5, 0.8);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid var(--stroke);
	height: 64px;
}

.nav-logo {
	height: 42px;
	width: auto;
	opacity: 0.9;
	transition: opacity var(--transition-fast);
}

.nav-logo:hover {
	opacity: 1;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 40px;
	align-items: center;
}

.nav-links li a {
	text-decoration: none;
	color: var(--text);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	opacity: 0.7;
	position: relative;
	padding: 4px 0;
	transition: opacity var(--transition-fast), color var(--transition-fast);
}

.nav-links li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-fire);
	transition: width 0.4s var(--ease-smooth);
}

.nav-links li a:hover {
	opacity: 1;
}

.nav-links li a:hover::after {
	width: 100%;
}

/* Mobile menu button */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: var(--transition-fast);
	transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vh;
	height: 100vw;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	transform: translate(-50%, -50%) rotate(-10deg) scale(1.06);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg,
			rgba(5, 5, 5, 0.2) 0%,
			rgba(5, 5, 5, 0.5) 35%,
			rgba(5, 5, 5, 0.82) 70%,
			rgba(5, 5, 5, 1) 100%
		);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 850px;
	padding: 120px 24px 80px;
}

.hero-logo {
	width: clamp(180px, 30vw, 380px);
	height: auto;
	display: block;
	margin: 0 auto 36px;
	animation: fade-in-up 1s var(--ease-smooth) 0.2s both;
	filter: drop-shadow(0 0 80px rgba(230, 57, 70, 0.08));
}

.hero-title {
	font-size: clamp(1.8rem, 5vw, 3.6rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.05;
	animation: fade-in-up 1s var(--ease-smooth) 0.5s both;
}

.hero-tagline {
	margin-top: 20px;
	font-size: clamp(0.85rem, 1.8vw, 1.1rem);
	letter-spacing: 5px;
	text-transform: uppercase;
	font-weight: 300;
	animation: fade-in-up 1s var(--ease-smooth) 0.8s both;
	background: linear-gradient(90deg, var(--text-muted), var(--accent-fire), var(--text-muted));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fade-in-up 1s var(--ease-smooth) 0.8s both, gradient-shift 5s ease infinite;
}

.hero-buttons {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	animation: fade-in-up 1s var(--ease-smooth) 1.1s both;
}

/* ── Decorative line ──────────────────────────────── */

.section-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-fire), transparent);
	margin: 0 auto 40px;
}

/* ── Buttons ──────────────────────────────────────── */

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 42px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	background: #fff;
	color: #000;
	border: 1px solid #fff;
	transition: transform var(--transition-fast),
	            box-shadow var(--transition-fast),
	            background var(--transition-fast),
	            color var(--transition-fast);
	position: relative;
	overflow: hidden;
}

.btn-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, var(--accent-fire), var(--accent-fire-dark));
	opacity: 0;
	transition: opacity var(--transition-fast);
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(230, 57, 70, 0.3), 0 0 0 1px rgba(230, 57, 70, 0.3);
	color: #fff;
	border-color: var(--accent-fire);
}

.btn-cta:hover::before {
	opacity: 1;
}

.btn-cta span {
	position: relative;
	z-index: 1;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 42px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.03);
	transition: transform var(--transition-fast),
	            border-color var(--transition-fast),
	            background var(--transition-fast),
	            box-shadow var(--transition-fast);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ── Marquee ──────────────────────────────────────── */

.marquee-wrapper {
	overflow: hidden;
	padding: 36px 0;
	border-top: 1px solid var(--stroke);
	border-bottom: 1px solid var(--stroke);
	background: var(--bg-main);
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 25s linear infinite;
}

.marquee-track span {
	font-size: clamp(0.9rem, 2.2vw, 1.3rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 6px;
	color: rgba(255, 255, 255, 0.06);
	white-space: nowrap;
	padding: 0 50px;
}

/* ── Section: Entrena Con Los Mejores ─────────────── */

.section-train {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 80vh;
	gap: 0;
}

.train-text-block {
	padding: clamp(60px, 10vw, 140px) clamp(30px, 8vw, 120px);
}

.train-label {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--accent-fire);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.train-label::before {
	content: '';
	width: 30px;
	height: 2px;
	background: var(--accent-fire);
}

.train-text-block h2 {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -1px;
	margin-bottom: 28px;
}

.train-text-block .train-text {
	color: var(--text-muted);
	max-width: 480px;
	font-size: 1rem;
	line-height: 1.8;
}

.train-cta {
	margin-top: 40px;
}

.train-video {
	position: relative;
	height: 100%;
	min-height: 600px;
	overflow: hidden;
}

.train-video video,
.train-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 1.2s var(--ease-smooth), filter 1.2s var(--ease-smooth);
}

.train-video:hover video,
.train-video:hover img {
	transform: scale(1.05);
}

.train-video::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(5, 5, 5, 0.72) 0%,
		rgba(5, 5, 5, 0.42) 24%,
		rgba(5, 5, 5, 0.15) 45%,
		transparent 70%
	);
	pointer-events: none;
}

/* ── Section: Disciplines ─────────────────────────── */

.section-disciplines {
	padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
	text-align: center;
}

.section-disciplines h2 {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 64px;
}

.disciplines-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

/* ── Discipline Card (Nike-style hover reveal) ────── */

.discipline-card {
	position: relative;
	height: 520px;
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
}

.discipline-card-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s var(--ease-smooth);
}

.discipline-card:hover .discipline-card-image {
	transform: scale(1.08);
}

.discipline-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.4) 40%,
		rgba(0, 0, 0, 0.1) 70%,
		transparent 100%
	);
	z-index: 1;
	transition: background var(--transition-smooth);
}

.discipline-card:hover .discipline-card-overlay {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.98) 0%,
		rgba(0, 0, 0, 0.6) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
}

.discipline-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 28px;
	z-index: 2;
	transform: translateY(30px);
	transition: transform 0.6s var(--ease-smooth);
}

.discipline-card:hover .discipline-card-info {
	transform: translateY(0);
}

.discipline-card-info h3 {
	font-size: 1.9rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}

.discipline-card-role {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--accent-fire);
	margin-bottom: 16px;
}

.discipline-card-desc {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.7;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s var(--ease-smooth) 0.1s, transform 0.5s var(--ease-smooth) 0.1s;
}

.discipline-card:hover .discipline-card-desc {
	opacity: 1;
	transform: translateY(0);
}

.discipline-card-icon {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.discipline-card:hover .discipline-card-icon {
	opacity: 1;
	transform: translateY(0);
}

.discipline-card-icon i {
	font-size: 0.9rem;
	color: var(--accent-fire);
}

/* ── Stats Counter Strip ──────────────────────────── */

.stats-strip {
	padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px);
	background: var(--panel);
	border-top: 1px solid var(--stroke);
	border-bottom: 1px solid var(--stroke);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.stat-item .stat-number {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(180deg, #fff 30%, var(--accent-fire));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
	margin-top: 10px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* ── Footer ───────────────────────────────────────── */

footer {
	background: var(--bg-soft);
	border-top: 1px solid var(--stroke);
	padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 80px) 40px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 60px;
}

.footer-col h3 {
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 28px;
	color: var(--text);
}

.footer-col p {
	color: var(--text-muted);
	margin-bottom: 14px;
	font-size: 0.9rem;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-col i {
	color: var(--accent-fire);
	width: 18px;
	text-align: center;
	flex-shrink: 0;
	margin-top: 4px;
	transition: transform var(--transition-fast);
}

.footer-col p:hover i {
	transform: scale(1.2);
}

.footer-col .btn-cta {
	margin-top: 10px;
}

/* Schedule Grid */
.schedule-grid {
	display: grid;
	gap: 0;
}

.schedule-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: background var(--transition-fast), padding var(--transition-fast);
}

.schedule-row:hover {
	background: rgba(255, 255, 255, 0.02);
	padding-left: 8px;
	padding-right: 8px;
}

.day {
	font-weight: 700;
	font-size: 0.9rem;
}

.hours {
	color: var(--text-muted);
	font-size: 0.85rem;
}

.closed {
	color: var(--accent-fire);
	font-weight: 700;
}

/* Footer bottom */
.footer-bottom {
	max-width: 1200px;
	margin: 60px auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--stroke);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.25);
	font-size: 0.75rem;
	letter-spacing: 1px;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: border-color var(--transition-fast),
	            color var(--transition-fast),
	            transform var(--transition-fast),
	            background var(--transition-fast);
}

.footer-social a:hover {
	border-color: var(--accent-fire);
	color: var(--accent-fire);
	transform: translateY(-3px);
	background: rgba(230, 57, 70, 0.08);
}

/* ── Grain / Texture Overlay ──────────────────────── */

.grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	mix-blend-mode: overlay;
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 1024px) {
	.section-train {
		grid-template-columns: 1fr;
	}

	.train-video {
		min-height: 400px;
		order: -1;
	}

	.train-video::after {
		background: linear-gradient(to top, var(--bg-main) 0%, transparent 40%);
	}

	.disciplines-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 20px;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 32px;
		background: rgba(5, 5, 5, 0.97);
		backdrop-filter: blur(24px);
		transition: right 0.5s var(--ease-smooth);
	}

	.nav-links.open {
		right: 0;
	}

	.nav-links li a {
		font-size: 1.1rem;
		letter-spacing: 6px;
	}

	/* Hide cursor on mobile */
	.cursor-dot,
	.cursor-ring {
		display: none;
	}

	.disciplines-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.discipline-card {
		height: 440px;
	}

	.discipline-card-desc {
		opacity: 1;
		transform: translateY(0);
	}

	.discipline-card-icon {
		opacity: 1;
		transform: translateY(0);
	}

	.discipline-card-info {
		transform: translateY(0);
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-cta,
	.btn-ghost {
		width: min(300px, 100%);
		justify-content: center;
	}

	.footer-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.footer-col p {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.train-text-block {
		text-align: center;
	}

	.train-text-block .train-text {
		margin-left: auto;
		margin-right: auto;
	}

	.train-label {
		justify-content: center;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		letter-spacing: 0;
	}

	.discipline-card {
		height: 400px;
	}
}