/* ============================================================
   Vivid Systems — brand stylesheet
   Fresh product-brand identity: light, colourful, gradient-led.
   ============================================================ */

:root {
	--ink:        #0f172a;
	--ink-soft:   #475569;
	--ink-faint:  #94a3b8;
	--bg:         #ffffff;
	--bg-soft:    #f6f8fc;
	--line:       #e2e8f0;

	/* Brand gradient */
	--brand-a:    #7c3aed;
	--brand-b:    #06b6d4;
	--brand-grad: linear-gradient(120deg, #7c3aed 0%, #4f6ef7 55%, #06b6d4 100%);

	/* Product accents */
	--c-pos:      #10b981;
	--c-gardens:  #65a30d;
	--c-estate:   #f59e0b;
	--c-whatsapp: #25d366;
	--c-loyalty:  #ec4899;
	--c-plugins:  #3b82f6;

	--radius:     16px;
	--shadow:     0 10px 34px rgba(15, 23, 42, .08);
	--shadow-lg:  0 24px 60px rgba(15, 23, 42, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--brand-a); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────────────── */
.site-head {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.86);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-head .wrap { display: flex; align-items: center; gap: 28px; height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
.logo-mark {
	width: 34px; height: 34px; border-radius: 9px; flex: 0 0 34px;
	background: var(--brand-grad);
	display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 18px;
}
.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav a { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav a.is-active { color: var(--brand-a); font-weight: 600; }
.nav .btn { margin-left: 6px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 22px; border-radius: 999px;
	font-weight: 600; font-size: 14.5px; cursor: pointer;
	border: 1.5px solid transparent; transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 6px 18px rgba(124, 58, 237, .3); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--ink-faint); }

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 84px 0 64px; position: relative; overflow: hidden; }
.hero::before {
	content: ""; position: absolute; inset: -40% -20% auto;
	height: 130%; z-index: -1;
	background:
		radial-gradient(600px 320px at 18% 20%, rgba(124,58,237,.12), transparent 65%),
		radial-gradient(600px 320px at 82% 10%, rgba(6,182,212,.12), transparent 65%);
}
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 18px; font-weight: 800; }
.hero h1 .grad, .grad {
	background: var(--brand-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { font-size: 19px; color: var(--ink-soft); max-width: 640px; margin: 0 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--product { padding: 72px 0 48px; }
.hero .eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
	color: var(--accent, var(--brand-a)); margin-bottom: 14px;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent, var(--brand-a)); }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 64px 0; }
section.alt { background: var(--bg-soft); }
.sec-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; margin: 0 0 12px; font-weight: 800; }
.sec-head p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }

/* ── Cards / grids ──────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 26px; box-shadow: var(--shadow);
	transition: transform .14s ease, box-shadow .14s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.card .go { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--accent, var(--brand-a)); }

.badge-icon {
	width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
	display: grid; place-items: center; font-size: 22px;
	background: color-mix(in srgb, var(--accent, var(--brand-a)) 12%, #fff);
	color: var(--accent, var(--brand-a));
}
.tag {
	display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
	background: color-mix(in srgb, var(--accent, var(--brand-a)) 14%, #fff);
	color: var(--accent, var(--brand-a)); letter-spacing: .02em;
}
.tag--soon { background: #f1f5f9; color: var(--ink-faint); }

/* ── Feature list ───────────────────────────────────────── */
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat .tick { flex: 0 0 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
	background: color-mix(in srgb, var(--accent, var(--brand-a)) 15%, #fff);
	color: var(--accent, var(--brand-a)); font-size: 12px; font-weight: 800; margin-top: 2px; }
.feat h4 { margin: 0 0 4px; font-size: 15.5px; }
.feat p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing { align-items: stretch; }
.plan {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
	padding: 28px 26px;
}
.plan--popular { border-color: var(--accent, var(--brand-a)); box-shadow: var(--shadow-lg); }
.plan .pop {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	background: var(--accent, var(--brand-a)); color: #fff; font-size: 11.5px; font-weight: 700;
	padding: 4px 14px; border-radius: 999px; letter-spacing: .04em; white-space: nowrap;
}
.plan h3 { margin: 0 0 2px; font-size: 18px; }
.plan .who { color: var(--ink-faint); font-size: 13px; margin: 0 0 16px; }
.plan .price { font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.plan .price small { font-size: 14px; font-weight: 500; color: var(--ink-faint); }
.plan .annual { color: var(--ink-faint); font-size: 12.5px; margin: 2px 0 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; }
.plan li { padding: 6px 0 6px 26px; position: relative; font-size: 14px; color: var(--ink-soft); }
.plan li::before { content: "✓"; position: absolute; left: 2px; color: var(--accent, var(--brand-a)); font-weight: 800; }
.plan li.lead { color: var(--ink); font-weight: 600; }
.plan li.lead::before { content: "★"; }
.plan .btn { margin-top: auto; justify-content: center; }

/* Add-on strip */
.addons { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.addon { background: #fff; border: 1px dashed var(--line); border-radius: 12px; padding: 16px 18px; }
.addon strong { display: block; font-size: 14px; }
.addon span { font-size: 13px; color: var(--ink-faint); }
.addon .r { color: var(--accent, var(--brand-a)); font-weight: 700; font-size: 14px; }

/* ── CTA band ───────────────────────────────────────────── */
.cta-band { background: var(--brand-grad); border-radius: 22px; color: #fff; padding: 52px 40px; text-align: center; }
.cta-band h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.02em; }
.cta-band p { margin: 0 0 26px; opacity: .92; }
.cta-band .btn { background: #fff; color: var(--brand-a); }

/* ── Footer ─────────────────────────────────────────────── */
.site-foot { background: #0d1220; color: #cbd5e1; padding: 56px 0 30px; margin-top: 64px; }
.site-foot a { color: #cbd5e1; font-size: 14px; }
.site-foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.foot-grid h4 { color: #fff; font-size: 14px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .06em; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot-brand p { font-size: 14px; color: #94a3b8; max-width: 300px; }
.foot-base { border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; font-size: 13px; color: #64748b; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ── Mockup frame (SVG product shots) ───────────────────── */
.shot { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }

/* ── Comparison / free-pro table ────────────────────────── */
.cmp { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cmp th, .cmp td { padding: 13px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.cmp th { background: var(--bg-soft); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.cmp td:not(:first-child), .cmp th:not(:first-child) { text-align: center; }
.cmp .yes { color: var(--c-pos); font-weight: 800; }
.cmp .no { color: var(--ink-faint); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
	.grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
	.foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
	.nav { display: none; position: absolute; top: 66px; left: 0; right: 0;
		flex-direction: column; background: #fff; padding: 18px 24px 24px;
		border-bottom: 1px solid var(--line); gap: 16px; align-items: flex-start; }
	.nav.open { display: flex; }
	.nav-toggle { display: block; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
	.hero { padding: 56px 0 40px; }
	section { padding: 46px 0; }
	.cta-band { padding: 40px 22px; }
}
