:root {
	--orange: #FF5500;
	--orange-light: #FF7733;
	--orange-dark: #CC4400;
	--orange-glow: rgba(255, 85, 0, 0.35);
	--black: #0A0A0A;
	--dark: #111111;
	--dark2: #181818;
	--dark3: #202020;
	--border: rgba(255, 85, 0, 0.15);
	--white: #FFFFFF;
	--text: #CCCCCC;
	--muted: #777777;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--black);
	color: var(--white);
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	transition: background .3s;
}

nav.scrolled {
	background: rgba(10, 10, 10, 0.98);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.nav-logo img {
	height: 42px;
	width: auto;
}

.nav-logo-text {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
	letter-spacing: 1px;
	color: #fff;
}

.nav-logo-text span {
	color: var(--orange);
}

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

.nav-links a {
	color: var(--muted);
	text-decoration: none;
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .5px;
	transition: color .2s;
}

.nav-links a:hover {
	color: #fff;
}

.nav-btn {
	background: var(--orange);
	color: #fff !important;
	padding: 9px 22px;
	border-radius: 8px;
	font-size: .875rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .5px;
	transition: background .2s, transform .15s, box-shadow .2s;
	border: none;
	cursor: pointer;
	display: inline-block;
}

.nav-btn:hover {
	background: var(--orange-light);
	transform: translateY(-1px);
	box-shadow: 0 4px 20px var(--orange-glow);
}

/* Burger */
.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
}

.burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .3s, opacity .3s;
}

.burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
	opacity: 0;
}

.burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	z-index: 800;
	background: rgba(10, 10, 10, 0.98);
	border-bottom: 1px solid var(--border);
	flex-direction: column;
	align-items: center;
	gap: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease, padding .35s ease;
}

.mobile-menu.open {
	max-height: 500px;
	padding: 20px 0 28px;
}

.mobile-menu a {
	color: var(--text);
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 14px 0;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: color .2s;
}

.mobile-menu a:hover {
	color: var(--orange);
}

.mobile-menu .nav-btn {
	margin-top: 14px;
	width: calc(100% - 48px);
}

@media(max-width:850px) {
	.nav-links {
		display: none;
	}

	.mobile-menu {
		display: flex;
	}

	.burger {
		display: flex;
	}

	nav {
		padding: 0 20px;
	}

	.mobile-menu.open {
		height: 500px;
	}

}

/* HERO */
#hero {
	min-height: 100vh;
	padding: 120px 40px 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: url('../img/wilddawn3.png');
}

#hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.60) 50%, rgba(10, 10, 10, 0.85) 100%);
}

#hero .hero-grid,
#hero .hero-floor,
#hero .hero-glow,
#hero .hero-content {
	position: relative;
	z-index: 2;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 85, 0, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 85, 0, 0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	animation: gridScroll 25s linear infinite;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

@keyframes gridScroll {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 56px 56px;
	}
}

.hero-floor {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 52%;
	background-image:
		linear-gradient(rgba(255, 85, 0, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 85, 0, 0.1) 1px, transparent 1px);
	background-size: 72px 72px;
	transform: perspective(700px) rotateX(72deg);
	transform-origin: bottom center;
	mask-image: linear-gradient(to top, rgba(0, 0, 0, .6), transparent 80%);
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 85, 0, 0.12), transparent 65%);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
	animation: glowPulse 5s ease-in-out infinite;
	pointer-events: none;
}

@keyframes glowPulse {

	0%,
	100% {
		opacity: .7;
		transform: translate(-50%, -55%) scale(1);
	}

	50% {
		opacity: 1;
		transform: translate(-50%, -55%) scale(1.07);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 820px;
}

.hero-logo {
	width: 220px;
	height: auto;
	margin: 0 auto 28px;
	opacity: 0;
	animation: fadeUp .8s forwards .2s;
	filter: drop-shadow(0 0 30px rgba(255, 85, 0, 0.4));
}

.hero-eyebrow {
	font-size: .75rem;
	letter-spacing: 5px;
	color: var(--orange);
	text-transform: uppercase;
	margin-bottom: 16px;
	font-weight: 600;
	opacity: 0;
	animation: fadeUp .8s forwards .4s;
}

.hero-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: clamp(3.2rem, 7.5vw, 6rem);
	line-height: 1.0;
	letter-spacing: -1px;
	margin-bottom: 20px;
	opacity: 0;
	animation: fadeUp .8s forwards .55s;
}

