:root {
	--navy: #000435;
	--navy-2: #05065a;
	--navy-3: #0a0c72;
	--cyan: #00bbff;
	--cyan-2: #5ad4ff;
	--cyan-soft: rgba(0, 187, 255, 0.14);
	--bg: #f6f8fb;
	--paper: #ffffff;
	--ink: #0b1020;
	--ink-2: #1a2140;
	--muted: #8f9ab1;
	--text-soft: #5c6784;
	--line: #e4e9f2;
	--ok: #12b76a;
	--warn: #f79009;
	--fb: #1877f2;
	--ig: #e1306c;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow: 0 28px 80px rgba(0, 4, 53, 0.14);
	--shadow-sm: 0 10px 28px rgba(0, 4, 53, 0.08);
	--font-display: "Sora", system-ui, sans-serif;
	--font-body: "DM Sans", system-ui, sans-serif;
	--font-mono: "Space Mono", ui-monospace, monospace;
	--gutter: 24px;
	--container: min(1160px, calc(100% - 2 * var(--gutter)));
	--nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.skip {
	position: absolute;
	left: -999px;
	top: 0;
}
.skip:focus {
	left: 16px;
	top: 16px;
	z-index: 80;
	background: #fff;
	padding: 8px 12px;
	border-radius: 8px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* NAV */
.nav {
	position: sticky;
	top: 0;
	z-index: 40;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	overflow: visible;
	backdrop-filter: blur(16px);
	background: rgba(246, 248, 251, 0.86);
	border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(246, 248, 251, 0.94); }
.nav__inner {
	width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 28px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.03em;
	color: var(--navy);
}
.brand__logo {
	height: 28px;
	width: auto;
	display: block;
	overflow: visible;
}
.brand__mark {
	position: relative;
	width: 34px;
	height: 30px;
	flex: 0 0 34px;
}
.brand__mark img, .brand__mark svg {
	width: 100%;
	height: 100%;
	display: block;
}
.brand__live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 1px;
	font-size: 1.05rem;
	letter-spacing: -0.03em;
	text-transform: none;
	color: #ff2d55;
}
.brand__dot {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	background: #ff2d55;
	box-shadow: 0 0 0 0 rgba(255, 45, 85, .55);
	animation: livepulse 1.4s infinite;
}
.nav__menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: auto;
}
.nav__links {
	display: flex;
	gap: 22px;
	margin: 0;
	list-style: none;
	padding: 0;
}
.nav__links a {
	text-decoration: none;
	color: var(--text-soft);
	font-weight: 600;
	font-size: 0.95rem;
}
.nav__links a:hover { color: var(--navy); }
.nav__toggle {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: auto;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	position: relative;
	flex: 0 0 42px;
}
.nav__toggle::before,
.nav__toggle::after {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	height: 2px;
	border-radius: 2px;
	background: var(--navy);
	transition: transform .2s ease, top .2s ease;
}
.nav__toggle::before { top: 16px; box-shadow: 0 6px 0 var(--navy); }
.nav__toggle::after { top: 28px; }
.nav.is-open .nav__toggle::before {
	top: 20px;
	box-shadow: none;
	transform: rotate(45deg);
}
.nav.is-open .nav__toggle::after {
	top: 20px;
	transform: rotate(-45deg);
}
.nav__cta { flex-shrink: 0; }
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	padding: 13px 22px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--cyan); color: var(--navy); box-shadow: 0 10px 24px rgba(0, 187, 255, 0.28); }
.btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.22);
}
.btn--light { background: #fff; color: var(--navy); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--sm { padding: 10px 16px; font-size: 0.92rem; }

/* HERO */
.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(900px 480px at 85% 10%, rgba(0, 187, 255, 0.22), transparent 55%),
		radial-gradient(700px 400px at 10% 80%, rgba(24, 119, 242, 0.16), transparent 50%),
		linear-gradient(180deg, var(--navy) 0%, #01032b 100%);
	color: #fff;
	padding: 36px 0 0;
}
.hero__wave {
	display: block;
	width: 100%;
	height: 72px;
	margin-top: 48px;
}
.hero__wave path { fill: var(--paper); }
.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.1);
	color: var(--cyan-2);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.pulse {
	width: 8px; height: 8px; border-radius: 50%;
	background: #ff4d6d;
	box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.6);
	animation: pulse 1.6s infinite;
}
@keyframes pulse {
	70% { box-shadow: 0 0 0 8px rgba(255, 77, 109, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0); }
}
@keyframes livepulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 45, 85, .55); }
	70% { box-shadow: 0 0 0 8px rgba(255, 45, 85, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0); }
}
@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@keyframes orbgrow {
	0%, 100% { opacity: .55; transform: scale(1); }
	50% { opacity: .95; transform: scale(1.08); }
}
@keyframes herobub {
	0%, 12% { opacity: 0; transform: translateY(8px); }
	20%, 78% { opacity: 1; transform: translateY(0); }
	90%, 100% { opacity: 0; transform: translateY(-6px); }
}
.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5vw, 3.5rem);
	line-height: 1.22;
	letter-spacing: -0.02em;
	margin: 18px 0 16px;
	max-width: none;
}
.hero h1 em {
	font-style: normal;
	color: var(--cyan);
}
.hero__lead {
	font-size: 1.12rem;
	color: rgba(255,255,255,.78);
	max-width: 540px;
	margin: 0 0 28px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: rgba(255,255,255,.62);
	font-size: 0.9rem;
	font-weight: 600;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta i {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--cyan);
	display: inline-block;
}

