/* Hero: images/top-header.jpg Ã¢â‚¬â€ MANGO DORADO (navy + coral/yellow CTA) */
:root {
	--page-bg: #0a0c14;
	--header-bg: #090912;
	--card-bg: #151d2e;
	--accent-gradient: linear-gradient(75.74deg, #ff6667 16.59%, #fce61a 82.79%);
	--text-on-accent: #141218;
	--accent-coral: #ff6667;
	--accent-yellow: #fce61a;
	--orange: #FF9B32;
	--text-on-orange: #140a06;
	--green-tag: #5ee86a;
	--green-tag-bg: rgba(53, 194, 32, 0.14);
	--green-tag-border: rgba(94, 232, 106, 0.35);
	--social-bg: #1a2438;
	--font: "Montserrat", system-ui, sans-serif;
	--max-frame: 1440px;
	--content-pad-x: 160px;
	--content-narrow: 1120px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	background: var(--page-bg);
	min-height: 100vh;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

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

/* Header (60px bar) */
.site-header {
	position: relative;
	z-index: 20;
	background: var(--header-bg);
}

.header-bar {
	max-width: var(--max-frame);
	margin: 0 auto;
	min-height: 60px;
	padding: 8px 24px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	flex-wrap: wrap;
}

.header-cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
	border: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, filter 0.2s;
}

.btn:active {
	transform: scale(0.98);
}

.btn-login {
	width: 100px;
	height: 32px;
	padding: 8px;
	border: 2px solid var(--accent-coral);
	border-radius: 1000px;
	background: transparent;
	color: #f2f4f8;
}

.btn-login:hover {
	background: rgba(255, 102, 103, 0.12);
}

.btn-signup {
	width: 100px;
	height: 32px;
	padding: 8px;
	border-radius: 1000px;
	background: var(--accent-gradient);
	color: var(--text-on-accent);
}

.btn-signup:hover {
	filter: brightness(1.08);
}

.btn-join {
	width: 200px;
	height: 56px;
	padding: 16px;
	gap: 6px;
	border-radius: 1000px;
	background: var(--accent-gradient);
	color: var(--text-on-accent);
	font-size: 18px;
	line-height: 24px;
}

.btn-join:hover {
	filter: brightness(1.08);
}

/* Language */
.lang {
	position: relative;
}

.lang-toggle {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px;
	height: 32px;
	min-width: 95px;
	background: transparent;
	border: none;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--font);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
	transition: background 0.2s;
}

.lang-toggle:hover {
	background: rgba(255, 255, 255, 0.06);
}

.lang-toggle[aria-expanded="true"] {
	background: rgba(255, 255, 255, 0.08);
}

.lang-flag svg {
	display: block;
	border-radius: 2px;
	box-shadow: 0 1px 1px -0.5px rgba(0, 0, 0, 0.09);
}

.lang-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 140px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #161d2e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	z-index: 30;
}

.lang-menu li {
	padding: 10px 16px;
	font-size: 13px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.6);
	transition: background 0.15s, color 0.15s;
}

.lang-menu li:hover,
.lang-menu li[aria-selected="true"] {
	background: rgba(53, 194, 32, 0.12);
	color: #fff;
}

/* --- Hero --- */
.hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-visual {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-visual::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: min(42vh, 300px);
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, #090912 0%, #090912 45%, transparent 100%);
}

