/* ==========================================================
   Motion IPTV — "prime time" palette
   Deep indigo night, lit by a magenta → coral → amber signal.
   ========================================================== */
:root {
	--night: #140C33;
	--night-2: #1C1345;
	--night-3: #271B5A;
	--line: rgba(233, 226, 255, .12);
	--line-2: rgba(233, 226, 255, .22);
	--text: #F3EEFF;
	--muted: #B0A6D8;
	--magenta: #FF3D8B;
	--coral: #FF7A59;
	--amber: #FFB347;
	--violet: #8E72FF;
	--mint: #4BE3B0;
	--signal: linear-gradient(100deg, #FF3D8B 0%, #FF7A59 55%, #FFB347 100%);
	--f-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
	--f-body: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
	--r-lg: 22px;
	--r-md: 14px;
	--r-sm: 9px;
	--wrap: 1180px;
	--pad: clamp(1.1rem, 4vw, 2rem);
	--sec: clamp(4rem, 9vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background:
		radial-gradient(900px 520px at 85% -120px, rgba(255, 61, 139, .20), transparent 70%),
		radial-gradient(760px 520px at -10% 10%, rgba(142, 114, 255, .22), transparent 70%),
		var(--night);
	color: var(--text);
	font: 400 1.0625rem/1.6 var(--f-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--amber); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: #FFD08A; }
h1, h2, h3 { font-family: var(--f-display); line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }
.screen-reader-text, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--amber); color: var(--night); padding: .6rem 1rem; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.narrow { max-width: 780px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.icon { width: 1.2em; height: 1.2em; flex: none; vertical-align: -.2em; }

/* ---------- Buttons ---------- */
.btn {
	--bh: 3rem;
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	min-height: var(--bh); padding: 0 1.35em;
	border-radius: 999px; border: 1px solid transparent;
	font: 600 1rem/1 var(--f-body); text-decoration: none; cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--signal { background: var(--signal); color: #1A0B26; box-shadow: 0 10px 30px -10px rgba(255, 61, 139, .75); }
.btn--signal:hover { color: #1A0B26; box-shadow: 0 14px 38px -10px rgba(255, 122, 89, .9); }
.btn--ghost { background: rgba(255, 255, 255, .04); border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { color: var(--text); border-color: rgba(255, 179, 71, .7); background: rgba(255, 179, 71, .08); }
.btn--light { background: var(--text); color: var(--night); }
.btn--light:hover { color: var(--night); background: #fff; }
.btn--sm { --bh: 2.5rem; font-size: .93rem; padding: 0 1.1em; }
.btn--lg { --bh: 3.5rem; font-size: 1.05rem; padding: 0 1.6em; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(20, 12, 51, .78);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--text); text-decoration: none; }
.brand:hover { color: var(--text); }
.brand__img { max-height: 44px; width: auto; }
.brand__mark { display: inline-flex; flex-direction: column; gap: 3px; transform: skewX(-18deg); }
.brand__mark span { display: block; height: 5px; border-radius: 3px; background: var(--signal); }
.brand__mark span:nth-child(1) { width: 26px; }
.brand__mark span:nth-child(2) { width: 18px; margin-left: 6px; opacity: .85; }
.brand__mark span:nth-child(3) { width: 12px; margin-left: 12px; opacity: .7; }
.brand__word { font: 800 1.35rem/1 var(--f-display); letter-spacing: -.03em; }
.brand__word span { font-weight: 500; color: var(--muted); margin-left: .18em; letter-spacing: 0; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.25rem; }
.nav__list { list-style: none; display: flex; gap: .2rem; margin: 0; padding: 0; }
.nav__list a { display: block; padding: .55rem .8rem; border-radius: 999px; color: var(--muted); text-decoration: none; font-weight: 500; font-size: .98rem; }
.nav__list a:hover, .nav__list .current-menu-item > a, .nav__list .current_page_item > a { color: var(--text); background: rgba(255, 255, 255, .06); }
.nav__list .menu-webplayer > a { color: var(--text); }
.nav__list .menu-webplayer > a::before {
	content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
	background: var(--mint); margin-right: .45rem; vertical-align: .12em;
	box-shadow: 0 0 0 3px rgba(75, 227, 176, .2);
}
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line-2); color: var(--text); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }

@media (max-width: 1240px) {
	.nav-toggle { display: inline-flex; }
	.nav {
		position: fixed; inset: 72px 0 auto 0; margin: 0;
		flex-direction: column; align-items: stretch; gap: 1rem;
		padding: 1.25rem var(--pad) 1.75rem;
		background: var(--night-2); border-bottom: 1px solid var(--line);
		box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
		transform: translateY(-8px); opacity: 0; visibility: hidden;
		transition: opacity .2s ease, transform .2s ease, visibility .2s;
		max-height: calc(100vh - 72px); overflow-y: auto;
	}
	.nav.is-open { transform: none; opacity: 1; visibility: visible; }
	.nav__list { flex-direction: column; }
	.nav__list a { padding: .85rem .9rem; font-size: 1.08rem; border-radius: 12px; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 4.6vw + .6rem, 4.6rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.0; max-width: 14ch; }
.hero__title--sm { font-size: clamp(2.2rem, 3.6vw + .6rem, 3.6rem); max-width: 16ch; }
.hero__lead { font-size: clamp(1.08rem, .5vw + 1rem, 1.25rem); color: var(--muted); max-width: 34rem; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__assure { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; color: var(--muted); font-size: .95rem; }
.hero__assure li { display: flex; align-items: center; gap: .4rem; }
.hero__assure .icon { color: var(--mint); }

/* The TV — the one bold moment on the page */
.screen { position: relative; }
.screen__glow {
	position: absolute; inset: 8% 6% 14%; border-radius: 40px;
	background: var(--signal); filter: blur(60px); opacity: .45;
}
.screen__frame {
	position: relative; padding: 12px; border-radius: 26px;
	background: linear-gradient(160deg, #3A2C74, #16103A 60%);
	border: 1px solid var(--line-2);
	box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.screen__inner {
	border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 11;
	background: radial-gradient(120% 90% at 100% 0%, #2B1E63 0%, #120A2E 60%);
	display: flex; flex-direction: column; padding: 4.5% 5%;
	transform-origin: center; animation: power-on 1.1s cubic-bezier(.2, .8, .2, 1) both .15s;
}
@keyframes power-on {
	0% { transform: scale(1, .004); filter: brightness(4); opacity: .9; }
	40% { transform: scale(1, .004); filter: brightness(4); }
	70% { transform: scale(1, 1.03); filter: brightness(1.5); }
	100% { transform: none; filter: none; }
}
.screen__top { display: flex; justify-content: space-between; align-items: center; font-size: clamp(.7rem, 1.1vw, .9rem); color: var(--muted); margin-bottom: 4%; }
.screen__logo { display: inline-flex; align-items: center; gap: .5rem; font: 700 1.05em var(--f-display); color: var(--text); }
.screen__logo .brand__mark { transform: skewX(-18deg) scale(.7); transform-origin: left center; }
.screen__clock { font-variant-numeric: tabular-nums; }
.screen__body { flex: 1; display: grid; grid-template-columns: 38% 1fr; gap: 5%; min-height: 0; }
.screen__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; justify-content: space-between; }
.screen__list li {
	font-size: clamp(.7rem, 1.15vw, .95rem); padding: .45em .7em; border-radius: 8px; color: var(--muted);
	border: 1px solid transparent; transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
.screen__list li.is-on { color: var(--text); background: rgba(255, 255, 255, .08); border-color: rgba(255, 179, 71, .55); }
.screen__now { display: flex; flex-direction: column; min-height: 0; }
.screen__art {
	position: relative; flex: 1; border-radius: 12px; overflow: hidden; min-height: 0;
	background: var(--art, linear-gradient(135deg, #FF3D8B, #FFB347));
	transition: background .6s ease;
	display: grid; place-items: center;
}
.screen__art::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .08) 0 2px, transparent 2px 4px); pointer-events: none; }
.screen__art[data-art="sport"]  { --art: radial-gradient(80% 60% at 30% 100%, #2FD48A 0%, transparent 70%), linear-gradient(160deg, #1F7A5A, #0E3B3A); }
.screen__art[data-art="movies"] { --art: radial-gradient(70% 70% at 70% 30%, #FFB347 0%, transparent 60%), linear-gradient(160deg, #6B1D4F, #1F0B2E); }
.screen__art[data-art="series"] { --art: radial-gradient(60% 80% at 20% 30%, #8E72FF 0%, transparent 65%), linear-gradient(160deg, #2E2172, #140C33); }
.screen__art[data-art="kids"]   { --art: radial-gradient(60% 60% at 70% 70%, #FFE066 0%, transparent 65%), linear-gradient(160deg, #FF7A59, #FF3D8B); }
.screen__art[data-art="news"]   { --art: radial-gradient(70% 70% at 80% 20%, #6FB6FF 0%, transparent 60%), linear-gradient(160deg, #1B3A7A, #0D1636); }
.screen__art[data-art="uhd"]    { --art: radial-gradient(90% 60% at 50% 110%, #4BE3B0 0%, transparent 70%), linear-gradient(180deg, #3B8BD9, #1C3F7A); }
.screen__live { position: absolute; top: 8%; left: 6%; z-index: 1; font-size: clamp(.6rem, .9vw, .75rem); font-weight: 600; background: var(--magenta); color: #fff; padding: .2em .6em; border-radius: 5px; }
.screen__play { width: 22%; height: auto; color: #fff; fill: rgba(255, 255, 255, .9); stroke: none; filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .4)); position: relative; z-index: 1; }
.screen__title { font: 700 clamp(.85rem, 1.5vw, 1.2rem)/1.2 var(--f-display); margin: .7em 0 .15em; }
.screen__sub { font-size: clamp(.68rem, 1vw, .85rem); color: var(--muted); margin: 0 0 .7em; }
.screen__bar { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, .12); overflow: hidden; }
.screen__bar span { display: block; height: 100%; width: 0; background: var(--signal); }
.screen.is-cycling .screen__bar span { animation: bar 2.8s linear infinite; }
@keyframes bar { from { width: 0; } to { width: 100%; } }
.screen__stand { width: 28%; height: 14px; margin: 0 auto; background: linear-gradient(#2A1F5E, #17103A); border-radius: 0 0 14px 14px; }

@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__title { max-width: 16ch; }
	.screen { max-width: 560px; }
}

/* ---------- Devices strip ---------- */
.devices { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.devices__row { display: flex; align-items: center; gap: 1.5rem 2rem; padding-block: 1.3rem; flex-wrap: wrap; }
.devices__label { margin: 0; color: var(--muted); font-size: .95rem; }
.devices__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.9rem; }
.devices__list li { display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.devices__list .icon { color: var(--amber); }

/* ---------- Sections ---------- */
.section { padding-block: var(--sec) 0; }
.section:last-child { padding-bottom: var(--sec); }
.site-main > .section:last-of-type { padding-bottom: var(--sec); }
.section--tight { padding-top: clamp(2rem, 4vw, 3rem); }
.section__head { max-width: 40rem; margin-bottom: 2.4rem; }
.section__title { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.9rem); font-weight: 800; letter-spacing: -.03em; }
.section__title--sm { font-size: clamp(1.45rem, 1.2vw + 1rem, 1.9rem); }
.section__lead { color: var(--muted); font-size: 1.12rem; margin: 0; }

.pagehead { padding: clamp(3rem, 6vw, 5rem) 0 clamp(.5rem, 2vw, 1rem); }
.pagehead__title { font-size: clamp(2.3rem, 3.6vw + .8rem, 3.8rem); font-weight: 800; letter-spacing: -.035em; max-width: 18ch; }
.pagehead__lead { color: var(--muted); font-size: 1.15rem; max-width: 42rem; margin: 0; }

/* Steps — a real sequence, so numbered */
.steps__list { list-style: none; counter-reset: s; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps__list li { counter-increment: s; position: relative; padding: 4.2rem 2rem 0 0; }
.steps__list li::before {
	content: counter(s); position: absolute; top: 0; left: 0;
	width: 2.9rem; height: 2.9rem; border-radius: 50%; display: grid; place-items: center;
	font: 800 1.2rem/1 var(--f-display); color: #1A0B26; background: var(--signal);
}
.steps__list li::after { content: ""; position: absolute; top: 1.45rem; left: 3.6rem; right: 1rem; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }
.steps__list li:last-child::after { display: none; }
.steps__list h3 { font-size: 1.3rem; }
.steps__list p { color: var(--muted); max-width: 30ch; }
@media (max-width: 760px) {
	.steps__list { grid-template-columns: 1fr; gap: 1.8rem; }
	.steps__list li { padding: 0 0 0 4rem; }
	.steps__list li::after { display: none; }
}

/* Features */
.features__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.features__intro { position: sticky; top: 110px; }
.features__intro p { color: var(--muted); font-size: 1.1rem; max-width: 30rem; margin-bottom: 1.6rem; }
.features__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem 2rem; }
.features__list li { display: flex; gap: 1rem; }
.features__list .icon { width: 2.6rem; height: 2.6rem; padding: .6rem; border-radius: 12px; color: var(--amber); background: rgba(255, 179, 71, .1); border: 1px solid rgba(255, 179, 71, .22); }
.features__list h3 { font-size: 1.15rem; margin-bottom: .3em; }
.features__list p { color: var(--muted); margin: 0; font-size: .98rem; }
@media (max-width: 900px) {
	.features__grid { grid-template-columns: 1fr; }
	.features__intro { position: static; }
}
@media (max-width: 560px) { .features__list { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing__conn { display: flex; align-items: center; gap: 1rem 1.4rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.pricing__conn-label { margin: 0; font-weight: 600; }
.seg { display: inline-flex; padding: 5px; border-radius: 999px; background: var(--night-2); border: 1px solid var(--line); }
.seg__opt { position: relative; }
.seg__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg__opt span { display: grid; place-items: center; min-width: 3rem; height: 2.6rem; padding: 0 .8rem; border-radius: 999px; font: 700 1.05rem/1 var(--f-display); color: var(--muted); transition: background-color .2s ease, color .2s ease; }
.seg__opt input:checked + span { background: var(--text); color: var(--night); }
.seg__opt input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }
.seg--wide .seg__opt span { min-width: 3.4rem; }

.plans { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.plan {
	display: flex; flex-direction: column; padding: 1.5rem 1.2rem; border-radius: var(--r-lg); min-width: 0;
	background: var(--night-2); border: 1px solid var(--line);
}
.plan__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .4rem; min-height: 1.8rem; }
.plan__name { font-size: 1.15rem; margin: 0; }
.plan__tag { font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; background: rgba(255, 255, 255, .1); white-space: nowrap; }
.plan__price { font: 800 clamp(1.8rem, 1.2vw + 1rem, 2.3rem)/1 var(--f-display); letter-spacing: -.04em; margin: 1.2rem 0 .4rem; font-variant-numeric: tabular-nums; }
.plan__per { color: var(--muted); font-size: .9rem; min-height: 2.6em; margin-bottom: 1.2rem; }
.plan__feat { list-style: none; margin: 0 0 1.6rem; padding: 1.2rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .55rem; font-size: .93rem; }
.plan__feat li { display: flex; gap: .5rem; align-items: flex-start; }
.plan__feat .icon { color: var(--mint); margin-top: .12em; }
.plan__btn { margin-top: auto; width: 100%; }
.plan--12m {
	background: linear-gradient(var(--night-3), var(--night-3)) padding-box, var(--signal) border-box;
	border: 2px solid transparent; transform: translateY(-10px);
	box-shadow: 0 30px 60px -30px rgba(255, 61, 139, .55);
}
.plan--12m .plan__tag { background: var(--signal); color: #1A0B26; }
.plan--life { background: radial-gradient(120% 80% at 100% 0%, rgba(255, 179, 71, .16), transparent 60%), var(--night-2); border-color: rgba(255, 179, 71, .35); }
.plan--life .plan__tag { background: rgba(255, 179, 71, .18); color: var(--amber); }
.plan__price.is-flash { animation: flash .35s ease; }
@keyframes flash { from { opacity: .2; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.pricing__note { margin-top: 1.8rem; color: var(--muted); font-size: .98rem; }

@media (max-width: 1100px) {
	.plans { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	.plan { grid-column: span 2; }
	.plan--12m, .plan--life { grid-column: span 3; }
	.plan--12m { transform: none; }
}
@media (max-width: 700px) {
	.plans { grid-template-columns: 1fr; }
	.plan, .plan--12m, .plan--life { grid-column: auto; }
	.plan--12m { order: -2; }
	.plan--life { order: -1; }
}

.table-scroll { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--line); }
.price-table { width: 100%; border-collapse: collapse; min-width: 640px; font-variant-numeric: tabular-nums; }
.price-table th, .price-table td { padding: .95rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { font-size: .9rem; color: var(--muted); font-weight: 600; background: var(--night-2); }
.price-table tbody tr:last-child > * { border-bottom: 0; }
.price-table tbody th { font-weight: 600; }
.price-table td a { color: var(--text); text-decoration: none; font-weight: 600; }
.price-table td a:hover { color: var(--amber); text-decoration: underline; }
.price-table tbody tr:hover { background: rgba(255, 255, 255, .03); }

/* ---------- Bands ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: stretch; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.band { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.8rem); }
.band h2 { font-size: clamp(1.6rem, 1.5vw + 1rem, 2.2rem); font-weight: 800; }
.band p { max-width: 32rem; }
.band__icon { width: 3rem; height: 3rem; margin-bottom: 1.2rem; }
.band--player { background: var(--signal); color: #1A0B26; }
.band--player p { color: rgba(26, 11, 38, .82); }
.band--player .band__icon { fill: #1A0B26; stroke: none; }
.band--player::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(255, 255, 255, .18); }
.band--vpn { background: var(--night-2); border: 1px solid var(--line); }
.band--vpn .band__icon { color: var(--mint); }
.band--vpn p { color: var(--muted); }
.mini-table { width: 100%; border-collapse: collapse; margin: .4rem 0 1.4rem; font-variant-numeric: tabular-nums; }
.mini-table td { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.mini-table td:last-child { text-align: right; font-weight: 600; }

.info-block { padding: clamp(1.4rem, 3vw, 2rem) 0; }
.ticks { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .75rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; }
.ticks .icon { color: var(--mint); margin-top: .15em; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font: 600 1.12rem/1.35 var(--f-display); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; flex: none; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); font: 400 1.3rem/1 var(--f-body); color: var(--amber); transition: transform .2s ease; }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { color: var(--muted); margin: 0 0 1.3rem; max-width: 60ch; }

/* ---------- Final CTA ---------- */
.cta-final__box {
	text-align: center; padding-block: clamp(3rem, 6vw, 4.5rem);
	border-radius: 30px; position: relative; overflow: hidden;
	background:
		radial-gradient(60% 120% at 50% 120%, rgba(255, 61, 139, .45), transparent 70%),
		var(--night-2);
	border: 1px solid var(--line);
}
.cta-final__box h2 { font-size: clamp(2rem, 3vw + 1rem, 3.3rem); font-weight: 800; letter-spacing: -.035em; }
.cta-final__box p { color: var(--muted); font-size: 1.15rem; }
.cta-final__box .hero__actions { justify-content: center; margin-top: 1.6rem; }

/* ---------- Forms ---------- */
.notice { padding: 1rem 1.2rem; border-radius: var(--r-md); margin-bottom: 1.4rem; font-weight: 500; }
.notice--error { background: rgba(255, 61, 139, .12); border: 1px solid rgba(255, 61, 139, .45); }
.notice--success { background: rgba(75, 227, 176, .12); border: 1px solid rgba(75, 227, 176, .45); }

.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field select, .field textarea {
	width: 100%; font: 400 1rem/1.4 var(--f-body); color: var(--text);
	background: rgba(8, 4, 26, .55); border: 1px solid var(--line-2); border-radius: var(--r-sm);
	padding: .8rem .95rem; min-height: 3rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 2.4rem; }
.field select option { background: var(--night-2); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: rgba(176, 166, 216, .55); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255, 179, 71, .22); }
.field input.is-invalid { border-color: var(--magenta); }
.hint { font-size: .85rem; color: var(--muted); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 560px) { .grid2 { grid-template-columns: 1fr; } }

.check { display: flex; gap: .7rem; align-items: flex-start; margin: .6rem 0 1rem; cursor: pointer; }
.check input { width: 1.2rem; height: 1.2rem; margin-top: .18em; accent-color: var(--magenta); flex: none; }
.check--sm { font-size: .93rem; }

.card-form { background: var(--night-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.card-form__title { font-size: 1.5rem; margin-bottom: 1.2rem; }

/* Order */
.order { display: grid; grid-template-columns: 1fr 380px; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 960px) { .order { grid-template-columns: 1fr; } }
.fset { border: 0; padding: 0 0 2rem; margin: 0 0 2rem; border-bottom: 1px solid var(--line); min-width: 0; }
.fset:last-child { border-bottom: 0; }
.fset__title { display: flex; align-items: center; gap: .7rem; font: 700 1.3rem/1.2 var(--f-display); margin-bottom: 1.2rem; padding: 0; }
.fset__num { width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center; font-size: .95rem; background: rgba(255, 255, 255, .08); border: 1px solid var(--line-2); }
.chips { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1rem; }
.chips--plans { display: grid; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 700px) { .chips--plans { grid-template-columns: repeat(2, 1fr); } }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip__body { display: flex; flex-direction: column; gap: .25rem; padding: .9rem 1rem; border-radius: var(--r-md); border: 1px solid var(--line-2); background: var(--night-2); height: 100%; transition: border-color .15s ease, background-color .15s ease; }
.chip--sm .chip__body { padding: .7rem 1.1rem; }
.chip__title { font-weight: 600; }
.chip__price { font: 700 1.2rem/1 var(--f-display); font-variant-numeric: tabular-nums; }
.chip input:checked + .chip__body { border-color: var(--amber); background: rgba(255, 179, 71, .1); box-shadow: inset 0 0 0 1px var(--amber); }
.chip input:focus-visible + .chip__body { outline: 3px solid var(--amber); outline-offset: 2px; }

.addon { display: block; position: relative; cursor: pointer; margin-bottom: 1rem; }
.addon input { position: absolute; opacity: 0; }
.addon__box { display: flex; gap: 1rem; padding: 1.1rem 1.2rem; border-radius: var(--r-md); border: 1px dashed var(--line-2); background: rgba(75, 227, 176, .04); transition: border-color .15s ease, background-color .15s ease; }
.addon__box::after { content: ""; flex: none; width: 1.4rem; height: 1.4rem; border-radius: 6px; border: 2px solid var(--line-2); margin-left: auto; align-self: center; }
.addon input:checked + .addon__box { border-style: solid; border-color: var(--mint); background: rgba(75, 227, 176, .1); }
.addon input:checked + .addon__box::after { background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23140C33' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 80% no-repeat; border-color: var(--mint); }
.addon input:focus-visible + .addon__box { outline: 3px solid var(--amber); outline-offset: 2px; }
.addon__icon { width: 2rem; height: 2rem; color: var(--mint); flex: none; }
.addon__text { display: flex; flex-direction: column; gap: .2rem; }
.addon__title { font-weight: 600; display: flex; gap: .6rem; align-items: baseline; flex-wrap: wrap; }
.addon__price { color: var(--mint); font-variant-numeric: tabular-nums; }
.addon__sub { color: var(--muted); font-size: .92rem; }

.order__side { position: sticky; top: 96px; }
.summary { background: var(--night-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }
.summary__title { font-size: 1.35rem; }
.summary__rows { margin: 0 0 1rem; }
.summary__rows > div { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.summary__rows > div[hidden] { display: none; }
.summary__rows dt { color: var(--muted); }
.summary__rows dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin: 1rem 0 1.2rem; }
.summary__total strong { font: 800 2.2rem/1 var(--f-display); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.summary__fine { font-size: .86rem; color: var(--muted); margin: .9rem 0 0; }
.summary__assure { list-style: none; padding: 1rem 0 0; margin: 1rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .5rem; font-size: .9rem; color: var(--muted); }
.summary__assure li { display: flex; gap: .5rem; align-items: center; }
.summary__assure .icon { color: var(--amber); }
.order__trial { margin-top: 1rem; font-size: .95rem; color: var(--muted); text-align: center; }

/* Done state */
.done { text-align: center; background: var(--night-2); border: 1px solid var(--line); border-radius: 28px; padding: clamp(2rem, 5vw, 3.5rem); }
.done__icon { width: 4.5rem; height: 4.5rem; margin: 0 auto 1.4rem; border-radius: 50%; display: grid; place-items: center; background: var(--signal); color: #1A0B26; }
.done__icon .icon { width: 2rem; height: 2rem; stroke-width: 2.4; }
.done h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.3rem); }
.done > p { color: var(--muted); max-width: 36rem; margin-inline: auto; }
.done__steps { text-align: left; max-width: 30rem; margin: 1.6rem auto 2rem; padding-left: 1.2rem; display: grid; gap: .5rem; }
.done .hero__actions { justify-content: center; }

/* Trial */
.trial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .trial { grid-template-columns: 1fr; } .trial__form { order: -1; } }
.trial__h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.clockface { position: relative; width: 132px; height: 132px; margin-bottom: 1.8rem; }
.clockface svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.clockface circle { fill: none; stroke-width: 9; }
.clockface__track { stroke: rgba(255, 255, 255, .08); }
.clockface__arc { stroke: var(--amber); stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; animation: sweep 1.6s cubic-bezier(.3, .7, .2, 1) .3s forwards; }
@keyframes sweep { to { stroke-dashoffset: 0; } }
.clockface__label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.clockface__label strong { font: 800 2.6rem/1 var(--f-display); }
.clockface__label span { color: var(--muted); font-size: .88rem; }

/* Setup guide */
.guide { display: grid; grid-template-columns: 250px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.guide__tabs { display: flex; flex-direction: column; gap: .35rem; position: sticky; top: 96px; }
.guide__tab { display: flex; align-items: center; gap: .7rem; text-align: left; padding: .85rem 1rem; border-radius: 12px; border: 1px solid transparent; background: none; color: var(--muted); font: 600 1rem/1.2 var(--f-body); cursor: pointer; }
.guide__tab .icon { width: 1.4rem; height: 1.4rem; }
.guide__tab:hover { color: var(--text); background: rgba(255, 255, 255, .04); }
.guide__tab[aria-selected="true"] { color: var(--text); background: var(--night-2); border-color: var(--line-2); }
.guide__tab[aria-selected="true"] .icon { color: var(--amber); }
.guide__panel { background: var(--night-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); }
.js .guide__panel[data-hidden] { display: none; }
.guide__panel + .guide__panel { margin-top: 1.2rem; }
.js .guide__panel + .guide__panel { margin-top: 0; }
.guide__title { font-size: clamp(1.6rem, 1.5vw + 1rem, 2.2rem); font-weight: 800; }
.guide__intro { color: var(--muted); margin-bottom: 1.6rem; }
.guide__steps { list-style: none; counter-reset: g; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 1.2rem; }
.guide__steps li { counter-increment: g; position: relative; padding-left: 3.2rem; min-height: 2.2rem; max-width: 64ch; }
.guide__steps li::before { content: counter(g); position: absolute; left: 0; top: -.1rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; font: 700 1rem/1 var(--f-display); background: rgba(255, 179, 71, .14); color: var(--amber); border: 1px solid rgba(255, 179, 71, .35); }
.guide__tip { display: flex; gap: .6rem; padding: 1rem 1.1rem; border-radius: var(--r-md); background: rgba(142, 114, 255, .12); border: 1px solid rgba(142, 114, 255, .35); margin: 0; font-size: .95rem; }
.guide__tip .icon { color: var(--violet); margin-top: .15em; }
.code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; background: rgba(255, 255, 255, .1); padding: .1em .4em; border-radius: 5px; }
@media (max-width: 860px) {
	.guide { grid-template-columns: 1fr; }
	.guide__tabs { position: static; flex-direction: row; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: thin; }
	.guide__tab { flex: none; }
}
.creds { margin: 0; display: grid; gap: .6rem; }
.creds > div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.creds dt { font-weight: 600; }
.creds dd { margin: 0; color: var(--muted); }

/* VPN */
.vpn-hero { padding: clamp(3rem, 7vw, 6rem) 0 1rem; }
.vpn-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .vpn-hero__grid { grid-template-columns: 1fr; } }
.vpn-hero__badge { display: inline-flex; align-items: center; gap: .45rem; padding: .35rem .8rem; border-radius: 999px; background: rgba(75, 227, 176, .12); border: 1px solid rgba(75, 227, 176, .4); color: var(--mint); font-weight: 600; font-size: .92rem; margin-bottom: 1.3rem; }
.tunnel { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 2.4rem 1.6rem 1.6rem; border-radius: var(--r-lg); background: var(--night-2); border: 1px solid var(--line); }
.tunnel__node { display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted); }
.tunnel__node .icon { width: 3.2rem; height: 3.2rem; padding: .75rem; border-radius: 16px; background: var(--night-3); color: var(--text); border: 1px solid var(--line-2); }
.tunnel__pipe { position: relative; height: 34px; border-radius: 999px; background: linear-gradient(90deg, rgba(75, 227, 176, .2), rgba(142, 114, 255, .25)); border: 1px solid rgba(75, 227, 176, .4); overflow: hidden; }
.tunnel__pipe span { position: absolute; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: packet 2.4s linear infinite; }
.tunnel__pipe span:nth-child(2) { animation-delay: .8s; }
.tunnel__pipe span:nth-child(3) { animation-delay: 1.6s; }
@keyframes packet { from { left: -10px; } to { left: 100%; } }
.tunnel__lock { position: absolute; left: 50%; top: 50%; width: 1.3rem; height: 1.3rem; transform: translate(-50%, -50%); color: var(--night); background: var(--mint); border-radius: 50%; padding: .2rem; }
.tunnel__isp { grid-column: 1 / -1; margin: 1.2rem 0 0; display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--muted); font-size: .9rem; }
.reasons { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.reasons .icon { width: 2.4rem; height: 2.4rem; color: var(--mint); margin-bottom: 1rem; }
.reasons h3 { font-size: 1.2rem; }
.reasons p { color: var(--muted); margin: 0; }
@media (max-width: 900px) { .reasons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .reasons { grid-template-columns: 1fr; } }
.vpn-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .vpn-tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .vpn-tiers { grid-template-columns: 1fr; } }
.vpn-tier { padding: 1.6rem 1.4rem; border-radius: var(--r-lg); background: var(--night-2); border: 1px solid var(--line); display: flex; flex-direction: column; }
.vpn-tier h3 { font-size: 1.15rem; }
.vpn-tier__price { font: 800 2.3rem/1 var(--f-display); letter-spacing: -.04em; margin: .6rem 0 .3rem; font-variant-numeric: tabular-nums; }
.vpn-tier__per { color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }
.vpn-tier .btn { margin-top: auto; white-space: normal; text-align: center; line-height: 1.2; padding-block: .6rem; }
.vpn-tier--best { border-color: rgba(75, 227, 176, .55); background: radial-gradient(120% 70% at 100% 0%, rgba(75, 227, 176, .14), transparent 60%), var(--night-2); }

/* Contact */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.contact__ways { display: grid; gap: .8rem; }
.way { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border-radius: var(--r-md); background: var(--night-2); border: 1px solid var(--line); color: var(--text); text-decoration: none; transition: border-color .15s ease; }
.way:hover { color: var(--text); border-color: var(--line-2); }
.way .icon { width: 1.8rem; height: 1.8rem; color: var(--amber); }
.way > span { display: flex; flex-direction: column; gap: .15rem; }
.way > span > span { color: var(--muted); font-size: .93rem; overflow-wrap: anywhere; }
.way--wa { border-color: rgba(75, 227, 176, .45); }
.way--wa .icon { color: var(--mint); }

/* Prose (legal pages) */
.prose { font-size: 1.05rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .45rem; }
.prose p, .prose li { color: #DCD5F5; }
.entry { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }

/* 404 */
.notfound { text-align: center; padding-bottom: var(--sec); }
.notfound__code { font: 800 clamp(5rem, 14vw, 10rem)/1 var(--f-display); background: var(--signal); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0; }
.notfound .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 0; border-top: 1px solid var(--line); background: rgba(8, 4, 26, .45); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: 3.5rem 2.5rem; }
@media (max-width: 860px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__about { grid-column: 1 / -1; } }
.site-footer__about p { color: var(--muted); max-width: 30ch; margin-top: 1rem; }
.site-footer__h { font: 600 .95rem/1 var(--f-body); color: var(--text); letter-spacing: 0; margin-bottom: 1rem; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer__links a { color: var(--muted); text-decoration: none; display: inline-flex; gap: .45rem; align-items: center; overflow-wrap: anywhere; }
.site-footer__links a:hover { color: var(--text); }
.site-footer__base { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-block: 1.4rem 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.site-footer__base p { margin: 0; }
.footer__legal { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 0; padding: 0; }
.footer__legal a { color: var(--muted); text-decoration: none; }
.footer__legal a:hover { color: var(--text); }

.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 40; width: 3.6rem; height: 3.6rem; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #0B2A17; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7); }
.wa-float:hover { color: #0B2A17; transform: translateY(-2px); }
.wa-float .icon { width: 1.7rem; height: 1.7rem; }

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.clockface__arc { stroke-dashoffset: 0; }
}

/* ==========================================================
   v1.1 additions
   ========================================================== */

/* Header: two buttons */
.nav { gap: 1rem; }
.nav__list a { padding: .5rem .6rem; font-size: .95rem; white-space: nowrap; }
.site-header .wrap { max-width: 1340px; }
.site-header .brand { flex: none; }
.nav__ctas { display: flex; gap: .5rem; }
@media (max-width: 1240px) {
	.nav__ctas { flex-direction: column; }
	.nav__ctas .btn { --bh: 3rem; width: 100%; font-size: 1rem; }
}

/* Homepage text section (content from Pages → Home) */
.textsec__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.textsec__title { position: sticky; top: 110px; }
.textsec__body { max-width: 68ch; }
.textsec__body > :first-child { margin-top: 0; }
.textsec__body h3 { font-size: 1.3rem; margin: 2rem 0 .5rem; }
.textsec__body p { color: var(--muted); }
.textsec__body img { height: auto; border-radius: var(--r-md); }
@media (max-width: 860px) { .textsec__grid { grid-template-columns: 1fr; } .textsec__title { position: static; } }

/* Order page (Forminator) */
.ordersimple { display: grid; grid-template-columns: 1fr 360px; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 960px) { .ordersimple { grid-template-columns: 1fr; } }
.ordersimple__side { position: sticky; top: 96px; }
.summary__sub { font-size: 1.05rem; margin: 1.6rem 0 .8rem; }
.nextsteps { margin: 0; padding-left: 1.2rem; display: grid; gap: .5rem; color: var(--muted); font-size: .95rem; }
.form-shell { background: var(--night-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3.5vw, 2.4rem); min-width: 0; }
.form-shell__empty { text-align: center; padding: 2rem 1rem; }
.form-shell__empty p { color: var(--muted); max-width: 32rem; margin-inline: auto; }
.form-shell__empty code { background: rgba(255, 255, 255, .1); padding: .1em .4em; border-radius: 5px; }

/* Forminator — works best with the form's Design style set to "None" */
.form-shell .forminator-ui.forminator-custom-form { margin: 0 !important; font-family: var(--f-body) !important; }
.form-shell .forminator-row { margin-bottom: 1.1rem !important; }
.form-shell .forminator-label,
.form-shell .forminator-legend { display: block; color: var(--text) !important; font: 600 .95rem/1.3 var(--f-body) !important; margin-bottom: .45rem !important; }
.form-shell .forminator-required { color: var(--magenta) !important; }
.form-shell .forminator-description,
.form-shell .forminator-description p { color: var(--muted) !important; font-size: .85rem !important; }
.form-shell input[type="text"], .form-shell input[type="email"], .form-shell input[type="tel"], .form-shell input[type="number"],
.form-shell input[type="url"], .form-shell input[type="date"], .form-shell select, .form-shell textarea,
.form-shell .forminator-input, .form-shell .forminator-textarea {
	width: 100% !important; min-height: 3rem; padding: .8rem .95rem !important;
	font: 400 1rem/1.4 var(--f-body) !important; color: var(--text) !important;
	background: rgba(8, 4, 26, .55) !important; border: 1px solid var(--line-2) !important; border-radius: var(--r-sm) !important; box-shadow: none !important;
}
.form-shell select option { background: var(--night-2); color: var(--text); }
.form-shell input:focus, .form-shell select:focus, .form-shell textarea:focus { outline: none !important; border-color: var(--amber) !important; box-shadow: 0 0 0 3px rgba(255, 179, 71, .22) !important; }
.form-shell ::placeholder { color: rgba(176, 166, 216, .55) !important; }
.form-shell .select2-container .select2-selection { background: rgba(8, 4, 26, .55) !important; border: 1px solid var(--line-2) !important; border-radius: var(--r-sm) !important; min-height: 3rem; color: var(--text) !important; }
.form-shell .select2-selection__rendered { color: var(--text) !important; line-height: 3rem !important; padding-left: .95rem !important; }
.forminator-select-dropdown-container--open .select2-dropdown { background: var(--night-2) !important; border-color: var(--line-2) !important; color: var(--text) !important; }
.forminator-select-dropdown-container--open .select2-results__option--highlighted { background: rgba(255, 179, 71, .18) !important; color: var(--text) !important; }
.form-shell .forminator-radio, .form-shell .forminator-checkbox { display: flex !important; align-items: center; gap: .6rem; color: var(--text) !important; margin: 0 1rem .6rem 0 !important; cursor: pointer; }
.form-shell input[type="radio"], .form-shell input[type="checkbox"] { accent-color: var(--magenta); width: 1.15rem; height: 1.15rem; }
.form-shell .forminator-button-submit, .form-shell button[type="submit"], .form-shell input[type="submit"] {
	display: inline-flex !important; align-items: center; justify-content: center; width: 100%;
	min-height: 3.5rem; padding: 0 1.6rem !important; border: 0 !important; border-radius: 999px !important; cursor: pointer;
	font: 600 1.05rem/1 var(--f-body) !important; color: #1A0B26 !important; background: var(--signal) !important;
	box-shadow: 0 10px 30px -10px rgba(255, 61, 139, .75) !important;
}
.form-shell .forminator-button-submit:hover { box-shadow: 0 14px 38px -10px rgba(255, 122, 89, .9) !important; }
.form-shell .forminator-error-message { display: block; margin-top: .35rem; color: #FF8FB8 !important; background: none !important; font-size: .85rem !important; padding: 0 !important; }
.form-shell .forminator-has_error input, .form-shell .forminator-has_error textarea { border-color: var(--magenta) !important; }
.form-shell .forminator-response-message { border-radius: var(--r-md) !important; padding: 1rem 1.2rem !important; margin-bottom: 1.2rem !important; font-weight: 500; }
.form-shell .forminator-response-message.forminator-success { background: rgba(75, 227, 176, .12) !important; border: 1px solid rgba(75, 227, 176, .45) !important; color: var(--text) !important; }
.form-shell .forminator-response-message.forminator-error { background: rgba(255, 61, 139, .12) !important; border: 1px solid rgba(255, 61, 139, .45) !important; color: var(--text) !important; }
.form-shell .forminator-response-message p { color: var(--text) !important; margin: 0; }
.form-shell .forminator-field-html, .form-shell .forminator-field-section { color: var(--muted); }
.form-shell .forminator-title { font-family: var(--f-display) !important; color: var(--text) !important; font-size: 1.3rem !important; }
.form-shell .forminator-border { border-color: var(--line) !important; }

/* Forminator: use real radio buttons and checkboxes, whatever design style is picked */
.form-shell .forminator-radio input, .form-shell .forminator-checkbox input {
	position: static !important; opacity: 1 !important; width: 1.15rem !important; height: 1.15rem !important;
	margin: 0 !important; clip: auto !important; flex: none; accent-color: var(--magenta);
}
.form-shell .forminator-radio-bullet, .form-shell .forminator-checkbox-box { display: none !important; }
.form-shell .forminator-radio-label, .form-shell .forminator-checkbox-label { color: var(--text) !important; font-size: 1rem !important; }
body .select2-container--open .select2-dropdown,
body .forminator-select-dropdown { background: var(--night-2) !important; border: 1px solid var(--line-2) !important; color: var(--text) !important; }
body .select2-results__option { color: var(--text) !important; }
body .select2-results__option--highlighted, body .select2-results__option[aria-selected="true"] { background: rgba(255, 179, 71, .18) !important; }
body .select2-search__field { background: rgba(8, 4, 26, .55) !important; color: var(--text) !important; border: 1px solid var(--line-2) !important; }
.split--top { align-items: start; }
.form-shell .forminator-response-message:not(.forminator-success):not(.forminator-error),
.form-shell .forminator-response-message[aria-hidden="true"] { display: none !important; }
.form-shell .forminator-row { display: flex !important; flex-wrap: wrap; gap: 0 1rem; margin-bottom: 1.2rem !important; }
.form-shell .forminator-col { flex: 1 1 220px; min-width: 0; margin-bottom: .2rem; }
.form-shell .forminator-row-last { margin-top: 1.6rem !important; margin-bottom: 0 !important; }
.form-shell .forminator-field > .forminator-radio { margin-bottom: .5rem !important; }

/* Motion app page */
.apphero__site { margin: 1.2rem 0 0; }
.codecard { text-align: center; padding: clamp(1.8rem, 4vw, 2.6rem) 1.6rem; border-radius: var(--r-lg); background: radial-gradient(90% 80% at 50% 0%, rgba(255, 179, 71, .14), transparent 70%), var(--night-2); border: 1px dashed rgba(255, 179, 71, .55); }
.codecard__label { margin: 0 0 .5rem; color: var(--muted); }
.codecard__code { margin: 0 0 1.2rem; font: 800 clamp(2.8rem, 4vw + 1rem, 4.2rem)/1 var(--f-display); letter-spacing: .08em; color: var(--amber); font-variant-numeric: tabular-nums; }
.codecard__icon { width: 3rem; height: 3rem; color: var(--amber); margin-bottom: .8rem; }
.codecard__help { margin: 1.2rem auto 0; max-width: 26rem; color: var(--muted); font-size: .95rem; }
[data-copy].is-copied { border-color: var(--mint); color: var(--mint); }
.appsteps { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (max-width: 860px) { .appsteps { grid-template-columns: 1fr; } }
.appsteps__col { background: var(--night-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3.5vw, 2.2rem); }
.appsteps__title { display: flex; align-items: center; gap: .6rem; font-size: 1.35rem; margin-bottom: 1.4rem; }
.appsteps__title .icon { width: 1.6rem; height: 1.6rem; color: var(--amber); }

/* "Edit" buttons on sections (visible to logged-in editors only) */
.edit-pill { position: absolute; top: 12px; right: 12px; z-index: 30; padding: .35rem .7rem; border-radius: 999px; font: 600 .78rem/1 var(--f-body); color: #1A0B26; background: var(--amber); text-decoration: none; opacity: 0; transition: opacity .15s ease; box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .6); }
.edit-pill:hover, .edit-pill:focus { color: #1A0B26; opacity: 1; }
.site-main > section, .site-main > header { position: relative; }
.site-main > section:hover > .edit-pill, .site-main > header:hover > .edit-pill, .edit-pill:focus-visible { opacity: 1; }
@media (hover: none) { .edit-pill { opacity: .9; } }
