/* ── Reset & Variables ── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* palette */
	--bg: #0B0B14;
	--bg-card: #12121F;
	--bg-card-h: #181830;
	--surface: #1A1A2E;
	--border: rgba(124, 58, 237, .15);
	--border-h: rgba(124, 58, 237, .4);

	--primary: #7C3AED;
	--primary-l: #9F67FF;
	--accent: #EC4899;
	--accent-l: #F472B6;
	--neon: #38BDF8;

	--text: #E8E4F0;
	--text-dim: #9B8FBB;
	--text-muted: #5C5480;

	/* glow */
	--glow-p: 0 0 30px rgba(124, 58, 237, .35);
	--glow-a: 0 0 30px rgba(236, 72, 153, .25);

	/* spacing */
	--section-y: clamp(80px, 10vw, 140px);
	--gap: 24px;

	/* radius */
	--r-sm: 10px;
	--r-md: 14px;
	--r-lg: 20px;
	--r-xl: 28px;

	/* transitions */
	--ease: cubic-bezier(.22, 1, .36, 1);
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: 'Outfit', system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: var(--section-y) 0;
	position: relative;
}

/* ── Section Headers ── */
.section__label {
	font-family: 'Zen Dots', cursive;
	font-size: .75rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.section__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 48px;
	max-width: 600px;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	border: none;
	cursor: pointer;
	border-radius: var(--r-md);
	background: var(--primary);
	color: #fff;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .12));
	opacity: 0;
	transition: opacity .3s;
}

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

.btn--sm {
	font-size: .85rem;
	padding: 10px 20px;
}

.btn--lg {
	font-size: 1.05rem;
	padding: 16px 32px;
	border-radius: var(--r-lg);
}

.btn--xl {
	font-size: 1.15rem;
	padding: 20px 40px;
	border-radius: var(--r-xl);
}

.btn--glow:hover {
	transform: translateY(-2px);
	box-shadow: var(--glow-p);
}

.btn__icon {
	filter: brightness(0) invert(1);
	flex-shrink: 0;
}

/* ══════════════ NAVIGATION ══════════════ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 16px 0;
	transition: background .4s, backdrop-filter .4s, padding .3s;
}

.nav.scrolled {
	background: rgba(11, 11, 20, .85);
	backdrop-filter: blur(16px);
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.05rem;
}

.nav__logo-icon {
	font-size: 1.6rem;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav__logo-text {
	font-family: 'Zen Dots', cursive;
	font-size: .85rem;
	letter-spacing: .02em;
}

/* ══════════════ HERO ══════════════ */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* perspective grid */
.hero__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 20%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 20%, transparent 70%);
	opacity: .35;
}

.hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	will-change: transform;
	animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero__orb--1 {
	width: 500px;
	height: 500px;
	background: rgba(124, 58, 237, .25);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.hero__orb--2 {
	width: 400px;
	height: 400px;
	background: rgba(236, 72, 153, .18);
	bottom: -10%;
	right: -5%;
	animation-delay: -4s;
}

.hero__orb--3 {
	width: 300px;
	height: 300px;
	background: rgba(56, 189, 248, .12);
	top: 30%;
	right: 20%;
	animation-delay: -8s;
}

@keyframes orbFloat {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(30px, -40px) scale(1.08);
	}
}

/* hero image */
.hero__img-slot {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 55%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	pointer-events: none;
}

.hero__img-slot img {
	max-height: 90vh;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 40px rgba(124, 58, 237, .25));
}

.hero__img-overlay {
	display: none;
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-top: 120px;
	padding-bottom: 80px;
	max-width: 680px;
	margin-right: auto;
}

.hero__tag {
	font-family: 'Zen Dots', cursive;
	font-size: .75rem;
	color: var(--neon);
	letter-spacing: .12em;
	margin-bottom: 20px;
}

.hero__title {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	font-weight: 900;
	line-height: 1.08;
	margin-bottom: 24px;
}

.hero__title-line {
	display: block;
}