/* PRODUCT STAGE */
.stage {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 24px;
	padding: 16px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
}
.stage__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 8px 14px;
	color: rgba(255,255,255,.55);
	font-size: 0.78rem;
	font-weight: 600;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #3d4566; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.stage__body {
	display: grid;
	gap: 12px;
}
.card-live, .card-link {
	background: #0b1033;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 14px 16px;
}
.card-live__h, .card-link__h {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: rgba(255,255,255,.5);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 12px;
}
.chip {
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(255, 77, 109, .16);
	color: #ff8aa0;
	font-size: 0.7rem;
}
.comment {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.avatar {
	width: 32px; height: 32px; border-radius: 50%;
	background: linear-gradient(135deg, #1877f2, #00bbff);
}
.comment strong { display: block; font-size: 0.86rem; }
.comment p { margin: 2px 0 0; font-size: 0.9rem; color: rgba(255,255,255,.82); }
.auto {
	margin-left: 42px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(0, 187, 255, .1);
	border: 1px solid rgba(0, 187, 255, .22);
	font-size: 0.86rem;
}
.auto b { color: var(--cyan); }
.card-link .sku {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	color: var(--cyan-2);
}
.card-link h3 {
	margin: 6px 0 4px;
	font-size: 1.05rem;
	font-family: var(--font-display);
}
.card-link .price { color: #fff; font-weight: 800; font-size: 1.2rem; }
.fake-btn {
	margin-top: 12px;
	background: var(--cyan);
	color: var(--navy);
	font-weight: 800;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
}

/* SECTIONS */
.section { padding: 88px 0; }
.section--paper { background: var(--paper); }
.kicker {
	color: var(--cyan);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	margin: 0 0 10px;
}
.section h2 {
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
	letter-spacing: -0.015em;
	line-height: 1.32;
	margin: 0 0 14px;
	max-width: none;
}
.section-head {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
	gap: 28px 40px;
	align-items: end;
	margin-bottom: 40px;
}
.section-head .lead { margin-bottom: 0; }
.rule-board {
	background: var(--navy);
	color: #fff;
	border-radius: var(--radius);
	padding: 20px 22px 22px;
	box-shadow: var(--shadow);
}
.rule-board__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 10px;
}
.rule-board__toggles {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}
.rule-board__toggles span {
	flex: 1;
	text-align: center;
	padding: 10px 8px;
	border-radius: 10px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	font-weight: 700;
	font-size: 0.86rem;
	color: rgba(255,255,255,.62);
}
.rule-board__toggles span.is-on {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--navy);
}
.rule-board__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 0.92rem;
	color: rgba(255,255,255,.68);
}
.rule-board__row b { color: #fff; font-weight: 800; }
.rule-board__row b.is-on { color: #7ee8a4; }
.section .lead {
	color: var(--text-soft);
	font-size: 1.08rem;
	max-width: 46rem;
	margin: 0 0 40px;
}
.section--dark {
	background: var(--navy);
	color: #fff;
}
.section--dark .lead { color: rgba(255,255,255,.7); }
.section--dark h2 { max-width: none; }

.grid-3, .grid-2, .grid-4 {
	display: grid;
	gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feat, .step, .pain, .stat {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 22px 24px;
}
.section--dark .feat, .section--dark .stat {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.08);
}
.icon {
	width: 42px; height: 42px;
	border-radius: 12px;
	display: grid; place-items: center;
	background: var(--cyan-soft);
	color: var(--navy);
	margin-bottom: 14px;
	font-weight: 800;
}
.feat h3, .step h3, .pain h3 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 1.12rem;
	letter-spacing: -0.02em;
}
.feat p, .step p, .pain p { margin: 0; color: var(--text-soft); }
.section--dark .feat p { color: rgba(255,255,255,.68); }

.step { position: relative; }
.step__n {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--cyan);
	line-height: 1;
	margin-bottom: 10px;
}

