@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	src: url("./resources/InterVariable.woff2") format("woff2");
}
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/*
		RESET styles
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
html {
	font-size: 100.01%;
	overflow-x: clip;
	scroll-behavior: smooth;
	width: 100%;
}
body {
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
	-webkit-touch-callout: none;
}
a {
	color: inherit;
	text-decoration: none;
}
a:active, a:hover {
	outline-width: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	border-style: none;
}
button, input, textarea, select {
	font: inherit;
}
button, input {
	overflow: visible;
}
button, select {
	text-transform: none;
}
/* button, html [type="button"], [type="reset"], [type="submit"] {
 -webkit-appearance: button;
}*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
textarea {
	overflow: auto;
}

/*
		ELEMENTS
*/
body, html {
	font-family: 'Inter', sans-serif;
	height: 100%;
	width: 100%;
}
body {
	align-items: flex-end;
	background: #2b3e61;
	display: flex;
}
img {
	display: block;
}
.photo-img {
	width: 100%;
	max-height: 90vh;
}
.logo img {
	min-width: 120px;
	width: 10vw;
}

/*
		LAYOUT
*/
/* ===== DESKTOP (≥1025px) — layout Coming Soon default ===== */
.content {
	align-items: center;
	display: flex;
	gap: 32px;
	width: 100%;
}
.photo-box {
	/* align-items: flex-end; */
	display: flex;
	justify-content: flex-end;
	width: 50%;
}
.text-column {
	display: flex;
	flex-direction: column;
	width: 50%;
}
.buttons {
	margin-top: 45px;
}

/*
		TEXT
*/
.headline-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 60px;
}
.title {
	font-size: 5.5vw;
	font-weight: 700;
	line-height: 6vw;
}
.title .coming {
	color: #F5F4F0;
}
.title .soon {
	color: #5A9BFD;
}
.title .dot {
	color: #E93853;
}
.subtitle {
	color: #F5F4F0;
	font-size: 2.3vw;
	font-weight: 400;
	line-height: normal;
	width: 38vw;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	height: 46px;
	box-sizing: border-box;
	background: #4280de;
	color: #f5f4f0;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: background 0.3s ease;
	width: fit-content;
	text-decoration: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance: none;
	appearance: none;
}

@media (hover: hover) and (pointer: fine) {
	.cta:hover {
		background: #2262c3;
	}
}

.cta-text {
	color: #F5F4F0;
	font-size: 18px;
	font-weight: 600;
}

/* ============ MOBIL (≤700px) ============
   Figma: Coming Soon - Mobile (393×852)
   Ordine: logo → titlu → subtitlu → buton → poză (jos) */

@media (max-width: 700px) {
	.content {
		flex-direction: column;
		height: 100%;
		justify-content: space-between;
		text-align: center;
	}
	.photo-box {
		justify-content: center;
		order: 2;
		width: 100%;
	}
	.photo-frame {
		max-width: 394px;
	}
	.text-column {
		order: 1;
		padding: 0 20px;
		width: 100%;
		align-items: center;
	}
	.logo {
		margin-top: 41px;
	}
	.logo img {
		height: 50px;
	}
	.headline-body {
		width: 100%;
		margin-top: 42px;
		gap: 16px;
		align-items: center;
	}
	.title {
		font-size: 40px;
		line-height: 40px;
	}
	.subtitle {
		width: 299px;
		font-size: 18px;
		line-height: 24px;
		font-weight: 500;
		letter-spacing: -0.01em;
	}
	.buttons {
		margin-top: 22px;
	}
	.cta {
		margin: 0 auto;
		padding: 12px 24px;
		height: 46px;
		box-sizing: border-box;
	}
	.cta-text {
		font-size: 16px;
	}
	.list-subscribe-desktop {
		display: none !important;
	}
	.list-subscribe-modal-title {
		font-size: 24px;
	}
	.list-subscribe-modal-desc {
		font-size: 16px;
		margin-bottom: 24px;
	}
	.list-subscribe-modal .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-default {
		opacity: 0 !important;
	}
	.list-subscribe-modal .checkbox-group:not(.checkbox-error) .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-hover {
		opacity: 1 !important;
	}
	.list-subscribe-modal .checkbox-group:not(.checkbox-error) .checkbox-control:hover .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-hover,
	.list-subscribe-modal .checkbox-group:not(.checkbox-error) .checkbox-input:focus-visible:not(:checked) ~ .checkbox-icon .checkbox-icon-hover {
		opacity: 1 !important;
	}
	.list-subscribe-modal .checkbox-group.checkbox-error .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-hover {
		opacity: 0 !important;
	}
	.list-subscribe-modal .checkbox-group.checkbox-error .checkbox-icon-error {
		opacity: 1 !important;
	}
	.list-subscribe-modal .checkbox-group.checkbox-error .checkbox-control:hover .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-error {
		opacity: 1 !important;
	}
}

