/* Packages */

@font-face {
	font-family: 'InterIng';
	src: url('./Inter/Regular-28.ttf') format('truetype');
}

/* Packages */

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

body {
	font-family: 'InterIng', sans-serif;
	background: #09111d;
	color: #fff;
}

.welcome {
	/* display: none !important; */
	padding: 2rem;
	text-align: center;

	.logo {
		width: 120px;
		height: 120px;
		margin: auto;
		border-radius: 50%;
		background:
			linear-gradient(135deg,
				#d4af37,
				#ffe38d);
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow:
			0 0 50px rgba(212, 175, 55, .45);
	}

	.title {
		font-family: serif;
		font-size: 2.4rem;
		letter-spacing: 4px;
		color: #fff;
	}
}



.container {
	padding: 1rem;
}

/*************************************************
Signage
*************************************************/

.tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
}

.tier-card {
	background: #ffffff;
	border-radius: 2rem;
	padding: 2.2rem 1.8rem 2.5rem;
	box-shadow: 0 12px 30px rgba(0, 20, 50, 0.06), 0 4px 10px rgba(0, 0, 0, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(209, 219, 235, 0.4);
	backdrop-filter: blur(2px);
}

.tier-name {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0b1a33;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.tier-name small {
	font-size: 1rem;
	font-weight: 500;
	color: #5b6e8e;
	margin-left: auto;
	background: #f0f4fe;
	padding: 0.2rem 0.8rem;
	border-radius: 30px;
	letter-spacing: 0;
}

.price {
	font-size: 2.8rem;
	font-weight: 700;
	color: #0b1a33;
	margin: 0.8rem 0 0.2rem;
	letter-spacing: -0.02em;
}

.price span {
	font-size: 1.2rem;
	font-weight: 500;
	color: #5f738f;
	margin-left: 4px;
}

.price-note {
	font-size: 0.95rem;
	color: #5f738f;
	border-bottom: 1px solid #e6ecf5;
	padding-bottom: 1.2rem;
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	margin: 0.5rem 0 1.8rem;
	flex: 1;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid #f0f4fc;
	color: #1f314a;
	font-size: 1rem;
	font-weight: 450;
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list li::before {
	content: "✓";
	font-weight: 700;
	font-size: 1.1rem;
	color: #2a6b9e;
	display: inline-block;
	width: 1.4rem;
	flex-shrink: 0;
	background: #eef6fe;
	border-radius: 50%;
	text-align: center;
	line-height: 1.4rem;
	height: 1.4rem;
}

.tier-btn {
	display: block;
	width: 100%;
	padding: 1rem;
	font-weight: 600;
	font-size: 1.1rem;
	border: none;
	background: #eef3fc;
	color: #1f3a6b;
	border-radius: 60px;
	cursor: default;
	transition: background 0.15s, box-shadow 0.15s;
	text-align: center;
	letter-spacing: 0.01em;
	margin-top: 0.5rem;
	font-family: 'Inter', sans-serif;
	border: 1px solid transparent;
}



/*************************************************
TEXT
*************************************************/



.line {

	width: 120px;

	height: 4px;

	margin: 35px auto;

	border-radius: 30px;

	background: #d4af37;

}

.tagline {

	font-size: 24px;

	font-weight: 300;

	line-height: 1.8;

	color: #d7d7d7;

}

.buttons {

	margin-top: 45px;

	display: flex;

	justify-content: center;

	gap: 20px;

	flex-wrap: wrap;

}

.btn {

	padding: 16px 42px;

	border-radius: 40px;

	text-decoration: none;

	font-weight: 600;

	font-size: 15px;

	transition: .35s;

	cursor: pointer;

}

.primary {

	background: #d4af37;

	color: #111;

}

.primary:hover {

	transform: translateY(-4px);

	box-shadow: 0 12px 25px rgba(212, 175, 55, .4);

}

.secondary {

	border: 1px solid rgba(255, 255, 255, .15);

	background: rgba(255, 255, 255, .05);

	color: #fff;

}

.secondary:hover {

	background: rgba(255, 255, 255, .12);

	transform: translateY(-4px);

}

footer {

	margin-top: 55px;

	font-size: 13px;

	letter-spacing: 6px;

	text-transform: uppercase;

	color: #8f98a4;

}



/*************************************************
RESPONSIVE
*************************************************/



@media(max-width:768px) {


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



	.logo {

		width: 90px;
		height: 90px;
		font-size: 42px;

	}

	h1 {

		font-size: 48px;

	}

	.tagline {

		font-size: 18px;

	}

}