.hero-photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #0d1018;
	background-image: url("../images/top-header.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.hero-overlay--1 {
	background: linear-gradient(180deg, rgba(10, 12, 20, 0) 0%, rgba(10, 12, 20, 0.55) 55%, #0a0c14 100%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.hero-inner {
	position: relative;
	z-index: 3;
	width: min(100% - 48px, var(--content-narrow));
	padding: 48px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 56px;
}

.brand {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
}

.brand-logo {
	display: block;
	width: min(100%, 440px);
	height: auto;
}

.hero-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.hero-title {
	margin: 0;
	max-width: var(--content-narrow);
	font-weight: 700;
	font-size: clamp(28px, 4.5vw, 52px);
	line-height: 1.38;
	letter-spacing: 2px;
	text-align: center;
	color: #fff;
}

.hero-lead {
	margin: 0;
	max-width: var(--content-narrow);
	font-weight: 400;
	font-size: clamp(18px, 2.2vw, 26px);
	line-height: 40px;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
}

.text-gradient {
	display: inline;
	color: var(--orange);
}

.text-orange {
	color: #ffb36b;
	font-weight: 600;
}

.text-green {
	color: var(--green-tag);
	font-weight: 600;
}

/* About */
.section.about {
	padding: 0;
}

.about-inner {
	max-width: var(--max-frame);
	margin: 0 auto;
	padding: 80px 24px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 60px;
}

.section-title {
	margin: 0;
	text-align: center;
	font-weight: 600;
	font-size: 28px;
	line-height: 38px;
	letter-spacing: 1px;
	color: #fff;
}

.about-tags {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.about-tag {
	box-sizing: border-box;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 26px;
	padding: 4px 10px;
	background: var(--green-tag-bg);
	border: 1px solid var(--green-tag-border);
	border-radius: 1000px;
	box-shadow:
		inset 0 1px 3px rgba(255, 255, 255, 0.03),
		inset 0 -1px 3px -2px rgba(255, 255, 255, 0.03);
	font-weight: 500;
	font-size: 12px;
	line-height: 17px;
	color: #fff;
}

.about-tag img {
	flex-shrink: 0;
}

.cards-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 50px;
	max-width: var(--max-frame);
	margin: 0 auto;
}

.card {
	box-sizing: border-box;
	width: 100%;
	flex: 0 1 425px;
	max-width: 425px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	background: var(--card-bg);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		inset 0 1px 0 rgba(94, 232, 106, 0.18),
		0 1px 1px -0.5px rgba(0, 0, 0, 0.2),
		0 3px 3px -1.5px rgba(0, 0, 0, 0.15);
}

.card-title {
	margin: 0;
	width: 100%;
	font-weight: 600;
	font-size: 22px;
	line-height: 34px;
	letter-spacing: 1px;
	color: #fff;
}

.card-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.card-text {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 1px;
	color: #fff;
}

.card-bullets {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.card-bullet {
	position: relative;
	margin: 0;
	padding-left: 16px;
	font-weight: 600;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 0.8px;
	color: #fff;
}

.card-bullet::before {
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.card-foot {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 1px;
	color: #fff;
}

/* --- Offer --- */
.section.offer {
	padding: 0;
}

.offer-inner {
	max-width: var(--max-frame);
	margin: 0 auto;
	padding: 80px 24px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 60px;
}

.commission-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 80px;
}

.commission-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 300px;
	max-width: 100%;
}

.commission-visual {
	width: 300px;
	height: 300px;
	max-width: 100%;
	border-radius: 32px;
	overflow: hidden;
}

.commission-visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.commission-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
	width: 276px;
	max-width: 100%;
}

.commission-title {
	margin: 0;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 1px;
	color: #fff;
}

.commission-sub {
	margin: 0;
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.8);
}

/* Feature badges: flex wrap, pill grows with text */
.badges-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	gap: 40px;
	padding: 0 24px;
	max-width: var(--max-frame);
	margin: 0 auto;
}

@media (min-width: 1200px) {
	.badges-wrap {
		padding: 0 var(--content-pad-x);
	}
}

.badge {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 24px 8px 8px;
	gap: 20px;
	min-height: 56px;
	flex: 0 1 auto;
	width: auto;
	max-width: 100%;
	background: rgba(53, 194, 32, 0.08);
	border-top: 1px solid rgba(94, 232, 106, 0.45);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		inset 0 -12px 36px rgba(53, 194, 32, 0.12);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	border-radius: 1000px;
}

.badge-wide {
	flex: 1 1 100%;
	max-width: min(580px, 100%);
	margin-left: auto;
	margin-right: auto;
	justify-content: flex-start;
}

.badge-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: linear-gradient(145deg, #4ade63 0%, #22a83a 100%);
	border-radius: 1000px;
	box-shadow:
		0 1px 1px -0.5px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.badge-icon img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.badge-text {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #fff;
}

.offer-cta {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0 0;
}

/* Footer */
.site-footer {
	padding: 80px 24px;
	border-top: none;
}

.footer-inner {
	max-width: var(--max-frame);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.footer-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.footer-links a {
	font-weight: 600;
	font-size: 13px;
	line-height: 24px;
	color: #fff;
	transition: opacity 0.2s;
}

.footer-links a:hover {
	opacity: 0.8;
}

.footer-sep {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 1px 1px -0.5px rgba(0, 0, 0, 0.09);
	flex-shrink: 0;
}

.footer-social {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 1000px;
	background: var(--social-bg);
	box-shadow:
		0 1px 1px -0.5px rgba(0, 0, 0, 0.09),
		0 3px 3px -1.5px rgba(0, 0, 0, 0.09);
	transition: transform 0.15s, filter 0.15s;
}

.social-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

.social-btn img {
	display: block;
}

@media (max-width: 768px) {
	:root {
		--content-pad-x: 24px;
	}

	.header-bar {
		justify-content: center;
	}

	.header-actions {
		justify-content: center;
	}

	.hero-inner {
		gap: 40px;
	}

	.commission-row {
		gap: 48px;
	}

	.badge {
		width: 100%;
		max-width: 420px;
		justify-content: flex-start;
	}

	.footer-links {
		flex-direction: column;
		gap: 12px;
	}

	.footer-sep {
		display: none;
	}

	.cards-grid {
		padding: 0px;
		max-width: none;
	}

	.card {
		flex: 0 1 425px;
		max-width: 425px;
	}

	.badges-wrap {
		padding: 0;
		gap: 10px;
	}
}
