* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--index: calc(1vw + 1vh);
	--text: #e7e7e0;
	--transition: transform .75s cubic-bezier(.075, .5, 0, 1);
}
@font-face {
	font-family: raleway_f;
	src: url(../fonts/raleway-regular.woff2);
}
@font-face {
	font-family: raleway_f;
	src: url(../fonts/raleway-black.woff2);
	font-weight: 900;
}
body {
	background-color: #010101;
	font-family: raleway_f, sans-serif;
	line-height: 1.55;
}
.main-header {
	position: relative;
}
.main-header::after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	height: calc(var(--index) * 10);
	background-image: url(../img/ground.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	bottom: calc(var(--index) * -4.5);
}
.layers {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.layer {
	height: 100%;
	width: 100%;
	position: absolute;
	background-size: cover;
	background-position: center;
	will-change: transform;
	z-index: 2;
	transition: var(--transition);
}
.layers__base {
	transform: translate3d(0, calc(var(--scrollTop) / 1.6), 0);
	z-index: 0;
}
.layers__middle {
	transform: translate3d(0, calc(var(--scrollTop) / 2.5), 0);
}
.layers__front {
	transform: translate3d(0, calc(var(--scrollTop) / 5.7), 0);
}
.layer__header {
	z-index: 1;
	transform: translate3d(0, calc(var(--scrollTop) / 2), 0);
	transition: var(--transition);
	will-change: transform;
	text-transform: uppercase;
	font-weight: 900;
	color: var(--text);
	text-shadow: 0 0 15px #9d822b;
}
.layers__title {
	font-size: calc(var(--index) * 2.65);
	letter-spacing: calc(var(--index) / 2.25);
}
.layers__caption {
	font-size: calc(var(--index) / 1.175);
	letter-spacing: calc(var(--index) / 3.5);
	margin-top: calc(var(--index) * -.75);
}
.main-article {
	--main-article-transform: translate3d(0, calc(var(--scrollTop) / -7.5), 0);
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	color: var(--text);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	top: -1px;
	z-index: 10;
}
.main-article__header {
	text-transform: uppercase;
	font-size: calc(var(--index) * 1.8);
	letter-spacing: calc(var(--index) / 7.5);
	transform: var(--main-article-transform);
	transition: var(--transition);
	will-change: transform;
}
.main-article__paragraph {
	max-width: calc(var(--index) * 30);
	font-size: calc(var(--index) * .9);
	margin-top: calc(var(--index) / 1.25);
	transform: var(--main-article-transform);
	transition: var(--transition);
	will-change: transform;
}
.content {
	will-change: transform;
}
.copy {
	position: absolute;
	bottom: calc(var(--index) * 2.5);
	opacity: .45;
	font-size: calc(var(--index) * .75);
	letter-spacing: calc(var(--index) / 37.5);
}

/* === KADAMI VPN STYLES === */
.layers__title {
	font-family: 'Cormorant Garamond', serif !important;
	font-weight: 300 !important;
	letter-spacing: 0.15em !important;
	font-size: 80px !important;
}
.layer__header {
	text-decoration: none !important;
	margin-top: -4.5% !important;
}
.cta-glow {
	display: inline-block;
	padding: 20px;
	background: transparent;
	border: none;
	color: white;
	text-decoration: none;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-size: 32px;
	letter-spacing: 0.1em;
}
.cta-glow:hover {
	text-shadow: 0 0 30px rgba(255,255,255,0.8);
}
.tariffs {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.tariff {
	background: rgba(62, 50, 38, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(90, 75, 55, 0.5);
	border-radius: 20px;
	padding: 30px 40px;
	text-align: center;
	text-decoration: none;
	color: white;
	transition: all 0.3s ease;
	position: relative;
	min-width: 180px;
	font-family: 'Cormorant Garamond', serif;
}
.tariff:hover {
	transform: translateY(-10px);
	background: rgba(75, 60, 45, 0.15);
	box-shadow: 0 20px 40px rgba(30, 25, 20, 0.5);
}
.tariff--popular {
	border-color: rgba(120, 100, 70, 0.6);
	box-shadow: 0 0 25px rgba(80, 65, 45, 0.4);
}
.tariff__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, rgba(140, 120, 80, 0.95), rgba(100, 85, 60, 0.95));
	color: #1a1a1a;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
}
.tariff__period { font-size: 18px; margin-bottom: 10px; opacity: 0.9; }
.tariff__price { font-size: 36px; font-weight: bold; }
.tariff__save { font-size: 14px; color: rgba(180, 160, 120, 0.9); margin-top: 5px; }
.main-article__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
a.copy { text-decoration: none; color: inherit; }
a.copy:hover { text-decoration: underline; }

/* MOBILE */
@media (max-width: 768px) {
	.layers__title { font-size: 42px !important; }
	.tariffs { flex-direction: column; align-items: center; padding: 0 20px; }
	.tariff { width: 100%; max-width: 280px; padding: 20px; }
	.tariff__price { font-size: 28px; }
	.cta-glow { font-size: 22px; }
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .layers__base, .layers__middle, .layers__front, .layer__header { transform: none !important; }
    .layers { height: 50vh; min-height: 350px; }
    .layers__title { font-size: 38px !important; }
    .main-article { min-height: auto; padding: 40px 20px 60px; }
    .main-article__content { transform: none !important; }
    .tariffs { flex-direction: column; align-items: center; gap: 15px; width: 100%; }
    .tariff { width: 100%; max-width: 280px; padding: 20px 25px; }
    .tariff__price { font-size: 28px; }
    .tariff:hover { transform: none; }
    .cta-glow { font-size: 20px; padding: 15px 10px; }
    .copy { position: relative; bottom: auto; margin-top: 30px; }
    .main-header::after { display: none; }
}

/* Fix copy position mobile */
@media (max-width: 768px) {
    a.copy {
        display: block;
        width: 100%;
        text-align: center;
        position: static;
        margin-top: 20px;
        padding-bottom: 20px;
    }
}

/* Copy bottom - force */
@media (max-width: 768px) {
    .main-article {
        flex-direction: column !important;
    }
    .main-article a.copy,
    a.copy {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 30px !important;
        order: 99 !important;
    }
}
