@font-face {
	font-family: "Vazirmatn";
	src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Vazirmatn";
	src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Vazirmatn";
	src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--navy: #0a1a2f;
	--navy-deep: #050e1c;
	--navy-soft: #163255;
	--gold: #d4a017;
	--gold-soft: #f0c14a;
	--cream: #f3f6fa;
	--white: #ffffff;
	--ink: #0f172a;
	--muted: #5a6b80;
	--line: rgba(10, 26, 47, 0.12);
	--ok: #1f7a4c;
	--err: #a33b3b;
	--radius: 14px;
	--shadow: 0 12px 36px rgba(5, 14, 28, 0.1);
	--shadow-hover: 0 18px 48px rgba(5, 14, 28, 0.16);
	--container: 1160px;
	--font: "Vazirmatn", Tahoma, sans-serif;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background:
		radial-gradient(ellipse 70% 45% at 100% -10%, rgba(212, 160, 23, 0.1), transparent 55%),
		radial-gradient(ellipse 55% 40% at -5% 15%, rgba(10, 26, 47, 0.07), transparent 50%),
		linear-gradient(180deg, #eef2f7 0%, var(--cream) 40%, #e8edf4 100%);
	line-height: 1.7;
	min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--navy);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--gold);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link {
	position: absolute;
	inset-inline-start: 1rem;
	top: -100px;
	background: var(--gold);
	color: var(--navy);
	padding: 0.5rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	top: 1rem;
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.narrow {
	width: min(100% - 2rem, 640px);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(7, 21, 40, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 72px;
}

.brand-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--white);
}

.brand-link:hover {
	color: var(--gold-soft);
}

.brand-mark {
	color: var(--gold);
	display: grid;
	place-items: center;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.brand-text strong {
	font-size: 1.05rem;
}

.brand-text span {
	font-size: 0.85rem;
	opacity: 0.8;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0.5rem;
}

.nav-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	margin: 5px 0;
	transition: transform 0.2s ease;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
	color: var(--gold);
}

.nav-cta {
	display: flex;
	gap: 0.5rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 1.2rem;
	border-radius: 8px;
	border: 1px solid transparent;
	font-family: inherit;
	font-weight: 500;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	text-align: center;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--gold {
	background: linear-gradient(135deg, var(--gold), var(--gold-soft));
	color: var(--navy-deep);
	box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}

.btn--gold:hover {
	color: var(--navy-deep);
}

.btn--navy {
	background: var(--navy);
	color: var(--white);
}

.btn--navy:hover {
	color: var(--white);
	background: var(--navy-soft);
}

.btn--light {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
}

.btn--light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
}

.btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
	color: var(--gold);
	border-color: var(--gold);
}

.btn--outline {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}

.btn--outline:hover {
	background: var(--navy);
	color: var(--white);
}

.btn--lg {
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
}

.btn--block {
	width: 100%;
}

/* Hero — cinematic athletic */
.hero {
	position: relative;
	min-height: min(92vh, 860px);
	display: grid;
	align-items: end;
	padding: 6rem 0 5.5rem;
	color: var(--white);
	overflow: hidden;
}

.hero--cinematic {
	align-items: center;
	padding-bottom: 4.5rem;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg__photo {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 60% at 75% 45%, rgba(212, 160, 23, 0.22), transparent 55%),
		radial-gradient(circle at 20% 80%, rgba(22, 50, 85, 0.9), transparent 45%),
		linear-gradient(145deg, #050e1c 0%, #0a1a2f 38%, #163255 72%, #0a1a2f 100%);
	transform: scale(1.04);
	animation: heroShift 22s var(--ease-out) infinite alternate;
}

.hero-bg__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(5, 14, 28, 0.94) 0%, rgba(5, 14, 28, 0.72) 42%, rgba(5, 14, 28, 0.35) 100%),
		repeating-linear-gradient(
			-16deg,
			transparent,
			transparent 36px,
			rgba(255, 255, 255, 0.015) 36px,
			rgba(255, 255, 255, 0.015) 37px
		);
}