.pain { background: #fff; }
.pain strong { color: var(--navy); }

/* FLOW */
.flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.flow__item {
	background: #fff;
	border-radius: var(--radius);
	padding: 20px;
	border: 1px solid var(--line);
	position: relative;
}
.flow__item span {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--cyan);
	font-weight: 700;
	margin-bottom: 8px;
}
.flow__item h3 { margin: 0 0 6px; font-size: 1.02rem; font-family: var(--font-display); }
.flow__item p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }

/* CHANNELS */
.channels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.channel {
	border-radius: var(--radius);
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
}
.channel h3 { margin: 8px 0 14px; font-family: var(--font-display); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--bg);
	border: 1px solid var(--line);
	font-weight: 700;
	font-size: 0.86rem;
}

/* COMPARE */
.compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.compare article {
	border-radius: var(--radius);
	padding: 28px;
	border: 1px solid var(--line);
	background: #fff;
}
.compare article.is-best {
	background: var(--navy);
	color: #fff;
	border-color: transparent;
	box-shadow: var(--shadow);
}
.compare h3 { font-family: var(--font-display); margin: 0 0 16px; }
.compare ul { margin: 0; padding: 0; list-style: none; }
.compare li {
	padding: 8px 0;
	border-top: 1px solid var(--line);
	color: var(--text-soft);
}
.compare article.is-best li {
	border-top-color: rgba(255,255,255,.08);
	color: rgba(255,255,255,.8);
}
.badge-best {
	display: inline-block;
	background: var(--cyan);
	color: var(--navy);
	font-size: 0.72rem;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 999px;
	margin-bottom: 10px;
}

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 16px 18px;
}
.faq summary {
	cursor: pointer;
	font-weight: 700;
	font-family: var(--font-display);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-right: 4px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "";
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--navy);
	border-bottom: 2px solid var(--navy);
	transform: rotate(45deg);
	transition: transform .18s ease;
	margin-top: -4px;
}
.faq details[open] summary::after {
	transform: rotate(225deg);
	margin-top: 4px;
}
.faq p { margin: 12px 36px 2px 0; color: var(--text-soft); }

