@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@400;500&display=swap");

:root {
	--sk-bg: #f6f7fb;
	--sk-surface: #ffffff;
	--sk-surface-soft: #f1f3f8;
	--sk-text: #17181b;
	--sk-muted: #5f6573;
	--sk-accent: #c6283f;
	--sk-accent-dark: #99162a;
	--sk-border: #dde2ea;
	--sk-shadow: 0 20px 60px rgba(20, 24, 31, 0.08);
}

html,
body {
	background: radial-gradient(circle at 8% -20%, #ffe9ed 0%, #f6f7fb 42%) fixed;
	color: var(--sk-text);
	font-family: "IBM Plex Sans", "Segoe UI", sans-serif !important;
}

.page_font,
.page_font p,
.page_font h1,
.page_font h2,
.page_font h3,
.page_font h4,
.page_font h5 {
	font-family: "IBM Plex Sans", "Segoe UI", sans-serif !important;
}

.title,
.sk-section-title,
.sk-hero h1 {
	font-family: "IBM Plex Serif", Georgia, serif !important;
	letter-spacing: -0.02em;
}

.ui.fixed.menu,
.ui.large.secondary.pointing.menu {
	backdrop-filter: blur(8px);
	background: rgba(255, 255, 255, 0.92) !important;
	border-bottom: 1px solid var(--sk-border) !important;
	box-shadow: 0 10px 25px rgba(18, 22, 29, 0.05) !important;
}

.ui.large.secondary.pointing.menu .item,
.ui.fixed.menu .item {
	color: #2a3242 !important;
	font-weight: 500;
}

.ui.large.secondary.pointing.menu .active.item,
.ui.fixed.menu .active.item {
	color: var(--sk-accent) !important;
	border-color: var(--sk-accent) !important;
}

.sk-hero {
	min-height: 82vh;
	display: flex;
	align-items: center;
	position: relative;
}

.sk-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(17, 21, 29, 0.78) 0%,
		rgba(17, 21, 29, 0.5) 38%,
		rgba(17, 21, 29, 0.22) 100%
	);
}

.sk-hero .ui.text.container {
	position: relative;
	z-index: 1;
	max-width: 860px !important;
	text-align: left;
}

.sk-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: rgba(198, 40, 63, 0.18);
	color: #ffeaf0;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.sk-hero h1 {
	font-size: clamp(2rem, 5.4vw, 4rem) !important;
	line-height: 1.06 !important;
	color: #fff !important;
	margin-bottom: 0.7rem !important;
}

.sk-hero h2 {
	max-width: 44rem;
	font-size: clamp(1rem, 2vw, 1.3rem);
	line-height: 1.7;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 1.5rem !important;
}

.sk-button {
	border-radius: 10px !important;
	padding: 0.95rem 1.25rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em;
}

.sk-button.primary {
	background: linear-gradient(140deg, var(--sk-accent), #dd4b5f) !important;
	color: #fff !important;
	box-shadow: 0 16px 32px rgba(198, 40, 63, 0.24) !important;
}

.sk-button.secondary {
	background: rgba(255, 255, 255, 0.12) !important;
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
	color: #fff !important;
}

.sk-section {
	padding: clamp(2.5rem, 7vw, 5.2rem) 0;
}

.sk-section-title {
	font-size: clamp(1.5rem, 3vw, 2.3rem);
	margin-bottom: 0.55rem;
}

.sk-section-subtitle {
	color: var(--sk-muted);
	font-size: 1.02rem;
	max-width: 54rem;
}

.sk-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.1rem;
}

.sk-product-panel,
.sk-page-panel,
.sk-card {
	background: var(--sk-surface);
	border: 1px solid var(--sk-border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--sk-shadow);
}

.sk-product-panel .image,
.sk-card .image {
	min-height: 220px;
	background-position: center;
	background-size: cover;
}

.sk-product-content,
.sk-page-content {
	padding: 1.15rem;
}

.sk-product-content h3,
.sk-page-content h3 {
	margin: 0 0 0.35rem;
	font-size: 1.16rem;
	line-height: 1.35;
}

.sk-muted {
	color: var(--sk-muted);
}

.sk-price {
	color: var(--sk-accent-dark);
	font-weight: 700;
}

.sk-doc-section {
	background: linear-gradient(180deg, #f7f8fc 0%, #eff2f8 100%);
}

.sk-footer {
	background: #0f1219 !important;
	color: #d8dde9 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sk-footer .header,
.sk-footer a {
	color: #eef1f8 !important;
}

.sk-footer a:hover {
	color: #ff7d90 !important;
}

@media only screen and (max-width: 767px) {
	.sk-hero {
		min-height: 72vh;
	}

	.sk-hero .ui.text.container {
		text-align: center;
	}

	.sk-button {
		width: 100%;
		margin: 0.35rem 0 !important;
	}
}