.hero-bg__orbit {
	position: absolute;
	inset-inline-end: -8%;
	top: 8%;
	width: min(52vw, 520px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid rgba(240, 193, 74, 0.28);
	box-shadow:
		inset 0 0 0 40px rgba(212, 160, 23, 0.03),
		inset 0 0 0 80px rgba(212, 160, 23, 0.02);
	animation: orbitPulse 10s ease-in-out infinite;
}

.hero-bg__orbit::after {
	content: "";
	position: absolute;
	inset: 18%;
	border-radius: 50%;
	border: 1px dashed rgba(255, 255, 255, 0.12);
}

.hero-bg__beam {
	position: absolute;
	inset-inline-end: 12%;
	top: -10%;
	width: 2px;
	height: 130%;
	background: linear-gradient(180deg, transparent, rgba(240, 193, 74, 0.55), transparent);
	transform: rotate(18deg);
	opacity: 0.55;
	animation: beamSweep 8s ease-in-out infinite alternate;
}

.hero-bg__grain {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
}

@keyframes heroShift {
	from { transform: scale(1.02) translate3d(0, 0, 0); }
	to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

@keyframes orbitPulse {
	0%, 100% { transform: scale(1); opacity: 0.85; }
	50% { transform: scale(1.04); opacity: 1; }
}

@keyframes beamSweep {
	from { opacity: 0.25; transform: rotate(16deg) translateX(0); }
	to { opacity: 0.7; transform: rotate(20deg) translateX(12px); }
}

.hero-stage {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr);
	gap: 2.5rem;
	align-items: end;
	width: 100%;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	animation: fadeUp 0.9s var(--ease-out) both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--gold-soft);
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	margin: 0 0 0.85rem;
	font-weight: 500;
}

.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3dd68c;
	box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.6);
	animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
	0% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(61, 214, 140, 0); }
	100% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0); }
}

.hero-brand {
	font-size: clamp(2.4rem, 6vw, 4.1rem);
	line-height: 1.08;
	margin: 0 0 1.1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.hero-brand__line {
	display: block;
}

.hero-brand__accent {
	display: block;
	background: linear-gradient(105deg, var(--gold-soft), #fff3c4 45%, var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	max-width: 34rem;
	opacity: 0.9;
	margin: 0 0 1.85rem;
	line-height: 1.85;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero-aside {
	position: relative;
	padding: 1.35rem 1.25rem 1.35rem 1.5rem;
	border: 1px solid rgba(240, 193, 74, 0.28);
	border-radius: calc(var(--radius) + 4px);
	background: rgba(5, 14, 28, 0.45);
	backdrop-filter: blur(10px);
	animation: fadeUp 1s var(--ease-out) 0.12s both;
}

.hero-aside__ring {
	position: absolute;
	inset-inline-start: -0.35rem;
	top: 1.1rem;
	bottom: 1.1rem;
	width: 3px;
	border-radius: 99px;
	background: linear-gradient(180deg, var(--gold-soft), transparent);
}

.hero-path {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.hero-path li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-path strong {
	flex: 0 0 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(212, 160, 23, 0.18);
	color: var(--gold-soft);
	font-size: 0.85rem;
}

.hero-path span {
	font-size: 0.95rem;
	opacity: 0.92;
}

.hero-marquee {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(5, 14, 28, 0.55);
	backdrop-filter: blur(8px);
}

.hero-marquee__track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	padding: 0.7rem 0;
	animation: marquee 28s linear infinite;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.hero-marquee__track span::after {
	content: "•";
	margin-inline-start: 2.5rem;
	color: var(--gold);
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(50%); }
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* Sections */
.section {
	padding: 4rem 0;
}

.section--muted {
	background: rgba(255, 255, 255, 0.55);
}

.section-head {
	margin-bottom: 2rem;
	max-width: 40rem;
}

.section-head h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--navy);
}

.section-head p {
	margin: 0;
	color: var(--muted);
}

.section-cta {
	margin-top: 2rem;
	text-align: center;
}

.page-hero {
	background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
	color: var(--white);
	padding: 3rem 0 2.5rem;
}

.page-hero h1 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 3.5vw, 2.4rem);
}

.page-lead {
	margin: 0;
	opacity: 0.85;
	max-width: 40rem;
}

/* Stats */
.stats-section {
	padding-top: 0;
	margin-top: -2.5rem;
	position: relative;
	z-index: 2;
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.5rem;
	border: 1px solid var(--line);
}

