:root {
	--primary: #0e1d3c;
	--secondary: #000000;
	--heading: #000000;
	--text: #000000;
	--border: #f6e6c7;
	--background: #ffffff;
	--card: #ffffff;
	--muted: rgba(0, 0, 0, 0.72);
	--accent: #0e1d3c;
	--accent-soft: #243d74;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	font-family: Georgia, "Times New Roman", serif;
	color: var(--text);
	background: var(--background);
	display: flex;
	flex-direction: column;
}

.form-page-body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.form-page-body.form-page-embedded {
	min-height: 0;
	align-items: stretch;
	justify-content: flex-start;
}

.container {
	width: min(960px, 92vw);
	margin: 0 auto;
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.header-actions {
	display: flex;
	align-items: stretch;
	gap: 0.7rem;
}

.header-menu-btn {
	display: none;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(14, 29, 60, 0.2);
	border-radius: 10px;
	background: #ffffff;
	color: var(--primary);
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	cursor: pointer;
	/* box-shadow: 0 6px 14px rgba(14, 29, 60, 0.12); */
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.header-menu-btn:hover,
.header-menu-btn:focus-visible {
	background: #f8f9fd;
	transform: translateY(-1px);
	/* box-shadow: 0 8px 16px rgba(14, 29, 60, 0.16); */
	outline: none;
}

.nav-link {
	text-decoration: none;
	display: flex;
	align-items: center;
	color: #ffffff;
	background: var(--primary);
	padding: 0.5rem 0.95rem;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 18px rgba(14, 29, 60, 0.18);
}

.nav-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(14, 29, 60, 0.24);
}

.roadmap-main {
	width: 100%;
	padding: 1.2rem 0 3.2rem;
	align-items: flex-start;
}

/* .roadmap-shell {
	width: min(1100px, 95vw);
	background: linear-gradient(180deg, #f7f1e5 0%, #ffffff 100%);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2rem 1.8rem;
	box-shadow: 0 16px 32px rgba(14, 29, 60, 0.08);
	animation: fade-up 0.7s ease;
}

.roadmap-shell h1 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin-bottom: 0.4rem;
} */

.roadmap-subtitle {
	color: var(--muted);
	line-height: 1.55;
	margin-bottom: 1.8rem;
}

.roadmap-track {
	position: relative;
	min-height: 340px;
	padding: 2rem 1rem 0;
}

.roadmap-track::before {
	content: "";
	position: absolute;
	left: 1rem;
	right: 1rem;
	top: 128px;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, #e8dac0 0%, #f3ead9 100%);
	box-shadow: inset 0 1px 3px rgba(14, 29, 60, 0.16);
}

.milestone {
	position: absolute;
	left: var(--position);
	top: 0;
	transform: translateX(-50%);
	width: 170px;
	text-align: center;
}

.milestone-date {
	display: inline-block;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 700;
	color: #2f3c57;
	margin-bottom: 0.85rem;
	background: #ffffff;
	padding: 0.3rem 0.45rem;
	border-radius: 8px;
}

.milestone-node {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	padding: 0;
	border: 4px solid #ffffff;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(14, 29, 60, 0.2);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.milestone-node img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.milestone-node:hover,
.milestone-node:focus-visible {
	transform: translateY(-5px) scale(1.04);
	box-shadow: 0 14px 28px rgba(14, 29, 60, 0.26);
	outline: none;
}

.milestone-detail {
	margin-top: 1rem;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 0.9rem 0.8rem;
	text-align: left;
	box-shadow: 0 10px 18px rgba(14, 29, 60, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.milestone-detail h2 {
	font-size: 1rem;
	margin-bottom: 0.35rem;
	color: var(--heading);
}

.milestone-detail p {
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--muted);
}

.milestone:hover .milestone-detail,
.milestone:focus-within .milestone-detail {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.roadmap-main {
	padding-top: 0.4rem;
}

.roadmap-shell {
	padding: 1.35rem 1rem;
}

.roadmap-track {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 0;
	padding: 0;
}

.roadmap-track::before {
	display: none;
}

.milestone {
	position: static;
	transform: none;
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.9rem;
	align-items: start;
}

.milestone-date {
	grid-column: 1 / 3;
	justify-self: start;
	margin-bottom: 0.5rem;
}

.milestone-node {
	grid-row: 2;
	width: 84px;
	height: 84px;
}

.milestone-detail {
	grid-row: 2;
	opacity: 1;
	visibility: visible;
	transform: none;
	margin-top: 0;
}

header {
	padding: 1.4rem 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	color: inherit;
}

.logo {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	object-fit: cover;
	display: block;
	box-shadow: 0 8px 20px rgba(14, 29, 60, 0.18);
}

.brand-text {
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--heading);
}

.brand-text small {
	display: block;
	color: var(--muted);
	font-weight: 500;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 2px;
}

main {
	flex: 1;
	display: grid;
	place-items: center;
	padding: 2rem 0 3rem;
}

.hero {
	background: var(--card);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2.2rem;
	text-align: center;
	box-shadow: 0 18px 40px rgba(14, 29, 60, 0.08);
	animation: fade-up 0.7s ease;
}

.hero h1 {
	font-size: clamp(1.8rem, 5vw, 3rem);
	margin-bottom: 0.7rem;
	color: var(--heading);
}

.hero p {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 60ch;
	margin: 0 auto 1.4rem;
	line-height: 1.6;
}

.cta {
	display: inline-block;
	text-decoration: none;
	background: linear-gradient(140deg, var(--primary), var(--accent-soft));
	color: #ffffff;
	font-weight: 700;
	padding: 0.75rem 1.3rem;
	border-radius: 999px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 18px rgba(14, 29, 60, 0.18);
}

.cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(14, 29, 60, 0.24);
}

.body-content {
	width: min(1140px, 95vw);
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
}

.mobile-newsletter-intro {
	display: none;
}

.body-image {
	flex: 1 1 45%;
	min-width: 280px;
}

.body-image img {
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.form-frame-wrap {
	flex: 1 1 55%;
	width: min(100%, 760px);
	min-height: 0;
	height: auto;
	margin: 0 auto;
	padding: 0;
}

.form-frame {
	width: 100%;
	height: auto;
	min-height: 1px;
	border: 0;
	display: block;
	background: transparent;
}

.game-main {
	width: 100%;
	padding: 1.2rem 0 3.2rem;
	align-items: flex-start;
}

.game-shell {
	width: min(1600px, calc(100vw - 2.5rem));
	height: auto;
	animation: fade-up 0.7s ease;
}

.game-shell h1 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin-bottom: 0.45rem;
}

.game-subtitle {
	color: var(--muted);
	line-height: 1.55;
	margin-bottom: 1rem;
}

.game-frame-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	margin: 0 auto;
	border-radius: 14px;
	overflow: hidden;
	background: #111111;
	box-shadow: 0 12px 24px rgba(14, 29, 60, 0.14);
}

.game-frame {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #111111;
}

.game-fullscreen-btn {
	position: absolute;
	right: 0.7rem;
	bottom: 0.7rem;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 999px;
	background: rgba(12, 17, 28, 0.72);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.26);
	z-index: 3;
}

