:root {
	--h2s-ink: #07090e;
	--h2s-panel: #10141d;
	--h2s-panel-soft: #171c27;
	--h2s-red: #ff2b3e;
	--h2s-red-dark: #d80f25;
	--h2s-orange: #ff6c24;
	--h2s-paper: #f3efe7;
	--h2s-white: #ffffff;
	--h2s-text: #f7f8fb;
	--h2s-muted: #a8b1c0;
	--h2s-dark-muted: #5f5c57;
	--h2s-line: rgba(255, 255, 255, 0.11);
	--h2s-dark-line: rgba(7, 9, 14, 0.14);
	--h2s-shell: 1240px;
	--h2s-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
	--h2s-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--h2s-radius-sm: 12px;
	--h2s-radius-md: 18px;
	--h2s-radius-lg: 28px;
	--h2s-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--h2s-ink);
	color: var(--h2s-text);
	font-family: var(--h2s-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.h2s-menu-is-open {
	overflow: hidden;
}

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

button,
a {
	touch-action: manipulation;
}

button {
	font: inherit;
}

img,
svg {
	display: block;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.h2s-shell {
	width: min(calc(100% - 48px), var(--h2s-shell));
	margin-inline: auto;
}

#tippek,
#hogyan-mukodik,
#platform,
#app,
#gyik {
	scroll-margin-top: 96px;
}

.h2s-skip-link {
	position: fixed;
	z-index: 1100;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--h2s-white);
	color: var(--h2s-ink);
	transform: translateY(-150%);
}

.h2s-skip-link:focus {
	transform: translateY(0);
}

.h2s-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-top: 4px solid var(--h2s-red);
	border-bottom: 1px solid var(--h2s-line);
	background: rgba(7, 9, 14, 0.94);
	color: var(--h2s-white);
	backdrop-filter: blur(18px);
}

body.admin-bar .h2s-header {
	top: 32px;
}

.h2s-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
}

.h2s-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--h2s-display);
	font-size: 24px;
	font-weight: 950;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.h2s-brand img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--h2s-white);
}

.h2s-nav {
	display: flex;
	align-items: center;
	gap: clamp(22px, 3vw, 38px);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.h2s-nav a,
.h2s-footer__links a {
	transition: color 180ms ease, opacity 180ms ease;
}

.h2s-nav a:hover,
.h2s-footer__links a:hover {
	color: #ff7180;
}

.h2s-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.h2s-menu-toggle {
	position: relative;
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	background: transparent;
	color: var(--h2s-white);
	cursor: pointer;
}

.h2s-menu-toggle i,
.h2s-menu-toggle i::before,
.h2s-menu-toggle i::after {
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
	transform: translateX(-50%);
	transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}

.h2s-menu-toggle i {
	top: 22px;
}

.h2s-menu-toggle i::before {
	top: -7px;
}

.h2s-menu-toggle i::after {
	top: 7px;
}

.h2s-menu-toggle[aria-expanded="true"] i {
	background: transparent;
}

.h2s-menu-toggle[aria-expanded="true"] i::before {
	top: 0;
	transform: translateX(-50%) rotate(45deg);
}

.h2s-menu-toggle[aria-expanded="true"] i::after {
	top: 0;
	transform: translateX(-50%) rotate(-45deg);
}

.h2s-mobile-nav {
	position: fixed;
	z-index: 99;
	inset: 84px 0 0;
	overflow-y: auto;
	background: rgba(7, 9, 14, 0.985);
}

body.admin-bar .h2s-mobile-nav {
	top: 116px;
}

.h2s-mobile-nav[hidden] {
	display: none;
}

.h2s-mobile-nav .h2s-shell {
	display: grid;
	padding-block: 24px 50px;
}

.h2s-mobile-nav a {
	display: flex;
	gap: 18px;
	align-items: center;
	min-height: 70px;
	border-bottom: 1px solid var(--h2s-line);
	font-family: var(--h2s-display);
	font-size: 26px;
	font-weight: 900;
	text-transform: uppercase;
}

.h2s-mobile-nav {
	top: 102px;
}

body.admin-bar .h2s-mobile-nav {
	top: 134px;
}

.h2s-mobile-nav a span {
	color: #ff6573;
	font-family: var(--h2s-body);
	font-size: 10px;
	letter-spacing: 0.12em;
}

.h2s-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: var(--h2s-radius-sm);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.h2s-button:hover {
	transform: translateY(-2px);
}

.h2s-button:active {
	transform: translateY(0);
}

.h2s-button--small {
	min-height: 44px;
	padding-inline: 17px;
	font-size: 11px;
}

.h2s-button--ghost {
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--h2s-white);
}

.h2s-button--ghost:hover {
	border-color: var(--h2s-white);
	background: var(--h2s-white);
	color: var(--h2s-ink);
}

.h2s-button--primary {
	background: linear-gradient(135deg, var(--h2s-red), var(--h2s-orange));
	box-shadow: 0 16px 38px rgba(255, 43, 62, 0.25);
	color: var(--h2s-white);
}

.h2s-button--primary:hover {
	box-shadow: 0 20px 48px rgba(255, 43, 62, 0.38);
}

.h2s-button--text {
	gap: 14px;
	padding-inline: 4px;
	color: var(--h2s-white);
}

.h2s-button--text span {
	font-size: 21px;
}

.h2s-button--light {
	background: var(--h2s-white);
	color: var(--h2s-ink);
}

.h2s-button:focus-visible,
.h2s-nav a:focus-visible,
.h2s-mobile-nav a:focus-visible,
.h2s-product-card a:focus-visible,
.h2s-footer a:focus-visible,
.h2s-text-link:focus-visible,
.h2s-faq summary:focus-visible,
.h2s-menu-toggle:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 4px;
}

