:root {
	--gpuhub-green: #76b900;
	--gpuhub-lime: #a7f432;
	--gpuhub-cyan: #22d3ee;
	--gpuhub-black: #020617;
	--gpuhub-ink: #0f172a;
	--gpuhub-muted: #64748b;
	--gpuhub-soft: #f3faef;
	--gpuhub-line: rgba(118, 185, 0, 0.22);
	--gpuhub-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.gpuhub-page {
	background: #ffffff;
	color: var(--gpuhub-ink);
	font-family: inherit;
	overflow: hidden;
}

.gpuhub-page * {
	box-sizing: border-box;
}

.gpuhub-page .site-container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 32px;
}

.gpuhub-hero {
	position: relative;
	padding: 122px 0 108px;
	background:
		linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(6, 17, 34, 0.86) 43%, rgba(118, 185, 0, 0.16) 100%),
		url('../images/gpu-instances-banner.jpg') center right / cover no-repeat;
	color: #ffffff;
}

.gpuhub-hero::before,
.gpuhub-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: 999px;
}

.gpuhub-hero::before {
	left: -180px;
	bottom: -250px;
	width: 540px;
	height: 540px;
	background: rgba(118, 185, 0, 0.17);
}

.gpuhub-hero::after {
	right: -120px;
	top: 56px;
	width: 380px;
	height: 380px;
	border: 44px solid rgba(167, 244, 50, 0.13);
}

.gpuhub-hero__grid,
.gpuhub-hero__content {
	position: relative;
	z-index: 1;
}

.gpuhub-hero__content {
	max-width: 940px;
}

.gpuhub-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--gpuhub-green);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gpuhub-eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--gpuhub-green), var(--gpuhub-cyan));
}

.gpuhub-hero .gpuhub-eyebrow,
.gpuhub-cta .gpuhub-eyebrow {
	color: var(--gpuhub-lime);
}

.gpuhub-hero h1 {
	max-width: 1040px;
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(42px, 5.2vw, 82px);
	font-weight: 950;
	line-height: 1.03;
	letter-spacing: -0.058em;
	text-wrap: balance;
}

.gpuhub-hero p {
	max-width: 850px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
	line-height: 1.78;
}

.gpuhub-hero__actions,
.gpuhub-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.gpuhub-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 25px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.gpuhub-btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.gpuhub-btn--primary {
	background: linear-gradient(135deg, var(--gpuhub-green), var(--gpuhub-lime));
	box-shadow: 0 18px 36px rgba(118, 185, 0, 0.28);
	color: var(--gpuhub-black);
}

.gpuhub-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	backdrop-filter: blur(10px);
}

.gpuhub-btn--light {
	background: #ffffff;
	color: var(--gpuhub-black);
	box-shadow: 0 14px 30px rgba(2, 6, 23, 0.2);
}

.gpuhub-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 32px;
}

.gpuhub-metrics span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 15px;
	border: 1px solid rgba(167, 244, 50, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.94);
	font-size: 13px;
	font-weight: 850;
}

.gpuhub-section {
	padding: 92px 0;
}

.gpuhub-intro,
.gpuhub-catalog {
	background: #ffffff;
}

.gpuhub-section-heading {
	max-width: 980px;
	margin: 0 auto 42px;
}

.gpuhub-center {
	text-align: center;
}

.gpuhub-section-heading h2,
.gpuhub-cta h2 {
	margin: 0;
	color: var(--gpuhub-black);
	font-size: clamp(32px, 3.8vw, 56px);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.gpuhub-section-heading p {
	max-width: 910px;
	margin: 18px auto 0;
	color: var(--gpuhub-muted);
	font-size: 17px;
	line-height: 1.76;
}

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

.gpuhub-workflow-card {
	position: relative;
	overflow: hidden;
	min-height: 265px;
	padding: 28px;
	border: 1px solid var(--gpuhub-line);
	border-radius: 30px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fff1 100%);
	box-shadow: var(--gpuhub-shadow);
}

.gpuhub-workflow-card::after {
	content: "";
	position: absolute;
	right: -48px;
	bottom: -48px;
	width: 138px;
	height: 138px;
	border-radius: 999px;
	background: rgba(118, 185, 0, 0.12);
}

.gpuhub-workflow-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 24px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--gpuhub-green), var(--gpuhub-cyan));
	color: var(--gpuhub-black);
	font-size: 14px;
	font-weight: 950;
}

