:root {
	--bg: #f8fafc;
	--text: #0f172a;
	--muted: #64748b;
	--muted-2: #94a3b8;
	--border: #e2e8f0;
	--card: #ffffff;
	--brand: #d9822b;
	--brand-soft: #fff4e6;
	--whats: #16a34a;
	--whats-soft: #ecfdf5;
	--ring: rgba(217, 130, 43, 0.35);
	--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 18px 40px -12px rgba(15, 23, 42, 0.18);
}

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(28px, 6vw, 72px) 20px;
	overflow-x: hidden;
}

.bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background:
		radial-gradient(1200px 600px at 50% -10%, #ffffff, transparent 70%),
		var(--bg);
}

.bg-mesh {
	position: absolute;
	inset: -25%;
	background:
		radial-gradient(34vmax 34vmax at 16% 18%, rgba(217, 130, 43, 0.10), transparent 60%),
		radial-gradient(30vmax 30vmax at 84% 26%, rgba(235, 167, 196, 0.10), transparent 60%),
		radial-gradient(36vmax 36vmax at 72% 84%, rgba(217, 130, 43, 0.08), transparent 62%);
	filter: blur(8px);
	animation: mesh-drift 40s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
	0% {
		transform: translate3d(-2%, -2%, 0) scale(1.05);
	}

	100% {
		transform: translate3d(2%, 2%, 0) scale(1.12);
	}
}

.bg-notions {
	position: absolute;
	inset: 0;
}

.bg-notions .notion {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--brand);
	will-change: transform;
}

.page {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(26px, 4vw, 40px);
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.logo {
	filter: drop-shadow(0 16px 26px rgba(15, 23, 42, 0.14));
}
.logo img {
	max-width: 240px;
	height: auto;
}

.brand {
	margin: 0;
	font-weight: 800;
	font-size: clamp(2rem, 7vw, 3rem);
	line-height: 1;
	letter-spacing: -0.025em;
	background: linear-gradient(180deg, #f0a44e, var(--brand));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.channels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
	max-width: 580px;
}

.card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 26px 24px;
	border-radius: 16px;
	background: var(--card);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: #cbd5e1;
}

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
}

.card__icon img {
	width: 24px;
	height: 24px;
}

.card__icon--shopee {
	background: var(--brand-soft);
	color: var(--brand);
}

.card__icon--whats {
	background: var(--whats-soft);
	color: var(--whats);
}

.card__title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.card__desc {
	margin: -4px 0 0;
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.5;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 4px;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: filter 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}

.btn img {
	width: 15px;
	height: 15px;
	filter: brightness(0) invert(1);
}

.btn--primary {
	background: var(--brand);
	box-shadow: 0 6px 16px -6px var(--ring);
}

.btn--whats {
	background: var(--whats);
	box-shadow: 0 6px 16px -6px rgba(22, 163, 74, 0.4);
}

.btn:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.btn:focus-visible {
	outline: 3px solid var(--ring);
	outline-offset: 2px;
}

.card__support {
	margin-top: 2px;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--brand);
	text-decoration: none;
}

.card__support:hover {
	text-decoration: underline;
}

.card__support:focus-visible {
	outline: 2px solid var(--ring);
	outline-offset: 2px;
	border-radius: 4px;
}

.company {
	margin-top: 6px;
	text-align: center;
	font-size: 0.74rem;
	line-height: 1.6;
	color: var(--muted-2);
}

.company address {
	font-style: normal;
}

.company p {
	margin: 4px 0 0;
}

@media (max-width: 460px) {
	.channels {
		grid-template-columns: 1fr;
	}
}