@media (min-width: 701px) and (max-width: 1024px) {
	.logo img {
		width: 120px;
		height: auto;
	}
	.headline-body {
		margin-top: 40px;
	}
	.buttons {
		margin-top: 32px;
	}
	.cta-text {
		font-size: 16px;
	}
}

.list-subscribe-desktop {
	width: 100%;
	max-width: 640px;
	margin-top: 0;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.list-subscribe-desktop.is-open {
	opacity: 1;
	transform: translateY(0);
}
.buttons.is-form-open .cta {
	display: none;
}
.list-subscribe-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}
.list-subscribe-form-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}
.list-subscribe-form-row-stack {
	gap: 12px;
}
.input-group {
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 30px;
	padding: 16px 23px;
	height: 54px;
	gap: 13px;
	border: 1px solid #e5e5e5;
	transition: border-color 0.2s, background-color 0.2s;
	box-sizing: border-box;
}
.input-group:hover {
	background: #ebf5ff;
	border-color: #4280de;
}
.input-group:focus-within {
	background: #ffffff;
	border-color: #4280de;
}
.input-group.input-error {
	border-color: #de4245;
}
.input-group.input-done {
	opacity: 0.6;
	background: #ffffff;
	border-color: transparent;
}
.input-group.input-done input:disabled {
	color: #202f44;
	-webkit-text-fill-color: #202f44;
}
.input-group:hover:not(.input-error):not(.input-done) .input-icon-default,
.input-group:focus-within:not(.input-error):not(.input-done) .input-icon-default {
	opacity: 0;
}
.input-group:hover:not(.input-error):not(.input-done) .input-icon-hover,
.input-group:focus-within:not(.input-error):not(.input-done) .input-icon-hover {
	opacity: 1;
}
.input-group.input-done .input-icon-default,
.input-group.input-done .input-icon-error {
	opacity: 0;
}
.input-group.input-done .input-icon-hover {
	opacity: 1;
}
.input-icon {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.input-icon-state {
	position: absolute;
	inset: 0;
	width: 24px;
	height: 24px;
	transition: opacity 0.2s;
}
.input-icon-hover,
.input-icon-error {
	opacity: 0;
}
.input-group.input-error .input-icon-default,
.input-group.input-error .input-icon-hover {
	opacity: 0;
}
.input-group.input-error .input-icon-error {
	opacity: 1;
}
.input-group input {
	border: none;
	outline: none;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #202f44;
	flex: 1;
	background: transparent;
	min-width: 0;
}
.input-group input::placeholder {
	color: #6c7d96;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 30px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}
.btn-primary {
	background: #4280de;
	color: #f5f4f0;
}

@media (hover: hover) and (pointer: fine) {
	.btn-primary:hover {
		background: #2262c3;
	}
}

.btn-full {
	width: 100%;
	height: 54px;
	padding: 14px 28px;
	font-size: 18px;
	box-sizing: border-box;
}
.newsletter-error {
	display: none;
	font-size: 12px;
	font-weight: 500;
	color: #de4245;
	padding-left: 20px;
	width: 100%;
	margin: 0;
}
.newsletter-error.visible {
	display: block;
}
.newsletter-success {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
}
.newsletter-success.visible {
	display: flex;
}
.newsletter-success img {
	width: 24px;
	height: 24px;
}
.newsletter-success span {
	font-size: 16px;
	font-weight: 600;
	color: #008770;
	white-space: nowrap;
}
.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 0;
	cursor: pointer;
	width: 100%;
	min-width: 0;
}
.checkbox-control {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.checkbox-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}
.checkbox-icon {
	position: absolute;
	inset: 0;
	width: 24px;
	height: 24px;
	pointer-events: none;
}
.checkbox-icon-state {
	position: absolute;
	inset: 0;
	width: 24px;
	height: 24px;
	transition: opacity 0.2s;
}
.checkbox-icon-hover,
.checkbox-icon-checked,
.checkbox-icon-error {
	opacity: 0;
}
.checkbox-control:hover .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-default,
.checkbox-input:focus-visible:not(:checked) ~ .checkbox-icon .checkbox-icon-default {
	opacity: 0;
}
.checkbox-control:hover .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-hover,
.checkbox-input:focus-visible:not(:checked) ~ .checkbox-icon .checkbox-icon-hover {
	opacity: 1;
}
.checkbox-input:checked ~ .checkbox-icon .checkbox-icon-default,
.checkbox-input:checked ~ .checkbox-icon .checkbox-icon-hover {
	opacity: 0;
}
.checkbox-input:checked ~ .checkbox-icon .checkbox-icon-checked {
	opacity: 1;
}
.checkbox-group.checkbox-error .checkbox-icon-default,
.checkbox-group.checkbox-error .checkbox-icon-hover {
	opacity: 0;
}
.checkbox-group.checkbox-error .checkbox-icon-error {
	opacity: 1;
}
.checkbox-group.checkbox-error .checkbox-icon-checked {
	opacity: 0;
}
.checkbox-group.checkbox-error .checkbox-control:hover .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-hover {
	opacity: 0;
}
.checkbox-group.checkbox-error .checkbox-control:hover .checkbox-input:not(:checked) ~ .checkbox-icon .checkbox-icon-error {
	opacity: 1;
}
.checkbox-label {
	flex: 1;
	min-width: 0;
	font-size: 14px;
	font-weight: 500;
	color: #f5f4f0;
	line-height: 1.4;
}
.checkbox-policy-link {
	color: #5a9bfd;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.checkbox-policy-link:hover {
	color: #4280de;
}
.newsletter-checkbox-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
.newsletter-checkbox-error {
	padding-left: 36px;
	font-size: 12px;
	line-height: 1.4;
	max-width: 100%;
	box-sizing: border-box;
	overflow-wrap: break-word;
}

/* ===== MODAL ÎNSCRIERE — markup mobil (activ ≤700px; ascuns ≥701px) ===== */
.list-subscribe-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 4000;
	background: rgba(43, 62, 97, 0.72);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.list-subscribe-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}
