/* Collector — brand site. No external fonts, no trackers (on-brand: private by design). */
:root {
	--bg: #ffffff;
	--bg-soft: #f5f6f8;
	--surface: #ffffff;
	--text: #0a0e17;
	--text-soft: #5a6472;
	--border: #e7e9ee;
	--accent: #0a84ff;       /* systemBlue — matches Video Collector */
	--accent-ink: #0060df;
	--violet: #6366f1;        /* matches Image Collector */
	--radius: 18px;
	--radius-lg: 26px;
	--maxw: 1080px;
	--shadow-sm: 0 1px 2px rgba(10,14,23,.05), 0 8px 24px rgba(10,14,23,.05);
	--shadow-md: 0 2px 6px rgba(10,14,23,.06), 0 24px 50px rgba(10,14,23,.10);
	--shadow-icon: 0 6px 14px rgba(10,132,255,.28), 0 18px 40px rgba(10,14,23,.16);
	--font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0a0d13; --bg-soft: #0f1116; --surface: #14181f; --text: #f0f3f8;
		--text-soft: #98a2b2; --border: #232a35; --accent: #4f9dff; --accent-ink: #7ab2ff;
		--shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 10px 26px rgba(0,0,0,.4);
		--shadow-md: 0 2px 6px rgba(0,0,0,.5), 0 28px 56px rgba(0,0,0,.55);
		--shadow-icon: 0 8px 20px rgba(10,132,255,.35), 0 22px 48px rgba(0,0,0,.5);
	}
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0; font-family: var(--font); color: var(--text); background: var(--bg);
	line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(180%) blur(16px);
	background: color-mix(in srgb, var(--bg) 80%, transparent); border-bottom: 1px solid var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 640; font-size: 17px;
	letter-spacing: -.02em; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand img { width: 26px; height: 26px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-soft); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px;
	padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
	transition: transform .12s ease, background .15s ease, border-color .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(10,132,255,.25); }
.btn-primary:hover { background: var(--accent-ink); text-decoration: none; }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--text-soft); text-decoration: none; }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* Hero */
.hero { position: relative; padding: 96px 0 72px; text-align: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -20% 0 auto 0; height: 460px; z-index: -1;
	background: radial-gradient(50% 70% at 50% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%); }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .02em;
	color: var(--accent-ink); background: color-mix(in srgb, var(--accent) 12%, transparent);
	padding: 6px 12px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(36px, 6.2vw, 62px); line-height: 1.04; letter-spacing: -.035em; margin: 0 0 20px; font-weight: 680; }
.hero h1 .grad { background: linear-gradient(110deg, var(--accent), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: clamp(17px, 2.3vw, 21px); color: var(--text-soft); max-width: 600px; margin: 0 auto 30px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.note { margin-top: 18px; font-size: 13.5px; color: var(--text-soft); }

/* Hero app-icon showcase (the real product marks) */
.showcase { display: flex; gap: clamp(20px, 5vw, 48px); justify-content: center; align-items: flex-end; margin-top: 56px; }
.showcase figure { margin: 0; text-align: center; }
.showcase .tile { width: clamp(84px, 16vw, 116px); height: clamp(84px, 16vw, 116px); border-radius: 26px;
	box-shadow: var(--shadow-icon); transition: transform .2s ease; }
.showcase figure:hover .tile { transform: translateY(-6px); }
.showcase figcaption { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--text); }
.showcase figcaption span { display: block; font-weight: 500; color: var(--text-soft); font-size: 12.5px; }

/* Sections */
section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(27px, 4vw, 37px); letter-spacing: -.025em; margin: 0 0 10px; font-weight: 670; }
.section-head p { color: var(--text-soft); max-width: 600px; margin: 0 auto; font-size: 16.5px; }

/* Product cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
	padding: 32px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ico { width: 58px; height: 58px; border-radius: 15px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.card .tag { font-size: 13px; font-weight: 600; color: var(--accent-ink); letter-spacing: .01em; }
.card.is-violet .tag { color: var(--violet); }
.card h3 { margin: 6px 0 0; font-size: 21px; letter-spacing: -.015em; }
.card p { color: var(--text-soft); margin: 10px 0 18px; font-size: 15.5px; }
.card ul { margin: 0 0 24px; padding: 0; list-style: none; }
.card ul li { position: relative; padding-left: 26px; margin: 9px 0; color: var(--text-soft); font-size: 15px; }
.card ul li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 13px; height: 8px;
	border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
	transform: rotate(-45deg); border-radius: 1px; }
.card.is-violet ul li::before { border-color: var(--violet); }

/* Feature band (privacy promise) */
.band { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feat .ficon { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
	background: color-mix(in srgb, var(--accent) 12%, transparent); margin-bottom: 14px; }
.feat .ficon svg { width: 21px; height: 21px; stroke: var(--accent-ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat h4 { margin: 0 0 6px; font-size: 16.5px; letter-spacing: -.01em; }
.feat p { margin: 0; color: var(--text-soft); font-size: 14.5px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }

/* Article (privacy/terms) */
.article { max-width: 760px; margin: 0 auto; padding: 60px 24px 88px; }
.article h1 { font-size: clamp(30px, 5vw, 38px); letter-spacing: -.025em; margin: 0 0 6px; font-weight: 680; }
.article .updated { color: var(--text-soft); font-size: 14px; margin: 0 0 30px; }
.article h2 { font-size: 20px; margin: 34px 0 8px; letter-spacing: -.01em; }
.article p, .article li { color: var(--text); }
.article ul { padding-left: 20px; }
.article li { margin: 9px 0; }
.article strong { font-weight: 640; }
.article table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
.article th, .article td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.article th { font-weight: 640; color: var(--text-soft); font-size: 13px; }
.article tr:last-child td { border-bottom: none; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--text-soft); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
footer .brand { font-size: 15px; gap: 9px; }
footer .brand img { width: 22px; height: 22px; }
footer .foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--text-soft); }
footer a:hover { color: var(--text); }

@media (max-width: 560px) {
	.nav-links { gap: 16px; }
	.showcase { gap: 18px; }
	section { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }
