:root {
	--bg: #0b032d;
	--bg-2: #1c0440;
	--accent: #ff1755;
	--accent-2: #ffd400;
	--cream: #fff5e6;
	--ink: #1a1333;
	--muted: #bdb6d6;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
	margin: 0;
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
	color: var(--cream);
	background: radial-gradient(1200px 600px at 20% -10%, rgba(255, 23, 85, 0.15), transparent 60%),
		radial-gradient(800px 400px at 90% 0%, rgba(255, 212, 0, 0.15), transparent 60%),
		linear-gradient(180deg, var(--bg), var(--bg-2));
	line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Top Bar */
.top-bar {
	position: sticky; top: 0; z-index: 30;
	background: rgba(11, 3, 45, 0.8);
	backdrop-filter: saturate(140%) blur(8px);
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 16px; border-bottom: 2px solid rgba(255,255,255,0.08);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.3px; }
.brand-badge { font-size: 22px; }
.brand-name { color: #fff; text-decoration: none; }

.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a { color: #fff; text-decoration: none; font-weight: 600; }
.main-nav .nav-cta { padding: 8px 14px; background: var(--accent); border-radius: 999px; }

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 4px solid rgba(255,255,255,0.1); }
#confetti { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; padding: 80px 0 60px; text-align: center; }
.hero-title { font-family: 'Bangers', cursive; font-size: clamp(44px, 7vw, 100px); line-height: 0.9; margin: 0 0 16px; text-shadow: 0 6px 0 rgba(0,0,0,0.25); }
.hero-title span { color: var(--accent-2); transform: rotate(-2deg); display: inline-block; }
.hero-sub { margin: 0 auto 22px; max-width: 800px; color: var(--muted); font-weight: 400; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; }
.trust { margin-top: 16px; display: flex; gap: 18px; justify-content: center; color: #ffeccb; font-size: 14px; opacity: 0.9; flex-wrap: wrap; }

.marquee { position: relative; height: 48px; margin-top: 28px; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px); border-top: 2px dashed rgba(255,255,255,0.2); border-bottom: 2px dashed rgba(255,255,255,0.2); }
.marquee-track { position: absolute; white-space: nowrap; will-change: transform; animation: scroll 28s linear infinite; font-family: 'Bangers', cursive; font-size: 26px; line-height: 48px; color: var(--accent-2); text-shadow: 0 2px 0 rgba(0,0,0,0.35); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; border-radius: 14px; padding: 12px 18px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.btn-primary { background: linear-gradient(180deg, #ff3b6e, var(--accent)); color: white; box-shadow: 0 10px 20px rgba(255, 23, 85, 0.35), inset 0 -2px 0 rgba(0,0,0,0.2); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn:hover { transform: translateY(-2px); }

/* Sections */
.section-title { font-family: 'Bangers', cursive; font-size: clamp(32px, 5vw, 60px); line-height: 1; margin: 28px 0 12px; letter-spacing: 1px; text-shadow: 0 4px 0 rgba(0,0,0,0.2); }
.section-kicker { color: var(--accent-2); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin: 40px 0 6px; }
.section-sub { color: var(--muted); margin: 0 0 36px; }

.container > p { font-size: 17px; }

/* Add breathing room above titles inside content */
main section { padding-top: 28px; }
.container h2:not(.section-title),
.container h3 { margin-top: 24px; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.25); position: relative; }
.card .ribbon { position: absolute; top: 12px; left: -40px; background: var(--accent); color: white; padding: 8px 50px; transform: rotate(-20deg); font-weight: 800; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(0,0,0,0.25); }
.card .ribbon-gold { background: linear-gradient(90deg, #ffd400, #ff9b00); color: #5f2a00; }
.card-body { padding: 16px 16px 20px; }
.features { margin: 12px 0; padding-left: 18px; }
.rating { display: inline-flex; align-items: center; gap: 8px; margin: 8px 0; color: #ffe38a; }
.rating span:first-child { filter: drop-shadow(0 2px 0 rgba(0,0,0,0.35)); }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.price { font-size: 22px; font-weight: 800; color: var(--accent-2); text-shadow: 0 2px 0 rgba(0,0,0,0.35); }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.proscons ul { margin: 6px 0 0 18px; }

/* Table */
.table-wrap { overflow-x: auto; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }
.table thead th { position: sticky; top: 0; background: rgba(0,0,0,0.2); }

/* Lists */
.list { padding-left: 18px; }

/* Contact */
.contact-form { display: grid; gap: 12px; max-width: 680px; }
.form-row { display: grid; gap: 6px; }
input, textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: white; border-radius: 12px; padding: 10px 12px; font: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--accent); }
.honeypot { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden; }

/* Footer */
.site-footer { margin-top: 60px; border-top: 2px dashed rgba(255,255,255,0.2); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 20px; padding: 24px 0; }
.footer-nav { display: grid; grid-auto-flow: column; gap: 12px; }
.legal { background: rgba(0,0,0,0.2); padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.small { font-size: 13px; }
.muted { color: var(--muted); }

/* Responsive */
@media (max-width: 720px) {
	.main-nav { display: none; }
	.footer-grid { grid-template-columns: 1fr; }
}
