:root { --bg: #f4f5f8; --panel: #fff; --line: #e3e6ee; --text: #16192b; --muted: #5b6478; --accent: #00a6d6; --accent-2: #00c5ff; --accent-soft: #e0f6ff; --font: Inter, "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif; color-scheme: light; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --bg: #0f1118; --panel: #171a24; --line: #2a2f40; --text: #eef0f6; --muted: #a3abbf; --accent-soft: #10303d; color-scheme: dark; } }
:root[data-theme="dark"] { --bg: #0f1118; --panel: #171a24; --line: #2a2f40; --text: #eef0f6; --muted: #a3abbf; --accent-soft: #10303d; color-scheme: dark; }
body[data-accent="gst"] { --accent: #0284c7; --accent-2: #0ea5e9; --accent-soft: #e0f2fe; }
body[data-accent="finance"] { --accent: #15803d; --accent-2: #16a34a; --accent-soft: #dcfce7; }
body[data-accent="bgremover"] { --accent: #e11d48; --accent-2: #f43f5e; --accent-soft: #ffe4e6; }
body[data-accent="invoice"] { --accent: #d97706; --accent-2: #f59e0b; --accent-soft: #fef3c7; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) body[data-accent] { --accent-soft: #232a3a; } }
:root[data-theme="dark"] body[data-accent] { --accent-soft: #232a3a; }
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.55; color: var(--text); background: var(--bg); }
a { color: var(--accent); text-decoration: none; } a:hover { text-decoration: underline; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
header.site { position: sticky; top: 0; background: var(--panel); border-bottom: 1px solid var(--line); z-index: 10; }
header.site .wrap { display: flex; align-items: center; gap: 14px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.brand .mark { width: 30px; height: 30px; border-radius: 8px; background: #000; display: grid; place-items: center; color: var(--accent-2); font-size: 11px; font-weight: 900; letter-spacing: .02em; flex: none; }
.ver { font: 600 12px/1 Consolas, monospace; padding: 5px 8px; border-radius: 6px; background: var(--accent-soft); color: var(--accent); }
nav.top { margin-left: auto; display: flex; gap: 18px; align-items: center; font-weight: 600; }
nav.top a { color: var(--muted); } nav.top a.cta { background: var(--accent); color: #fff; padding: 9px 16px; border-radius: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 12px; font-weight: 700; border: 1px solid var(--line); background: var(--panel); color: var(--text); cursor: pointer; font-family: inherit; font-size: 15px; }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; } .btn.big { font-size: 18px; padding: 14px 26px; } .btn:disabled { opacity: .55; cursor: default; }
.btn.wa { background: #25d366; border-color: #25d366; color: #fff; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .4em; } h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; } h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; } h3 { font-size: 19px; }
p { margin: 0 0 1em; } .muted { color: var(--muted); } .small { font-size: 14px; }
section { padding: 56px 0; } section.alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero { padding: 64px 0 40px; text-align: center; }
.hero .kicker { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.hero .lead { font-size: 20px; color: var(--muted); max-width: 760px; margin: 0 auto 26px; }
.hero .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--panel); font-weight: 600; font-size: 14px; }
.grid { display: grid; gap: 16px; } .g3 { grid-template-columns: repeat(3, 1fr); } .g2 { grid-template-columns: repeat(2, 1fr); } .g4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.card .ico { font-size: 26px; margin-bottom: 8px; }
.steps { counter-reset: s; } .steps .card { position: relative; padding-left: 64px; } .steps .card::before { counter-increment: s; content: counter(s); position: absolute; left: 20px; top: 20px; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; display: grid; place-items: center; }
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 16px; }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; position: relative; display: flex; flex-direction: column; }
.plan.pop { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.plan .rib { position: absolute; top: -12px; right: 16px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.plan .price { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin: 6px 0; } .plan .price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan ul { padding-left: 18px; color: var(--muted); margin: 8px 0 18px; flex: 1; } .plan li { margin: 4px 0; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; } .faq summary { font-weight: 700; cursor: pointer; }
footer.site { padding: 36px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; } footer.site a { color: var(--muted); }
.legal { max-width: 820px; margin: 0 auto; padding: 40px 20px 80px; } .legal h1 { font-size: 34px; } .legal h2 { font-size: 22px; margin-top: 30px; } .legal address { font-style: normal; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px; white-space: pre-line; }
.legal .meta { color: var(--muted); font-size: 14px; }
/* product tiles on the hub */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; }
.tile { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.tile .ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 26px; background: var(--t-soft, var(--accent-soft)); }
.tile h3 { margin: 4px 0 0; } .tile .from { font-weight: 800; } .tile .from small { color: var(--muted); font-weight: 500; }
.tile .row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.tile .btn { padding: 10px 14px; font-size: 14px; }
.badge { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); }
input.in, select.in { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; font: inherit; background: var(--panel); color: var(--text); margin: 6px 0 12px; }
label.lb { font-weight: 700; font-size: 14px; }
.box { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
table { width: 100%; border-collapse: collapse; } td, th { padding: 8px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
pre { white-space: pre-wrap; font-size: 13px; }
.shot { width: 100%; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(16,24,40,.12); margin-top: 30px; display: block; }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } .g2 { grid-template-columns: 1fr; } footer.site .cols { grid-template-columns: 1fr; } nav.top a:not(.cta) { display: none; } }
@media (max-width: 560px) { .g3, .g4 { grid-template-columns: 1fr; } section { padding: 40px 0; } .hero { padding: 44px 0 30px; } .hero .lead { font-size: 18px; } .btn.big { width: 100%; } }