.list-subscribe-modal {
	background: #ffffff;
	border-radius: 16px;
	width: 100%;
	max-width: 515px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 24px;
	box-sizing: border-box;
}
.list-subscribe-modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}
.list-subscribe-modal-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	color: #202f44;
	margin: 0;
}
.list-subscribe-modal-close {
	width: 27px;
	height: 27px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	flex-shrink: 0;
}
.list-subscribe-modal-close img {
	width: 24px;
	height: 24px;
}
.list-subscribe-modal-desc {
	font-size: 18px;
	line-height: normal;
	color: #202f44;
	margin: 0 0 32px;
	overflow-wrap: break-word;
}
.list-subscribe-modal .checkbox-label {
	color: #202f44;
}
.list-subscribe-modal .checkbox-policy-link {
	color: #4280de;
}
.list-subscribe-modal .checkbox-policy-link:hover {
	color: #2262c3;
}
.list-subscribe-modal .newsletter-checkbox-field {
	padding-left: 23px;
}
.list-subscribe-modal .list-subscribe-form {
	gap: 16px;
	width: 100%;
	min-width: 0;
}

/* ===== DESKTOP + TABLETĂ (≥701px) — formular inline, modal ascuns ===== */
@media (min-width: 701px) {
	.list-subscribe-modal-overlay {
		display: none;
	}
	.list-subscribe-form-row {
		flex-direction: row;
		align-items: center;
	}
	.list-subscribe-form-row .input-group {
		width: 417px;
		flex-shrink: 0;
	}
	.list-subscribe-form-row .btn-full {
		width: auto;
		flex-shrink: 0;
	}
	.list-subscribe-desktop .newsletter-checkbox-field {
		padding-left: 23px;
	}
}
