:root {
	--bg-main: #060606;
	--bg-card: #121212;
	--bg-card-2: #1a1a1a;
	--text-main: #f5f5f5;
	--text-soft: #b9b9b9;
	--orange: #ff8c00;
	--orange-hover: #ff9f26;
	--orange-dark: #d46f00;
	--line: #2b2b2b;
	--shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
	--radius: 16px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background:
		radial-gradient(circle at 10% 0%, rgba(255, 140, 0, 0.15), transparent 36%),
		radial-gradient(circle at 90% 20%, rgba(255, 140, 0, 0.09), transparent 34%),
		var(--bg-main);
	color: var(--text-main);
}

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

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(8px);
	background-color: rgba(6, 6, 6, 0.88);
	border-bottom: 1px solid var(--line);
}

.nav-wrap {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	font-size: 1.18rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: var(--orange);
}

.main-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.main-nav a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--text-soft);
	transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
	border-color: var(--orange-dark);
	color: #fff;
	background-color: rgba(255, 140, 0, 0.12);
}

.hero {
	padding: 90px 0 38px;
}

.hero-small {
	padding-top: 64px;
}

.hero-content {
	max-width: none;
}

.tag {
	display: inline-block;
	margin: 0 0 14px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 140, 0, 0.45);
	border-radius: 999px;
	color: var(--orange);
	font-size: 0.88rem;
	letter-spacing: 0.4px;
}

h1,
h2,
h3 {
	margin-top: 0;
}

h1 {
	margin-bottom: 12px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
}

.hero p {
	color: var(--text-soft);
	font-size: 1.03rem;
	line-height: 1.65;
}

.section {
	padding: 12px 0 72px;
}

.section-title {
	margin: 0 0 20px;
	font-size: 1.45rem;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.card {
	background: linear-gradient(165deg, var(--bg-card), var(--bg-card-2));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow);
}

.card-pack {
	display: flex;
	flex-direction: column;
	padding: 12px;
}

.card-media {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-radius: 12px;
	border: 1px solid var(--line);
	margin-bottom: 14px;
}

.card-pack h3,
.card-pack p {
	padding: 0 8px;
}

.card h3 {
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.card p {
	color: var(--text-soft);
	line-height: 1.55;
	margin-bottom: 18px;
}

.card-actions {
	margin-top: auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 15px;
	border: 1px solid var(--orange-dark);
	border-radius: 11px;
	background: linear-gradient(180deg, var(--orange), #f77e00);
	color: #111;
	font-weight: 700;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(255, 140, 0, 0.35);
	background: linear-gradient(180deg, var(--orange-hover), #ff900f);
}

.btn-small {
	padding: 9px 13px;
	font-size: 0.92rem;
}

.btn-secondary {
	background: #1f1f1f;
	border-color: #373737;
	color: #f1f1f1;
}

.btn-secondary:hover {
	background: #2a2a2a;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.showcase-note {
	color: var(--text-soft);
	margin: 0 0 16px;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.showcase-link {
	display: block;
	border-radius: var(--radius);
	transition: transform 0.2s ease;
}

.showcase-link:hover {
	transform: translateY(-4px);
}

.showcase-link:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 3px;
}

.showcase-card {
	overflow: hidden;
	background: linear-gradient(170deg, var(--bg-card), var(--bg-card-2));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.showcase-link:hover .showcase-card {
	border-color: #7a4a0f;
}

.showcase-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-bottom: 1px solid var(--line);
}

.showcase-info {
	padding: 14px 16px 18px;
}

.showcase-info p {
	margin: 0;
	color: var(--text-soft);
}

.look-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.look-card {
	background: linear-gradient(165deg, var(--bg-card), var(--bg-card-2));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.look-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-bottom: 1px solid var(--line);
}

.look-info {
	padding: 14px 16px 18px;
}

.look-info h3 {
	margin-bottom: 8px;
}

.look-info p {
	margin: 0;
	color: var(--text-soft);
}

.steps-list {
	margin: 0;
	padding-left: 22px;
	line-height: 1.75;
	color: var(--text-soft);
}

.tips-grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.tip-card {
	background: linear-gradient(165deg, var(--bg-card), var(--bg-card-2));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
}

.tip-card p {
	margin: 0;
	color: var(--text-soft);
}

.windows-fix-card {
	margin-top: 28px;
	padding: 20px;
	border-color: #5a3a12;
	background:
		linear-gradient(165deg, rgba(32, 24, 16, 0.98), rgba(24, 20, 16, 0.98));
}

.windows-fix-heading {
	margin: 0 0 12px;
	font-size: 1.25rem;
}

.windows-fix-card p {
	margin: 0 0 10px;
	line-height: 1.65;
}

.windows-fix-intro {
	font-weight: 600;
	color: #f1f1f1;
}

.windows-fix-steps {
	margin-top: 8px;
}

.pack-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 18px;
	align-items: stretch;
}

.pack-preview {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	background-color: #111;
}

.download-panel {
	background: linear-gradient(170deg, var(--bg-card), var(--bg-card-2));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
}

.download-panel p {
	color: var(--text-soft);
	line-height: 1.7;
	margin-bottom: 18px;
}

.site-footer {
	border-top: 1px solid var(--line);
	background-color: rgba(12, 12, 12, 0.85);
}

.footer-wrap {
	min-height: 86px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.footer-wrap p {
	color: #8f8f8f;
	margin: 0;
	font-size: 0.95rem;
}

@media (max-width: 980px) {
	.card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

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

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

@media (max-width: 640px) {
	.nav-wrap,
	.footer-wrap {
		flex-direction: column;
		justify-content: center;
		padding: 12px 0;
	}

	.main-nav {
		justify-content: center;
	}

	.hero {
		padding-top: 56px;
	}

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