/* FilmWiz / Tint Studio — shared marketing styles */
:root {
 color-scheme: dark;
 --bg: #090a0c;
 --fg: #f4f6f8;
 --muted: #9aa3ad;
 --accent: #5b8cff;
 --accent-2: #7aa2ff;
 --card: #12161c;
 --border: #242b34;
 --ok: #3ecf8e;
 --radius: 1rem;
 --max: 68rem;
 --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 margin: 0;
 min-height: 100vh;
 font-family: var(--font);
 background:
  radial-gradient(900px 480px at 12% -8%, #1a2740 0%, transparent 55%),
  radial-gradient(700px 420px at 100% 0%, #152033 0%, transparent 50%),
  var(--bg);
 color: var(--fg);
 line-height: 1.55;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip {
 position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 20; background: #000; padding: .5rem .75rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
 position: sticky; top: 0; z-index: 10;
 backdrop-filter: blur(10px);
 background: color-mix(in srgb, var(--bg) 80%, transparent);
 border-bottom: 1px solid var(--border);
}
.header-inner {
 display: flex; align-items: center; justify-content: space-between;
 gap: 1rem; padding: .9rem 0;
}
.brand { display: flex; flex-direction: column; gap: .1rem; color: inherit; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-company { font-weight: 700; letter-spacing: .04em; }
.brand-product {
 font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.nav { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.nav a { color: var(--muted); font-size: .95rem; }
.nav a[aria-current="page"], .nav a:hover { color: var(--fg); }
.hero, .section { padding: clamp(2rem, 6vw, 4.5rem) 0; }
.hero-card, .card {
 background: color-mix(in srgb, var(--card) 92%, transparent);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: clamp(1.35rem, 3.5vw, 2.25rem);
 box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.eyebrow {
 margin: 0 0 .75rem;
 color: var(--accent);
 font-size: .82rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 font-weight: 650;
}
h1 {
 margin: 0 0 .85rem;
 font-size: clamp(1.75rem, 5.2vw, 2.75rem);
 line-height: 1.12;
 font-weight: 700;
}
h2 {
 margin: 0 0 .75rem;
 font-size: clamp(1.25rem, 3vw, 1.6rem);
}
.lead, .muted { color: var(--muted); }
.lead { font-size: clamp(1.02rem, 2.6vw, 1.12rem); margin: 0 0 1.1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn {
 display: inline-flex; align-items: center; justify-content: center;
 border-radius: 999px; padding: .7rem 1.15rem; font-weight: 600; font-size: .95rem;
 border: 1px solid var(--border); color: var(--fg); background: #10151c;
}
.btn-primary { background: linear-gradient(180deg, var(--accent-2), var(--accent)); border-color: transparent; color: #071018; }
.btn[disabled], .btn:disabled {
 opacity: .55; cursor: not-allowed; text-decoration: none;
}
.grid {
 display: grid;
 gap: 1rem;
 grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}
.pill {
 display: inline-block; border: 1px solid var(--border); border-radius: 999px;
 padding: .35rem .75rem; color: var(--muted); font-size: .85rem; background: #0e1319;
}
.site-footer {
 border-top: 1px solid var(--border);
 padding: 1.5rem 0 2.5rem;
 color: var(--muted);
 font-size: .92rem;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.faq details {
 border: 1px solid var(--border); border-radius: .75rem; padding: .85rem 1rem; background: #0e1319; margin: 0 0 .65rem;
}
.faq summary { cursor: pointer; font-weight: 600; }
.stack > * + * { margin-top: 1rem; }
@media (max-width: 640px) {
 .header-inner { align-items: flex-start; flex-direction: column; }
}