.stat {
	text-align: center;
	padding: 0.75rem;
}

.stat-icon {
	color: var(--gold);
	display: inline-grid;
	margin-bottom: 0.35rem;
}

.stat-num {
	display: block;
	font-size: 2rem;
	color: var(--navy);
	line-height: 1.1;
}

.stat-label {
	color: var(--muted);
	font-size: 0.9rem;
}

/* Cards */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.card-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.card-media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy), var(--navy-soft));
	display: grid;
	place-items: center;
	color: var(--gold);
}

.card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.card:hover .card-media img {
	transform: scale(1.04);
}

.card-media--round {
	aspect-ratio: 1;
	border-radius: 50%;
	width: 140px;
	margin: 1.5rem auto 0;
	border: 3px solid rgba(201, 162, 39, 0.45);
}

.card-media--placeholder {
	min-height: 160px;
}

.card-body {
	padding: 1.15rem 1.25rem 1.35rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.card-body--center {
	text-align: center;
	align-items: center;
}

.card-title {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.4;
}

.card-title a {
	color: var(--navy);
}

.card-sub,
.card-muted {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.35rem;
}

.card-foot {
	margin-top: auto;
	padding-top: 0.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chip {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	background: rgba(201, 162, 39, 0.15);
	color: #8a6d12;
	font-size: 0.78rem;
	font-weight: 500;
}

.chip--muted {
	background: rgba(11, 31, 58, 0.08);
	color: var(--muted);
}

.chip--ok {
	background: rgba(31, 122, 76, 0.12);
	color: var(--ok);
}

.chip--warn {
	background: rgba(163, 59, 59, 0.1);
	color: var(--err);
}

.price {
	color: var(--navy);
	font-weight: 700;
}

.price--lg {
	font-size: 1.4rem;
	margin: 0 0 1rem;
}

.text-link {
	color: var(--gold);
	font-weight: 500;
}

.avatar-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: var(--navy);
	color: var(--gold);
	font-size: 2rem;
	font-weight: 700;
}

.avatar-fallback--lg {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	font-size: 3rem;
}

/* CTA band */
.cta-band {
	background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
	color: var(--white);
	padding: 3.5rem 0;
	position: relative;
	overflow: hidden;
}

.cta-band::after {
	content: "";
	position: absolute;
	inset-inline-end: -10%;
	top: -30%;
	width: 40%;
	height: 160%;
	background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 60%);
	pointer-events: none;
}

.cta-band-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
}

.cta-band h2 {
	margin: 0 0 0.4rem;
}

.cta-band p {
	margin: 0;
	opacity: 0.85;
}

/* Filters & tabs */
.filter-bar,
.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
	align-items: center;
}

.filter-bar select,
.form-stack select,
.form-stack input,
.form-stack textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
}

.filter-bar select {
	width: auto;
	min-width: 160px;
}

.tab {
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	background: rgba(11, 31, 58, 0.06);
	color: var(--navy);
	font-weight: 500;
}

.tab.is-active,
.tab:hover {
	background: var(--navy);
	color: var(--white);
}

/* Profile & class layouts */
.profile-hero {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.profile-avatar img,
.profile-avatar .avatar-fallback {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--gold);
}

.profile-grid,
.class-layout,
.about-grid,
.contact-grid,
.account-layout {
	display: grid;
	gap: 2rem;
}

.profile-grid,
.class-layout,
.about-grid,
.contact-grid {
	grid-template-columns: 1.4fr 1fr;
}

.account-layout {
	grid-template-columns: 1fr 1fr;
}

.achievement-list,
.info-list,
.order-list,
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.achievement-list li,
.order-list li {
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.order-list li {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.order-list__item > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	flex: 1;
}

.order-list__item .chip {
	margin-inline-end: 0.25rem;
}

.order-list span,
.achievement-list span,
.achievement-list small {
	color: var(--muted);
	font-size: 0.9rem;
}

.info-list li {
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--line);
}

.purchase-box,
.form-card,
.account-panel,
.locked-box,
.about-aside .stat {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}

.account-panel h2 {
	margin-top: 0;
	color: var(--navy);
}

.form-stack {
	display: grid;
	gap: 1rem;
}