.hero-title .orange {
	color: var(--orange);
}

.hero-sub {
	font-size: 1.05rem;
	color: var(--text);
	line-height: 1.75;
	max-width: 520px;
	margin: 0 auto 44px;
	font-weight: 400;
	opacity: 0;
	animation: fadeUp .8s forwards .7s;
}

.hero-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp .8s forwards .85s;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

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

/* BUTTONS */
.btn-primary {
	background: var(--orange);
	color: #fff;
	padding: 14px 30px;
	border-radius: 10px;
	font-weight: 700;
	font-size: .95rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	letter-spacing: .3px;
	transition: background .2s, transform .15s, box-shadow .2s;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: var(--orange-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px var(--orange-glow);
}

.btn-outline {
	background: transparent;
	color: #fff;
	padding: 14px 30px;
	border-radius: 10px;
	border: 2px solid rgba(255, 85, 0, .35);
	font-weight: 700;
	font-size: .95rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	letter-spacing: .3px;
	transition: border-color .2s, background .2s, transform .15s;
}

.btn-outline:hover {
	border-color: var(--orange);
	background: rgba(255, 85, 0, .08);
	transform: translateY(-2px);
}

/* STATS */
.stats-bar {
	background: var(--dark2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat-item {
	padding: 28px 20px;
	text-align: center;
	position: relative;
}

.stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: var(--border);
}

.stat-num {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 1.75rem;
	color: var(--orange);
	display: block;
	text-shadow: 0 0 16px rgba(255, 85, 0, .4);
}

.stat-lbl {
	font-size: .7rem;
	letter-spacing: 1.5px;
	color: var(--muted);
	text-transform: uppercase;
	margin-top: 4px;
	display: block;
}

.stat-live {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.live-dot {
	width: 6px;
	height: 6px;
	background: #00e87a;
	border-radius: 50%;
	animation: livePulse 1.5s infinite;
	box-shadow: 0 0 6px #00e87a;
}

@keyframes livePulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .3;
	}
}

@media(max-width:600px) {
	.stats-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat-item:nth-child(2)::after {
		display: none;
	}

	.stat-item:nth-child(1):not(:last-child)::after,
	.stat-item:nth-child(3):not(:last-child)::after {
		display: block;
	}
}

/* SECTION COMMONS */
section {
	padding: 90px 40px;
}

@media(max-width:768px) {
	section {
		padding: 70px 20px;
	}
}

.section-tag {
	font-size: .7rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--orange);
	font-weight: 700;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-tag::before {
	content: '';
	width: 28px;
	height: 2px;
	background: var(--orange);
	flex-shrink: 0;
}

.section-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: clamp(2rem, 4.5vw, 3rem);
	margin-bottom: 14px;
	line-height: 1.1;
}

.section-title span {
	color: var(--orange);
}

.section-sub {
	color: var(--muted);
	font-size: .95rem;
	max-width: 520px;
	line-height: 1.75;
	margin-bottom: 54px;
}

/* REVEAL */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

/* GAMES */
#games {
	background: var(--dark);
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
}

.game-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	transition: transform .3s, border-color .3s, box-shadow .3s;
	cursor: pointer;
}

.game-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 85, 0, .5);
	box-shadow: 0 16px 48px rgba(255, 85, 0, .12);
}

.game-thumb {
	aspect-ratio: 16/9;
	background: var(--dark3);
	position: relative;
	overflow: hidden;
}

.game-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.game-card:hover .game-thumb img {
	transform: scale(1.05);
}