.h2s-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(70px, 7vw, 104px) 0;
	background:
		radial-gradient(circle at 10% 8%, rgba(255, 43, 62, 0.22), transparent 31%),
		radial-gradient(circle at 90% 76%, rgba(255, 108, 36, 0.14), transparent 28%),
		linear-gradient(127deg, #090c13 0%, #0c111b 54%, #18070c 100%);
}

.h2s-hero::before {
	position: absolute;
	right: -2vw;
	bottom: -5vw;
	color: rgba(255, 255, 255, 0.026);
	content: "PREDICT";
	font-family: var(--h2s-display);
	font-size: clamp(110px, 18vw, 270px);
	font-weight: 950;
	font-style: italic;
	letter-spacing: -0.08em;
	line-height: 0.75;
	pointer-events: none;
}

.h2s-hero::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, transparent 0 67%, rgba(255, 255, 255, 0.026) 67.2% 68%, transparent 68.2%),
		repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.013) 80px);
	content: "";
	pointer-events: none;
}

.h2s-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	gap: clamp(40px, 6vw, 82px);
	align-items: center;
	min-height: 560px;
}

.h2s-kicker {
	display: flex;
	gap: 11px;
	align-items: center;
	margin: 0 0 20px;
	color: #ff6573;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.h2s-kicker > span {
	display: inline-block;
	width: 27px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 0 12px rgba(255, 43, 62, 0.5);
}

.h2s-hero h1,
.h2s-section-heading h2,
.h2s-benefits h2,
.h2s-how h2,
.h2s-app h2,
.h2s-faq h2,
.h2s-cta h2,
.h2s-entry h1 {
	margin: 0;
	font-family: var(--h2s-display);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.92;
	text-transform: uppercase;
	text-wrap: balance;
}

.h2s-hero h1 {
	max-width: 760px;
	font-size: clamp(58px, 6.6vw, 96px);
	font-style: italic;
}

.h2s-hero h1 em {
	color: #ff5361;
	font-style: inherit;
}

.h2s-hero__lead {
	max-width: 680px;
	margin: 28px 0 0;
	color: #d1d8e3;
	font-size: clamp(16px, 1.4vw, 19px);
	font-weight: 520;
	line-height: 1.7;
}

.h2s-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	margin-top: 34px;
}

.h2s-hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 580px;
	margin-top: 48px;
	border-top: 1px solid var(--h2s-line);
}

.h2s-hero__proof span {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 18px 14px 0 0;
	color: #8f9aad;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.h2s-hero__proof span + span {
	padding-left: 18px;
	border-left: 1px solid var(--h2s-line);
}

.h2s-hero__proof b {
	color: var(--h2s-white);
	font-family: var(--h2s-display);
	font-size: 26px;
	letter-spacing: -0.03em;
}

.h2s-scoreboard {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(18, 24, 36, 0.96), rgba(7, 10, 17, 0.94));
	box-shadow: var(--h2s-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.h2s-scoreboard::after {
	position: absolute;
	z-index: 0;
	top: 60px;
	right: -10px;
	color: rgba(255, 255, 255, 0.025);
	content: "H2S";
	font-family: var(--h2s-display);
	font-size: 140px;
	font-weight: 950;
	font-style: italic;
	line-height: 1;
	pointer-events: none;
}

.h2s-scoreboard__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 17px 20px;
	border-bottom: 1px solid var(--h2s-line);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.h2s-scoreboard__top span {
	display: flex;
	gap: 8px;
	align-items: center;
	color: #dfe5ee;
}

.h2s-scoreboard__top span i,
.h2s-scoreboard__note i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #39df8b;
	box-shadow: 0 0 13px rgba(57, 223, 139, 0.7);
}

.h2s-scoreboard__top strong {
	color: #8290a5;
	font-size: 9px;
}

.h2s-scoreboard__lead {
	position: relative;
	z-index: 1;
	padding: 28px 25px 24px;
	border-bottom: 1px solid var(--h2s-line);
}

.h2s-scoreboard__lead > span {
	display: block;
	margin-bottom: 5px;
	color: #ff6571;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.h2s-scoreboard__lead > strong {
	display: block;
	font-family: var(--h2s-display);
	font-size: clamp(70px, 7vw, 96px);
	font-weight: 950;
	font-style: italic;
	letter-spacing: -0.05em;
	line-height: 0.9;
	font-variant-numeric: tabular-nums;
}

.h2s-scoreboard__lead p {
	max-width: 310px;
	margin: 12px 0 0;
	color: #9da9ba;
	font-size: 13px;
}

.h2s-scoreboard__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
	padding: 18px 20px;
}

.h2s-scoreboard__stats div {
	display: grid;
	min-width: 0;
	padding: 14px 11px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.035);
}

.h2s-scoreboard__stats span {
	font-family: var(--h2s-display);
	font-size: 26px;
	font-weight: 950;
	font-variant-numeric: tabular-nums;
}

.h2s-scoreboard__stats small {
	margin-top: 3px;
	color: #8995a8;
	font-size: 8px;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.h2s-scoreboard__note {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0 20px 20px;
	color: #7f8b9d;
	font-size: 10px;
	font-weight: 700;
}

.h2s-products {
	padding: clamp(84px, 9vw, 128px) 0;
	background: #0b0e14;
}

.h2s-section-heading {
	display: grid;
	grid-template-columns: 1fr 0.66fr;
	gap: 80px;
	align-items: end;
	margin-bottom: 48px;
}

.h2s-section-heading h2,
.h2s-benefits h2,
.h2s-how h2,
.h2s-app h2,
.h2s-faq h2,
.h2s-cta h2 {
	font-size: clamp(46px, 5vw, 72px);
}

.h2s-section-heading > p {
	margin: 0 0 5px;
	color: var(--h2s-muted);
	font-size: 16px;
}

.h2s-product-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 16px;
}