/* FORM */
.cta-box {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 36px;
	background: #07103a;
	color: #fff;
	border-radius: 28px;
	padding: 40px;
	box-shadow: var(--shadow);
}
.cta-box h2 { max-width: none; }
.form { display: grid; gap: 12px; }
.form label { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,.7); }
.form input, .form select {
	width: 100%;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.06);
	color: #fff;
	border-radius: 12px;
	padding: 12px 14px;
}
.form input::placeholder { color: rgba(255,255,255,.4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__note { color: rgba(255,255,255,.5); font-size: 0.82rem; margin: 0; }
.form__ok, .form__err { display: none; font-weight: 700; }
.form.is-ok .form__ok { display: block; color: #7ee2a8; }
.form.is-err .form__err { display: block; color: #ffb4c0; }

.section--end {
	background: #000435;
	padding-bottom: 32px;
}
.section--end .cta-box {
	background: transparent;
	box-shadow: none;
	border: 1px solid rgba(255,255,255,.1);
}

/* FOOTER */
.footer {
	padding: 28px 0 32px;
	background: #000435;
	color: rgba(255,255,255,.5);
	font-size: 0.92rem;
	border-top: 1px solid rgba(255,255,255,.08);
}
.footer .brand { color: #fff; }
.footer .brand__logo { height: 26px; }
.footer a:hover { color: #fff; }
.footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { text-decoration: none; color: rgba(255,255,255,.62); }

/* LEGAL / DOCS shared */
.legal-body { background: #fff; }
.legal-header { border-bottom: 1px solid var(--line); }
.legal-header__inner, .legal-header {
	min-height: 68px;
}
.legal-header__inner {
	width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.legal-main { padding: 48px 0 80px; }
.legal-page { max-width: 820px; }
.legal-page--wide { max-width: 960px; }
.legal-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	font-weight: 700;
	font-size: 0.9rem;
}
.legal-nav a { text-decoration: none; color: var(--text-soft); }
.legal-nav a:hover, .legal-nav a.is-on { color: var(--navy); }
.legal-updated { color: var(--muted); font-size: 0.88rem; margin: 0 0 28px; }
.doc-shot {
	margin: 20px 0 10px;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-sm);
}
.doc-shot img { width: 100%; display: block; }
.doc-shot figcaption {
	padding: 10px 14px 12px;
	font-size: 0.88rem;
	color: var(--muted);
}
.cl-item {
	border-left: 3px solid var(--cyan);
	padding: 0 0 4px 18px;
	margin: 32px 0;
}
.cl-item h2 { margin-bottom: 4px; }
.cl-item .cl-date { color: var(--muted); font-size: 0.88rem; margin: 0 0 12px; }
.legal-toc { margin: 0 0 28px; padding-left: 20px; }
.legal-toc a { color: var(--navy); }
.legal-page h1 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	letter-spacing: -0.03em;
	margin: 0 0 12px;
}
.legal-section { margin: 28px 0; }
.legal-section h2 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	margin: 0 0 8px;
	max-width: none;
}
.legal-section p, .legal-section li { color: var(--text-soft); }
.docs-company {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 18px 20px;
	margin: 24px 0 36px;
	color: var(--text-soft);
}
.docs-company strong { display: block; color: var(--ink); margin-bottom: 6px; }
.docs-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.docs-list__item {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
}
.docs-list__link { text-decoration: none; font-weight: 700; font-family: var(--font-display); }
.btn--doc {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid var(--line);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.88rem;
}
.btn--doc--primary { background: var(--navy); color: #fff; border-color: var(--navy); }

.modes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.mode {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 26px 28px;
	position: relative;
}
.mode--accent {
	border-color: transparent;
	background: var(--navy);
	color: #fff;
	box-shadow: var(--shadow);
}
.mode__tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 10px;
}
.mode h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	letter-spacing: -0.03em;
	margin: 0 0 10px;
}
.mode p { margin: 0 0 14px; color: var(--text-soft); }
.mode--accent p { color: rgba(255,255,255,.72); }
.mode ul { margin: 0; padding: 0; list-style: none; }
.mode li {
	padding: 7px 0 7px 18px;
	position: relative;
	color: var(--text-soft);
}
.mode--accent li { color: rgba(255,255,255,.82); }
.mode li::before {
	content: "";
	position: absolute;
	left: 0; top: 15px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--cyan);
}
.choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}
.choice {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 16px;
	font-weight: 700;
	font-size: 0.92rem;
}

.camp {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 400px);
	gap: 36px 48px;
	align-items: center;
}
.camp .lead { margin-bottom: 22px; }
.camp__points {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}
.camp__points li {
	padding: 12px 14px 12px 16px;
	border-radius: 14px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.72);
}
.camp__points strong {
	display: block;
	color: #fff;
	font-family: var(--font-display);
	margin-bottom: 2px;
}
.camp__note {
	margin: 0;
	color: rgba(255,255,255,.7);
	font-size: 1.02rem;
}
.camp-post {
	background: #07092a;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.camp-post__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
}
.camp-post__ava {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(180deg, var(--cyan), #0077aa);
	flex-shrink: 0;
}
.camp-post__head b {
	display: block;
	font-size: 0.92rem;
}
.camp-post__head small {
	color: rgba(255,255,255,.5);
	font-size: 0.75rem;
}
.camp-post__photo {
	min-height: 132px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background:
		radial-gradient(180px 80px at 50% 80%, rgba(0,187,255,.28), transparent 70%),
		linear-gradient(180deg, #14185a, #0a0d38);
	color: rgba(255,255,255,.72);
	font-size: 0.82rem;
	font-weight: 700;
}
.camp-post__photo .bottle { width: 34px; height: 58px; }
.camp-post__caption {
	margin: 0;
	padding: 14px 16px 10px;
	color: rgba(255,255,255,.78);
	font-size: 0.92rem;
}
.camp-post__caption b { color: #fff; }
.camp-post__comments {
	padding: 4px 16px 10px;
	display: grid;
	gap: 8px;
}
.camp-cmt {
	background: rgba(255,255,255,.06);
	border-radius: 12px;
	padding: 8px 10px;
	font-size: 0.88rem;
	color: rgba(255,255,255,.82);
}
.camp-cmt b {
	display: block;
	font-size: 0.7rem;
	color: rgba(255,255,255,.55);
	margin-bottom: 1px;
}
.camp-cmt--auto {
	background: var(--cyan);
	color: var(--navy);
}
.camp-cmt--auto b { color: rgba(0,4,53,.62); }
.camp-dm {
	margin: 0 16px 16px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(0,187,255,.14);
	border: 1px solid rgba(0,187,255,.32);
	color: #c8f0ff;
	font-size: 0.84rem;
	font-weight: 700;
}

.weblo {
	background:
		radial-gradient(700px 320px at 90% 10%, rgba(0, 187, 255, .18), transparent 55%),
		linear-gradient(180deg, #000435 0%, #05061f 100%);
	color: #fff;
	overflow-x: hidden;
}
.weblo h2 { max-width: none; }
.weblo .lead { color: rgba(255,255,255,.72); max-width: 46rem; }
.weblo__logo {
	width: 168px;
	height: auto;
	margin-bottom: 22px;
}
.weblo__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}
.weblo__panel {
	position: relative;
	border-radius: 24px;
	padding: 26px 26px 22px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	overflow: hidden;
}
.weblo__glow {
	position: absolute;
	right: -40px; top: -50px;
	width: 180px; height: 180px;
	border-radius: 50%;
	background: rgba(0, 187, 255, .28);
	filter: blur(28px);
	pointer-events: none;
}
.weblo__panel-kicker {
	position: relative;
	margin: 0 0 16px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--cyan);
}
.weblo__panel ul {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}
.weblo__panel li {
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.06);
	color: rgba(255,255,255,.75);
	font-size: 0.92rem;
}
.weblo__panel strong {
	display: block;
	color: #fff;
	font-family: var(--font-display);
	margin-bottom: 2px;
}
.weblo__stat {
	position: relative;
	margin-top: 16px;
	display: flex;
	gap: 14px;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,.08);
}
.weblo__stat b {
	font-family: var(--font-display);
	font-size: 1.8rem;
	color: var(--cyan);
}
.weblo__stat span { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.weblo__clients {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,.08);
}
.weblo__clients-label {
	width: var(--container);
	margin: 0 auto 22px;
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255,255,255,.5);
}
.weblo__marquee {
	overflow: hidden;
	width: 100%;
}
.weblo__track {
	display: flex;
	width: max-content;
	animation: weblo-marquee 42s linear infinite;
}
.weblo__marquee:hover .weblo__track {
	animation-play-state: paused;
}
.weblo__logos {
	display: flex;
	flex-wrap: nowrap;
	gap: 48px;
	align-items: center;
	padding: 0 24px;
}
.weblo__logos img {
	height: 40px;
	width: auto;
	max-width: 164px;
	object-fit: contain;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
	opacity: .62;
}
@keyframes weblo-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* GRAPHICS */
.icon-svg {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--cyan-soft);
	margin-bottom: 14px;
}
.icon-svg svg { width: 28px; height: 28px; }
.section--dark .icon-svg { background: rgba(0, 187, 255, .16); }

