*,*::before,*::after { box-sizing: border-box; }
:root {
	--neu: #e8eef4;
	--neu-2: #f4f7fb;
	--ink: #0f172a;
	--ink-2: #334155;
	--ink-3: #64748b;
	--gold: #d4a017;
	--gold-2: #b8860b;
	--gold-soft: #f6e7b8;
	--green: #15803d;
	--green-2: #166534;
	--accent: #0369a1;
	--card: #e8eef4;
	--line: rgba(148,163,184,0.35);
	--ring: #0369a1;
	--glass: rgba(255,255,255,0.52);
	--glass-strong: rgba(255,255,255,0.72);
	--glass-line: rgba(255,255,255,0.78);
	--neu-dark: #c5d0dc;
	--neu-light: #ffffff;
	--neu-out: 8px 8px 16px var(--neu-dark), -8px -8px 16px var(--neu-light);
	--neu-out-sm: 5px 5px 10px var(--neu-dark), -5px -5px 10px var(--neu-light);
	--neu-in: inset 5px 5px 10px var(--neu-dark), inset -5px -5px 10px var(--neu-light);
	--neu-in-sm: inset 3px 3px 6px var(--neu-dark), inset -3px -3px 6px var(--neu-light);
	--shadow-glass: 0 10px 40px rgba(15,23,42,0.08);
	--radius: 20px;
	--radius-sm: 14px;
	--z-nav: 80;
	--z-drawer: 100;
	--z-scrim: 90;
}
html { scroll-behavior: smooth; }
html, body {
	margin: 0;
	padding: 0;
	background: var(--neu);
	color: var(--ink);
	font-family: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	touch-action: manipulation;
	overscroll-behavior-x: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, .btn, .nav-cta, .nav-toggle, summary { cursor: pointer; }
.wrap { width: min(1180px, 100%); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .wrap { padding: 0 22px; } }

.skip {
	position: absolute; left: 12px; top: 8px; z-index: 200;
	padding: 10px 14px; border-radius: 10px;
	background: var(--ink); color: #fff; font-weight: 700;
	transform: translateY(-140%);
}
.skip:focus { transform: none; }

/* Glass layers — header, overlays, drawers */
.glass {
	background: var(--glass);
	backdrop-filter: blur(18px) saturate(1.35);
	-webkit-backdrop-filter: blur(18px) saturate(1.35);
	border: 1px solid var(--glass-line);
	box-shadow: var(--shadow-glass);
}
.glass-strong {
	background: var(--glass-strong);
	backdrop-filter: blur(22px) saturate(1.4);
	-webkit-backdrop-filter: blur(22px) saturate(1.4);
	border: 1px solid var(--glass-line);
	box-shadow: var(--shadow-glass);
}

/* Neu surfaces — cards, containers, inputs */
.neu-card {
	background: var(--neu);
	border-radius: var(--radius);
	box-shadow: var(--neu-out);
	border: 0;
}
.neu-inset {
	background: var(--neu);
	border-radius: var(--radius-sm);
	box-shadow: var(--neu-in);
	border: 0;
}

h1, h2, h3, .logo, .price-card .amt, .cta-final h2 {
	font-family: "Plus Jakarta Sans", sans-serif;
	letter-spacing: -0.03em;
	font-weight: 700;
}

/* Header / toolbar */
.site-header {
	position: sticky; top: 0; z-index: var(--z-nav);
	padding: 10px 0;
}
.site-header .toolbar {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 10px 12px;
	border-radius: 18px;
	min-height: 56px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; color: var(--ink); }
.logo-mark {
	width: 36px; height: 36px; border-radius: 12px;
	background: var(--neu);
	box-shadow: var(--neu-out-sm);
	display: grid; place-items: center;
	color: var(--gold-2); font-weight: 800; font-size: 14px;
}
.nav-links { display: none; gap: 6px; align-items: center; }
.nav-links a {
	display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px;
	border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--ink-2);
	transition: background 180ms ease, color 180ms ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.45); }