.form-stack label {
	display: grid;
	gap: 0.35rem;
	font-weight: 500;
	color: var(--navy);
}

.locked-box {
	margin-top: 1.5rem;
	background: rgba(11, 31, 58, 0.04);
}

.video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
	background: #000;
	margin: 0.75rem 0 1.5rem;
}

.video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.featured-figure {
	margin: 0 0 1.5rem;
	border-radius: var(--radius);
	overflow: hidden;
}

.prose {
	font-size: 1.05rem;
}

.prose h2 {
	color: var(--navy);
}

.alert {
	padding: 0.9rem 1.1rem;
	border-radius: 8px;
	margin-bottom: 1.25rem;
}

.alert--ok {
	background: rgba(31, 122, 76, 0.1);
	color: var(--ok);
	border: 1px solid rgba(31, 122, 76, 0.25);
}

.alert--err {
	background: rgba(163, 59, 59, 0.1);
	color: var(--err);
	border: 1px solid rgba(163, 59, 59, 0.25);
}

.empty-note {
	color: var(--muted);
	text-align: center;
	padding: 2rem 1rem;
}

.pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	gap: 0.35rem;
}

.pagination .page-numbers {
	padding: 0.4rem 0.75rem;
	border-radius: 6px;
	background: var(--white);
	border: 1px solid var(--line);
}