.hero__title-accent {
	display: block;
	background: linear-gradient(135deg, var(--primary-l), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__sub {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: var(--text-dim);
	max-width: 480px;
	margin-bottom: 36px;
	line-height: 1.7;
}

.hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--text-muted);
	animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll img {
	filter: brightness(0) saturate(100%) invert(60%) sepia(5%) saturate(500%) hue-rotate(220deg);
}

@keyframes scrollBounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

/* ══════════════ ABOUT ══════════════ */
.about__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
}

.about__card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 36px 28px;
	transition: border-color .3s, background .3s, transform .3s var(--ease);
	position: relative;
	overflow: hidden;
}

.about__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	opacity: 0;
	transition: opacity .3s;
}

.about__card:hover {
	border-color: var(--border-h);
	background: var(--bg-card-h);
	transform: translateY(-4px);
}

.about__card:hover::before {
	opacity: 1;
}

.about__card-num {
	font-family: 'Zen Dots', cursive;
	font-size: .7rem;
	color: var(--text-muted);
	letter-spacing: .08em;
	margin-bottom: 16px;
}

.about__card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.about__card p {
	color: var(--text-dim);
	font-size: .92rem;
	line-height: 1.65;
}

/* ══════════════ FEATURES ══════════════ */
.features {
	background: var(--surface) url('../img/features.png') center/cover no-repeat;
	position: relative;
}

.features::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 46, .35);
	z-index: 0;
}

.features>.container {
	position: relative;
	z-index: 1;
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
}

.features__card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 32px 24px;
	text-align: center;
	transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}

.features__card:hover {
	border-color: var(--border-h);
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(124, 58, 237, .12);
}

.features__icon-wrap {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(236, 72, 153, .08));
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	transition: border-color .3s, background .3s;
}

.features__card:hover .features__icon-wrap {
	border-color: var(--border-h);
	background: linear-gradient(135deg, rgba(124, 58, 237, .2), rgba(236, 72, 153, .15));
}

.features__icon {
	filter: brightness(0) saturate(100%) invert(35%) sepia(60%) saturate(3000%) hue-rotate(250deg) brightness(1.1);
	transition: filter .3s;
}

.features__card:hover .features__icon {
	filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(4000%) hue-rotate(250deg) brightness(1.3);
}

.features__card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.features__card p {
	color: var(--text-dim);
	font-size: .88rem;
	line-height: 1.6;
}

/* ══════════════ GALLERY ══════════════ */
.gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
}

.gallery__item {
	border-radius: var(--r-md);
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.gallery__item--tall {
	grid-row: span 2;
}

.gallery__item--wide {
	grid-column: span 2;
}

.gallery__placeholder {
	width: 100%;
	height: 100%;
	background: var(--bg-card);
	border: 2px dashed var(--text-muted);
	border-radius: var(--r-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: var(--text-muted);
	font-size: .8rem;
	opacity: .4;
	transition: opacity .3s, border-color .3s;
}

.gallery__placeholder small {
	font-size: .65rem;
}

.gallery__item:hover .gallery__placeholder {
	opacity: .6;
	border-color: var(--primary);
}

/* when real images are added: */
.gallery__item a {
	display: block;
	height: 100%;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease), filter .3s;
}

.gallery__item:hover img {
	transform: scale(1.06);
	filter: brightness(1.1);
}

/* ══════════════ NEWS / EVENTS ══════════════ */
.news__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
}

.news__card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
	position: relative;
	display: flex;
	flex-direction: column;
}

.news__card:hover {
	border-color: var(--border-h);
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(124, 58, 237, .12);
}

.news__card--featured {
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.news__card--featured .news__img-slot {
	height: 100%;
	min-height: 260px;
}

.news__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	font-family: 'Zen Dots', cursive;
	font-size: .65rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	backdrop-filter: blur(8px);
}

.news__badge--event {
	background: rgba(124, 58, 237, .6);
	color: #fff;
	box-shadow: 0 2px 12px rgba(124, 58, 237, .3);
}

.news__badge--news {
	background: rgba(236, 72, 153, .5);
	color: #fff;
	box-shadow: 0 2px 12px rgba(236, 72, 153, .25);
}

.news__img-slot {
	position: relative;
	height: 190px;
	overflow: hidden;
}

.news__img-slot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease);
}

.news__card:hover .news__img-slot img {
	transform: scale(1.05);
}

