/*
 * Kello brand system — shared by every page except index.html, which still
 * carries its own inline copy (it predates this file; leave it alone unless
 * you're changing both).
 *
 * Rules, from the founder, twice: Instrument Serif + Plus Jakarta Sans,
 * pastels on white, ink text, hard-offset shadows, ink pill CTAs.
 * NO orange or coral. NO dark backgrounds.
 */

:root {
	--paper: #ffffff;
	--ink: #141414;
	--butter: #ffe9a8;
	--mint: #cdebd9;
	--sky: #cde4ff;
	--lilac: #e6dcff;
	--blush: #ffd9cc;
	--muted: #5a5a5a;
	--pine: #1e5c4a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font: 17px/1.65 "Plus Jakarta Sans", -apple-system, sans-serif; }
h1, h2, h3, .brand { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: 0; }
a { color: var(--ink); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

header { padding: 22px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { font-size: 30px; font-weight: 400; color: var(--ink); text-decoration: none; }
.brand .dot { color: var(--pine); }
.nav a.cta { background: var(--ink); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 999px; font-weight: 700; font-family: "Plus Jakarta Sans", sans-serif; }
.nav a.cta:hover { opacity: .85; }
.nav .links a { margin-right: 22px; text-decoration: none; color: var(--ink); font-size: 15px; }

.btn { display: inline-block; background: var(--ink); color: #fff; text-decoration: none; padding: 15px 28px; border-radius: 14px; font-weight: 700; font-size: 17px; border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--butter); }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--butter); }
.btn.ghost { background: #fff; color: var(--ink); }

.kicker { display: inline-block; background: var(--mint); border: 2px solid var(--ink); border-radius: 999px; padding: 4px 14px; color: var(--ink); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; font-family: "Plus Jakarta Sans", sans-serif; }

section { padding: 46px 0; }
h1.page { font-size: 58px; line-height: 1.05; margin: 14px 0 20px; }
h1.page em { font-style: italic; background: linear-gradient(transparent 58%, var(--butter) 58%); }
h2 { font-size: 34px; margin: 42px 0 14px; }
h3 { font-size: 22px; margin: 26px 0 8px; }
.lead { font-size: 20px; color: var(--muted); margin-bottom: 26px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { font-weight: 700; }

/* Comparison + pricing tables. Wide content scrolls inside itself, never the page. */
.tablewrap { overflow-x: auto; margin: 22px 0 26px; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--sky); background: #fff; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15px; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid #e2e2e2; vertical-align: top; }
thead th { background: var(--butter); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; border-bottom: 2px solid var(--ink); }
tbody tr:last-child td { border-bottom: 0; }
td.yes { font-weight: 700; }

.card { background: #fff; border: 2px solid var(--ink); border-radius: 18px; padding: 26px; box-shadow: 5px 5px 0 var(--lilac); margin-bottom: 20px; }
.card h3 { margin-top: 0; }
.card p { font-size: 15px; color: var(--muted); }

.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.note { background: var(--mint); border: 2px solid var(--ink); border-radius: 16px; padding: 18px 22px; font-size: 15px; margin: 26px 0; }

.banner { background: var(--sky); border: 2px solid var(--ink); border-radius: 26px; color: var(--ink); padding: 48px; text-align: center; box-shadow: 8px 8px 0 var(--mint); margin: 50px 0 10px; }
.banner h2 { font-size: 40px; margin-top: 0; }
.banner p { color: #3a4a5a; max-width: 38em; margin: 12px auto 26px; }

.crumb { font-size: 14px; color: var(--muted); }
.crumb a { color: var(--muted); }

footer { padding: 44px 0 60px; color: var(--muted); font-size: 14px; }
footer .row { display: flex; justify-content: space-between; align-items: center; border-top: 2px solid var(--ink); padding-top: 26px; gap: 18px; flex-wrap: wrap; }

@media (max-width: 860px) {
	h1.page { font-size: 38px; }
	h2 { font-size: 27px; }
	.banner { padding: 32px 22px; }
	.banner h2 { font-size: 29px; }
	.grid2 { grid-template-columns: 1fr; }
	.nav .links { display: none; }
}