.hero-art {
	position: relative;
	min-height: 460px;
}
.phone {
	width: min(280px, 100%);
	margin: 0 auto;
	animation: floaty 5.2s ease-in-out infinite;
	background: #070b24;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 36px;
	padding: 14px 12px 18px;
	box-shadow: 0 30px 80px rgba(0,0,0,.35);
	position: relative;
	z-index: 2;
}
.phone__notch {
	width: 92px;
	height: 10px;
	border-radius: 999px;
	background: #121739;
	margin: 2px auto 12px;
}
.phone__live {
	border-radius: 20px;
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 20%, rgba(0,187,255,.35), transparent 40%),
		linear-gradient(180deg, #1a1240, #0b1033 55%, #05071a);
	min-height: 340px;
	padding: 14px;
	position: relative;
}
.phone__live::before {
	content: "";
	position: absolute;
	inset: 20% 18% auto;
	height: 46%;
	border-radius: 50%;
	background: rgba(255, 190, 160, .22);
	filter: blur(8px);
}
.live-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
.live-user {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
}
.live-ava {
	width: 26px; height: 26px; border-radius: 50%;
	background: linear-gradient(135deg, #ff8a5b, #00bbff);
	border: 2px solid #fff;
}
.float-card {
	position: absolute;
	z-index: 3;
	background: #fff;
	color: var(--ink);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 18px 40px rgba(0,4,53,.22);
	width: 190px;
}
.float-card--product {
	right: -28px;
	bottom: 54px;
	animation: floaty 4.6s ease-in-out infinite .6s;
}
.float-card--stat {
	left: -36px;
	top: 72px;
	animation: floaty 4.2s ease-in-out infinite .2s;
	width: 150px;
	background: var(--navy);
	color: #fff;
	border: 1px solid rgba(255,255,255,.08);
}
.float-card b { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.float-card small { color: var(--text-soft); font-weight: 600; }
.float-card--stat small { color: rgba(255,255,255,.6); }
.prod-row { display: flex; gap: 10px; align-items: center; }
.bottle {
	width: 36px; height: 46px;
	border-radius: 10px 10px 12px 12px;
	background: linear-gradient(180deg, #5ad4ff, #0077aa);
	position: relative;
	flex-shrink: 0;
}
.bottle::before {
	content: "";
	position: absolute;
	top: -7px; left: 12px;
	width: 12px; height: 8px;
	border-radius: 3px;
	background: #0b1020;
}

.chat-stack { position: relative; z-index: 1; margin-top: 150px; display: grid; gap: 8px; }
.bubble {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	padding: 8px 10px;
	font-size: 0.78rem;
	backdrop-filter: blur(8px);
	opacity: 0;
	animation: herobub 7s var(--d, 0s) infinite;
}
.bubble--me { background: rgba(0,187,255,.2); border-color: rgba(0,187,255,.3); }

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	pointer-events: none;
}
.orb-a { width: 220px; height: 220px; background: rgba(0,187,255,.35); right: -40px; top: -30px; animation: orbgrow 6s ease-in-out infinite; }
.orb-b { width: 160px; height: 160px; background: rgba(24,119,242,.3); left: -20px; bottom: 40px; animation: orbgrow 7s ease-in-out infinite 1s; }

.flow__item {
	overflow: hidden;
}
.flow__viz {
	height: 92px;
	border-radius: 12px;
	margin: -4px -4px 14px;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 70% 30%, rgba(0,187,255,.2), transparent 50%),
		linear-gradient(180deg, #eef6ff, #f7f9fc);
}
.flow__viz svg { width: 44px; height: 44px; }

.mode__viz {
	height: 132px;
	border-radius: 14px;
	margin: 0 0 16px;
	padding: 14px;
	background: #f3f6fb;
	border: 1px solid var(--line);
}
.mode--accent .mode__viz {
	background: rgba(255,255,255,.05);
	border-color: rgba(255,255,255,.08);
}
.mock-link, .mock-search {
	background: #fff;
	border-radius: 12px;
	padding: 10px;
	height: 100%;
	box-shadow: var(--shadow-sm);
}
.mode--accent .mock-search { background: #0b1033; color: #fff; }
.mock-link .row, .mock-search .row { display: flex; gap: 8px; align-items: center; }
.sku-pill {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	background: var(--cyan);
	color: var(--navy);
	border-radius: 6px;
	padding: 2px 6px;
	font-weight: 800;
}
.search-bar {
	margin-top: 10px;
	border-radius: 8px;
	padding: 8px 10px;
	background: rgba(255,255,255,.08);
	border: 1px dashed rgba(0,187,255,.4);
	font-size: 0.78rem;
	color: var(--cyan-2);
}

.channel {
	overflow: hidden;
	padding: 0;
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: stretch;
}
.channel__art {
	padding: 22px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.channel--fb .channel__art { background: linear-gradient(180deg, #d7e7ff, #f4f8ff); }
.channel--ig .channel__art { background: linear-gradient(180deg, #ffd4e4, #fff3e8); }
.channel__copy {
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.channel__copy .kicker { margin-bottom: 6px; }
.channel__copy h3 { margin: 0 0 16px; }
.channel .pills { gap: 8px; }
.channel .pill { background: var(--bg); }

#kanaly.is-reveal > .container > .kicker,
#kanaly.is-reveal > .container > h2,
#kanaly.is-reveal > .container > .lead,
#kanaly.is-reveal .channel {
	opacity: 0;
	transform: translateY(28px);
}
#kanaly.is-in > .container > .kicker,
#kanaly.is-in > .container > h2,
#kanaly.is-in > .container > .lead,
#kanaly.is-in .channel {
	animation: sectionin .7s cubic-bezier(.22, .8, .24, 1) forwards;
}
#kanaly.is-in > .container > h2 { animation-delay: .08s; }
#kanaly.is-in > .container > .lead { animation-delay: .16s; }
#kanaly.is-in .channel--fb { animation-delay: .24s; }
#kanaly.is-in .channel--ig { animation-delay: .4s; }
#kanaly.is-in .live-phone {
	animation: phonein .75s cubic-bezier(.22, .8, .24, 1) both;
}
#kanaly.is-in .channel--fb .live-phone { animation-delay: .38s; }
#kanaly.is-in .channel--ig .live-phone { animation-delay: .54s; }
#kanaly.is-in .pill {
	opacity: 0;
	animation: pillin .45s ease forwards;
}
#kanaly.is-in .channel--fb .pill:nth-child(1) { animation-delay: .48s; }
#kanaly.is-in .channel--fb .pill:nth-child(2) { animation-delay: .54s; }
#kanaly.is-in .channel--fb .pill:nth-child(3) { animation-delay: .6s; }
#kanaly.is-in .channel--fb .pill:nth-child(4) { animation-delay: .66s; }
#kanaly.is-in .channel--ig .pill:nth-child(1) { animation-delay: .64s; }
#kanaly.is-in .channel--ig .pill:nth-child(2) { animation-delay: .7s; }
#kanaly.is-in .channel--ig .pill:nth-child(3) { animation-delay: .76s; }
#kanaly.is-in .channel--ig .pill:nth-child(4) { animation-delay: .82s; }
@keyframes sectionin {
	to { opacity: 1; transform: none; }
}
@keyframes phonein {
	from { opacity: 0; transform: translateY(16px) scale(.92); }
	to { opacity: 1; transform: none; }
}
@keyframes pillin {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

.live-phone {
	width: 168px;
	height: 292px;
	border-radius: 26px;
	padding: 10px;
	background: #0b0d14;
	box-shadow: 0 18px 40px rgba(15, 32, 80, .18);
	position: relative;
}
.live-phone::before {
	content: "";
	position: absolute;
	top: 8px; left: 50%;
	transform: translateX(-50%);
	width: 48px; height: 6px;
	border-radius: 999px;
	background: #1c2230;
}
.live-phone__bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 16px 4px 10px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
}
.live-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #ff2d55;
	border-radius: 5px;
	padding: 2px 6px;
	letter-spacing: .04em;
}
.live-badge i {
	width: 6px; height: 6px; border-radius: 50%;
	background: #fff;
	animation: liveblink 1s infinite;
}
.live-viewers { opacity: .8; font-weight: 600; }
.live-feed {
	height: 220px;
	border-radius: 16px;
	padding: 10px 8px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	overflow: hidden;
	background: linear-gradient(180deg, #1877f2, #0b3f8c);
}
.live-phone--ig .live-feed {
	background: linear-gradient(180deg, #f58529, #dd2a7b 55%, #8134af);
}
.feed-msg {
	background: rgba(255,255,255,.16);
	color: #fff;
	border-radius: 12px;
	padding: 7px 9px;
	font-size: 0.72rem;
	line-height: 1.35;
	opacity: 0;
	transform: translateY(8px);
	animation: feedin 6.4s var(--d, 0s) infinite;
}
.feed-msg b { display: block; font-size: 0.66rem; opacity: .8; }
.feed-msg--auto {
	background: rgba(0, 187, 255, .92);
	color: var(--navy);
	font-weight: 700;
}
.feed-msg--auto b { color: var(--navy); opacity: .7; }
.feed-msg--type {
	width: max-content;
	font-style: italic;
	opacity: 0;
}

.format-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 18px;
}
.format-strip article {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 18px 20px;
}
.format-strip span {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	color: var(--cyan);
	font-weight: 700;
}
.format-strip h3 {
	margin: 6px 0 6px;
	font-family: var(--font-display);
	font-size: 1.05rem;
}
.format-strip p { margin: 0; color: var(--text-soft); font-size: 0.92rem; }

@keyframes liveblink {
	50% { opacity: .25; }
}
@keyframes feedin {
	0%, 8% { opacity: 0; transform: translateY(10px); }
	16%, 78% { opacity: 1; transform: translateY(0); }
	90%, 100% { opacity: 0; transform: translateY(-6px); }
}

.dash {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	margin-bottom: 28px;
}
.dash__bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: var(--navy);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
}
.dash__live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.dash__live i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff2d55;
	box-shadow: 0 0 0 0 rgba(255, 45, 85, .55);
	animation: livepulse 1.4s infinite;
}
.dash__count { color: rgba(255,255,255,.72); font-weight: 700; }
.dash__count b {
	display: inline-block;
	color: var(--cyan);
	font-variant-numeric: tabular-nums;
}
.dash__count.is-up b { animation: countpop .45s ease; }
.dash table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.dash td, .dash th { padding: 10px 14px; text-align: left; border-top: 1px solid var(--line); }
.dash th { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: .05em; }
.dash tbody tr.is-in td { animation: dashin .55s ease; }
.ok { color: var(--ok); font-weight: 800; }
.late { color: var(--warn); font-weight: 800; animation: latepulse 1.6s ease-in-out infinite; }
.fresh { color: var(--cyan); font-weight: 800; }
@keyframes dashin {
	from { opacity: 0; background: rgba(0, 187, 255, .16); }
	to { opacity: 1; background: transparent; }
}
@keyframes latepulse {
	50% { opacity: .45; }
}
@keyframes countpop {
	0% { transform: scale(1); }
	40% { transform: scale(1.28); }
	100% { transform: scale(1); }
}

.pain { position: relative; overflow: hidden; }
.pain .icon-svg { margin-bottom: 16px; }

.cta-box { position: relative; overflow: hidden; }
.cta-box .orb { opacity: .55; }

@media (max-width: 1100px) {
	.nav { overflow: visible; }
	.nav.is-open { background: #f6f8fb; }
	.nav__inner { gap: 12px; }
	.nav__toggle { display: block; }
	.nav__menu {
		display: none;
		position: absolute;
		z-index: 50;
		top: var(--nav-h);
		left: 0;
		right: 0;
		margin: 0;
		padding: 10px 0 18px;
		background: #f6f8fb;
		border-bottom: 1px solid var(--line);
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		box-shadow: 0 16px 32px rgba(0, 4, 53, .08);
	}
	.nav.is-open .nav__menu { display: flex; }
	.nav__links {
		flex-direction: column;
		gap: 0;
	}
	.nav__links li { margin: 0; }
	.nav__links a {
		display: block;
		padding: 12px var(--gutter);
	}
	.nav__cta {
		margin: 8px var(--gutter) 4px;
		width: calc(100% - 2 * var(--gutter));
	}
}

@media (max-width: 960px) {
	.hero__grid, .grid-4, .flow, .channels, .compare, .cta-box, .weblo__grid, .form-row, .modes, .format-strip, .section-head, .camp {
		grid-template-columns: 1fr;
	}
	.grid-3 { grid-template-columns: 1fr 1fr; }
	.channel { grid-template-columns: 1fr; }
	.channel__art { min-height: 0; padding: 18px 14px 8px; }
	.live-phone { height: 240px; width: 140px; }
	.live-feed { height: 168px; }
	.hero { padding-top: 12px; }
	.hero__grid { gap: 28px; }
	.hero-art {
		min-height: 0;
		padding: 12px 8px 4px;
		max-width: 420px;
		margin: 0 auto;
	}
	.phone { width: min(236px, 78%); }
	.phone__live { min-height: 260px; }
	.float-card { width: 160px; padding: 10px 12px; }
	.float-card--stat { left: 0; top: 12px; width: 132px; }
	.float-card--product { right: 0; bottom: 16px; }
	.chat-stack { margin-top: 88px; }
	.section { padding: 64px 0; }
	.section-head { gap: 16px; }
	.dash { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.dash table { min-width: 480px; }
	.footer__inner { align-items: flex-start; }
	.compare article { padding: 22px 18px; }
}

@media (max-width: 640px) {
	:root {
		--gutter: 16px;
		--nav-h: 64px;
	}
	.grid-3, .grid-2 { grid-template-columns: 1fr; }
	.brand__logo { height: 22px; }
	.brand__live { font-size: 0.95rem; }
	.footer .brand__logo { height: 22px; }
	.eyebrow { max-width: 100%; white-space: normal; text-align: left; }
	.hero h1 { font-size: clamp(1.7rem, 8.2vw, 2.2rem); margin: 14px 0 12px; }
	.hero__lead { font-size: 1rem; margin-bottom: 20px; }
	.hero__cta { margin-bottom: 18px; }
	.hero__cta .btn { width: 100%; }
	.hero__meta { gap: 10px 14px; font-size: 0.84rem; }
	.hero__wave { height: 48px; margin-top: 28px; }
	.hero-art { max-width: 280px; padding: 0; }
	.phone { width: min(200px, 72%); border-radius: 28px; padding: 10px 9px 14px; }
	.phone__live { min-height: 200px; padding: 12px; }
	.float-card { display: none; }
	.chat-stack { margin-top: 52px; }
	.orb-a, .orb-b { display: none; }
	.section { padding: 48px 0; }
	.section .lead { font-size: 1rem; margin-bottom: 24px; }
	.feat, .step, .pain, .stat { padding: 18px 16px 20px; }
	.rule-board { padding: 16px; }
	.rule-board__toggles { flex-wrap: wrap; }
	.live-phone, .channel__art { display: none; }
	.channel__copy { padding: 20px 18px 22px; }
	.camp-post { max-width: 100%; }
	.dash td, .dash th { padding: 8px 10px; }
	.footer__inner { flex-direction: column; gap: 14px; }
	.footer nav { gap: 10px 14px; }
	.legal-header, .legal-header__inner { min-height: 0; }
	.legal-header__inner {
		flex-wrap: wrap;
		gap: 10px;
		padding: 12px 0;
	}
	.legal-nav { width: 100%; }
	.legal-main { padding: 32px 0 56px; }
	.cta-box { padding: 22px 18px; border-radius: 20px; gap: 22px; }
	.faq summary { align-items: flex-start; }
	.faq p { margin-right: 8px; }
}

@media (max-width: 400px) {
	:root { --gutter: 14px; }
	.nav__toggle { width: 38px; height: 38px; flex-basis: 38px; }
	.hero h1 { font-size: 1.62rem; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.pulse, .live-badge i, .feed-msg, .brand__dot, .phone, .float-card, .orb, .bubble, .dash__live i, .late, .dash tbody tr.is-in td, .dash__count.is-up b, .weblo__track,
	#kanaly.is-in > .container > .kicker, #kanaly.is-in > .container > h2, #kanaly.is-in > .container > .lead, #kanaly.is-in .channel, #kanaly.is-in .live-phone, #kanaly.is-in .pill { animation: none; }
	.feed-msg, .bubble,
	#kanaly.is-reveal > .container > .kicker, #kanaly.is-reveal > .container > h2, #kanaly.is-reveal > .container > .lead, #kanaly.is-reveal .channel, #kanaly.is-reveal .pill { opacity: 1; transform: none; }
	.btn:hover { transform: none; }
}