.news__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bg-card), var(--surface));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: var(--text-muted);
	font-size: .8rem;
	opacity: .5;
}

.news__img-placeholder small {
	font-size: .65rem;
}

.news__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.news__card--featured .news__body {
	justify-content: center;
	padding: 32px;
}

.news__date {
	font-family: 'Zen Dots', cursive;
	font-size: .68rem;
	color: var(--neon);
	letter-spacing: .08em;
	margin-bottom: 10px;
}

.news__title {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
	transition: color .3s;
}

.news__card:hover .news__title {
	color: var(--primary-l);
}

.news__card--featured .news__title {
	font-size: 1.35rem;
}

.news__excerpt {
	color: var(--text-dim);
	font-size: .88rem;
	line-height: 1.6;
	flex: 1;
}

.news__meta {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.news__location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .8rem;
	color: var(--accent-l);
}

.news__location svg {
	flex-shrink: 0;
	stroke: var(--accent);
}

/* stagger news cards */
.news__grid .anim-up:nth-child(2) {
	transition-delay: .08s;
}

.news__grid .anim-up:nth-child(3) {
	transition-delay: .16s;
}

.news__grid .anim-up:nth-child(4) {
	transition-delay: .24s;
}

/* ══════════════ STEPS ══════════════ */
.steps {
	background: var(--surface) url('../img/steps.png') center/cover no-repeat;
	position: relative;
}

.steps::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 46, .35);
	z-index: 0;
}

.steps>.container {
	position: relative;
	z-index: 1;
}

.steps__track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.steps__card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 36px 28px;
	text-align: center;
	flex: 1;
	max-width: 280px;
	position: relative;
	transition: border-color .3s, transform .3s var(--ease);
}

.steps__card:hover {
	border-color: var(--border-h);
	transform: translateY(-4px);
}

.steps__num {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff;
	font-weight: 800;
	font-size: .85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(124, 58, 237, .4);
}