.gpuhub-workflow-card h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 12px;
	color: var(--gpuhub-black);
	font-size: 23px;
	font-weight: 950;
	line-height: 1.16;
	letter-spacing: -0.04em;
}

.gpuhub-workflow-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--gpuhub-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

.gpuhub-catalog {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f3faef 100%);
}

.gpuhub-faq {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 8%, rgba(118, 185, 0, 0.18), transparent 34%),
		radial-gradient(circle at 88% 12%, rgba(34, 211, 238, 0.14), transparent 30%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eefbe7 100%);
}

.gpuhub-faq::before {
	content: "";
	position: absolute;
	inset: 46px 32px auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 185, 0, 0.45), rgba(34, 211, 238, 0.36), transparent);
	pointer-events: none;
}

.gpuhub-faq__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(310px, 0.74fr) minmax(0, 1.26fr);
	gap: 42px;
	align-items: start;
}

.gpuhub-faq .gpuhub-section-heading {
	position: sticky;
	top: 104px;
	margin: 0;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 32px;
	background:
		linear-gradient(135deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.9)),
		linear-gradient(135deg, rgba(118, 185, 0, 0.22), rgba(34, 211, 238, 0.16));
	box-shadow: 0 28px 80px rgba(2, 6, 23, 0.18);
}

.gpuhub-faq .gpuhub-section-heading h2 {
	color: #ffffff;
}

.gpuhub-faq .gpuhub-section-heading p {
	margin-left: 0;
	margin-right: 0;
	color: rgba(255, 255, 255, 0.76);
}

.gpuhub-faq-list {
	display: grid;
	gap: 16px;
	counter-reset: gpuhub-faq;
}

.gpuhub-faq-list details {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 52px rgba(15, 23, 42, 0.09);
	backdrop-filter: blur(14px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.gpuhub-faq-list details::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(180deg, var(--gpuhub-green), var(--gpuhub-cyan));
	opacity: 0;
	transition: opacity 0.22s ease;
}

.gpuhub-faq-list details:hover,
.gpuhub-faq-list details[open] {
	transform: translateY(-2px);
	border-color: rgba(118, 185, 0, 0.36);
	background: #ffffff;
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.gpuhub-faq-list details[open]::before {
	opacity: 1;
}

.gpuhub-faq-list summary {
	cursor: pointer;
	list-style: none;
	padding: 24px 68px 24px 78px;
	position: relative;
	color: var(--gpuhub-black);
	font-size: 18px;
	font-weight: 950;
	line-height: 1.38;
}

.gpuhub-faq-list summary::before {
	counter-increment: gpuhub-faq;
	content: counter(gpuhub-faq, decimal-leading-zero);
	position: absolute;
	left: 24px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(118, 185, 0, 0.16), rgba(34, 211, 238, 0.13));
	color: #4b7f00;
	font-size: 13px;
	font-weight: 950;
	transform: translateY(-50%);
}

.gpuhub-faq-list summary::-webkit-details-marker {
	display: none;
}

.gpuhub-faq-list summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gpuhub-green), var(--gpuhub-lime));
	color: var(--gpuhub-black);
	font-size: 20px;
	font-weight: 950;
	box-shadow: 0 12px 26px rgba(118, 185, 0, 0.2);
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.22s ease, background 0.22s ease;
}

.gpuhub-faq-list details[open] summary::after {
	content: "−";
	background: linear-gradient(135deg, var(--gpuhub-cyan), var(--gpuhub-green));
	transform: translateY(-50%) rotate(180deg);
}

.gpuhub-faq-list p {
	margin: 0;
	padding: 0 68px 26px 78px;
	color: var(--gpuhub-muted);
	font-size: 16px;
	line-height: 1.78;
}

.gpuhub-group-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: -12px 0 44px;
}

.gpuhub-group-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 999px;
	background: #ffffff;
	color: var(--gpuhub-ink);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.gpuhub-group-nav a:hover {
	border-color: var(--gpuhub-green);
	color: var(--gpuhub-green);
	text-decoration: none;
}

.gpuhub-product-group {
	padding-top: 28px;
	scroll-margin-top: 110px;
}

.gpuhub-product-group + .gpuhub-product-group {
	margin-top: 46px;
}