.h2s-product-card {
	position: relative;
	display: flex;
	grid-column: span 5;
	min-height: 170px;
	overflow: hidden;
	padding: 24px;
	border: 1px solid var(--h2s-line);
	border-top: 3px solid #566172;
	border-radius: 20px;
	background:
		radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.05), transparent 32%),
		linear-gradient(145deg, var(--h2s-panel-soft), #0a0d13);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.h2s-product-card::after {
	position: absolute;
	right: -15px;
	bottom: -42px;
	color: rgba(255, 255, 255, 0.035);
	content: "H2S";
	font-family: var(--h2s-display);
	font-size: 120px;
	font-weight: 950;
	font-style: italic;
	line-height: 1;
	pointer-events: none;
}

.h2s-product-card.is-featured {
	display: grid;
	grid-column: span 7;
	grid-row: span 3;
	grid-template-columns: 68px 1fr;
	min-height: 542px;
	padding: 34px;
	border-top-color: var(--h2s-red);
	background:
		radial-gradient(circle at 86% 18%, rgba(255, 43, 62, 0.2), transparent 34%),
		linear-gradient(145deg, #151923, #090c12);
}

.h2s-product-card.is-featured::after {
	right: -28px;
	bottom: -58px;
	content: "F1";
	font-size: clamp(170px, 20vw, 280px);
}

.h2s-product-card.is-live:hover {
	border-color: rgba(255, 86, 101, 0.55);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
	transform: translateY(-3px);
}

.h2s-product-card__number {
	position: relative;
	z-index: 1;
	color: #8993a4;
	font-family: var(--h2s-display);
	font-size: 17px;
	font-weight: 900;
}

.h2s-product-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.h2s-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: auto;
}

.h2s-product-card__meta span,
.h2s-product-card__meta small {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.h2s-product-card__meta span {
	color: #ff6573;
}

.h2s-product-card__meta small {
	display: flex;
	gap: 7px;
	align-items: center;
	color: #8792a4;
}

.h2s-product-card__meta small::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #687386;
	content: "";
}

.h2s-product-card.is-live .h2s-product-card__meta small::before {
	background: #39df8b;
	box-shadow: 0 0 11px rgba(57, 223, 139, 0.6);
}

.h2s-product-card h3 {
	margin: 22px 0 8px;
	font-family: var(--h2s-display);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 950;
	font-style: italic;
	letter-spacing: -0.045em;
	line-height: 1;
	text-transform: uppercase;
}

.h2s-product-card.is-featured h3 {
	margin-top: auto;
	font-size: clamp(48px, 6vw, 78px);
}

.h2s-product-card p {
	max-width: 520px;
	margin: 0;
	color: #aab4c4;
	font-size: 13px;
}

.h2s-product-card a,
.h2s-product-card__soon {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	min-height: 44px;
	margin-top: 23px;
	color: var(--h2s-white);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.h2s-product-card__soon {
	color: #7f8999;
}

.h2s-manifest {
	padding: 16px 0 clamp(86px, 9vw, 128px);
	background: #0b0e14;
}

.h2s-manifest__panel {
	display: grid;
	grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
	gap: 34px;
	padding: clamp(38px, 5vw, 62px);
	border: 1px solid var(--h2s-line);
	border-radius: 26px;
	background:
		radial-gradient(circle at 4% 90%, rgba(255, 43, 62, 0.18), transparent 27%),
		linear-gradient(135deg, #151018, #090d15 62%);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.h2s-manifest__intro {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-right: 14px;
}

.h2s-manifest h2,
.h2s-final h2 {
	margin: 0;
	font-family: var(--h2s-display);
	font-size: clamp(43px, 5vw, 66px);
	font-weight: 950;
	font-style: italic;
	letter-spacing: -0.05em;
	line-height: 0.94;
	text-transform: uppercase;
	text-wrap: balance;
}

.h2s-manifest h2 em {
	color: #ff5361;
	font-style: inherit;
}

.h2s-manifest__intro > p:last-child {
	margin: 22px 0 0;
	color: #b5bfce;
	font-size: 15px;
}

.h2s-manifest__features {
	display: grid;
	gap: 12px;
}

.h2s-manifest__features article {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.035);
}

.h2s-manifest__features article > span {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 1px solid rgba(255, 76, 91, 0.28);
	border-radius: 15px;
	background: rgba(255, 43, 62, 0.09);
	color: #ff5a68;
}

.h2s-manifest__features svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.h2s-manifest__features small {
	color: #ff6471;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.h2s-manifest__features h3 {
	margin: 4px 0 3px;
	font-size: 18px;
}

.h2s-manifest__features p {
	margin: 0;
	color: #929eb1;
	font-size: 13px;
	line-height: 1.45;
}

.h2s-flow {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 40px;
	align-items: end;
	margin-top: 14px;
	padding-top: 34px;
	border-top: 1px solid var(--h2s-line);
}

.h2s-flow__heading h2 {
	font-size: clamp(33px, 4vw, 50px);
}

.h2s-flow ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.h2s-flow li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	padding: 8px 20px;
}

.h2s-flow li + li {
	border-left: 1px solid var(--h2s-line);
}

.h2s-flow li b {
	color: #ff6471;
	font-family: var(--h2s-display);
	font-size: 14px;
}