.steps__icon-wrap {
	margin: 8px auto 16px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.steps__icon-wrap img {
	filter: brightness(0) saturate(100%) invert(35%) sepia(60%) saturate(3000%) hue-rotate(250deg) brightness(1.1);
}

.steps__card h3 {
	font-size: .95rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.steps__card p {
	color: var(--text-dim);
	font-size: .85rem;
	line-height: 1.55;
}

.steps__divider {
	flex-shrink: 0;
	color: var(--text-muted);
}

.steps__divider img {
	filter: brightness(0) saturate(100%) invert(60%) sepia(5%) saturate(500%) hue-rotate(220deg);
	opacity: .4;
}

/* ══════════════ FINAL CTA ══════════════ */
.cta {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.cta__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
}

.cta__orb--1 {
	width: 500px;
	height: 500px;
	background: rgba(124, 58, 237, .2);
	top: -30%;
	left: 10%;
}

.cta__orb--2 {
	width: 400px;
	height: 400px;
	background: rgba(236, 72, 153, .15);
	bottom: -30%;
	right: 10%;
}

.cta__inner {
	position: relative;
	z-index: 1;
}

.cta__title {
	font-size: clamp(1.6rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.cta__title span {
	background: linear-gradient(135deg, var(--primary-l), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta__sub {
	color: var(--text-dim);
	font-size: 1.05rem;
	max-width: 520px;
	margin: 0 auto 36px;
	line-height: 1.65;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
	border-top: 1px solid var(--border);
	padding: 24px 0;
}

.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer__copy {
	font-size: .8rem;
	color: var(--text-muted);
}

.footer__tg {
	opacity: .4;
	transition: opacity .3s;
}

.footer__tg:hover {
	opacity: .8;
}

.footer__tg img {
	filter: brightness(0) saturate(100%) invert(60%) sepia(5%) saturate(500%) hue-rotate(220deg);
}

/* ══════════════ ANIMATIONS ══════════════ */
/* fade-in on load (hero) */
.anim-fade {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp .8s var(--ease) forwards;
}

.anim-fade[data-delay="0"] {
	animation-delay: .1s;
}

.anim-fade[data-delay="1"] {
	animation-delay: .25s;
}

.anim-fade[data-delay="2"] {
	animation-delay: .4s;
}

.anim-fade[data-delay="3"] {
	animation-delay: .55s;
}

.anim-fade[data-delay="4"] {
	animation-delay: .8s;
}

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

/* scroll-triggered */
.anim-up {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.anim-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* stagger children */
.about__grid .anim-up:nth-child(2) {
	transition-delay: .1s;
}

.about__grid .anim-up:nth-child(3) {
	transition-delay: .2s;
}

.features__grid .anim-up:nth-child(2) {
	transition-delay: .08s;
}

.features__grid .anim-up:nth-child(3) {
	transition-delay: .16s;
}

.features__grid .anim-up:nth-child(4) {
	transition-delay: .24s;
}

.features__grid .anim-up:nth-child(5) {
	transition-delay: .32s;
}

.features__grid .anim-up:nth-child(6) {
	transition-delay: .4s;
}

/* ══════════════ RESPONSIVE ══════════════ */

/* tablet */
@media (max-width: 1024px) {
	.hero__img-slot {
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		opacity: 1;
	}

	.hero__img-slot img {
		width: 100%;
		height: 100%;
		max-height: none;
		max-width: none;
		object-fit: cover;
		object-position: center 25%;
		filter: brightness(.45) saturate(1.3);
	}

	.hero__img-overlay {
		display: block;
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background:
			linear-gradient(to top, var(--bg) 5%, rgba(11, 11, 20, .35) 45%, rgba(11, 11, 20, .2) 70%, rgba(11, 11, 20, .5) 100%);
	}

	.hero__content {
		max-width: 100%;
		text-align: center;
		position: relative;
		z-index: 2;
		text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
	}

	.hero__sub {
		margin-left: auto;
		margin-right: auto;
	}

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

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

	.gallery__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 180px;
	}

	.news__card--featured {
		grid-column: span 2;
		grid-template-columns: 1fr 1fr;
	}

	.gallery__item--tall {
		grid-row: span 1;
	}

	.gallery__item--wide {
		grid-column: span 2;
	}
}

/* mobile */
@media (max-width: 768px) {
	:root {
		--gap: 16px;
	}

	.container {
		padding: 0 18px;
	}

	.nav__logo-text {
		font-size: .75rem;
	}

	.hero {
		min-height: 100vh;
		min-height: 100dvh;
	}

	.hero__img-slot {
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		opacity: 1;
	}

	.hero__img-slot img {
		width: 100%;
		height: 100%;
		max-height: none;
		max-width: none;
		object-fit: cover;
		object-position: center 30%;
		filter: brightness(.5) saturate(1.3);
	}

	.hero__img-overlay {
		background:
			linear-gradient(to top, var(--bg) 8%, rgba(11, 11, 20, .5) 50%, rgba(11, 11, 20, .3) 75%, rgba(11, 11, 20, .6) 100%);
	}

	.hero__content {
		padding-top: 140px;
		padding-bottom: 60px;
		text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
	}

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

	.news__grid {
		grid-template-columns: 1fr;
	}

	.news__card--featured {
		grid-column: span 1;
		display: flex;
		flex-direction: column;
	}

	.news__card--featured .news__img-slot {
		min-height: 200px;
	}

	.gallery__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 150px;
	}

	.gallery__item--wide {
		grid-column: span 1;
	}

	.steps__track {
		flex-direction: column;
		gap: 32px;
	}

	.steps__divider {
		transform: rotate(90deg);
	}

	.steps__card {
		max-width: 100%;
		width: 100%;
	}

	.btn--xl {
		font-size: 1rem;
		padding: 16px 28px;
		width: 100%;
		white-space: normal;
		text-align: center;
		justify-content: center;
		align-items: center;
	}

	.btn--xl .btn__icon {
		flex-shrink: 0;
		order: -1;
	}

	.hide-mobile {
		display: none;
	}
}

/* small phone */
@media (max-width: 374px) {
	.btn--xl {
		font-size: .9rem;
		padding: 14px 20px;
	}

	.hero__title {
		font-size: 1.9rem;
	}

	.nav__logo-icon {
		font-size: 1.3rem;
	}

	.nav__logo-text {
		font-size: .7rem;
	}
}