/* ==========================================================================
   Qivo theme
   ========================================================================== */

:root {
	--navy-950: #051431;
	--navy-900: #071d44;
	--navy-800: #0b2a5b;
	--navy-700: #0f3b7d;
	--blue-600: #1463f3;
	--blue-500: #2f7bff;
	--blue-100: #e6efff;
	--blue-50: #f3f7ff;
	--amber-500: #f5a524;
	--amber-400: #ffbf47;
	--amber-100: #fff3dc;
	--green-500: #22b573;
	--green-100: #e3f7ec;
	--ink: #0b1b36;
	--ink-2: #33415c;
	--muted: #5d6b85;
	--line: #e3e9f3;
	--bg: #ffffff;
	--bg-tint: #f5f8fd;

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow-sm: 0 1px 2px rgba(11, 27, 54, .06), 0 2px 8px rgba(11, 27, 54, .04);
	--shadow: 0 10px 30px -10px rgba(11, 27, 54, .18);
	--shadow-lg: 0 30px 60px -20px rgba(7, 29, 68, .35);

	--container: 1200px;
	--font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-2);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-700); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

.icon { width: 1.2em; height: 1.2em; flex: none; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 1000; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip-link:focus { left: 8px; color: #fff; }

:focus-visible { outline: 3px solid var(--amber-400); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

/* --------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	padding: .8em 1.4em; border-radius: 12px; border: 1.5px solid transparent;
	font-weight: 700; font-size: 16px; line-height: 1.2; white-space: nowrap;
	transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn .icon { width: 1.1em; height: 1.1em; transition: transform .2s; }
.btn:hover .icon:last-child { transform: translateX(3px); }
.btn--sm { padding: .6em 1.1em; font-size: 15px; border-radius: 10px; }
.btn--lg { padding: 1em 1.7em; font-size: 17px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(20, 99, 243, .6); }
.btn--primary:hover { background: #0f55d6; color: #fff; transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(20, 99, 243, .7); }

.btn--amber { background: var(--amber-500); color: var(--navy-950); box-shadow: 0 8px 20px -8px rgba(245, 165, 36, .6); }
.btn--amber:hover { background: var(--amber-400); color: var(--navy-950); transform: translateY(-1px); }

.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); }

.btn--ghost-light { border-color: rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .06); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .5); }

.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; }
.link-arrow .icon { transition: transform .2s; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .86);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(11, 27, 54, .4); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }

.site-header__inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo__mark { width: 40px; height: 40px; border-radius: 11px; box-shadow: 0 6px 14px -6px rgba(20, 99, 243, .6); }
.logo__text { font-size: 28px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.logo--light, .logo--light:hover { color: #fff; }

.nav { display: flex; align-items: center; flex: 1; gap: 24px; }
.nav__list { display: flex; gap: 4px; list-style: none; margin: 0 auto 0 0; }
.nav__list a { display: block; padding: 8px 14px; border-radius: 10px; color: var(--ink-2); font-weight: 600; font-size: 15.5px; }
.nav__list a:hover { color: var(--ink); background: var(--bg-tint); }
.nav__list .current-menu-item > a, .nav__list .current_page_item > a, .nav__list .current_page_parent > a { color: var(--blue-600); background: var(--blue-50); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__signin { font-weight: 700; color: var(--ink); font-size: 15.5px; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); align-items: center; justify-content: center; }
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }
.nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: block; }

@media (max-width: 920px) {
	.nav-toggle { display: inline-flex; }
	.nav {
		position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 16px;
		background: #fff; padding: 16px 24px 28px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
		transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .25s ease;
	}
	.admin-bar .nav { top: calc(var(--header-h) + 46px); }
	.nav-open .nav { transform: none; opacity: 1; visibility: visible; }
	.nav__list { flex-direction: column; margin: 0; }
	.nav__list a { padding: 12px 10px; font-size: 17px; }
	.nav__actions { flex-direction: column; align-items: stretch; }
	.nav__actions .btn { padding: 14px; }
	.nav__signin { text-align: center; padding: 8px; }
}

/* --------------------------------------------------------------------------
   Eyebrow, section heads
   ----------------------------------------------------------------------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: .5em;
	font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
	color: var(--blue-600); margin-bottom: 14px;
}
.eyebrow .icon { width: 16px; height: 16px; }
.eyebrow--light { color: var(--amber-400); }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--bg-tint); }
.section--navy { background: radial-gradient(1200px 500px at 80% -10%, #1a4fa6 0%, transparent 60%), linear-gradient(160deg, var(--navy-800), var(--navy-950)); color: #c7d4ea; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section__head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; text-align: left; }
.section__head--row .section__title { margin: 0; }
.section__title { font-size: clamp(30px, 4vw, 44px); }
.section__lead { font-size: 18.5px; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden; color: #c7d4ea;
	background:
		radial-gradient(900px 600px at 85% 20%, rgba(47, 123, 255, .35), transparent 60%),
		radial-gradient(700px 500px at 10% 110%, rgba(245, 165, 36, .12), transparent 60%),
		linear-gradient(160deg, #0d3a86 0%, var(--navy-800) 45%, var(--navy-950) 100%);
	padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 9vw, 120px);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before, .hero__bg::after {
	content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .07);
}
.hero__bg::before { width: 720px; height: 720px; right: -200px; top: -180px; background: rgba(255, 255, 255, .025); }
.hero__bg::after { width: 520px; height: 520px; left: 30%; bottom: -320px; background: rgba(255, 255, 255, .02); }
.hero__chip {
	position: absolute; font-weight: 800; font-size: 34px; letter-spacing: .02em; color: rgba(255, 255, 255, .09);
	padding: 10px 22px; border-radius: 16px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .05);
	animation: float 9s ease-in-out infinite;
}
.hero__chip--1 { right: 4%; top: 6%; }
.hero__chip--2 { left: 42%; top: 58%; animation-delay: -3s; }
.hero__chip--3 { left: 3%; bottom: 6%; animation-delay: -6s; }

.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero__title { color: #fff; font-size: clamp(40px, 5.6vw, 66px); line-height: 1.05; letter-spacing: -.035em; margin-bottom: 22px; }
.hero__title::after { content: ""; display: block; width: 72px; height: 4px; border-radius: 4px; background: var(--blue-500); margin-top: 26px; }
.hero__lead { font-size: 19px; max-width: 560px; color: #cdd9ee; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 30px; }
.hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 15px; color: #b5c4de; }
.hero__points li { display: inline-flex; align-items: center; gap: 8px; }
.hero__points .icon { color: var(--green-500); width: 18px; height: 18px; }

.hero__visual { position: relative; padding: 10px 40px 60px 0; }

/* Display board mock */
.board {
	position: relative; background: linear-gradient(180deg, #0b2554, #071a3d); border-radius: 22px; padding: 22px;
	border: 1px solid rgba(255, 255, 255, .1); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .08); color: #b9c8e2;
}
.board::before { content: ""; position: absolute; inset: -10px; border-radius: 30px; background: rgba(255, 255, 255, .04); z-index: -1; }
.board__head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.board__branch { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); display: inline-block; }
.dot--live { box-shadow: 0 0 0 0 rgba(34, 181, 115, .6); animation: pulse 2s infinite; }
.board__now {
	margin: 18px 0; padding: 26px 26px 22px; border-radius: 16px; background: linear-gradient(135deg, #0f3474, #0a2657);
	border: 2px solid rgba(255, 255, 255, .08); display: grid; gap: 4px;
}
.board__label { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #9fb2d4; }
.board__number { font-size: clamp(56px, 7vw, 84px); font-weight: 800; color: var(--amber-400); letter-spacing: .02em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.board__number.is-calling { animation: call 1.2s ease; }
.board__counter { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #dfe8f7; font-size: 17px; }
.board__counter .icon { width: 18px; height: 18px; padding: 2px; border: 1.5px solid currentColor; border-radius: 50%; }
.board__list { list-style: none; display: grid; gap: 8px; }
.board__list li {
	display: flex; justify-content: space-between; padding: 11px 16px; border-radius: 12px; background: rgba(255, 255, 255, .05);
	font-weight: 700; color: #e6edf9; font-size: 15px; transition: all .4s;
}
.board__list li span:last-child { color: #8ea3c7; font-weight: 600; }
.board__ticker { margin-top: 14px; overflow: hidden; white-space: nowrap; font-size: 13px; color: #8ea3c7; border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 12px; }
.board__ticker span { display: inline-block; padding-left: 100%; animation: ticker 22s linear infinite; }

/* Phone mock */
.phone {
	position: absolute; right: 0; bottom: 0; width: 230px; background: #f0f2f5; border-radius: 28px; padding: 10px;
	border: 6px solid #0a1a36; box-shadow: var(--shadow-lg); font-size: 13px; color: var(--ink);
	animation: float 7s ease-in-out infinite;
}
.phone__bar { display: flex; align-items: center; gap: 8px; font-weight: 700; padding: 6px 6px 10px; border-bottom: 1px solid #dde2ea; }
.phone__avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-600); color: #fff; display: grid; place-items: center; }
.phone__avatar .icon { width: 15px; height: 15px; }
.phone__chat { display: grid; gap: 8px; padding: 10px 2px 4px; }
.bubble { margin: 0; padding: 8px 11px; background: #fff; border-radius: 12px 12px 12px 4px; line-height: 1.45; box-shadow: 0 1px 1px rgba(0, 0, 0, .05); max-width: 92%; }
.bubble--me { justify-self: end; background: #d9fdd3; border-radius: 12px 12px 4px 12px; font-weight: 700; }
.bubble--alert { background: var(--amber-100); border: 1px solid #ffd996; }

/* --------------------------------------------------------------------------
   Steps
   ----------------------------------------------------------------------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.step { position: relative; padding: 34px 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: 24px; right: 28px; font-size: 44px; font-weight: 800; color: var(--blue-100); line-height: 1; }
.step__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--blue-600); color: #fff; margin-bottom: 22px; box-shadow: 0 10px 20px -8px rgba(20, 99, 243, .6); }
.step__icon .icon { width: 26px; height: 26px; }
.step h3 { font-size: 22px; }
.step p { color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Features grid
   ----------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.feature {
	display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
	color: var(--ink-2); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfdcf3; color: var(--ink-2); }
.feature__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); margin-bottom: 18px; }
.feature__icon .icon { width: 24px; height: 24px; }
.feature:nth-child(3n+2) .feature__icon { background: var(--amber-100); color: #c07a00; }
.feature:nth-child(3n+3) .feature__icon { background: var(--green-100); color: #13804a; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 16px; flex: 1; }
.feature__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue-600); font-size: 15px; }
.feature__more .icon { width: 16px; height: 16px; transition: transform .2s; }
.feature:hover .feature__more .icon { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Split layout
   ----------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split--top { align-items: start; }
.split__copy > p:not(.eyebrow) { font-size: 18px; color: var(--muted); }
.section--navy .split__copy > p:not(.eyebrow) { color: #c7d4ea; }

.checklist { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .icon { width: 38px; height: 38px; padding: 9px; border-radius: 11px; background: var(--blue-50); color: var(--blue-600); flex: none; margin-top: -4px; }
.checklist--check .icon { width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--green-100); color: #13804a; margin-top: 2px; }
.checklist--light li { color: #dbe5f5; }
.checklist--light .icon { width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: rgba(34, 181, 115, .18); color: #5fe0a2; margin-top: 2px; }

/* TV wall mock */
.tvwall {
	display: grid; grid-template-columns: 1fr 1.3fr; gap: 12px; padding: 14px; border-radius: 22px;
	background: #0a1a36; box-shadow: var(--shadow-lg); border: 8px solid #111; position: relative; aspect-ratio: 16 / 10;
}
.tvwall::after { content: ""; position: absolute; left: 50%; bottom: -30px; width: 120px; height: 22px; transform: translateX(-50%); background: linear-gradient(#1b1b1b, #333); border-radius: 0 0 8px 8px; }
.tvwall__queue { border-radius: 14px; background: linear-gradient(160deg, #0f3474, #0a2657); padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.tvwall__num { white-space: nowrap; font-size: clamp(30px, 3.6vw, 48px); font-weight: 800; color: var(--amber-400); line-height: 1; }
.tvwall__ctr { color: #dfe8f7; font-weight: 600; }
.tvwall__wave { display: flex; gap: 4px; align-items: flex-end; height: 22px; margin-top: 10px; }
.tvwall__wave i { width: 4px; background: var(--blue-500); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
.tvwall__wave i:nth-child(2) { animation-delay: -.2s; }
.tvwall__wave i:nth-child(3) { animation-delay: -.4s; }
.tvwall__wave i:nth-child(4) { animation-delay: -.6s; }
.tvwall__wave i:nth-child(5) { animation-delay: -.8s; }
.tvwall__media {
	border-radius: 14px; position: relative; overflow: hidden; display: grid; place-items: center;
	background: radial-gradient(circle at 30% 30%, #ffbf47 0, transparent 40%), radial-gradient(circle at 80% 70%, #2f7bff 0, transparent 45%), linear-gradient(135deg, #1a3f86, #0c1f45);
}
.tvwall__play { width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, .9); position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, .3); }
.tvwall__play::after { content: ""; position: absolute; left: 26px; top: 20px; border-left: 18px solid var(--navy-800); border-top: 12px solid transparent; border-bottom: 12px solid transparent; }
.tvwall__caption { position: absolute; left: 14px; right: 14px; bottom: 12px; font-size: 13px; color: #fff; font-weight: 600; opacity: .9; }

/* Sectors */
.sectors { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.sectors li { padding: 12px 22px; border-radius: 99px; background: #fff; border: 1px solid var(--line); font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }

/* Honest note */
.honest {
	display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 36px 40px; border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--blue-50), #fff 60%); border: 1px solid #d8e4fb;
}
.honest h2 { font-size: 24px; margin-bottom: 8px; }
.honest p { margin: 0; color: var(--muted); }
.honest__icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: #fff; color: #e5484d; box-shadow: var(--shadow-sm); }
.honest__icon .icon { width: 28px; height: 28px; }

/* Mini stats */
.mini-stats { list-style: none; display: grid; gap: 14px; }
.mini-stats li { display: flex; align-items: baseline; gap: 18px; padding: 22px 26px; border-radius: 18px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.mini-stats strong { font-size: 40px; font-weight: 800; color: var(--amber-400); min-width: 110px; letter-spacing: -.02em; line-height: 1; }
.mini-stats span { color: #dbe5f5; font-weight: 600; }

/* --------------------------------------------------------------------------
   Cards (blog)
   ----------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { display: flex; flex-direction: column; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-tint); }
.cover__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .cover__img { transform: scale(1.04); }
.cover__fallback { width: 100%; height: 100%; display: grid; place-items: center; position: relative; overflow: hidden; }
.cover__fallback::before, .cover__fallback::after { content: ""; position: absolute; border-radius: 50%; }
.cover__fallback::before { width: 60%; aspect-ratio: 1; right: -10%; top: -30%; background: rgba(255, 255, 255, .1); }
.cover__fallback::after { width: 40%; aspect-ratio: 1; left: -8%; bottom: -25%; background: rgba(255, 255, 255, .08); }
.cover__fallback--a { background: linear-gradient(135deg, #1463f3, #0b2a5b); }
.cover__fallback--b { background: linear-gradient(135deg, #0f3b7d, #051431); }
.cover__fallback--c { background: linear-gradient(135deg, #f5a524, #e2661b); }
.cover__fallback--d { background: linear-gradient(135deg, #22b573, #0f6b5a); }
.cover__ticket { position: relative; z-index: 1; padding: 10px 22px; background: #fff; border-radius: 10px; font-weight: 800; color: var(--ink); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 10px 20px rgba(0, 0, 0, .2); }
.card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.tag { display: inline-block; padding: 4px 12px; border-radius: 99px; background: var(--blue-50); color: var(--blue-600); font-size: 13px; font-weight: 700; }
.tag:hover { background: var(--blue-100); }
.tag--light { background: rgba(255, 255, 255, .12); color: #fff; }
.tag--light:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.card__title { font-size: 21px; line-height: 1.3; margin-bottom: 10px; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--blue-600); }
.card__excerpt { color: var(--muted); font-size: 16px; flex: 1; }
.card__foot { display: flex; align-items: center; gap: 6px; margin: 0; font-size: 14px; color: var(--muted); font-weight: 600; }
.card__foot .icon { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   CTA
   ----------------------------------------------------------------------- */
.section--cta { padding-top: 0; }
.cta {
	position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
	padding: clamp(36px, 5vw, 60px); border-radius: 28px; color: #c7d4ea;
	background: radial-gradient(600px 300px at 90% 0%, rgba(47, 123, 255, .45), transparent 60%), linear-gradient(135deg, var(--navy-700), var(--navy-950));
}
.cta::after { content: "A-012"; position: absolute; right: -10px; bottom: -40px; font-size: 160px; font-weight: 800; color: rgba(255, 255, 255, .04); letter-spacing: .02em; pointer-events: none; }
.cta__copy { max-width: 620px; position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); }
.cta p { margin: 0; font-size: 18px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   ----------------------------------------------------------------------- */
.page-hero {
	position: relative; overflow: hidden; color: #c7d4ea; padding: clamp(56px, 8vw, 100px) 0 clamp(56px, 7vw, 88px);
	background: radial-gradient(800px 400px at 90% 0%, rgba(47, 123, 255, .35), transparent 60%), linear-gradient(160deg, #0d3a86, var(--navy-900) 60%, var(--navy-950));
}
.page-hero::after { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; right: -200px; bottom: -380px; background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .06); }
.page-hero__inner { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.035em; }
.page-hero__lead { font-size: 19px; max-width: 680px; margin: 0 auto; color: #cdd9ee; }
.page-hero__lead p { margin: 0; }
.page-hero--compact { padding: 56px 0 48px; }
.page-hero--compact h1 { margin: 0; font-size: clamp(32px, 4vw, 46px); }
.page-hero__split { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero__split .page-hero__lead { margin: 0; }

.jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.jump a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 99px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); color: #e6edf9; font-weight: 600; font-size: 14.5px; }
.jump a:hover { background: rgba(255, 255, 255, .15); color: #fff; }
.jump .icon { width: 17px; height: 17px; color: var(--amber-400); }

/* --------------------------------------------------------------------------
   Features page modules
   ----------------------------------------------------------------------- */
.modules { display: grid; gap: clamp(64px, 9vw, 120px); }
.module { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.module--flip .module__visual { order: 2; }
.module__copy h2 { font-size: clamp(28px, 3.4vw, 38px); }
.module__copy > p:not(.eyebrow) { font-size: 18px; color: var(--muted); }
.module__art { position: relative; aspect-ratio: 5 / 4; border-radius: 28px; display: grid; place-items: center; overflow: hidden; }
.module__art::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .08); right: -15%; top: -25%; }
.module__art::after { content: ""; position: absolute; width: 50%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .15); left: -10%; bottom: -20%; }
.module__art--0 { background: linear-gradient(135deg, #1463f3, #0b2a5b); }
.module__art--1 { background: linear-gradient(135deg, #0f3b7d, #051431); }
.module__art--2 { background: linear-gradient(135deg, #2f7bff, #1b3f8f); }
.module__art--3 { background: linear-gradient(135deg, #0b2a5b, #1463f3); }
.module__bigicon { position: relative; z-index: 1; width: 128px; height: 128px; border-radius: 34px; display: grid; place-items: center; background: #fff; color: var(--blue-600); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5); }
.module__bigicon .icon { width: 60px; height: 60px; stroke-width: 1.6; }
.module__chip { position: absolute; z-index: 2; padding: 10px 18px; border-radius: 14px; font-weight: 800; box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .45); animation: float 8s ease-in-out infinite; }
.module__chip--a { left: 10%; top: 16%; background: var(--amber-400); color: var(--navy-950); }
.module__chip--b { right: 10%; bottom: 16%; background: #fff; color: var(--ink); animation-delay: -4s; }

.hw { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hw__item { padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.hw__item > .icon { width: 48px; height: 48px; padding: 11px; border-radius: 14px; background: var(--blue-50); color: var(--blue-600); margin-bottom: 18px; }
.hw__item h3 { font-size: 19px; }
.hw__item p { color: var(--muted); margin: 0; font-size: 16px; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: box-shadow .2s, border-color .2s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: #cfdcf3; }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-weight: 700; color: var(--ink); cursor: pointer; font-size: 17.5px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); transition: transform .25s; }
.faq__item[open] summary .icon { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; margin: 0; color: var(--muted); }

/* --------------------------------------------------------------------------
   Reseller page
   ----------------------------------------------------------------------- */
.earn-card { padding: 30px; border-radius: 26px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); backdrop-filter: blur(6px); display: grid; gap: 14px; box-shadow: var(--shadow-lg); }
.earn-card__label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #9fb2d4; margin: 0 0 4px; }
.earn-card__row { display: flex; align-items: center; gap: 18px; padding: 18px; border-radius: 18px; background: #fff; color: var(--muted); }
.earn-card__row strong { display: block; font-size: 32px; font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -.02em; }
.earn-card__row span { font-size: 15px; font-weight: 600; }
.earn-card__icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); flex: none; }
.earn-card__icon .icon { width: 26px; height: 26px; }
.earn-card__icon--amber { background: var(--amber-100); color: #c07a00; }
.earn-card__icon--green { background: var(--green-100); color: #13804a; }

.streams { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.stream { position: relative; overflow: hidden; padding: 40px; border-radius: 28px; background: linear-gradient(160deg, var(--blue-50), #fff); border: 1px solid #d8e4fb; }
.stream--amber { background: linear-gradient(160deg, var(--amber-100), #fff); border-color: #fbe2b3; }
.stream__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--blue-600); color: #fff; margin-bottom: 22px; }
.stream--amber .stream__icon { background: var(--amber-500); color: var(--navy-950); }
.stream__icon .icon { width: 26px; height: 26px; }
.stream h3 { font-size: 24px; margin-bottom: 4px; }
.stream__rate { font-size: 60px; font-weight: 800; color: var(--blue-600); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 12px; }
.stream--amber .stream__rate { color: #d48a00; }
.stream p:not(.stream__rate) { color: var(--muted); margin: 0; }

.timeline { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, #c7d7f3 0 8px, transparent 8px 16px); }
.timeline__item { position: relative; text-align: center; }
.timeline__icon { position: relative; z-index: 1; width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: #fff; color: var(--blue-600); border: 2px solid var(--blue-100); box-shadow: var(--shadow-sm); }
.timeline__item:last-child .timeline__icon { background: var(--amber-500); color: var(--navy-950); border-color: var(--amber-100); }
.timeline__icon .icon { width: 26px; height: 26px; }
.timeline__n { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); }
.timeline__item h3 { font-size: 19px; margin: 6px 0 8px; }
.timeline__item p { font-size: 15px; color: var(--muted); margin: 0; }

/* Calculator */
.calc { display: grid; grid-template-columns: 1fr 1.15fr; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.calc__inputs { padding: clamp(28px, 4vw, 44px); display: grid; gap: 30px; align-content: start; }
.calc__field label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 700; color: var(--ink); margin-bottom: 14px; font-size: 16px; }
.calc__field output { font-size: 20px; font-weight: 800; color: var(--blue-600); white-space: nowrap; }
.calc__rates { font-size: 14.5px; color: var(--muted); margin: 0; padding: 14px 16px; border-radius: 12px; background: var(--bg-tint); }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--blue-600) var(--p, 50%), #e1e8f4 var(--p, 50%)); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-600); box-shadow: 0 4px 12px rgba(20, 99, 243, .35); cursor: pointer; transition: transform .15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-600); box-shadow: 0 4px 12px rgba(20, 99, 243, .35); cursor: pointer; }

.calc__result { padding: clamp(28px, 4vw, 44px); background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); color: #c7d4ea; display: flex; flex-direction: column; }
.calc__totals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.calc__totals > div { padding: 18px 20px; border-radius: 16px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.calc__k { display: block; font-size: 13.5px; font-weight: 600; color: #9fb2d4; margin-bottom: 6px; }
.calc__v { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.calc__v--amber { color: var(--amber-400); }
.calc__chart { flex: 1; min-height: 190px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; align-items: end; padding-bottom: 22px; position: relative; }
.calc__bar { position: relative; display: flex; flex-direction: column-reverse; height: 100%; justify-content: flex-start; }
.calc__bar i { display: block; border-radius: 4px 4px 0 0; transition: height .4s ease; }
.calc__bar i.rec { background: var(--blue-500); border-radius: 4px 4px 0 0; }
.calc__bar i.setup { background: var(--amber-400); border-radius: 0; }
.calc__bar span { position: absolute; bottom: -22px; left: 0; right: 0; text-align: center; font-size: 11px; color: #8ea3c7; font-weight: 600; }
.calc__legend { display: flex; gap: 18px; font-size: 13.5px; font-weight: 600; margin: 8px 0 16px; }
.calc__legend span { display: inline-flex; align-items: center; gap: 8px; }
.sw { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.sw--setup { background: var(--amber-400); }
.sw--rec { background: var(--blue-500); }
.calc__note { font-size: 13px; color: #8ea3c7; margin: 0; }

.fit { display: grid; gap: 14px; margin-top: 24px; }
.fit__item { display: flex; gap: 16px; padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.fit__item > .icon { width: 46px; height: 46px; padding: 11px; border-radius: 13px; background: var(--blue-50); color: var(--blue-600); }
.fit__item h3 { font-size: 17px; margin: 0 0 2px; }
.fit__item p { margin: 0; font-size: 15px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Forms
   ----------------------------------------------------------------------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.form-wrap__intro > p:not(.eyebrow) { font-size: 18px; }
.form-card { padding: clamp(26px, 4vw, 40px); border-radius: 26px; background: #fff; box-shadow: var(--shadow-lg); color: var(--ink-2); }
.form-card--light { box-shadow: var(--shadow); border: 1px solid var(--line); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field > span { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.field input, .field select, .field textarea, .search input {
	width: 100%; font: inherit; font-size: 16px; color: var(--ink); padding: 13px 15px; border-radius: 12px; border: 1.5px solid #d9e1ee; background: #fbfcfe;
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d6b85' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus, .search input:focus { outline: none; border-color: var(--blue-600); background: #fff; box-shadow: 0 0 0 4px rgba(20, 99, 243, .12); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted); cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--blue-600); flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; font-weight: 600; margin-bottom: 20px; }
.notice--ok { background: var(--green-100); color: #0f6b3a; font-size: 17px; line-height: 1.5; padding: 24px; margin: 0; }
.notice--ok .icon { width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--green-500); color: #fff; }
.notice--err { background: #fdecec; color: #a4262c; }

.contact { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__side h2 { font-size: 26px; }
.mini-steps { list-style: none; counter-reset: m; display: grid; gap: 18px; margin: 24px 0 32px; }
.mini-steps li { counter-increment: m; display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; }
.mini-steps li::before { content: counter(m); grid-row: span 2; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-600); color: #fff; font-weight: 800; font-size: 15px; }
.mini-steps strong { color: var(--ink); }
.mini-steps span { color: var(--muted); font-size: 15.5px; }
.contact__direct { display: grid; gap: 10px; margin-bottom: 28px; }
.contact__direct a { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.contact__direct a:hover { border-color: var(--blue-600); color: var(--blue-600); }
.contact__direct .icon { color: var(--blue-600); }
.contact__reseller { padding: 16px 18px; border-radius: 14px; background: var(--amber-100); color: #7a4d00; margin: 0; font-size: 15.5px; }
.contact__reseller a { font-weight: 700; color: #7a4d00; text-decoration: underline; }

/* --------------------------------------------------------------------------
   About
   ----------------------------------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { padding: 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.value__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-600); color: #fff; margin-bottom: 18px; }
.value__icon .icon { width: 24px; height: 24px; }
.value h3 { font-size: 19px; }
.value p { margin: 0; color: var(--muted); font-size: 16px; }

/* --------------------------------------------------------------------------
   Blog listing + single
   ----------------------------------------------------------------------- */
.blog-tools { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; margin-top: 32px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill { padding: 8px 16px; border-radius: 99px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); color: #e6edf9; font-weight: 600; font-size: 14.5px; }
.pill:hover { background: rgba(255, 255, 255, .15); color: #fff; }
.pill.is-active { background: #fff; color: var(--navy-800); }
.search { position: relative; width: 280px; max-width: 100%; }
.search input { padding: 11px 44px 11px 16px; border-radius: 99px; border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .1); color: #fff; font-size: 15px; }
.search input::placeholder { color: #a9badb; }
.search input:focus { background: #fff; color: var(--ink); }
.search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--blue-600); color: #fff; display: grid; place-items: center; }
.search button .icon { width: 16px; height: 16px; }

.pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line); font-weight: 700; color: var(--ink); }
.pagination .page-numbers.current { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.pagination a.page-numbers:hover { border-color: var(--blue-600); color: var(--blue-600); }
.pagination h2 { position: absolute; left: -9999px; }

.empty { text-align: center; padding: 40px 0; }

.post__hero { color: #c7d4ea; padding: clamp(48px, 7vw, 88px) 0 clamp(120px, 14vw, 180px); background: radial-gradient(700px 360px at 90% 0%, rgba(47, 123, 255, .35), transparent 60%), linear-gradient(160deg, #0d3a86, var(--navy-900) 60%, var(--navy-950)); }
.post__back { display: inline-block; color: #a9badb; font-weight: 600; font-size: 15px; margin-bottom: 26px; }
.post__back:hover { color: #fff; }
.post__hero .tag { margin-bottom: 16px; }
.post__title { color: #fff; font-size: clamp(32px, 4.6vw, 52px); letter-spacing: -.03em; }
.post__meta { display: flex; gap: 10px; margin: 0; font-weight: 600; font-size: 15px; color: #a9badb; }
.post__cover { margin-top: clamp(-150px, -12vw, -96px); border-radius: 24px; box-shadow: var(--shadow-lg); margin-bottom: 48px; }
.post__cover .cover__ticket { font-size: 18px; padding: 14px 30px; }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; }
.post__tags a { padding: 5px 12px; border-radius: 99px; background: var(--bg-tint); color: var(--muted); font-size: 14px; font-weight: 600; }
.post__aside { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; margin: 56px 0 32px; padding: 28px 30px; border-radius: 22px; background: linear-gradient(135deg, var(--blue-50), #fff); border: 1px solid #d8e4fb; }
.post__aside h2 { font-size: 20px; margin-bottom: 4px; }
.post__aside p { margin: 0; font-size: 15.5px; color: var(--muted); }
.post__aside-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--blue-600); color: #fff; display: grid; place-items: center; }
.post__aside-icon .icon { width: 26px; height: 26px; }
.post__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: clamp(64px, 8vw, 100px); }
.post__nav-link { display: block; padding: 20px 22px; border-radius: 16px; border: 1px solid var(--line); color: var(--ink); font-weight: 700; line-height: 1.4; }
.post__nav-link:hover { border-color: var(--blue-600); color: var(--blue-600); }
.post__nav-link span { display: block; font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.post__nav-link--next { text-align: right; grid-column: 2; }

/* Prose */
.prose { font-size: 18.5px; line-height: 1.8; color: var(--ink-2); }
.prose > * + * { margin-top: 1.1em; }
.prose p { margin: 0; }
.prose h2 { font-size: 30px; margin: 1.8em 0 .5em; }
.prose h3 { font-size: 23px; margin: 1.6em 0 .4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .45em; }
.prose li::marker { color: var(--blue-600); font-weight: 700; }
.prose a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.prose blockquote { margin: 1.6em 0; padding: 20px 26px; border-left: 4px solid var(--amber-500); background: var(--amber-100); border-radius: 0 14px 14px 0; font-weight: 600; color: var(--ink); }
.prose blockquote p { margin: 0; }
.prose img { border-radius: 16px; }
.prose code { font-size: .9em; background: var(--bg-tint); padding: 2px 6px; border-radius: 6px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { color: var(--ink); background: var(--bg-tint); }
.prose .wp-block-table { margin: 1.6em 0; overflow-x: auto; }

/* 404 */
.notfound { padding: clamp(64px, 10vw, 120px) 0; text-align: center; }
.notfound__inner { max-width: 620px; }
.board--small { display: inline-grid; gap: 4px; padding: 28px 48px; margin-bottom: 36px; text-align: left; }
.board--small .board__counter { color: #8ea3c7; }
.notfound h1 { font-size: clamp(32px, 4vw, 44px); }
.notfound p { color: var(--muted); font-size: 18px; margin-bottom: 28px; }

/* --------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: #9fb0cc; padding: 80px 0 32px; font-size: 15.5px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
.site-footer__brand > p { margin: 20px 0 16px; max-width: 340px; }
.site-footer__contact { display: flex; align-items: center; gap: 10px; margin: 0 0 8px; }
.site-footer__contact .icon { color: var(--amber-400); }
.site-footer a { color: #dbe5f5; }
.site-footer a:hover { color: #fff; }
.site-footer__title { color: #fff; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer__links { list-style: none; display: grid; gap: 10px; }
.site-footer__partner { padding: 26px; border-radius: 20px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); align-self: start; }
.site-footer__partner p { margin-bottom: 18px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 14.5px; }
.site-footer__bottom p { margin: 0; }
.site-footer__tag { font-style: italic; color: #7f92b3; }

/* --------------------------------------------------------------------------
   Reveal animation
   ----------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--delay { transition-delay: .15s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 181, 115, .6); } 70% { box-shadow: 0 0 0 10px rgba(34, 181, 115, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 181, 115, 0); } }
@keyframes ticker { to { transform: translateX(-100%); } }
@keyframes wave { 0%, 100% { height: 6px; } 50% { height: 22px; } }
@keyframes call { 0% { transform: scale(.9); opacity: 0; } 40% { transform: scale(1.06); opacity: 1; text-shadow: 0 0 30px rgba(255, 191, 71, .7); } 100% { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.js .reveal { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.timeline { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
	.timeline::before { display: none; }
	.hw, .values { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
	.hero__inner, .page-hero__split, .split, .module, .form-wrap, .contact, .calc { grid-template-columns: minmax(0, 1fr); }
	.hero__visual { max-width: 560px; margin: 0 auto; width: 100%; }
	.module--flip .module__visual { order: 0; }
	.features, .cards { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: minmax(0, 1fr); }
	.honest { grid-template-columns: 1fr; text-align: center; justify-items: center; }
	.section__head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.container { padding: 0 18px; }
	.features, .cards, .streams, .hw, .values, .form__grid, .calc__totals, .timeline { grid-template-columns: minmax(0, 1fr); }
	.hero__visual { padding: 0 0 150px; }
	.phone { width: 210px; right: 8px; }
	.hero__actions .btn, .cta__actions .btn { width: 100%; }
	.site-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
	.post__aside { grid-template-columns: 1fr; text-align: left; }
	.post__nav { grid-template-columns: 1fr; }
	.post__nav-link--next { grid-column: 1; }
	.mini-stats strong { min-width: 90px; font-size: 32px; }
	.stream { padding: 30px 26px; }
	.stream__rate { font-size: 48px; }
	.cta::after { font-size: 100px; }
	.calc__chart { gap: 3px; }
}

/* Small additions */
.board__time { font-variant-numeric: tabular-nums; color: #dfe8f7; }
.split__media { padding-bottom: 30px; }
.page-hero--reseller h1 { font-size: clamp(36px, 4.6vw, 54px); }
.page-hero--blog { padding-bottom: 64px; }
.site-main { display: block; }

/* Money figures with a "/month" suffix */
.stream__rate small, .earn-card__row strong small, .mini-stats strong small { font-size: .45em; font-weight: 700; opacity: .75; margin-left: 2px; letter-spacing: 0; }
.stream__rate, .earn-card__row strong, .mini-stats strong { white-space: nowrap; }
.mini-stats strong { min-width: 170px; font-size: 36px; }
.calc__facts { list-style: none; margin: 0; padding: 6px 18px; border-radius: 14px; background: var(--bg-tint); display: grid; }
.calc__facts li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; font-size: 14.5px; color: var(--muted); border-top: 1px solid var(--line); }
.calc__facts li:first-child { border-top: 0; }
.calc__facts strong { color: var(--ink); font-weight: 700; white-space: nowrap; }
@media (max-width: 640px) {
	.mini-stats strong { min-width: 130px; font-size: 28px; }
}

/* Deposit / balance breakdown in the installation card */
.stream__split { list-style: none; margin: 22px 0 0; padding: 0; display: grid; border-radius: 16px; background: rgba(255, 255, 255, .75); border: 1px solid #d8e4fb; overflow: hidden; }
.stream__split li { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 13px 18px; font-size: 14.5px; color: var(--muted); border-top: 1px solid #e4ecfb; }
.stream__split li:first-child { border-top: 0; }
.stream__split strong { color: var(--ink); font-weight: 700; text-align: right; white-space: nowrap; }
.stream__split li:last-child { background: var(--blue-50); }
.stream__split li:last-child strong { color: var(--blue-600); }
@media (max-width: 640px) {
	.stream__split li { flex-direction: column; align-items: flex-start; gap: 2px; }
	.stream__split strong { text-align: left; white-space: normal; }
}

/* CTA: stack the contact buttons evenly */
.cta__actions { flex-direction: column; align-items: stretch; min-width: 240px; }
.cta__actions .btn { justify-content: center; }

/* Floating chat */
.chat { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chat__toggle { width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; color: var(--navy-950); background: var(--amber-500); box-shadow: 0 12px 28px -8px rgba(245, 165, 36, .65), 0 4px 10px rgba(7, 29, 68, .2); transition: transform .2s ease, background .2s ease; }
.chat__toggle:hover { background: var(--amber-400); transform: translateY(-2px); }
.chat__toggle:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }
.chat__toggle .icon { width: 28px; height: 28px; }
.chat__close { display: none; }
.chat.is-open .chat__open { display: none; }
.chat.is-open .chat__close { display: block; }
.chat__panel { width: 300px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; transform-origin: bottom right; animation: chat-in .18s ease-out; }
.chat__panel[hidden] { display: none; }
@keyframes chat-in { from { opacity: 0; transform: translateY(8px) scale(.97); } to { opacity: 1; transform: none; } }
.chat__head { padding: 18px 20px; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); color: #fff; }
.chat__head strong { display: block; font-size: 17px; }
.chat__head span { display: block; margin-top: 4px; font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, .75); }
.chat__list { padding: 8px; }
.chat__item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm); color: var(--ink); text-decoration: none; transition: background .15s ease; }
.chat__item:hover, .chat__item:focus-visible { background: var(--bg-tint); }
.chat__item strong { display: block; font-size: 15px; }
.chat__item small { display: block; font-size: 13px; color: var(--muted); }
.chat__ic { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; }
.chat__ic .icon { width: 20px; height: 20px; }
.chat__item--wa .chat__ic { background: #e3f7ec; color: #1a9c5f; }
.chat__item--tg .chat__ic { background: var(--blue-100); color: #229ed9; }
.chat__item--msg .chat__ic { background: var(--amber-100); color: #b8730a; }
@media (max-width: 640px) {
	.chat { right: 16px; bottom: 16px; }
	.chat__toggle { width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) { .chat__panel { animation: none; } .chat__toggle { transition: none; } }