.game-thumb-ph {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a1a, #252525);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--muted);
	font-size: .7rem;
	letter-spacing: 2px;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	text-align: center;
	padding: 16px;
}

.game-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, .8);
	border: 1px solid rgba(255, 85, 0, .3);
	border-radius: 20px;
	padding: 4px 10px;
	font-size: .62rem;
	letter-spacing: 1.5px;
	color: var(--orange);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 5px;
}

.game-info {
	padding: 18px 20px 20px;
}

.game-name {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 1.05rem;
	margin-bottom: 12px;
}

.game-meta {
	display: flex;
	gap: 18px;
	margin-bottom: 16px;
}

.game-meta-val {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 1rem;
	color: var(--orange);
	display: block;
}

.game-meta-key {
	font-size: .62rem;
	letter-spacing: 1.5px;
	color: var(--muted);
	text-transform: uppercase;
	margin-top: 1px;
	display: block;
}

.game-play {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 85, 0, .1);
	border: 1px solid rgba(255, 85, 0, .25);
	color: var(--orange);
	border-radius: 8px;
	padding: 8px 16px;
	font-size: .78rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .5px;
	transition: background .2s, border-color .2s;
}

.game-play:hover {
	background: rgba(255, 85, 0, .2);
	border-color: var(--orange);
}

.play-tri {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid currentColor;
}


/* Partners */
#partner {
	background: var(--dark);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partner-item {
  width: 320px;
  max-width: 30%;
  transition: transform 0.2s ease;
}

.partner-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.partner-item:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 900px) {
  .partner-item {
    width: 400px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .partner-item {
    width: 400px;
    max-width: 45%;
  }
}

/* TEAM */
#team {
	background: var(--black);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	width: 100%;
}

.team-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 28px;
	position: relative;
	transition: border-color .3s, box-shadow .3s;
	overflow: hidden;
}

.team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 56px;
	height: 3px;
	background: var(--orange);
	border-radius: 3px 0 0 0;
}

.team-card:hover {
	border-color: rgba(255, 85, 0, .4);
	box-shadow: 0 0 36px rgba(255, 85, 0, .08);
}

.team-avatar {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	border: 2px solid rgba(255, 85, 0, .25);
	background: var(--dark3);
	overflow: hidden;
	margin-bottom: 16px;
}

.team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-avatar-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Nunito', sans-serif;
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--orange);
	background: linear-gradient(135deg, #1a1a1a, #252525);
}

.team-role {
	font-size: .65rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange);
	font-weight: 700;
	margin-bottom: 6px;
}

.team-name {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	margin-bottom: 3px;
}

.team-handle {
	font-size: .8rem;
	color: var(--muted);
	margin-bottom: 14px;
	font-weight: 500;
}

.team-bio {
	font-size: .88rem;
	color: #999;
	line-height: 1.75;
	margin-bottom: 18px;
}

.team-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--orange);
	font-size: .78rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .5px;
	transition: opacity .2s;
}

.team-link:hover {
	opacity: .7;
}

/* FAQ */
#faq {
	background: var(--black);
}

.faq-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.faq-item {
	background: var(--orange);
	border: 1px solid var(--orange);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color .25s, background .25s;
	margin-bottom: 12px;
}

.faq-item.open {
	border-color: var(--orange-dark);
	background: var(--dark2);
}

.faq-q {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	text-align: left;
}

.faq-q-text {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: .95rem;
	color: #fff;
}

.faq-icon {
	width: 26px;
	height: 26px;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
	transition: transform .3s, background .25s, border-color .25s;
	font-family: monospace;
	line-height: 1;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: var(--orange);
	color: #fff;
	border-color: var(--orange);
}

.faq-item.open .faq-q-text {
	color: #fff;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	padding: 0 22px;
	color: #999;
	font-size: .9rem;
	line-height: 1.75;
	transition: max-height .4s ease, padding .3s;
}

.faq-item.open .faq-a {
	max-height: 300px;
	padding: 0 22px 20px;
}