.h2s-flow h3 {
	margin: 0 0 5px;
	font-size: 16px;
	text-transform: uppercase;
}

.h2s-flow li p {
	margin: 0;
	color: #929eb1;
	font-size: 12px;
	line-height: 1.5;
}

.h2s-final {
	padding: 16px 0 90px;
	background: #0b0e14;
}

.h2s-final__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
	align-items: center;
	overflow: hidden;
	padding: clamp(44px, 6vw, 72px);
	border: 1px solid rgba(255, 85, 99, 0.22);
	border-radius: 26px;
	background:
		radial-gradient(circle at 82% 50%, rgba(255, 107, 36, 0.2), transparent 26%),
		linear-gradient(120deg, #250910, #12070b 60%, #2a0d0b);
	box-shadow: 0 26px 75px rgba(0, 0, 0, 0.32);
}

.h2s-final__panel > div,
.h2s-final__panel > .h2s-button {
	position: relative;
	z-index: 2;
}

.h2s-final__panel > div > p:not(.h2s-kicker) {
	max-width: 680px;
	margin: 15px 0 25px;
	color: #d3bdc2;
	font-size: 16px;
}

.h2s-final__mark {
	position: absolute;
	right: 18%;
	bottom: -64px;
	color: rgba(255, 255, 255, 0.04);
	font-family: var(--h2s-display);
	font-size: 205px;
	font-weight: 950;
	font-style: italic;
	line-height: 1;
	pointer-events: none;
}

.h2s-final .h2s-store-row span {
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--h2s-white);
}

.h2s-benefits {
	padding: clamp(86px, 9vw, 128px) 0;
	background: var(--h2s-paper);
	color: var(--h2s-ink);
}

.h2s-benefits__intro {
	display: grid;
	grid-template-columns: 1fr 0.7fr;
	gap: 70px;
	align-items: end;
	margin-bottom: 50px;
}

.h2s-benefits__intro > p:last-child {
	margin: 0;
	color: var(--h2s-dark-muted);
	font-size: 17px;
}

.h2s-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--h2s-dark-line);
	border-left: 1px solid var(--h2s-dark-line);
}

.h2s-benefit-card {
	position: relative;
	min-height: 330px;
	padding: 34px;
	border-right: 1px solid var(--h2s-dark-line);
	border-bottom: 1px solid var(--h2s-dark-line);
	background: rgba(255, 255, 255, 0.22);
}

.h2s-benefit-card__icon {
	display: grid;
	width: 52px;
	height: 52px;
	margin-bottom: 56px;
	place-items: center;
	border: 1px solid rgba(255, 43, 62, 0.28);
	border-radius: 15px;
	background: rgba(255, 43, 62, 0.08);
	color: var(--h2s-red-dark);
}