.gpuhub-group-heading {
	display: grid;
	grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr) minmax(0, 0.9fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.gpuhub-group-heading span {
	color: var(--gpuhub-green);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gpuhub-group-heading h3 {
	margin: 0;
	color: var(--gpuhub-black);
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.gpuhub-group-heading p {
	margin: 0;
	color: var(--gpuhub-muted);
	font-size: 15.5px;
	line-height: 1.7;
}

.gpuhub-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.gpuhub-product-card {
	display: flex;
	flex-direction: column;
	min-height: 315px;
	padding: 26px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gpuhub-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(118, 185, 0, 0.42);
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.13);
}

.gpuhub-product-card__top span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(118, 185, 0, 0.1);
	color: #4b7f00;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gpuhub-product-card__top strong {
	display: block;
	margin-top: 18px;
	color: var(--gpuhub-black);
	font-size: 25px;
	font-weight: 950;
	line-height: 1.14;
	letter-spacing: -0.04em;
}

.gpuhub-product-card p {
	margin: 16px 0 0;
	color: var(--gpuhub-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

.gpuhub-product-spec {
	margin-top: 18px;
	padding: 13px 15px;
	border: 1px dashed rgba(118, 185, 0, 0.32);
	border-radius: 18px;
	background: #f8fff1;
	color: #315500;
	font-size: 13.5px;
	font-weight: 850;
	line-height: 1.45;
}

.gpuhub-product-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
	color: var(--gpuhub-green);
	font-size: 15px;
	font-weight: 950;
	text-decoration: none;
}

.gpuhub-product-link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gpuhub-green), var(--gpuhub-lime));
	color: var(--gpuhub-black);
	transition: transform 0.22s ease;
}

.gpuhub-product-link:hover {
	color: #4b7f00;
	text-decoration: none;
}

.gpuhub-product-link:hover span {
	transform: translateX(3px);
}

.gpuhub-cta {
	background: radial-gradient(circle at top left, rgba(118, 185, 0, 0.24), transparent 34%), linear-gradient(135deg, #020617 0%, #0f172a 56%, #111827 100%);
	color: #ffffff;
}

.gpuhub-cta__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 44px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 26px 90px rgba(2, 6, 23, 0.32);
}

.gpuhub-cta h2 {
	color: #ffffff;
}

.gpuhub-cta p {
	max-width: 820px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.72;
}

.gpuhub-cta__actions {
	justify-content: flex-end;
	margin-top: 0;
}

@media (max-width: 1180px) {
	.gpuhub-workflow-grid,
	.gpuhub-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gpuhub-group-heading,
	.gpuhub-faq__grid,
	.gpuhub-cta__box {
		grid-template-columns: 1fr;
	}

	.gpuhub-faq .gpuhub-section-heading {
		position: static;
	}

	.gpuhub-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.gpuhub-page .site-container {
		padding: 0 20px;
	}

	.gpuhub-hero {
		padding: 92px 0 76px;
		background-position: center;
	}

	.gpuhub-section {
		padding: 68px 0;
	}

	.gpuhub-workflow-grid,
	.gpuhub-product-grid {
		grid-template-columns: 1fr;
	}

	.gpuhub-workflow-card,
	.gpuhub-product-card,
	.gpuhub-cta__box {
		border-radius: 24px;
		padding: 24px;
	}

	.gpuhub-faq .gpuhub-section-heading {
		border-radius: 24px;
		padding: 26px;
	}

	.gpuhub-faq-list summary {
		padding: 22px 58px 22px 22px;
		font-size: 16.5px;
	}

	.gpuhub-faq-list summary::before {
		position: static;
		margin-right: 10px;
		width: 34px;
		height: 34px;
		vertical-align: middle;
		transform: none;
	}

	.gpuhub-faq-list summary::after {
		right: 18px;
		width: 32px;
		height: 32px;
	}

	.gpuhub-faq-list p {
		padding: 0 22px 22px;
	}

	.gpuhub-group-heading {
		gap: 12px;
	}

	.gpuhub-btn {
		width: 100%;
	}
}

@media (max-width: 520px) {
	.gpuhub-hero h1 {
		font-size: 38px;
	}

	.gpuhub-hero p,
	.gpuhub-section-heading p,
	.gpuhub-cta p {
		font-size: 16px;
	}

	.gpuhub-group-nav a {
		width: 100%;
	}
}