.game-fullscreen-btn:hover,
.game-fullscreen-btn:focus-visible {
	background: rgba(14, 29, 60, 0.9);
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
	outline: none;
}

.game-help {
	text-align: center;
	margin-top: 0.9rem;
	color: var(--muted);
	font-size: 0.96rem;
	line-height: 1.5;
}

.game-help a {
	color: var(--primary);
	font-weight: 700;
}

.page-title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.2;
	margin-bottom: 0.45rem;
	color: var(--heading);
}

.page-description {
	color: var(--muted);
	line-height: 1.55;
	margin-bottom: 1rem;
}

.page-note {
	font-size: 0.9rem;
	line-height: 1.5;
	font-style: italic;
}

.page-note-warning {
	color: #c62828;
}

.weekly-main {
	width: 100%;
	padding: 1.2rem 0 3.2rem;
	align-items: flex-start;
}

.weekly-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 16px;
}

.weekly-entry {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

body:not(.overlay-open) .weekly-entry:hover {
	transform: scale(1.02);
	box-shadow: none;
}

.date-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.date-trigger::before {
	content: "";
	position: absolute;
	inset: -22px;
	background-image: inherit;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(14px) brightness(0.72);
	transform: none;
	transition: filter 0.4s ease;
	z-index: 0;
}

body:not(.overlay-open) .weekly-entry:hover .date-trigger::before {
	filter: blur(14px) brightness(0.8);
}

.date-text,
.zoom-icon {
	position: relative;
	z-index: 2;
	color: #ffffff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
}

.entry-meta {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	pointer-events: none;
}

.entry-title {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	display: inline-block;
	max-width: calc(100% - 90px);
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	color: #ffffff;
	font-size: 1.05rem;
	line-height: 1.3;
	margin: 0;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
}

.entry-description {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.date-text {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 1px;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 10px 28px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.zoom-icon {
	position: absolute;
	opacity: 0;
	transform: scale(0.8);
}

.zoom-icon svg {
	display: block;
	width: 48px;
	height: 48px;
	fill: #ffffff;
	filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

body:not(.overlay-open) .weekly-entry:hover .date-text,
body:not(.overlay-open) .weekly-entry:active .date-text {
	opacity: 0;
	transform: scale(1.1);
}

body:not(.overlay-open) .weekly-entry:hover .zoom-icon,
body:not(.overlay-open) .weekly-entry:active .zoom-icon {
	opacity: 1;
	transform: scale(1);
}

body.overlay-open .weekly-entry {
	transform: none !important;
	box-shadow: none !important;
}

body.overlay-open .weekly-entry .date-text {
	opacity: 1 !important;
	transform: scale(1) !important;
}

body.overlay-open .weekly-entry .zoom-icon {
	opacity: 0 !important;
	transform: scale(0.8) !important;
}

.new-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: #ff3b30;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 5px 14px;
	border-radius: 30px;
	z-index: 20;
	box-shadow: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	pointer-events: none;
	animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
		box-shadow: none;
	}

	100% {
		transform: scale(1);
	}
}

.fullscreen-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #0a0a0a;
	z-index: 9999999;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.35s ease;
	overflow: hidden;
}

.fullscreen-overlay.active {
	display: flex;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.close-overlay {
	position: fixed;
	top: 24px;
	right: 28px;
	background: transparent !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.5);
	font-size: 2.6rem;
	font-weight: 300;
	cursor: pointer;
	z-index: 99999999;
	transition: color 0.25s ease, transform 0.2s ease;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 8px;
	font-family: inherit;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.close-overlay:hover {
	color: #ffffff;
	transform: scale(1.05);
	background: transparent !important;
}

.close-overlay:active {
	transform: scale(0.92);
}

.slider {
	position: relative;
	width: 100%;
	height: 100%;
	--split: 50%;
}

.overlay-meta {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: min(920px, calc(100% - 40px));
	z-index: 85;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.56);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	pointer-events: none;
}

.overlay-meta h2 {
	color: #ffffff;
	font-size: 1.18rem;
	margin-bottom: 4px;
	line-height: 1.3;
}

.overlay-meta p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.98rem;
	line-height: 1.45;
	margin: 0;
}