.h2s-benefit-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.h2s-benefit-card__number {
	margin: 0 0 10px;
	color: var(--h2s-red-dark);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.h2s-benefit-card h3 {
	margin: 0 0 10px;
	font-family: var(--h2s-display);
	font-size: 29px;
	font-weight: 950;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}

.h2s-benefit-card > p:last-child {
	margin: 0;
	color: var(--h2s-dark-muted);
	font-size: 14px;
}

.h2s-how {
	padding: clamp(86px, 9vw, 128px) 0;
	background: var(--h2s-ink);
}

.h2s-how__grid {
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: clamp(60px, 9vw, 130px);
}

.h2s-how__intro > p:not(.h2s-kicker) {
	max-width: 440px;
	margin: 28px 0 0;
	color: #9aa4b4;
	font-size: 16px;
}

.h2s-text-link {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	min-height: 44px;
	margin-top: 28px;
	color: #ff6573;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.h2s-text-link span {
	font-size: 19px;
}

.h2s-steps {
	margin: 0;
	padding: 0;
	list-style: none;
}

.h2s-steps li {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 28px;
	padding: 30px 0;
	border-top: 1px solid var(--h2s-line);
}

.h2s-steps li:last-child {
	border-bottom: 1px solid var(--h2s-line);
}

.h2s-steps b {
	color: #ff6573;
	font-family: var(--h2s-display);
	font-size: 16px;
}

.h2s-steps h3 {
	margin: 0 0 6px;
	font-family: var(--h2s-display);
	font-size: 27px;
	font-weight: 900;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.h2s-steps p {
	margin: 0;
	color: #909aaa;
	font-size: 14px;
}

.h2s-app {
	padding: clamp(86px, 9vw, 120px) 0;
	background: var(--h2s-paper);
	color: var(--h2s-ink);
}

.h2s-app__card {
	position: relative;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 70px;
	align-items: center;
	overflow: hidden;
	min-height: 570px;
	padding: clamp(40px, 7vw, 84px);
	border: 1px solid var(--h2s-dark-line);
	border-radius: var(--h2s-radius-lg);
	background:
		linear-gradient(110deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
		repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 43, 62, 0.08) 42px 43px);
	box-shadow: 0 24px 70px rgba(50, 42, 30, 0.12);
}

.h2s-app__card > div:first-child {
	position: relative;
	z-index: 2;
}

.h2s-app__card > div:first-child > p:last-of-type {
	max-width: 610px;
	margin: 27px 0;
	color: var(--h2s-dark-muted);
	font-size: 16px;
}

.h2s-store-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.h2s-store-row span {
	display: flex;
	flex-direction: column;
	min-width: 170px;
	padding: 11px 18px;
	border: 1px solid var(--h2s-ink);
	border-radius: 10px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.h2s-store-row small {
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.h2s-phone {
	justify-self: center;
	width: min(290px, 100%);
	padding: 14px 20px 30px;
	border: 9px solid var(--h2s-ink);
	border-radius: 40px;
	background: var(--h2s-paper);
	box-shadow: 22px 28px 0 var(--h2s-red);
	text-align: center;
	transform: rotate(3deg);
}

.h2s-phone__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 38px;
	font-size: 9px;
	font-weight: 800;
}

.h2s-phone__bar i {
	width: 32px;
	height: 5px;
	border-radius: 8px;
	background: var(--h2s-ink);
}

.h2s-phone > img {
	width: 64px;
	height: 64px;
	margin: 0 auto 34px;
	border-radius: 50%;
}

.h2s-phone > small {
	display: block;
	color: var(--h2s-red-dark);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.h2s-phone > strong {
	display: block;
	margin: 5px 0 4px;
	font-family: var(--h2s-display);
	font-size: 30px;
	font-weight: 950;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.h2s-phone > p {
	margin: 0 0 30px;
	color: var(--h2s-dark-muted);
	font-size: 11px;
}

.h2s-phone__button {
	display: block;
	padding: 14px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--h2s-red), var(--h2s-orange));
	color: var(--h2s-white);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.h2s-faq {
	padding: clamp(86px, 9vw, 120px) 0;
	background: var(--h2s-white);
	color: var(--h2s-ink);
}

.h2s-faq__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(55px, 8vw, 110px);
}

.h2s-faq__list {
	border-top: 1px solid var(--h2s-dark-line);
}

.h2s-faq details {
	border-bottom: 1px solid var(--h2s-dark-line);
}

.h2s-faq summary {
	position: relative;
	padding: 25px 54px 25px 0;
	font-family: var(--h2s-display);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.02em;
	list-style: none;
	cursor: pointer;
}

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

.h2s-faq summary::after {
	position: absolute;
	top: 50%;
	right: 8px;
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid var(--h2s-dark-line);
	border-radius: 50%;
	content: "+";
	font-family: var(--h2s-body);
	font-size: 19px;
	font-weight: 500;
	transform: translateY(-50%);
}

.h2s-faq details[open] summary::after {
	content: "−";
}

.h2s-faq details p {
	max-width: 700px;
	margin: -6px 54px 24px 0;
	color: var(--h2s-dark-muted);
	font-size: 15px;
}

.h2s-cta {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	background:
		radial-gradient(circle at 82% 50%, rgba(255, 150, 45, 0.32), transparent 28%),
		linear-gradient(120deg, #b90d21, var(--h2s-red-dark) 58%, #6f0714);
	text-align: center;
}

.h2s-cta::after {
	position: absolute;
	right: 2vw;
	bottom: -65px;
	color: rgba(255, 255, 255, 0.055);
	content: "H2S";
	font-family: var(--h2s-display);
	font-size: 200px;
	font-weight: 950;
	font-style: italic;
	line-height: 1;
}

.h2s-cta__inner {
	position: relative;
	z-index: 2;
}

.h2s-cta p {
	margin: 0 0 5px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.h2s-cta h2 {
	margin-bottom: 35px;
}

.h2s-footer {
	padding: 40px 0 20px;
	border-top: 1px solid var(--h2s-line);
	background: #050609;
}

.h2s-footer__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: start;
}

.h2s-brand--footer img {
	width: 38px;
	height: 38px;
}

.h2s-footer__grid p {
	max-width: 590px;
	margin: 10px 0 0;
	color: #838b98;
	font-size: 14px;
}

.h2s-footer__links {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-align: right;
	text-transform: uppercase;
}

.h2s-footer__links a {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 28px;
}

.h2s-footer__bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 28px;
	padding-top: 15px;
	border-top: 1px solid var(--h2s-line);
	color: #8c95a4;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.h2s-content {
	min-height: 70vh;
	padding: 100px 0;
	background: var(--h2s-paper);
	color: var(--h2s-ink);
}

.h2s-entry {
	max-width: 760px;
	margin-inline: auto;
}

.h2s-entry h1 {
	margin-bottom: 40px;
	font-size: clamp(46px, 7vw, 82px);
}

.h2s-entry a {
	color: var(--h2s-red-dark);
	text-decoration: underline;
}

@media (max-width: 1020px) {
	.h2s-nav--desktop {
		display: none;
	}

	.h2s-menu-toggle {
		display: block;
	}

	.h2s-hero__grid,
	.h2s-section-heading,
	.h2s-manifest__panel,
	.h2s-flow,
	.h2s-benefits__intro,
	.h2s-how__grid,
	.h2s-app__card,
	.h2s-faq__grid {
		grid-template-columns: 1fr;
	}

	.h2s-manifest__intro {
		padding-right: 0;
	}

	.h2s-flow {
		gap: 30px;
	}

	.h2s-final__panel {
		grid-template-columns: 1fr;
	}

	.h2s-hero__grid {
		min-height: auto;
	}

	.h2s-scoreboard {
		width: min(680px, 100%);
	}

	.h2s-section-heading,
	.h2s-benefits__intro {
		gap: 28px;
	}

	.h2s-product-card.is-featured {
		grid-column: span 12;
		grid-row: auto;
		min-height: 400px;
	}

	.h2s-product-card:not(.is-featured) {
		grid-column: span 4;
		min-height: 240px;
	}

	.h2s-benefit-grid {
		grid-template-columns: 1fr;
	}

	.h2s-benefit-card {
		min-height: 0;
	}

	.h2s-benefit-card__icon {
		margin-bottom: 34px;
	}

	.h2s-how__grid,
	.h2s-faq__grid {
		gap: 52px;
	}

	.h2s-phone {
		margin-top: 8px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .h2s-header {
		top: 46px;
	}

	body.admin-bar .h2s-mobile-nav {
		top: 130px;
	}
}

@media (max-width: 680px) {
	.h2s-shell {
		width: min(calc(100% - 30px), var(--h2s-shell));
	}

	.h2s-header__inner {
		min-height: 72px;
	}

	.h2s-brand {
		gap: 9px;
		font-size: 19px;
	}

	.h2s-brand img {
		width: 38px;
		height: 38px;
	}

	.h2s-header__actions .h2s-button {
		display: none;
	}

	.h2s-mobile-nav {
		top: 76px;
	}

	.h2s-hero {
		padding: 62px 0 72px;
	}

	.h2s-hero h1 {
		font-size: clamp(46px, 13vw, 68px);
	}

	.h2s-hero__lead {
		font-size: 16px;
	}

	.h2s-hero__actions {
		display: grid;
	}

	.h2s-hero__actions .h2s-button {
		width: 100%;
	}

	.h2s-button--text {
		justify-content: flex-start;
	}

	.h2s-hero__proof {
		margin-top: 38px;
	}

	.h2s-hero__proof span {
		padding-right: 8px;
		font-size: 8px;
	}

	.h2s-hero__proof span + span {
		padding-left: 11px;
	}

	.h2s-hero__proof b {
		font-size: 21px;
	}

	.h2s-scoreboard__lead > strong {
		font-size: 70px;
	}

	.h2s-scoreboard__stats {
		gap: 6px;
		padding-inline: 14px;
	}

	.h2s-scoreboard__stats div {
		padding: 12px 8px;
	}

	.h2s-products,
	.h2s-manifest,
	.h2s-final,
	.h2s-benefits,
	.h2s-how,
	.h2s-app,
	.h2s-faq {
		padding: 76px 0;
	}

	.h2s-manifest {
		padding-top: 10px;
	}

	.h2s-manifest__panel,
	.h2s-final__panel {
		width: 100%;
		padding: 44px 22px;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.h2s-manifest h2,
	.h2s-final h2 {
		font-size: clamp(40px, 12vw, 56px);
	}

	.h2s-manifest__features article {
		grid-template-columns: 48px minmax(0, 1fr);
		padding: 17px;
	}

	.h2s-manifest__features article > span {
		width: 48px;
		height: 48px;
	}

	.h2s-flow ol {
		grid-template-columns: 1fr;
	}

	.h2s-flow li {
		padding: 18px 0;
	}

	.h2s-flow li + li {
		border-top: 1px solid var(--h2s-line);
		border-left: 0;
	}

	.h2s-final__panel > .h2s-button {
		width: 100%;
	}

	.h2s-section-heading h2,
	.h2s-benefits h2,
	.h2s-how h2,
	.h2s-app h2,
	.h2s-faq h2,
	.h2s-cta h2 {
		font-size: clamp(40px, 12vw, 56px);
	}

	.h2s-product-grid {
		grid-template-columns: 1fr;
	}

	.h2s-product-card,
	.h2s-product-card.is-featured,
	.h2s-product-card:not(.is-featured) {
		grid-column: auto;
		min-height: 250px;
		padding: 24px;
	}

	.h2s-product-card.is-featured {
		grid-template-columns: 40px 1fr;
		min-height: 350px;
	}

	.h2s-product-card.is-featured h3 {
		font-size: 48px;
	}

	.h2s-benefit-grid {
		border-left: 0;
	}

	.h2s-benefit-card {
		padding: 28px 22px;
		border-left: 1px solid var(--h2s-dark-line);
	}

	.h2s-steps li {
		grid-template-columns: 38px 1fr;
		gap: 18px;
	}

	.h2s-app__card {
		width: 100%;
		padding: 48px 24px 66px;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.h2s-store-row {
		flex-direction: column;
	}

	.h2s-phone {
		box-shadow: 12px 16px 0 var(--h2s-red);
		transform: none;
	}

	.h2s-faq summary {
		padding-block: 22px;
		font-size: 20px;
	}

	.h2s-cta {
		padding: 74px 0;
	}

	.h2s-footer__grid {
		grid-template-columns: 1fr;
	}

	.h2s-footer__links {
		text-align: left;
	}

	.h2s-footer__links a {
		justify-content: flex-start;
		min-height: 44px;
	}

	.h2s-footer__bottom {
		gap: 12px;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Compact 2026 homepage and navigation refresh. */
#jatekok,
#kozosseg,
#elerhetoseg {
	scroll-margin-top: 126px;
}

.h2s-header {
	border-top: 0;
	background: rgba(7, 9, 14, 0.96);
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

.h2s-header__top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(90deg, #0c1019, #3a0710 70%, #5a0a12);
}

.h2s-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 32px;
	color: #b9c2d1;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.h2s-header__top a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	color: #f4f6fa;
	letter-spacing: 0.05em;
	text-transform: none;
}

.h2s-header__top a:hover {
	color: #ff7180;
}

.h2s-header-socials {
	display: flex;
	align-items: center;
	gap: 7px;
}

.h2s-header-socials a {
	display: grid;
	width: 26px;
	min-height: 26px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: #dfe5ee;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.h2s-header-socials a:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: linear-gradient(135deg, var(--h2s-red), var(--h2s-orange));
	color: #ffffff;
}

.h2s-header-socials svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.h2s-header__inner {
	min-height: 70px;
	gap: 24px;
}

.h2s-brand {
	flex: 0 0 auto;
	gap: 10px;
	font-size: inherit;
	letter-spacing: normal;
}

.h2s-brand__mark {
	display: grid;
	width: 48px;
	height: 48px;
	overflow: hidden;
	flex: 0 0 auto;
	place-items: center;
}

.h2s-brand__mark img,
.h2s-brand--footer .h2s-brand__mark img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	background: transparent;
	object-fit: contain;
	transform: scale(1.38);
}

.h2s-brand__text {
	display: grid;
	line-height: 1;
}

.h2s-brand__text strong,
.h2s-brand--footer > span:last-child {
	font-family: var(--h2s-display);
	font-size: 19px;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.h2s-brand__text small {
	margin-top: 5px;
	color: #ff5262;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.h2s-nav {
	flex: 1 1 auto;
	justify-content: flex-end;
	gap: clamp(11px, 1.7vw, 24px);
	font-size: 10px;
	letter-spacing: 0.07em;
}

.h2s-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	white-space: nowrap;
}

.h2s-nav a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--h2s-red), var(--h2s-orange));
	content: "";
	opacity: 0;
	transform: scaleX(0.45);
	transition: opacity 180ms ease, transform 180ms ease;
}

.h2s-nav a:hover::after,
.h2s-nav a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.h2s-header__actions {
	flex: 0 0 auto;
}

.h2s-profile-menu {
	position: relative;
}

.h2s-profile-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 4px 10px 4px 4px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	color: #ffffff;
	cursor: pointer;
}

.h2s-profile-trigger img {
	width: 34px;
	height: 34px;
	border: 2px solid rgba(255, 82, 98, 0.8);
	border-radius: 50%;
	object-fit: cover;
}

.h2s-profile-trigger span {
	max-width: 110px;
	overflow: hidden;
	font-size: 11px;
	font-weight: 850;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.h2s-profile-trigger i {
	width: 7px;
	height: 7px;
	margin: -4px 2px 0 3px;
	border-right: 2px solid #aeb7c5;
	border-bottom: 2px solid #aeb7c5;
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.h2s-profile-trigger[aria-expanded="true"] i {
	margin-top: 4px;
	transform: rotate(225deg);
}

.h2s-profile-dropdown {
	position: absolute;
	z-index: 120;
	top: calc(100% + 9px);
	right: 0;
	display: grid;
	width: 180px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: #10141d;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.h2s-profile-dropdown[hidden] {
	display: none;
}

.h2s-profile-dropdown a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 9px;
	font-size: 11px;
	font-weight: 800;
}

.h2s-profile-dropdown a:hover {
	background: rgba(255, 255, 255, 0.07);
}

.h2s-hero {
	padding: clamp(58px, 6vw, 82px) 0;
	background:
		radial-gradient(circle at 13% 9%, rgba(255, 43, 62, 0.19), transparent 30%),
		radial-gradient(circle at 86% 54%, rgba(255, 108, 36, 0.1), transparent 28%),
		linear-gradient(127deg, #090c13 0%, #0c111b 58%, #18070c 100%);
}

.h2s-hero::before {
	right: 1vw;
	bottom: -3vw;
	font-size: clamp(90px, 14vw, 205px);
	opacity: 0.7;
}

.h2s-hero__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
	gap: clamp(34px, 6vw, 78px);
	min-height: 460px;
}

.h2s-kicker {
	margin-bottom: 14px;
	font-size: 9px;
}

.h2s-hero h1 {
	max-width: 680px;
	font-size: clamp(50px, 5.4vw, 76px);
	line-height: 0.94;
}

.h2s-hero__lead {
	max-width: 570px;
	margin-top: 22px;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 1.6;
}

.h2s-hero__actions {
	margin-top: 28px;
}

.h2s-hero__brand {
	position: relative;
	display: grid;
	min-height: 390px;
	place-items: center;
}

.h2s-hero__brand-glow {
	position: absolute;
	width: 64%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 43, 62, 0.18);
	filter: blur(54px);
}

.h2s-hero__brand img {
	position: relative;
	width: min(390px, 92%);
	filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.42));
	transform: scale(1.24);
}