.pagination .current {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.account-logout {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

/* Footer */
.site-footer {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.85);
	padding-top: 3rem;
	margin-top: 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}

.footer-title {
	color: var(--gold);
	font-size: 1rem;
	margin: 0 0 1rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	display: block;
	padding: 0.25rem 0;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-brand p {
	opacity: 0.75;
	max-width: 28rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0;
	font-size: 0.9rem;
	opacity: 0.7;
}

.footer-bottom p {
	margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
	.card-grid,
	.card-grid--4,
	.stats-row,
	.footer-grid,
	.profile-grid,
	.class-layout,
	.about-grid,
	.contact-grid,
	.account-layout {
		grid-template-columns: 1fr 1fr;
	}

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

/* Landing — path blocks */
.section-head--center {
	text-align: center;
	margin-inline: auto;
}

.section--ink {
	background:
		radial-gradient(ellipse 60% 50% at 10% 0%, rgba(212, 160, 23, 0.12), transparent 50%),
		linear-gradient(160deg, #071428, #0a1a2f 55%, #102844);
	color: var(--white);
}

.section-head--light h2 {
	color: var(--white);
}

.section-head--light p {
	color: rgba(255, 255, 255, 0.72);
}

.path-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.path-block {
	position: relative;
	display: block;
	padding: 2rem 1.75rem;
	border-radius: calc(var(--radius) + 4px);
	overflow: hidden;
	color: var(--white);
	min-height: 220px;
	transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
	box-shadow: var(--shadow);
}

.path-block:hover {
	transform: translateY(-4px);
	color: var(--white);
	box-shadow: var(--shadow-hover);
}

.path-block--recurve {
	background:
		linear-gradient(145deg, rgba(5, 14, 28, 0.2), rgba(5, 14, 28, 0.55)),
		linear-gradient(135deg, #143056, #0a1a2f);
}

.path-block--compound {
	background:
		linear-gradient(145deg, rgba(5, 14, 28, 0.15), rgba(5, 14, 28, 0.5)),
		linear-gradient(135deg, #8a6a12, #3d2e08 70%, #0a1a2f);
}

.path-block__tag {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: 0.75rem;
}

.path-block h3 {
	margin: 0 0 0.5rem;
	font-size: 1.75rem;
}

.path-block p {
	margin: 0 0 1.25rem;
	opacity: 0.88;
	max-width: 28rem;
}

.path-block__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	color: var(--gold-soft);
}

.path-block__cta svg {
	transform: scaleX(-1);
}

.class-strip {
	margin-bottom: 2.5rem;
}

.class-strip__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.class-strip__head h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--navy);
}

.class-strip__head a {
	font-size: 0.9rem;
	font-weight: 600;
}

.news-rail {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.news-item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.news-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.news-item__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
}

.news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-item__media--fallback {
	background:
		radial-gradient(circle at 70% 30%, rgba(212, 160, 23, 0.35), transparent 45%),
		linear-gradient(145deg, #143056, #050e1c);
}

.news-item__body {
	padding: 1.1rem 1.2rem 1.35rem;
}

.news-item__body time {
	display: block;
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 0.35rem;
}

.news-item__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	line-height: 1.45;
}

.news-item__body p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.empty-note--light {
	color: rgba(255, 255, 255, 0.7);
}

.cta-band--premium {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 50% 80% at 100% 50%, rgba(212, 160, 23, 0.28), transparent 55%),
		linear-gradient(120deg, #050e1c, #143056 55%, #0a1a2f);
}

.cta-band--premium .eyebrow {
	color: var(--gold-soft);
}

.athletes-band .card {
	background: rgba(255, 255, 255, 0.96);
}

/* Auth / OTP */
.auth-shell {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	min-height: calc(100vh - 72px);
}

.auth-visual {
	position: relative;
	padding: 3.5rem 2.5rem;
	display: flex;
	align-items: flex-end;
	color: var(--white);
	background:
		radial-gradient(circle at 70% 20%, rgba(212, 160, 23, 0.28), transparent 40%),
		linear-gradient(160deg, #050e1c, #143056 60%, #0a1a2f);
	overflow: hidden;
}

.auth-visual__glow {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(240, 193, 74, 0.15);
	filter: blur(40px);
	inset-inline-end: 10%;
	top: 18%;
}

.auth-visual__target {
	position: absolute;
	inset-inline-end: 12%;
	top: 22%;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 0 0 28px rgba(212, 160, 23, 0.06);
}

.auth-visual__target::after {
	content: "";
	position: absolute;
	inset: 34%;
	border-radius: 50%;
	background: var(--gold);
	opacity: 0.85;
}

.auth-visual__copy {
	position: relative;
	z-index: 1;
	max-width: 28rem;
}

.auth-visual__copy h2 {
	margin: 0 0 0.6rem;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.auth-visual__copy p:last-child {
	margin: 0;
	opacity: 0.85;
}

.auth-panel {
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 440px;
	width: 100%;
	margin-inline: auto;
}

.auth-panel__head h1 {
	margin: 0 0 0.4rem;
	font-size: 1.65rem;
	color: var(--navy);
}

.auth-panel__head p {
	margin: 0 0 1.5rem;
	color: var(--muted);
}

.auth-form {
	display: grid;
	gap: 1rem;
}

.auth-form .form-field {
	display: grid;
	gap: 0.35rem;
}

.auth-form .form-field span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--navy);
}

.auth-form input {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	font: inherit;
	background: var(--white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.otp-input {
	letter-spacing: 0.4em;
	font-size: 1.35rem;
	text-align: center;
	font-weight: 700;
}

.auth-meta {
	margin: 0.75rem 0 0;
	font-size: 0.9rem;
	color: var(--muted);
	text-align: center;
}

.auth-meta--foot {
	margin-top: 1.75rem;
}

.auth-debug strong {
	font-size: 1.25rem;
	letter-spacing: 0.2em;
	color: var(--navy);
}

@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		display: none;
		position: absolute;
		inset-inline: 0;
		top: 72px;
		background: var(--navy-deep);
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 1.25rem 1.5rem;
		border-bottom: 1px solid rgba(201, 162, 39, 0.25);
	}

	.site-nav.is-open {
		display: flex;
	}

	.nav-list {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-cta {
		flex-direction: column;
	}

	.hero {
		min-height: 78vh;
		align-items: center;
		padding-top: 4.5rem;
		padding-bottom: 4rem;
	}

	.hero-stage {
		grid-template-columns: 1fr;
	}

	.hero-aside {
		max-width: 420px;
	}

	.hero-bg__orbit {
		width: min(70vw, 320px);
		opacity: 0.55;
	}

	.stats-row,
	.card-grid,
	.card-grid--4,
	.footer-grid,
	.profile-grid,
	.class-layout,
	.about-grid,
	.contact-grid,
	.account-layout,
	.path-grid,
	.news-rail,
	.auth-shell {
		grid-template-columns: 1fr;
	}

	.auth-visual {
		min-height: 220px;
		padding: 2rem 1.5rem;
	}

	.profile-hero {
		flex-direction: column;
		text-align: center;
	}

	.order-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}