.slider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	pointer-events: none;
}

.slider.touch-mode img.active {
	opacity: 1;
	pointer-events: auto;
}

.slider.desktop-compare {
	cursor: ew-resize;
}

.slider.desktop-compare .img-base,
.slider.desktop-compare .img-reveal {
	opacity: 1;
	will-change: clip-path;
}

.slider.desktop-compare .img-base {
	z-index: 1;
}

.slider.desktop-compare .img-reveal {
	z-index: 2;
}

.slider.desktop-compare .img-reveal {
	clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--split);
	width: 2px;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.9);
	z-index: 80;
	pointer-events: none;
	display: none;
	box-shadow: none;
}

.compare-divider::after {
	content: none;
}

.slider.desktop-compare .compare-divider {
	display: block;
}

.nav-zone {
	position: absolute;
	top: 0;
	height: 100%;
	width: 20%;
	z-index: 60;
	display: none;
	align-items: center;
	transition: opacity 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}

.nav-zone.active {
	display: flex;
}

.slider.desktop-compare .nav-zone,
.slider.desktop-compare .nav-zone.active {
	display: none;
}

.nav-zone.left {
	left: 0;
	justify-content: flex-start;
	padding-left: 16px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.68) 0%, transparent 100%);
	opacity: 0;
}

.nav-zone.right {
	right: 0;
	justify-content: flex-end;
	padding-right: 16px;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.68) 0%, transparent 100%);
	opacity: 0;
}

.nav-zone.active:hover {
	opacity: 1;
}

.nav-btn {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.95);
	font-size: 4.5rem;
	font-weight: 200;
	padding: 8px 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
	font-family: inherit;
	line-height: 1;
	opacity: 0.92;
	border-radius: 10px;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	appearance: none;
	-webkit-appearance: none;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
}