.h2s-hero__brand p {
	position: absolute;
	right: 0;
	bottom: 24px;
	left: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 0;
	color: #aab4c4;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.h2s-hero__brand p span {
	color: #ff6473;
}

.h2s-hero-stats {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	background:
		radial-gradient(circle at 90% 8%, rgba(255, 43, 62, 0.16), transparent 34%),
		linear-gradient(145deg, rgba(18, 24, 36, 0.98), rgba(7, 10, 17, 0.96));
	box-shadow: var(--h2s-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.h2s-hero-stats::after {
	position: absolute;
	right: -18px;
	bottom: -40px;
	color: rgba(255, 255, 255, 0.025);
	content: "H2S";
	font-family: var(--h2s-display);
	font-size: 150px;
	font-weight: 950;
	font-style: italic;
	line-height: 1;
	pointer-events: none;
}

.h2s-hero-stats > header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
	padding: 0 20px;
	border-bottom: 1px solid var(--h2s-line);
	color: #dfe5ee;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.h2s-hero-stats > header span {
	display: flex;
	gap: 8px;
	align-items: center;
}

.h2s-hero-stats > header i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #39df8b;
	box-shadow: 0 0 13px rgba(57, 223, 139, 0.7);
}

.h2s-hero-stats > header small {
	color: #8290a5;
	font: inherit;
}