.nav-cta {
	display: none;
	align-items: center; justify-content: center;
	min-height: 44px; padding: 8px 16px; border-radius: 12px;
	background: var(--neu);
	box-shadow: var(--neu-out-sm);
	color: var(--ink); font-weight: 700; font-size: 13.5px;
	transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle {
	width: 44px; height: 44px; border: 0; border-radius: 12px;
	background: var(--neu); box-shadow: var(--neu-out-sm);
	display: grid; place-items: center; color: var(--ink);
}
.nav-toggle svg { pointer-events: none; }
@media (min-width: 900px) {
	.nav-links, .nav-cta { display: flex; }
	.nav-toggle { display: none; }
}

.nav-scrim {
	position: fixed; inset: 0; z-index: var(--z-scrim);
	background: rgba(15,23,42,0.42);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0; pointer-events: none;
	transition: opacity 220ms ease;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer {
	position: fixed; top: 0; right: 0; z-index: var(--z-drawer);
	width: min(320px, 88vw); height: 100dvh;
	padding: 20px 18px 28px;
	border-radius: 24px 0 0 24px;
	transform: translateX(104%);
	transition: transform 260ms ease;
	display: flex; flex-direction: column; gap: 8px;
}
.nav-drawer.is-open { transform: none; }
.nav-drawer .drawer-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 12px;
}
.nav-drawer a {
	display: flex; align-items: center; min-height: 48px; padding: 10px 12px;
	border-radius: 14px; font-weight: 600; color: var(--ink);
}
.nav-drawer a:hover { background: rgba(255,255,255,0.5); }
.drawer-close {
	width: 44px; height: 44px; border: 0; border-radius: 12px;
	background: var(--neu); box-shadow: var(--neu-out-sm);
	display: grid; place-items: center;
}

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 48px; padding: 12px 20px; border-radius: 14px;
	font-weight: 700; font-size: 14px; border: 0;
	transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
	text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn-primary {
	background: linear-gradient(180deg, #f0c14b, var(--gold-2));
	color: #1a1408;
	box-shadow: 6px 6px 12px var(--neu-dark), -4px -4px 10px var(--neu-light);
}
.btn-primary[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-ghost {
	background: var(--neu);
	color: var(--ink);
	box-shadow: var(--neu-out-sm);
}
.btn-green {
	background: linear-gradient(180deg, #22c55e, var(--green));
	color: #fff;
	box-shadow: 6px 6px 12px var(--neu-dark), -4px -4px 10px var(--neu-light);
}
.btn:focus-visible, .nav-cta:focus-visible, a:focus-visible, .nav-toggle:focus-visible, .drawer-close:focus-visible {
	outline: 3px solid var(--ring);
	outline-offset: 3px;
}

/* Hero */
header.hero { padding: 28px 0 48px; }
.hero-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) {
	header.hero { padding: 48px 0 72px; }
	.hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.hero-pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px; border-radius: 999px;
	background: var(--neu);
	box-shadow: var(--neu-in-sm);
	color: var(--ink-2); font-size: 12.5px; font-weight: 600;
}
.hero-pill .dot {
	width: 8px; height: 8px; background: var(--green); border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(21,128,61,0.16);
}
h1.hero-title { font-size: clamp(28px, 5vw, 48px); line-height: 1.12; margin: 16px 0; color: var(--ink); }
h1 .accent { color: var(--accent); }
.hero-sub { font-size: 16px; color: var(--ink-2); margin: 0 0 22px; max-width: 36em; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust .pip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 12px; min-height: 40px;
	border-radius: 999px;
	background: var(--neu);
	box-shadow: var(--neu-out-sm);
	font-size: 13px; color: var(--ink-2); font-weight: 600;
}
.hero-trust .pip svg { flex-shrink: 0; color: var(--green); }
.hero-photo {
	margin: 0; border-radius: 24px; overflow: hidden;
	aspect-ratio: 16/9; background: var(--neu);
	box-shadow: var(--neu-out);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

section { padding: 48px 0; }
@media (min-width: 768px) { section { padding: 72px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.eyebrow {
	display: inline-block; padding: 6px 12px; border-radius: 999px;
	background: var(--neu); box-shadow: var(--neu-in-sm);
	color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px;
}
h2.section-title { font-size: clamp(22px, 3.4vw, 34px); line-height: 1.2; margin: 0 0 12px; }
.section-sub { font-size: 16px; color: var(--ink-2); margin: 0; }

.products-light { background: transparent; }
.product-story {
	display: grid; gap: 24px; align-items: center;
	margin: 0 0 28px; padding: 20px;
	border-radius: 24px;
	background: var(--neu);
	box-shadow: var(--neu-out);
}
@media (min-width: 900px) {
	.product-story { grid-template-columns: 1fr 1fr; gap: 36px; padding: 28px; margin-bottom: 40px; }
	.product-story.reverse { direction: rtl; }
	.product-story.reverse > * { direction: ltr; }
}
.product-story h3 { font-size: clamp(22px, 3vw, 28px); margin: 8px 0 12px; }
.product-story-copy p { color: var(--ink-2); margin: 0 0 16px; }
.story-list { margin: 0 0 20px; padding: 0; list-style: none; }
.story-list li { position: relative; padding: 8px 0 8px 28px; color: var(--ink); font-size: 15px; }
.story-list li::before {
	content: ""; position: absolute; left: 0; top: 12px;
	width: 14px; height: 14px; border-radius: 50%;
	background: var(--neu);
	box-shadow: var(--neu-in-sm);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l3 3 6-6' stroke='%2315803d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.product-story-media { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--neu-in); }
.product-story-media img { width: 100%; height: 100%; object-fit: cover; }
.explain-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .explain-grid { grid-template-columns: 1fr 1fr; } }
.explain-card {
	margin: 0; border-radius: 18px; overflow: hidden;
	background: var(--neu); box-shadow: var(--neu-out);
}
.explain-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.explain-card figcaption { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; }
.explain-card strong { font-size: 16px; }
.explain-card span { color: var(--ink-2); font-size: 14px; }

.pricing { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch; }
@media (min-width: 700px) { .pricing { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }
.price-card {
	background: var(--neu);
	border-radius: 22px;
	padding: 0 22px 24px;
	display: flex; flex-direction: column;
	box-shadow: var(--neu-out);
	position: relative;
}
.price-card.featured { outline: 2px solid rgba(212,160,23,0.45); }
.price-card.featured::before {
	content: 'BEST VALUE'; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 1;
	background: var(--glass-strong); backdrop-filter: blur(12px);
	color: var(--ink); font-weight: 800; font-size: 11px;
	padding: 6px 12px; border-radius: 999px; letter-spacing: 0.06em;
	border: 1px solid var(--glass-line);
}
.price-card h3 { margin: 0 0 6px; font-size: 17px; }
.price-card .desc { color: var(--ink-3); font-size: 14px; margin: 0 0 16px; }
.price-card .amt { font-size: clamp(32px, 5vw, 40px); font-weight: 800; margin: 0 0 4px; }
.price-card .amt small { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.price-card .per { font-size: 13px; color: var(--ink-3); margin: 0 0 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.price-card ul li { padding: 8px 0 8px 28px; position: relative; font-size: 14px; }
.price-card ul li::before {
	content: ''; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; border-radius: 50%;
	background: var(--neu); box-shadow: var(--neu-in-sm);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l3 3 6-6' stroke='%2315803d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.price-card .btn { width: 100%; }
.price-cover { margin: 0 -22px 18px; aspect-ratio: 16/9; background: #d7e0ea; }
.price-cover img { width: 100%; height: 100%; object-fit: cover; }
.price-card.featured .price-cover { margin-top: 0; }

.how { display: grid; gap: 16px; }
@media (min-width: 700px) { .how { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--neu); border-radius: 18px; padding: 22px; box-shadow: var(--neu-out); }
.step-num {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--neu); box-shadow: var(--neu-out-sm);
	color: var(--accent); display: grid; place-items: center; font-weight: 800; margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; font-size: 16px; }
.step p { margin: 0; font-size: 14px; color: var(--ink-2); }

.faq { max-width: 760px; margin: 0 auto; }
details.faq-item {
	background: var(--neu); border-radius: 16px; padding: 6px 8px;
	margin-bottom: 12px; box-shadow: var(--neu-out-sm);
}
details.faq-item[open] { box-shadow: var(--neu-out); }
details.faq-item summary {
	font-weight: 700; list-style: none;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	min-height: 48px; padding: 10px 12px; font-size: 15px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
	content: ''; width: 28px; height: 28px; flex-shrink: 0;
	background: var(--neu); box-shadow: var(--neu-in-sm); border-radius: 8px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 14px;
}
details.faq-item[open] summary::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
details.faq-item p { margin: 0 12px 14px; color: var(--ink-2); font-size: 14.5px; }

.cta-final {
	text-align: center; padding: 40px 20px; border-radius: 24px; margin: 24px auto 48px;
	background: var(--glass-strong);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-line);
	box-shadow: var(--neu-out);
}
.cta-final h2 { font-size: clamp(22px, 3vw, 32px); margin: 0 0 12px; }
.cta-final p { color: var(--ink-2); margin: 0 0 24px; }
.cta-final .btn-ghost { color: var(--ink); }

footer {
	padding: 40px 0 28px; color: var(--ink-2); font-size: 14px;
}
.foot-inner {
	padding: 28px 22px 20px;
	border-radius: 24px;
	background: var(--glass);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--glass-line);
}
.foot-grid { display: grid; gap: 24px; margin-bottom: 24px; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; } }
.foot-col h4 { color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; }
.foot-col a { display: inline-flex; align-items: center; min-height: 40px; margin: 2px 0; color: var(--ink-2); }
.foot-col a:hover { color: var(--ink); }
.foot-bot {
	padding-top: 16px; border-top: 1px solid var(--line);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	font-size: 12.5px; color: var(--ink-3);
}

/* Checkout / pay flows */
.flow-wrap { max-width: 560px; margin: 40px auto 64px; padding: 0 16px; }
.flow-card {
	background: var(--neu); border-radius: 22px; padding: 28px 22px;
	box-shadow: var(--neu-out);
}
.flow-card h1 { margin: 0 0 10px; font-size: clamp(22px, 4vw, 26px); }
.flow-card p { color: var(--ink-2); }
.flow-card label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin: 16px 0 6px; }
.flow-card input[type="email"], .flow-card input[type="text"] {
	width: 100%; min-height: 48px; padding: 12px 14px;
	border: 0; border-radius: 14px; font-size: 16px; font-family: inherit;
	background: var(--neu); color: var(--ink);
	box-shadow: var(--neu-in);
}
.flow-card input:focus { outline: 3px solid var(--ring); outline-offset: 2px; }
.flow-card .summary { background: var(--neu); box-shadow: var(--neu-in-sm); border-radius: 14px; padding: 16px 18px; margin: 12px 0 22px; }
.flow-card .summary .row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; color: var(--ink-2); }
.flow-card .summary .total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 800; color: var(--ink); font-size: 18px; }
.flow-card .btn { width: 100%; }
.flow-card .err { background: #fee2e2; color: #991b1b; padding: 10px 14px; border-radius: 12px; font-size: 13.5px; margin-bottom: 16px; box-shadow: var(--neu-in-sm); }
.flow-card .ok  { background: #dcfce7; color: #14532d; padding: 10px 14px; border-radius: 12px; font-size: 13.5px; margin-bottom: 16px; box-shadow: var(--neu-in-sm); }
.flow-back { display: inline-flex; min-height: 44px; align-items: center; margin-top: 12px; font-size: 13px; color: var(--ink-3); }
.pay-grid { display: grid; gap: 22px; }
@media (min-width: 700px) { .pay-grid { grid-template-columns: 240px 1fr; } }
.pay-qr-frame { background: var(--neu); box-shadow: var(--neu-out-sm); border-radius: 16px; padding: 12px; text-align: center; }
.pay-qr-frame img { margin: 0 auto; }
.pay-qr-frame .upi-brands { font-size: 11px; color: var(--ink-3); margin-top: 8px; }
.pay-amount { font-size: clamp(28px, 6vw, 38px); font-weight: 800; color: var(--green); letter-spacing: -1px; }
.pay-amount small { display: block; font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; margin-bottom: 2px; }
.pay-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; gap: 8px; }
.pay-row:last-child { border-bottom: 0; }
.pay-row .label { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; }
.pay-row .value { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 14px; word-break: break-all; }
.pay-copy { background: var(--neu); color: var(--ink); border: 0; border-radius: 8px; font-size: 11px; min-height: 32px; padding: 4px 10px; box-shadow: var(--neu-out-sm); }
.pay-countdown {
	background: var(--glass-strong); backdrop-filter: blur(10px);
	color: var(--ink); font-weight: 800; font-size: 14px;
	padding: 8px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
	border: 1px solid var(--glass-line);
}
.pay-warn { background: var(--neu); box-shadow: var(--neu-in-sm); border-radius: 12px; padding: 12px 14px; font-size: 13px; color: #6b5111; margin: 18px 0; }
.pay-utr-form input[type="text"] { font-family: ui-monospace, Menlo, Consolas, monospace; }

.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.pill.ok { background: #dcfce7; color: #166534; }
.pill.pending, .pill.warn { background: #fef3c7; color: #92400e; }
.pill.wa { background: #d1fae5; color: #047857; }

.trial-banner {
	background: var(--neu); box-shadow: var(--neu-out);
	border-radius: 20px; padding: 22px 20px; margin-bottom: 28px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.trial-banner-content { flex: 1 1 280px; }
.trial-banner-pill {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--neu); box-shadow: var(--neu-in-sm);
	color: var(--green-2); font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
	padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
}
.trial-banner-title { font-size: clamp(18px, 3vw, 22px); font-weight: 800; margin: 0 0 6px; color: var(--ink); }
.trial-banner-sub { margin: 0; color: var(--ink-2); font-size: 14px; }
.trial-banner-cta { flex-shrink: 0; width: 100%; }
@media (min-width: 640px) { .trial-banner-cta { width: auto; } }

/* Showcase (product mockups stay as device chrome) */
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 24px; }
@media (min-width: 900px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; } }
@media (min-width: 1180px) { .showcase-grid { grid-template-columns: repeat(3, 1fr); } }
.showcase-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.showcase-cap { font-size: 16px; font-weight: 700; margin: 22px 0 6px; max-width: 360px; }
.showcase-sub { font-size: 13.5px; color: var(--ink-2); margin: 0; max-width: 380px; }
.showcase-row-title {
	font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink-3); text-transform: uppercase;
	margin: 40px 0 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.showcase-row-title:first-of-type { margin-top: 0; }
.showcase-row-title em { font-style: normal; color: var(--ink); }

.device-frame { position: relative; box-shadow: var(--neu-out); }
.device-phone { width: min(300px, 86vw); height: 600px; border-radius: 38px; background: #1e293b; padding: 14px; }
.device-phone .device-notch {
	position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
	width: 110px; height: 26px; background: #1e293b; border-radius: 0 0 18px 18px; z-index: 2;
}
.device-phone .device-screen { width: 100%; height: 100%; border-radius: 26px; background: #f8fafc; overflow: hidden; position: relative; }
.device-laptop { width: 100%; max-width: 540px; border-radius: 16px; background: var(--neu); padding: 0; }
.device-laptop .laptop-bar {
	display: flex; align-items: center; gap: 6px; padding: 10px 14px;
	background: var(--glass-strong); backdrop-filter: blur(10px);
	border-radius: 16px 16px 0 0; border-bottom: 1px solid var(--glass-line);
}
.device-laptop .laptop-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.device-laptop .laptop-bar i:nth-child(1) { background: #ef5757; }
.device-laptop .laptop-bar i:nth-child(2) { background: #f4be3a; }
.device-laptop .laptop-bar i:nth-child(3) { background: #5dd06a; }
.device-laptop .laptop-bar .laptop-url { margin-left: 10px; font-size: 11.5px; color: #64748b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.device-laptop .device-screen { border-radius: 0 0 16px 16px; min-height: 280px; padding: 16px; }

.popup-overlay {
	position: absolute; inset: 0;
	background: rgba(15,23,42,0.38);
	backdrop-filter: blur(10px);
	display: flex; align-items: center; justify-content: center; padding: 22px;
}
.popup-modal {
	background: var(--glass-strong);
	backdrop-filter: blur(18px);
	border: 1px solid var(--glass-line);
	border-radius: 16px; padding: 22px 18px; width: 100%; text-align: center;
	box-shadow: var(--shadow-glass);
	animation: popupRise 600ms ease-out;
}
@keyframes popupRise { from { transform: translateY(12px) scale(0.96); opacity: 0; } to { transform: none; opacity: 1; } }
.popup-bell { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; animation: popupSwing 2.4s ease-in-out infinite; transform-origin: 50% 18%; }
@keyframes popupSwing { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-9deg); } 40% { transform: rotate(7deg); } 60% { transform: rotate(-4deg); } 80% { transform: rotate(2deg); } }
.popup-title { font-size: 15px; font-weight: 700; margin: 0 0 10px; }
.popup-amount { font-size: 36px; font-weight: 800; color: var(--green); letter-spacing: -1px; margin: 0 0 14px; }
.popup-warn {
	display: flex; align-items: flex-start; gap: 8px; text-align: left;
	background: var(--neu); box-shadow: var(--neu-in-sm);
	border-radius: 10px; padding: 10px 12px; font-size: 11.5px; color: #6b5111; margin-bottom: 16px;
}
.popup-ok {
	width: 100%; min-height: 44px; padding: 12px 16px; font-weight: 700; font-size: 13px;
	border-radius: 12px; border: 0; cursor: pointer;
	background: linear-gradient(180deg, #22c55e, #15803d); color: #fff;
}

.wa-header { background: #075e54; color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #f0c14b, var(--gold-2)); color: #181818; font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.wa-name { font-size: 14px; font-weight: 600; }
.wa-typing { font-size: 11px; opacity: 0.75; }
.wa-thread { padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 420px; }
.wa-bubble { max-width: 80%; padding: 8px 10px 6px; border-radius: 10px; font-size: 12.5px; color: #111; line-height: 1.4; word-break: break-word; }
.wa-bubble.out { background: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.wa-bubble.in  { background: #d9fdd3; align-self: flex-end; border-bottom-right-radius: 2px; }
.wa-link { color: #075e54; text-decoration: underline; font-size: 11.5px; word-break: break-all; }
.wa-ts { display: block; text-align: right; font-size: 10px; color: #777; margin-top: 4px; }

.oq-title { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; margin-bottom: 14px; }
.oq-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; gap: 8px; }
.oq-row:last-child { border-bottom: 0; }
.oq-meta { display: flex; flex-direction: column; text-align: left; }
.oq-sub { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.oq-pill { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.oq-pill.ok { background: #dcfce7; color: #166534; }
.oq-pill.warn { background: #fef3c7; color: #92400e; }

.success-screen { padding: 36px 22px; background: #fff; height: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.success-mark { width: 56px; height: 56px; margin-bottom: 12px; color: var(--green); }
.success-h { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.success-sub { color: var(--ink-2); font-size: 13.5px; margin: 0 0 18px; }
.success-card-detail { background: var(--neu); box-shadow: var(--neu-in-sm); border-radius: 12px; padding: 14px 16px; width: 100%; text-align: left; margin-bottom: 18px; }
.sc-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 12.5px; }
.sc-label { color: var(--ink-3); }
.sc-value { font-weight: 600; }
.success-btn {
	width: 100%; min-height: 44px; padding: 12px; font-weight: 700; font-size: 13.5px;
	border-radius: 12px; border: 0; cursor: pointer;
	background: linear-gradient(180deg, #f0c14b, var(--gold-2)); color: #1a1408;
}

.mu-page { padding: 22px 18px; height: 100%; display: flex; flex-direction: column; background: var(--neu-2); }
.mu-h { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.mu-p { font-size: 11.5px; color: var(--ink-2); margin: 0 0 14px; }
.mu-meta { font-size: 10.5px; color: var(--ink-3); }
.mu-summary { background: var(--neu); box-shadow: var(--neu-in-sm); border-radius: 10px; padding: 10px 12px; margin-bottom: 12px; }
.mu-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 11.5px; color: var(--ink-2); }
.mu-row.mu-total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 6px; color: var(--ink); }
.mu-label { font-size: 10.5px; font-weight: 600; color: var(--ink-2); margin-top: 8px; margin-bottom: 4px; display: block; }
.mu-input { width: 100%; padding: 8px 10px; border: 0; border-radius: 8px; font-size: 12px; margin-bottom: 12px; font-family: inherit; background: var(--neu); color: var(--ink); box-shadow: var(--neu-in-sm); }
.mu-btn-gold { width: 100%; padding: 11px 12px; border: 0; border-radius: 8px; background: linear-gradient(180deg, #f0c14b, var(--gold-2)); color: #1a1408; font-weight: 700; font-size: 12.5px; }
.mu-btn-green { width: 100%; padding: 11px 12px; border: 0; border-radius: 8px; background: linear-gradient(180deg, #22c55e, var(--green)); color: #fff; font-weight: 700; font-size: 12.5px; margin-top: 4px; }
.mu-countdown { background: var(--glass-strong); color: var(--ink); font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--glass-line); }
.mu-qr { margin: 14px 0; text-align: center; }
.mu-qr-grid {
	display: grid; grid-template-columns: repeat(8, 1fr); gap: 2px;
	width: 144px; height: 144px; margin: 0 auto; padding: 6px;
	background: var(--neu); box-shadow: var(--neu-out-sm); border-radius: 8px;
}
.mu-qr-grid i { background: transparent; aspect-ratio: 1; }
.mu-qr-grid i:nth-child(odd),
.mu-qr-grid i:nth-child(7n+2),
.mu-qr-grid i:nth-child(11n+5) { background: var(--ink); }
.mu-qr-grid i:nth-child(5n+3),
.mu-qr-grid i:nth-child(13n+4) { background: transparent; }
.mu-qr-grid-sm { width: 72px; height: 72px; padding: 3px; gap: 1px; }
.mu-qr-brands { font-size: 9.5px; color: var(--ink-3); margin-top: 8px; }
.mu-pay-amount { font-size: 28px; font-weight: 800; color: var(--green); text-align: center; margin: 10px 0 8px; }
.mu-pay-amount small { display: block; font-size: 9px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; }
.mu-email-app { padding: 16px; height: 100%; background: #fff; }
.mu-email-from { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.mu-email-subject { font-size: 14px; font-weight: 700; margin: 14px 0 12px; }
.mu-email-card { background: var(--neu); box-shadow: var(--neu-in-sm); border-radius: 10px; padding: 14px; margin-bottom: 14px; }
.mu-license-key { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 13px; font-weight: 800; color: var(--green); margin: 6px 0; word-break: break-all; }

@media (max-width: 520px) {
	.device-phone { height: 520px; border-radius: 32px; padding: 10px; }
	.device-phone .device-notch { width: 88px; height: 20px; top: 10px; }
	.device-phone .device-screen { border-radius: 22px; }
	.wa-thread { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.btn, .nav-cta, .nav-drawer, .nav-scrim, .popup-modal, .popup-bell { transition: none; animation: none; }
}
body.nav-lock { overflow: hidden; }