.faq-a a {
	color: var(--orange);
	text-decoration: none;
}

.faq-a a:hover {
	text-decoration: underline;
}

/* CONTACT */
#contact {
	background: var(--dark);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 70px;
	align-items: start;
}

@media(max-width:900px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 26px;
}

.contact-icon {
	width: 42px;
	height: 42px;
	background: rgba(255, 85, 0, .1);
	border: 1px solid rgba(255, 85, 0, .2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.contact-label {
	font-size: .65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	font-weight: 700;
	margin-bottom: 4px;
}

.contact-val {
	font-size: .9rem;
	color: var(--text);
}

.contact-val a {
	color: var(--text);
	text-decoration: none;
	transition: color .2s;
}

.contact-val a:hover {
	color: var(--orange);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

@media(max-width:500px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

.form-group {
	margin-bottom: 14px;
}

.form-label {
	font-size: .65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 600;
	display: block;
	margin-bottom: 7px;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	background: var(--dark2);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	padding: 12px 16px;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: .9rem;
	outline: none;
	transition: border-color .25s, box-shadow .25s;
	-webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(255, 85, 0, .12);
}

.form-textarea {
	resize: vertical;
	min-height: 130px;
}

.form-select option {
	background: var(--dark2);
}

.form-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 20px;
	cursor: pointer;
}

.form-check input {
	width: 16px;
	height: 16px;
	accent-color: var(--orange);
	flex-shrink: 0;
	margin-top: 2px;
	cursor: pointer;
}

.form-check label {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.5;
	cursor: pointer;
}

.form-check a {
	color: var(--orange);
	text-decoration: none;
	cursor: pointer;
}

.form-check a:hover {
	text-decoration: underline;
}

.form-success {
	display: none;
	text-align: center;
	padding: 28px;
	background: rgba(255, 85, 0, .08);
	border: 1px solid rgba(255, 85, 0, .25);
	border-radius: 12px;
	color: var(--orange);
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	letter-spacing: 1px;
	font-size: 1rem;
}

/* PRIVACY MODAL */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, .8);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-overlay.open {
	display: flex;
}

.modal {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 16px;
	max-width: 640px;
	width: 100%;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.modal-head {
	padding: 22px 24px 18px;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-head h2 {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 1.2rem;
}

.modal-close {
	background: none;
	border: none;
	color: var(--muted);
	font-size: 1.4rem;
	cursor: pointer;
	padding: 4px;
	transition: color .2s;
	line-height: 1;
}

.modal-close:hover {
	color: #fff;
}

.modal-body {
	padding: 24px;
	overflow-y: auto;
	flex: 1;
	font-size: .88rem;
	color: var(--text);
	line-height: 1.75;
}

.modal-body h3 {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	color: #fff;
	margin: 20px 0 8px;
	font-size: .95rem;
}

.modal-body h3:first-child {
	margin-top: 0;
}

/* FOOTER */
footer {
	background: var(--black);
	border-top: 1px solid var(--border);
	padding: 54px 40px 36px;
}

@media(max-width:768px) {
	footer {
		padding: 40px 20px 28px;
	}
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 44px;
}

@media(max-width:768px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.footer-logo img {
	height: 36px;
}

.footer-brand {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 1rem;
	color: #fff;
}

.footer-brand span {
	color: var(--orange);
}

.footer-desc {
	font-size: .85rem;
	color: var(--muted);
	line-height: 1.75;
	max-width: 310px;
}

.footer-col-title {
	font-size: .65rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange);
	font-weight: 700;
	margin-bottom: 16px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.footer-links a {
	color: var(--muted);
	font-size: .875rem;
	text-decoration: none;
	transition: color .2s;
}

.footer-links a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .05);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copy {
	font-size: .78rem;
	color: #444;
	letter-spacing: .5px;
}

.footer-copy span {
	color: var(--orange);
}

.footer-tag {
	font-size: .72rem;
	color: #333;
}