.h2s-hero-stats__grid {
	position: relative;
	z-index: 1;
	display: grid;
	padding: 10px 20px 18px;
}

.h2s-hero-stats__grid article {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 92px;
}

.h2s-hero-stats__grid article + article {
	border-top: 1px solid var(--h2s-line);
}

.h2s-hero-stats__grid strong {
	color: #ffffff;
	font-family: var(--h2s-display);
	font-size: clamp(42px, 4vw, 58px);
	font-weight: 950;
	font-style: italic;
	letter-spacing: -0.04em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.h2s-hero-stats__grid article:first-child strong {
	color: #ff5c6b;
}

.h2s-hero-stats__grid span {
	max-width: 180px;
	color: #aeb8c8;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.45;
	text-align: right;
	text-transform: uppercase;
}

.h2s-products {
	padding: clamp(68px, 7vw, 96px) 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
		#0b0e14;
}

.h2s-section-heading {
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
	gap: 44px;
	margin-bottom: 34px;
}

.h2s-section-heading h2 {
	font-size: clamp(38px, 4.2vw, 56px);
	line-height: 1;
}

.h2s-section-heading > p {
	font-size: 14px;
}

.h2s-product-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.h2s-product-card,
.h2s-product-card.is-featured,
.h2s-product-card:not(.is-featured) {
	display: grid;
	grid-column: auto;
	grid-row: auto;
	grid-template-columns: 42px minmax(0, 1fr);
	min-height: 230px;
	padding: 24px;
}

.h2s-product-card.is-featured {
	border-top-color: var(--h2s-red);
	background:
		radial-gradient(circle at 86% 18%, rgba(255, 43, 62, 0.17), transparent 34%),
		linear-gradient(145deg, #151923, #090c12);
}

.h2s-product-card::after,
.h2s-product-card.is-featured::after {
	right: -16px;
	bottom: -38px;
	content: "H2S";
	font-size: 120px;
}

.h2s-product-card.is-featured::after {
	content: "F1";
}

.h2s-product-card__meta {
	margin-bottom: auto;
}

.h2s-product-card h3,
.h2s-product-card.is-featured h3 {
	margin-top: 34px;
	font-size: clamp(28px, 3vw, 42px);
}

.h2s-product-card p {
	font-size: 12px;
}

.h2s-product-card a,
.h2s-product-card__soon {
	margin-top: 16px;
}

.h2s-manifest {
	padding: 14px 0 clamp(72px, 7vw, 100px);
}

.h2s-manifest__panel {
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: 28px;
	padding: clamp(34px, 4vw, 50px);
}

.h2s-manifest h2,
.h2s-final h2 {
	font-size: clamp(36px, 4vw, 52px);
	line-height: 0.98;
}

.h2s-manifest__intro > p:last-child {
	margin-top: 18px;
	font-size: 14px;
}

.h2s-manifest__features article {
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 14px;
	padding: 15px 17px;
}

.h2s-manifest__features article > span {
	width: 46px;
	height: 46px;
}

.h2s-manifest__features h3 {
	font-size: 16px;
}

.h2s-manifest__features p {
	font-size: 12px;
}

.h2s-final {
	padding: 12px 0 76px;
}

.h2s-final__panel {
	padding: clamp(36px, 5vw, 54px);
}

.h2s-final__panel > div > p:not(.h2s-kicker) {
	margin: 12px 0 0;
	font-size: 14px;
}

.h2s-footer {
	padding-top: 38px;
}

.h2s-brand--footer .h2s-brand__mark {
	width: 42px;
	height: 42px;
}

@media (max-width: 1120px) {
	.h2s-nav {
		gap: 10px;
	}

	.h2s-nav a {
		font-size: 9px;
	}
}

@media (max-width: 1020px) {
	.h2s-header__inner {
		min-height: 68px;
	}

	.h2s-hero__grid,
	.h2s-manifest__panel {
		grid-template-columns: 1fr;
	}

	.h2s-hero__grid {
		min-height: 420px;
	}

	.h2s-hero-stats {
		width: min(650px, 100%);
	}

	.h2s-manifest__intro {
		max-width: 650px;
	}
}

@media (max-width: 782px) {
	#jatekok,
	#kozosseg,
	#elerhetoseg {
		scroll-margin-top: 154px;
	}

	body.admin-bar .h2s-mobile-nav {
		top: 148px;
	}
}

@media (max-width: 680px) {
	.h2s-header__top-inner {
		gap: 16px;
		justify-content: center;
	}

	.h2s-header__inner {
		min-height: 64px;
	}

	.h2s-brand__mark {
		width: 43px;
		height: 43px;
	}

	.h2s-brand__text strong {
		font-size: 16px;
	}

	.h2s-brand__text small {
		display: none;
	}

	.h2s-mobile-nav {
		top: 96px;
	}

	body.admin-bar .h2s-mobile-nav {
		top: 142px;
	}

	.h2s-hero {
		padding: 54px 0 60px;
	}

	.h2s-hero__grid {
		min-height: 370px;
	}

	.h2s-hero h1 {
		font-size: clamp(42px, 12vw, 58px);
	}

	.h2s-hero__lead {
		font-size: 15px;
	}

	.h2s-section-heading {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.h2s-section-heading h2 {
		font-size: clamp(34px, 10vw, 44px);
	}

	.h2s-product-grid {
		grid-template-columns: 1fr;
	}

	.h2s-product-card,
	.h2s-product-card.is-featured,
	.h2s-product-card:not(.is-featured) {
		grid-template-columns: 34px minmax(0, 1fr);
		min-height: 210px;
		padding: 21px;
	}

	.h2s-product-card h3,
	.h2s-product-card.is-featured h3 {
		font-size: 32px;
	}

	.h2s-manifest__panel {
		padding-block: 38px;
	}

	.h2s-manifest h2,
	.h2s-final h2 {
		font-size: clamp(34px, 10vw, 44px);
	}
}