.fullscreen-overlay,
.slider,
.slider img,
.weekly-entry,
.nav-zone,
.nav-btn,
.compare-divider {
	user-select: none;
	-webkit-user-select: none;
}

.nav-btn:hover {
	color: #ffffff;
	transform: scale(1.15);
	opacity: 1;
}

.nav-btn:focus,
.nav-btn:active {
	outline: none;
	box-shadow: none;
}

.nav-btn:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.75);
	outline-offset: 2px;
}

.success-panel {
	flex: 1 1 55%;
	width: min(100%, 760px);
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	align-self: center;
}

.success-panel h1 {
	font-family: Georgia, "Times New Roman", serif;
	margin-bottom: 0.7rem;
}

.success-panel p {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--muted);
	margin-bottom: 0.9rem;
}

.success-panel p:last-child {
	margin-bottom: 0;
}

footer {
	border-top: 1px solid var(--border);
	background: #ffffff;
	padding: 1rem 0;
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.socials {
	display: flex;
	gap: 0.85rem;
	list-style: none;
}

.socials a {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.social-icon {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: #ffffff !important;
	border-radius: 4px;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
	font-weight: 700;
}

.socials a:hover {
	color: var(--primary);
}

.social-icon:hover {
	background: var(--primary);
	color: #ffffff !important;
}

.copyright {
	color: var(--muted);
	font-size: 0.92rem;
}

.sib-form {
	background: transparent !important;
	padding: 0 0 1rem !important;
}


/* #sib-container input,
#sib-container textarea {
border: 1px solid var(--border) !important;
border-radius: 12px !important;
background: #ffffff !important;
color: var(--text) !important;
}

#sib-container input::placeholder,
#sib-container textarea::placeholder {
color: rgba(0, 0, 0, 0.45) !important;
font-family: Arial, "Times New Roman", serif !important;
} */

#sib-container a {
	color: var(--primary) !important;
}

#sib-container .sib-form-block[style*="background-color:transparent"] {
	background-color: transparent !important;
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (hover: none) {
	.slider.touch-mode .nav-zone.active {
		opacity: 1 !important;
	}

	.slider.touch-mode .nav-btn {
		opacity: 1 !important;
		font-size: 3.2rem;
		background: rgba(0, 0, 0, 0.34);
	}

	.slider.touch-mode .nav-zone {
		width: 30%;
	}

	.slider.touch-mode .nav-btn:focus,
	.slider.touch-mode .nav-btn:focus-visible,
	.slider.touch-mode .nav-btn:active {
		outline: none !important;
		box-shadow: none !important;
	}
}

@media (max-width: 768px) {
	header {
		padding: 0.85rem 0;
	}

	main {
		padding: 0;
	}

	.footer-content {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.socials {
		width: min(100%, 380px);
		justify-content: space-evenly;
		gap: 0.35rem;
	}

	.socials li {
		flex: 1 1 auto;
		display: flex;
		justify-content: center;
	}

	.header-row[data-mobile-nav] {
		position: relative;
		align-items: center;
	}

	.header-row[data-mobile-nav] .logo {
		width: 64px;
		height: 64px;
	}

	.header-row[data-mobile-nav] .brand {
		gap: 0.55rem;
	}

	.header-row[data-mobile-nav] .brand-text {
		font-size: 0.95rem;
	}

	.header-row[data-mobile-nav] .header-menu-btn {
		display: inline-flex;
	}

	.header-row[data-mobile-nav] .header-actions {
		display: none;
		position: absolute;
		top: calc(100% + 0.45rem);
		right: 0;
		z-index: 30;
		width: min(70vw, 220px);
		padding: 0.45rem;
		border-radius: 12px;
		border: 1px solid rgba(14, 29, 60, 0.12);
		background: #ffffff;
		box-shadow: 0 14px 28px rgba(14, 29, 60, 0.18);
		flex-direction: column;
		gap: 0.4rem;
	}

	.header-row[data-mobile-nav].is-menu-open .header-actions {
		display: flex;
	}

	.header-row[data-mobile-nav] .header-actions .nav-link {
		border-radius: 9px;
		justify-content: center;
		padding: 0.52rem 0.7rem;
		font-size: 0.88rem;
		box-shadow: none;
	}

	.weekly-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 12px;
	}

	.date-text {
		font-size: 1.2rem;
		padding: 6px 18px;
	}

	.zoom-icon svg {
		width: 36px;
		height: 36px;
	}

	body:not(.overlay-open) .weekly-entry .zoom-icon {
		opacity: 1;
		transform: scale(1);
	}

	.new-badge {
		top: 10px;
		right: 10px;
		font-size: 0.65rem;
		padding: 3px 12px;
	}

	.entry-meta {
		left: 10px;
		right: 10px;
		bottom: 10px;
		padding: 9px 10px;
	}

	.entry-title {
		font-size: 0.95rem;
	}

	.entry-description {
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.close-overlay {
		top: 16px;
		right: 18px;
		font-size: 2.2rem;
	}

	.nav-btn {
		font-size: 2.8rem;
	}

	.nav-zone {
		width: 25%;
	}

	.nav-zone.left {
		padding-left: 8px;
	}

	.nav-zone.right {
		padding-right: 8px;
	}

	.overlay-meta {
		width: calc(100% - 24px);
		bottom: 12px;
		padding: 10px 12px;
	}

	.overlay-meta h2 {
		font-size: 1rem;
	}

	.overlay-meta p {
		font-size: 0.86rem;
	}

	.newsletter-title {
		font-size: 26px;
	}

	.newsletter-description,
	.optin-copy,
	.declaration-copy,
	.form-message,
	.form-label {
		font-size: 14px;
	}
	.declaration-copy {
		font-size: 12px;
		line-height: 1.35;
	}
	
	.svgIcon-sphere {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 600px) {
	.home-page .body-content {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}

	.home-page .mobile-newsletter-intro {
		display: grid;
		grid-template-columns: minmax(88px, 34%) 1fr;
		gap: 0.65rem;
		align-items: center;
	}

	.home-page .mobile-newsletter-intro__image-wrap {
		min-width: 0;
	}

	.home-page .mobile-newsletter-intro__image {
		width: 100%;
		height: auto;
		max-height: 240px;
		object-fit: contain;
		border-radius: 12px;
		display: block;
	}

	.home-page .mobile-newsletter-intro__copy h2 {
		font-family: Georgia, "Times New Roman", serif;
		font-size: 1.15rem;
		line-height: 1.2;
		color: #3c4858;
		margin-bottom: 0.3rem;
	}

	.home-page .mobile-newsletter-intro__copy p {
		font-family: Arial, sans-serif;
		font-size: 0.9rem;
		line-height: 1.35;
		color: #3c4858;
	}

	.home-page .body-image {
		display: none;
	}

	.hero {
		padding: 1.6rem 1.1rem;
	}

	.form-page-body {
		display: block;
		min-height: 0;
	}

	.body-content {
		flex-direction: column;
	}

	.home-page .form-frame-wrap {
		flex: 1 1 auto;
		width: 100%;
		min-height: 0;
	}

	.home-page .form-frame {
		width: 100%;
	}

	.body-image {
		min-width: 0;
	}

	.body-image img {
		min-height: 220px;
		max-height: 360px;
	}

	.form-frame-wrap {
		min-height: 0;
		height: auto;
	}

	.success-panel {
		width: 100%;
		padding: 1.2rem;
	}

	.game-main {
		padding-top: 0.4rem;
	}

	.game-shell {
		padding: 1.2rem 0.95rem;
	}

	.game-frame {
		height: 100%;
	}

	.game-frame-wrap {
		width: 100%;
	}

	.game-fullscreen-btn {
		right: 0.55rem;
		bottom: 0.55rem;
		width: 38px;
		height: 38px;
	}

	.form-frame {
		height: auto;
		min-height: 0;
	}

	.sib-form {
		padding: 0 !important;
	}

	.header-row {
		align-items: center;
		flex-direction: row;
	}

	.roadmap-main {
		padding-top: 0.4rem;
	}

	.roadmap-shell {
		padding: 1.35rem 1rem;
	}

	.roadmap-track {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		min-height: 0;
		padding: 0;
	}

	.roadmap-track::before {
		display: none;
	}

	.milestone {
		position: static;
		transform: none;
		width: 100%;
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		column-gap: 0.9rem;
		align-items: start;
	}

	.milestone-date {
		grid-column: 1 / 3;
		justify-self: start;
		margin-bottom: 0.5rem;
	}

	.milestone-node {
		grid-row: 2;
		width: 84px;
		height: 84px;
	}

	.milestone-detail {
		grid-row: 2;
		opacity: 1;
		visibility: visible;
		transform: none;
		margin-top: 0;
	}
}

@font-face {
	font-display: block;
	font-family: Roboto;
	src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff");
}

@font-face {
	font-display: fallback;
	font-family: Roboto;
	font-weight: 600;
	src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff");
}

@font-face {
	font-display: fallback;
	font-family: Roboto;
	font-weight: 700;
	src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff");
}

:where(.sib-form-message-panel) {
	display: none;
}

:where(.sib-form-message-panel .sib-notification__icon) {
	width: 20px;
	height: 20px;
}

.newsletter-form {
	text-align: center;
	align-items: center;
	background-color: #eff2f7;
}

.form-message {
	font-family: Arial, sans-serif;
	font-size: 16px;
	text-align: left;
	border-radius: 3px;
	max-width: 540px;
}

.form-message-error {
	color: #661d1d;
	background-color: #ffeded;
	border-color: #ff4949;
}

.form-message-success {
	color: #085229;
	background-color: #e7faf0;
	border-color: #13ce66;
}

.newsletter-container {
	max-width: 540px;
	text-align: center;
	background-color: rgba(255, 255, 255, 1);
	border-color: #c0ccd9;
	border-radius: 3px;
	direction: ltr;
}

.form-section {
	padding: 8px 0;
}

.newsletter-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 700;
	text-align: left;
	color: #3c4858;
	background-color: transparent;
}

.newsletter-description {
	font-family: Arial, sans-serif;
	font-size: 16px;
	text-align: left;
	color: #3c4858;
	background-color: transparent;
}

.form-label {
	font-weight: 700;
	text-align: left;
	font-family: Arial, sans-serif;
	font-size: 16px;
	color: #3c4858;
}

.form-error-label {
	font-family: Arial, sans-serif;
	font-size: 16px;
	text-align: left;
	color: #661d1d;
	background-color: #ffeded;
	border-color: #ff4949;
	border-radius: 3px;
}

.form-hint {
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-align: left;
	color: #949ba7;
	text-align: left;
}

.optin-copy {
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-align: left;
	color: #3c4858;
	background-color: transparent;
}

.entry__label_optin {
	display: inline !important;
}

.optin-required {
	display: inline;
}

.form-declaration {
	direction: ltr;
}

body.compact-form-intro .form-section-intro-title,
body.compact-form-intro .form-section-intro-description {
	display: none;
}

.declaration-copy {
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-align: left;
	color: #687484;
	background-color: transparent;
}

.svgIcon-sphere {
	width: 63px;
	height: 63px;
}

.submit-row {
	text-align: left;
}

.submit-button {
	font-family: Arial, sans-serif;
	font-size: 14px;
	width: 100%;
	text-align: center;
	color: #ffffff;
	background-color: var(--primary);
	border-width: 0px;
	border-radius: 4px;
}

.error-home-button {
	width: auto;
	display: inline-block;
	text-decoration: none;
	padding: 0.75rem 1.2rem;
	line-height: 1.1;
}

@media (max-width: 768px) {
	.form-declaration {
		display: flex;
		align-items: flex-start;
		gap: 0.45rem;
	}

	.form-declaration .declaration-block-icon {
		flex: 0 0 auto;
		line-height: 1;
	}

	.form-declaration .declaration-copy {
		flex: 1 1 auto;
	}

	.declaration-copy {
		font-size: 12px;
		line-height: 1.35;
	}

	.svgIcon-sphere {
		width: 18px !important;
		height: 18px !important;
	}
}

@media (max-width: 768px) {
	#sib-container {
		padding: 0 !important;
	}
	#sib-container .form-declaration {
		display: flex !important;
		flex-direction: row !important;
		align-items: flex-start !important;
		gap: 0.45rem !important;
	}

	#sib-container .form-declaration .declaration-block-icon {
		display: inline-flex !important;
		align-items: flex-start !important;
		flex: 0 0 auto !important;
		margin: 0 !important;
		line-height: 1 !important;
		padding: 0 !important;
	}

	#sib-container .form-declaration .declaration-copy {
		flex: 1 1 auto !important;
		margin: 0 !important;
	}

	#sib-container .form-declaration .declaration-copy p {
		margin: 0 !important;
	}
}