/* WelcomeTV standalone homepage
 * Phase 1 prototype
 * All styles are intentionally independent from WordPress, Elementor and TheGem.
 */

:root {
	--bg-dark: #111625;
	--bg-dark-2: #171d2f;
	--bg-dark-3: #20283d;
	--bg-light: #ffffff;
	--bg-soft: #f3f5f8;
	--text-dark: #161b2b;
	--text-mid: #5e6674;
	--text-light: #d9deea;
	--white: #ffffff;
	--red: #ff0022;
	--red-dark: #d9001b;
	--line: #dce1e8;
	--line-dark: rgba(255,255,255,.10);
	--shadow: 0 28px 70px rgba(18, 24, 39, .14);
	--shadow-soft: 0 14px 40px rgba(18, 24, 39, .08);
	--radius: 28px;
	--radius-small: 18px;
	--shell: 1200px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text-dark);
	background: var(--bg-light);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

button,
input,
textarea,
select {
	font: inherit;
}

.shell {
	width: min(var(--shell), calc(100% - 48px));
	margin: 0 auto;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 999;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--white);
	color: var(--text-dark);
	transform: translateY(-140%);
	transition: transform .2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	background: rgba(17,22,37,.36);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
	background: rgba(17,22,37,.92);
	border-bottom-color: rgba(255,255,255,.08);
	box-shadow: 0 10px 35px rgba(0,0,0,.16);
}

.header-inner {
	min-height: 76px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 28px;
}

.brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	text-decoration: none;
}

.brand-logo {
	width: 220px;
	height: auto;
}

.brand-fallback {
	display: none;
	color: var(--white);
	font-size: 23px;
	font-weight: 700;
	letter-spacing: -.8px;
}

.brand-fallback span,
.footer-wordmark span,
.tv-logo-mark span,
.dashboard-side strong span {
	color: var(--red);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.main-nav a,
.header-login {
	color: rgba(255,255,255,.76);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color .2s ease;
}

.main-nav a:hover,
.header-login:hover {
	color: var(--white);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--white);
	transition: transform .2s ease, opacity .2s ease;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 25px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding-inline: 21px;
	font-size: 14px;
}

.button-large {
	min-height: 54px;
	padding-inline: 30px;
}

.button-primary {
	background: var(--red);
	color: var(--white);
	box-shadow: 0 12px 28px rgba(255,0,34,.22);
}

.button-primary:hover {
	background: var(--red-dark);
	box-shadow: 0 16px 36px rgba(255,0,34,.28);
}

.button-ghost {
	border-color: rgba(255,255,255,.30);
	color: var(--white);
	background: rgba(255,255,255,.04);
}

.button-ghost:hover {
	border-color: rgba(255,255,255,.60);
	background: rgba(255,255,255,.08);
}

.button-dark {
	background: var(--text-dark);
	color: var(--white);
}

.section {
	padding: 108px 0;
}

.section-dark {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,0,34,.08), transparent 28%),
		linear-gradient(135deg, #111625 0%, #171d2f 62%, #20283d 100%);
	color: var(--white);
}

.section-light {
	background: var(--white);
}

.section-soft {
	background: var(--bg-soft);
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--red);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: Montserrat, Inter, ui-sans-serif, sans-serif;
}

h1 {
	margin-bottom: 25px;
	font-size: clamp(42px, 5.2vw, 70px);
	line-height: 1.02;
	letter-spacing: -2.7px;
}

h1 span {
	color: var(--red);
}

h2 {
	margin-bottom: 20px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -1.7px;
}

h3 {
	margin-bottom: 10px;
	font-size: 23px;
	line-height: 1.2;
	letter-spacing: -.5px;
}

p {
	color: var(--text-mid);
	font-size: 17px;
	line-height: 1.72;
}

.section-dark p {
	color: var(--text-light);
}

.section-heading {
	max-width: 820px;
	margin-bottom: 58px;
}

.section-heading.centered {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 18px;
}

/* Hero */
.hero {
	min-height: 820px;
	padding: 145px 0 58px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-grid {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 70px;
}

.hero-copy {
	padding: 20px 0;
}

.hero-lead {
	max-width: 690px;
	margin-bottom: 24px;
	font-size: 20px;
	line-height: 1.64;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 38px;
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 12px;
	max-width: 690px;
}

.hero-proof > div {
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 14px;
	background: rgba(255,255,255,.04);
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	margin-bottom: 4px;
	color: var(--white);
	font-size: 14px;
}

.hero-proof span {
	color: rgba(255,255,255,.58);
	font-size: 12px;
}

.hero-product {
	position: relative;
	min-height: 540px;
	display: grid;
	place-items: center;
}

.hero-glow {
	position: absolute;
	inset: 7% -8% 1%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,0,34,.17), rgba(94,111,255,.12) 35%, transparent 68%);
	filter: blur(8px);
}

.tv-card {
	position: relative;
	z-index: 2;
	width: min(580px,100%);
}

.tv-topbar {
	min-height: 44px;
	padding: 0 17px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(255,255,255,.12);
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	background: rgba(255,255,255,.065);
	color: rgba(255,255,255,.72);
	font-size: 12px;
}

.tv-topbar-right {
	margin-left: auto;
	color: rgba(255,255,255,.46);
}

.live-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #40d783;
	box-shadow: 0 0 0 4px rgba(64,215,131,.11);
}

.tv-frame {
	position: relative;
	padding: 10px;
	border-radius: 0 0 24px 24px;
	background: #070a10;
	box-shadow: 0 30px 70px rgba(0,0,0,.42);
}

.tv-screen {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: 12px;
	background: #20283d;
}

.tv-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 9%;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity .7s ease, transform 1.1s ease;
	pointer-events: none;
}

.tv-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.slide-bg {
	position: absolute;
	inset: 0;
}

.slide-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7,10,18,.80), rgba(7,10,18,.24));
}

.slide-bg-welcome {
	background:
		linear-gradient(120deg, rgba(17,22,37,.28), rgba(17,22,37,.10)),
		url("https://welcometv.app/wp-content/uploads/2026/07/WTVinroom.webp") center/cover no-repeat;
}

.slide-bg-spa {
	background:
		radial-gradient(circle at 76% 32%, rgba(250,199,162,.44), transparent 26%),
		linear-gradient(135deg, #38241e, #94715d);
}

.slide-bg-food {
	background:
		radial-gradient(circle at 78% 58%, rgba(244,184,111,.34), transparent 28%),
		linear-gradient(135deg, #241b18, #7b4737);
}

.slide-bg-concierge {
	background:
		radial-gradient(circle at 70% 50%, rgba(255,0,34,.15), transparent 24%),
		linear-gradient(135deg, #151b2d, #293452);
}

.slide-content {
	position: relative;
	z-index: 2;
	max-width: 72%;
}

.slide-content-bottom {
	align-self: flex-end;
}

.slide-content h2 {
	margin-bottom: 8px;
	font-size: clamp(28px, 3.7vw, 50px);
	line-height: .98;
	letter-spacing: -1.5px;
}

.slide-content p {
	margin-bottom: 0;
	color: rgba(255,255,255,.78);
	font-size: 14px;
	line-height: 1.5;
}

.slide-kicker {
	display: inline-block;
	margin-bottom: 9px;
	color: #ff5870;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.screen-pill {
	display: inline-flex;
	margin-top: 16px;
	padding: 8px 13px;
	border-radius: 999px;
	background: var(--red);
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
}

.concierge-slide-content {
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.fake-qr {
	width: 92px;
	aspect-ratio: 1;
	border: 9px solid #fff;
	border-radius: 8px;
	background:
		linear-gradient(90deg, #111 16%, transparent 16% 33%, #111 33% 49%, transparent 49% 66%, #111 66% 83%, transparent 83%),
		linear-gradient(#111 16%, transparent 16% 33%, #111 33% 49%, transparent 49% 66%, #111 66% 83%, transparent 83%),
		#fff;
	background-size: 21px 21px;
	box-shadow: 0 10px 30px rgba(0,0,0,.18);
	flex: 0 0 auto;
}

.tv-logo-mark {
	position: absolute;
	right: 18px;
	bottom: 14px;
	color: rgba(255,255,255,.55);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: -.2px;
}

.tv-stand {
	position: relative;
	width: 36%;
	height: 70px;
	margin: 0 auto;
}

.tv-stand::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 28%;
	height: 46px;
	background: linear-gradient(#11161f, #05070b);
	transform: translateX(-50%);
}

.tv-stand::after {
	content: "";
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: 2px;
	height: 13px;
	border-radius: 50%;
	background: #090c12;
	box-shadow: 0 12px 20px rgba(0,0,0,.30);
}

.floating-stat {
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 15px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 14px;
	background: rgba(17,22,37,.88);
	box-shadow: 0 14px 35px rgba(0,0,0,.22);
	backdrop-filter: blur(10px);
}

.floating-stat-one {
	left: -2%;
	top: 15%;
}

.floating-stat-two {
	right: -2%;
	bottom: 16%;
}

.floating-icon {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: rgba(255,0,34,.14);
	color: var(--red);
	font-weight: 900;
}

.floating-stat strong,
.floating-stat span {
	display: block;
}

.floating-stat strong {
	color: var(--white);
	font-size: 12px;
}

.floating-stat div span {
	margin-top: 2px;
	color: rgba(255,255,255,.48);
	font-size: 10px;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(4px);
	opacity: .42;
}

.hero-orb-one {
	width: 420px;
	height: 420px;
	right: -180px;
	top: 60px;
	background: radial-gradient(circle, rgba(255,0,34,.35), transparent 68%);
}

.hero-orb-two {
	width: 500px;
	height: 500px;
	left: -260px;
	bottom: -260px;
	background: radial-gradient(circle, rgba(72,91,185,.22), transparent 68%);
}

.hero-grid-lines {
	position: absolute;
	inset: 0;
	opacity: .16;
	background-image:
		linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 70px 70px;
	mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

.hero-bottom-note {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
	color: rgba(255,255,255,.42);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .2px;
}

/* Feature cards */
.feature-trio {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 22px;
}

.feature-card,
.start-card,
.service-card,
.platform-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--white);
	border-radius: var(--radius-small);
}

.feature-card {
	padding: 32px;
	box-shadow: var(--shadow-soft);
}

.feature-card::after {
	content: "";
	position: absolute;
	inset: auto -35% -55% 55%;
	height: 190px;
	background: radial-gradient(circle, rgba(255,0,34,.08), transparent 70%);
}

.icon-box {
	display: grid;
	place-items: center;
	width: 49px;
	height: 49px;
	margin-bottom: 27px;
	border-radius: 13px;
	background: rgba(255,0,34,.08);
	color: var(--red);
	font-size: 24px;
	font-weight: 800;
}

.step-label {
	position: absolute;
	top: 26px;
	right: 27px;
	color: #b7bdc7;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
}

.feature-card p {
	margin-bottom: 0;
	font-size: 15px;
}

/* Product demo */
.product-demo-section {
	overflow: visible;
}

.product-demo-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 78px;
}

.demo-visual {
	position: relative;
}

.sticky-wrap {
	position: sticky;
	top: 120px;
	min-height: 520px;
	display: grid;
	align-items: center;
}

.demo-browser {
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 24px;
	background: rgba(255,255,255,.04);
	box-shadow: 0 30px 80px rgba(0,0,0,.34);
}

.demo-browser-bar {
	min-height: 44px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	gap: 7px;
	border-bottom: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.44);
	font-size: 11px;
}

.demo-browser-bar > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
}

.demo-browser-bar div {
	margin-left: 10px;
}

.demo-tv-shell {
	padding: 28px;
}

.demo-screen {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	border: 10px solid #080a0e;
	border-radius: 14px;
	background: #20283d;
}

.demo-state {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(8px) scale(.99);
	transition: opacity .45s ease, transform .55s ease;
}

.demo-state.is-active {
	opacity: 1;
	transform: none;
}

.image-panel {
	position: absolute;
	inset: 0;
}

.image-welcome {
	background:
		linear-gradient(90deg, rgba(13,18,31,.12), rgba(13,18,31,.60)),
		url("https://welcometv.app/wp-content/uploads/2026/07/front-768x512-1.png") center/cover no-repeat;
}

.demo-overlay {
	position: absolute;
	inset: auto 5% 7%;
	padding: 18px 20px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: rgba(10,14,24,.72);
	backdrop-filter: blur(10px);
}

.demo-overlay span,
.promo-layout span,
.concierge-demo span {
	display: block;
	margin-bottom: 8px;
	color: #ff5d75;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.3px;
}

.demo-overlay h3,
.promo-layout h3,
.concierge-demo h3 {
	margin-bottom: 6px;
	color: var(--white);
	font-size: clamp(20px, 2vw, 29px);
}

.promo-layout,
.concierge-demo {
	position: absolute;
	inset: 0;
	padding: 8%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background:
		radial-gradient(circle at 74% 45%, rgba(255,0,34,.18), transparent 27%),
		linear-gradient(135deg, #171d2f, #45313a);
}

.promo-main {
	max-width: 68%;
}

.promo-main p,
.concierge-demo p {
	margin: 0;
	color: rgba(255,255,255,.70);
	font-size: 12px;
}

.promo-price {
	padding: 13px 16px;
	border-radius: 12px;
	background: var(--red);
	color: var(--white);
	font-size: 15px;
	font-weight: 800;
}

.concierge-demo {
	background: linear-gradient(135deg, #151b2d, #25314b);
}

.fake-qr-large {
	width: min(28%,120px);
	border-width: 10px;
}

.dashboard-demo {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 30% 70%;
	background: #f5f6f8;
	color: var(--text-dark);
}

.dashboard-side {
	padding: 9% 8%;
	background: #171d2f;
}

.dashboard-side strong {
	display: block;
	margin-bottom: 25px;
	color: var(--white);
	font-size: 16px;
}

.dashboard-side i {
	display: block;
	width: 78%;
	height: 8px;
	margin: 13px 0;
	border-radius: 99px;
	background: rgba(255,255,255,.12);
}

.dashboard-main {
	padding: 8%;
}

.dashboard-title {
	margin-bottom: 18px;
	font-weight: 800;
	font-size: 18px;
}

.dashboard-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
	margin: 8px 0;
	border: 1px solid #e1e5eb;
	border-radius: 10px;
	background: var(--white);
	font-size: 11px;
}

.status-online {
	padding: 5px 8px;
	border-radius: 999px;
	background: #def7e9;
	color: #198754;
	font-size: 9px;
	font-weight: 800;
}

.demo-copy {
	padding-top: 16px;
}

.demo-copy > h2 {
	margin-bottom: 15px;
}

.section-intro {
	margin-bottom: 42px;
	font-size: 18px;
}

.demo-step {
	position: relative;
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 17px;
	padding: 25px 20px 25px 0;
	border-top: 1px solid rgba(255,255,255,.10);
	opacity: .50;
	transition: opacity .35s ease, transform .35s ease;
}

.demo-step.is-active {
	opacity: 1;
	transform: translateX(7px);
}

.demo-step > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255,255,255,.06);
	color: rgba(255,255,255,.55);
	font-size: 11px;
	font-weight: 800;
}

.demo-step.is-active > span {
	background: rgba(255,0,34,.14);
	color: var(--red);
}

.demo-step h3 {
	color: var(--white);
}

.demo-step p {
	margin-bottom: 0;
	font-size: 15px;
}

/* Concierge */
.concierge-grid,
.split-feature,
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 72px;
}

.concierge-copy > p,
.split-copy > p {
	font-size: 18px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 28px 0;
}

.tag-list span,
.platform-tags span {
	padding: 8px 12px;
	border-radius: 999px;
	background: #f0f2f5;
	color: #4d5561;
	font-size: 12px;
	font-weight: 700;
}

.mini-flow {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 10px;
	margin-top: 34px;
}

.mini-flow div {
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--white);
}

.mini-flow strong,
.mini-flow span {
	display: block;
}

.mini-flow strong {
	color: var(--red);
	font-size: 13px;
}

.mini-flow span {
	margin-top: 4px;
	color: var(--text-mid);
	font-size: 11px;
}

.mini-flow b {
	color: #a8afb9;
}

.image-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	background: #e7eaf0;
	box-shadow: var(--shadow);
}

.image-card img {
	width: 100%;
	min-height: 430px;
	object-fit: cover;
}

.concierge-image-card img {
	min-height: 520px;
}

.image-card-label {
	position: absolute;
	left: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 13px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	background: rgba(17,22,37,.86);
	color: var(--white);
	font-size: 11px;
	font-weight: 750;
	backdrop-filter: blur(10px);
}

/* Services */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 14px;
}

.service-card {
	min-height: 150px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: #cfd5dd;
	box-shadow: var(--shadow-soft);
}

.service-card > span {
	color: var(--red);
	font-size: 27px;
	font-weight: 800;
}

.service-card h3 {
	margin: 18px 0 0;
	font-size: 17px;
}

/* Personalized */
.split-copy {
	padding-left: 18px;
}

.check-list {
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.check-list li {
	position: relative;
	margin: 11px 0;
	padding-left: 28px;
	color: var(--text-dark);
	font-size: 15px;
	line-height: 1.55;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--red);
	font-weight: 900;
}

.section-dark .check-list li {
	color: var(--white);
}

.check-list-light li {
	color: var(--white);
}

/* Platforms */
.platform-grid {
	display: grid;
	grid-template-columns: 1.2fr .9fr .9fr;
	gap: 20px;
}

.platform-card {
	padding: 31px;
}

.platform-active {
	border-color: rgba(255,0,34,.30);
	box-shadow: 0 20px 50px rgba(255,0,34,.08);
}

.platform-coming {
	background: #f7f8fa;
}

.platform-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 28px;
}

.platform-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: var(--text-dark);
	color: var(--white);
	font-size: 15px;
	font-weight: 900;
}

.platform-active .platform-icon {
	background: var(--red);
}

.availability {
	padding: 6px 9px;
	border-radius: 999px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .7px;
	text-transform: uppercase;
}

.available {
	background: #dcf7e9;
	color: #198754;
}

.coming {
	background: #e8ebef;
	color: #717986;
}

.platform-card p {
	min-height: 82px;
	font-size: 14px;
}

.platform-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 24px 0 28px;
}

/* Reliability */
.reliability-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 15px;
}

.dark-card {
	padding: 27px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: var(--radius-small);
	background: rgba(255,255,255,.045);
}

.dark-card > span {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 24px;
	border-radius: 13px;
	background: rgba(255,0,34,.12);
	color: var(--red);
	font-weight: 900;
}

.dark-card h3 {
	color: var(--white);
	font-size: 18px;
}

.dark-card p {
	margin-bottom: 0;
	color: rgba(255,255,255,.58);
	font-size: 14px;
	line-height: 1.62;
}

/* Getting started */
.getting-started-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

.start-card {
	padding: 32px;
	background: var(--bg-soft);
}

.big-step {
	display: block;
	margin-bottom: 25px;
	color: var(--red);
	font-family: Montserrat, Inter, sans-serif;
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
}

.start-card p {
	margin-bottom: 0;
	font-size: 15px;
}

.center-cta {
	margin-top: 38px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
}

.center-cta > span {
	color: #8a919d;
	font-size: 12px;
}

/* Free CTA */
.free-cta-section {
	padding: 90px 0;
}

.free-cta-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: center;
	gap: 70px;
}

.free-copy {
	max-width: 680px;
}

.free-copy p {
	font-size: 18px;
}

.free-price-card {
	padding: 44px;
	border-radius: 30px;
	background: var(--red);
	color: var(--white);
	box-shadow: 0 28px 70px rgba(255,0,34,.20);
}

.free-price-card > span {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.free-price-card > strong {
	display: block;
	font-family: Montserrat, Inter, sans-serif;
	font-size: clamp(56px,7vw,86px);
	line-height: .95;
	letter-spacing: -3px;
}

.free-price-card p {
	margin: 13px 0 0;
	color: rgba(255,255,255,.86);
	font-size: 14px;
}

.free-price-divider {
	height: 1px;
	margin: 28px 0;
	background: rgba(255,255,255,.24);
}

.free-price-card small {
	color: rgba(255,255,255,.76);
	font-size: 13px;
	line-height: 1.6;
}

/* Pricing */
.pricing-wrap {
	max-width: 990px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	border: 1px solid var(--line);
	border-radius: 30px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.pricing-card {
	padding: 42px;
}

.pricing-free {
	background: var(--bg-soft);
}

.pricing-paid {
	background: var(--white);
}

.pricing-label,
.from-label {
	color: var(--red);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.pricing-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 28px;
}

.save-pill {
	padding: 7px 10px;
	border-radius: 999px;
	background: #dcf7e9;
	color: #198754;
	font-size: 10px;
	font-weight: 900;
}

.from-label {
	margin-top: 6px;
	margin-bottom: 4px;
}

.price-line {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 9px;
	margin: 12px 0;
}

.price-line strong {
	font-family: Montserrat, Inter, sans-serif;
	font-size: clamp(40px,5vw,58px);
	line-height: .95;
	letter-spacing: -2px;
}

.pricing-paid .price-line strong {
	color: var(--red);
}

.price-line span {
	padding-bottom: 5px;
	color: var(--text-mid);
	font-size: 12px;
}

.pricing-card > p {
	font-size: 14px;
}

.billed-note {
	margin-bottom: 24px;
}

.standard-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 16px;
	margin: 22px 0;
	border-radius: 12px;
	background: var(--bg-soft);
}

.standard-price span {
	color: var(--text-mid);
	font-size: 12px;
}

.standard-price strong {
	font-size: 15px;
}

.pricing-card ul {
	padding: 0;
	margin: 28px 0;
	list-style: none;
}

.pricing-card li {
	position: relative;
	margin: 10px 0;
	padding-left: 25px;
	color: var(--text-mid);
	font-size: 14px;
	line-height: 1.55;
}

.pricing-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--red);
	font-weight: 900;
}

.pricing-footnote {
	margin: 26px auto 0;
	max-width: 800px;
	text-align: center;
	color: #8b929d;
	font-size: 12px;
}

/* FAQ */
.faq-grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 75px;
	align-items: start;
}

.faq-intro {
	position: sticky;
	top: 120px;
}

.faq-intro p {
	margin-bottom: 28px;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-list details {
	border: 1px solid var(--line);
	border-radius: 15px;
	background: var(--white);
	overflow: hidden;
}

.faq-list summary {
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 750;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary span {
	color: var(--red);
	font-size: 20px;
	font-weight: 500;
	transition: transform .25s ease;
}

.faq-list details[open] summary span {
	transform: rotate(45deg);
}

.faq-list details p {
	padding: 0 22px 21px;
	margin: 0;
	font-size: 14px;
}

/* Contact */
.contact-section {
	background: var(--bg-dark);
	color: var(--white);
}

.contact-grid {
	align-items: start;
}

.contact-copy p {
	color: var(--text-light);
	font-size: 18px;
}

.company-card {
	margin-top: 32px;
	padding: 22px;
	border: 1px solid var(--line-dark);
	border-radius: 16px;
	background: rgba(255,255,255,.04);
}

.company-card strong,
.company-card span {
	display: block;
}

.company-card strong {
	margin-bottom: 8px;
}

.company-card span {
	color: rgba(255,255,255,.55);
	font-size: 13px;
	line-height: 1.7;
}

.contact-form {
	padding: 34px;
	border-radius: 26px;
	background: var(--white);
	box-shadow: 0 30px 80px rgba(0,0,0,.22);
	color: var(--text-dark);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.contact-form label {
	display: block;
	margin-bottom: 15px;
}

.contact-form label > span {
	display: block;
	margin-bottom: 7px;
	color: #555e6b;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	border: 1px solid #cfd5de;
	border-radius: 10px;
	background: #f6f7f9;
	color: var(--text-dark);
	outline: 0;
	transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
	height: 48px;
	padding: 0 13px;
}

.contact-form textarea {
	padding: 13px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	background: var(--white);
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(255,0,34,.09);
}

.form-submit {
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.form-submit > span {
	color: #9198a3;
	font-size: 10px;
	line-height: 1.4;
}

.form-message {
	display: none;
	margin-top: 15px;
	padding: 11px 13px;
	border-radius: 10px;
	background: #fff1f3;
	color: #b3132b;
	font-size: 12px;
}

.form-message.is-visible {
	display: block;
}

/* Final CTA */
.final-cta {
	padding: 54px 0;
	background: #0b0f1a;
	color: var(--white);
}

.final-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.final-cta h2 {
	margin-bottom: 0;
	font-size: clamp(30px,3.4vw,44px);
}

/* Footer */
.site-footer {
	padding: 64px 0 26px;
	background: #080b12;
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .8fr .8fr;
	gap: 40px;
}

.footer-wordmark {
	margin-bottom: 12px;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -1px;
}

.footer-brand p {
	max-width: 390px;
	color: rgba(255,255,255,.47);
	font-size: 13px;
}

.footer-links,
.footer-actions {
	display: grid;
	align-content: start;
	gap: 11px;
}

.footer-links a,
.footer-actions a {
	color: rgba(255,255,255,.58);
	font-size: 13px;
	text-decoration: none;
}

.footer-links a:hover,
.footer-actions a:hover {
	color: var(--white);
}

.footer-bottom {
	padding-top: 28px;
	margin-top: 38px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.34);
	font-size: 10px;
}

/* Reveal motion */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .65s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 {
	transition-delay: .08s;
}

.reveal-delay-2 {
	transition-delay: .16s;
}

.toast {
	position: fixed;
	left: 50%;
	bottom: 25px;
	z-index: 200;
	max-width: min(460px, calc(100% - 30px));
	padding: 12px 16px;
	border-radius: 11px;
	background: #090c13;
	color: var(--white);
	box-shadow: 0 16px 40px rgba(0,0,0,.28);
	font-size: 12px;
	text-align: center;
	opacity: 0;
	transform: translate(-50%, 15px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
	opacity: 1;
	transform: translate(-50%,0);
}

/* Responsive */
@media (max-width: 1050px) {
	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.main-nav {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero-grid,
	.product-demo-grid,
	.concierge-grid,
	.split-feature,
	.free-cta-grid,
	.contact-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		gap: 45px;
	}

	.hero-copy {
		max-width: 820px;
	}

	.hero-product {
		width: min(700px,100%);
		margin: 0 auto;
	}

	.product-demo-grid {
		gap: 50px;
	}

	.sticky-wrap,
	.faq-intro {
		position: static;
	}

	.demo-copy {
		max-width: 760px;
	}

	.concierge-grid,
	.split-feature {
		gap: 45px;
	}

	.image-card {
		max-width: 760px;
		margin: 0 auto;
		width: 100%;
	}

	.service-grid,
	.reliability-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.platform-grid {
		grid-template-columns: 1fr 1fr;
	}

	.platform-active {
		grid-column: 1 / -1;
	}

	.faq-grid {
		gap: 35px;
	}

	.faq-intro {
		max-width: 720px;
	}
}

@media (max-width: 760px) {
	.shell {
		width: min(100% - 34px, var(--shell));
	}

	.section {
		padding: 76px 0;
	}

	h1 {
		font-size: clamp(39px,12vw,54px);
		letter-spacing: -1.8px;
	}

	h2 {
		font-size: clamp(31px,9vw,42px);
		letter-spacing: -1.1px;
	}

	.site-header {
		background: rgba(17,22,37,.88);
	}

	.header-inner {
		min-height: 68px;
	}

	.brand-logo {
		width: 175px;
	}

	.header-login {
		display: none;
	}

	.header-actions {
		gap: 8px;
	}

	.button-small {
		min-height: 39px;
		padding-inline: 15px;
		font-size: 12px;
	}

	.nav-toggle {
		display: block;
		order: 3;
	}

	.main-nav {
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		display: grid;
		gap: 0;
		padding: 15px 17px 22px;
		background: rgba(11,15,26,.98);
		border-bottom: 1px solid rgba(255,255,255,.08);
		transform: translateY(-130%);
		opacity: 0;
		pointer-events: none;
		transition: transform .25s ease, opacity .25s ease;
	}

	.main-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.main-nav a {
		padding: 13px 8px;
		border-bottom: 1px solid rgba(255,255,255,.06);
	}

	.hero {
		padding: 110px 0 45px;
	}

	.hero-grid {
		gap: 28px;
	}

	.hero-lead {
		font-size: 17px;
	}

	.hero-actions {
		margin: 26px 0 28px;
	}

	.hero-proof {
		grid-template-columns: 1fr;
	}

	.hero-product {
		min-height: 390px;
	}

	.tv-card {
		width: 100%;
	}

	.floating-stat {
		display: none;
	}

	.hero-bottom-note {
		margin-top: 20px;
	}

	.feature-trio,
	.getting-started-grid,
	.platform-grid,
	.service-grid,
	.reliability-grid {
		grid-template-columns: 1fr;
	}

	.platform-active {
		grid-column: auto;
	}

	.demo-tv-shell {
		padding: 15px;
	}

	.product-demo-grid {
		gap: 38px;
	}

	.demo-step {
		padding-right: 0;
	}

	.concierge-image-card img,
	.image-card img {
		min-height: 330px;
	}

	.mini-flow {
		grid-template-columns: 1fr;
	}

	.mini-flow b {
		transform: rotate(90deg);
		text-align: center;
	}

	.free-price-card {
		padding: 34px 28px;
	}

	.pricing-wrap {
		grid-template-columns: 1fr;
	}

	.pricing-card {
		padding: 31px 25px;
	}

	.pricing-topline {
		align-items: flex-start;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form {
		padding: 25px 20px;
	}

	.form-submit {
		align-items: flex-start;
		flex-direction: column;
	}

	.final-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}


/* ------------------------------------------------------------------
 * Phase 2 enhancements
 * ------------------------------------------------------------------ */

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 7px 11px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	background: rgba(255,255,255,.045);
	color: rgba(255,255,255,.70);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .2px;
}

.hero-badge span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 4px rgba(255,0,34,.12);
}

.hero-status-strip {
	position: relative;
	z-index: 3;
	margin-top: 26px;
	padding: 17px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 17px;
	background: rgba(255,255,255,.035);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.status-strip-copy {
	display: grid;
	gap: 4px;
}

.status-strip-copy strong {
	color: rgba(255,255,255,.80);
	font-size: 12px;
	font-weight: 650;
}

.status-kicker {
	color: var(--red);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 1.2px;
}

.status-metrics {
	display: flex;
	align-items: center;
	gap: 25px;
}

.status-metrics > div {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	column-gap: 7px;
	row-gap: 1px;
}

.status-metrics b {
	color: var(--white);
	font-size: 14px;
}

.status-metrics small {
	grid-column: 1 / -1;
	margin-left: 13px;
	color: rgba(255,255,255,.40);
	font-size: 9px;
}

.metric-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #6f7a8e;
}

.metric-dot.online {
	background: #40d783;
	box-shadow: 0 0 0 3px rgba(64,215,131,.10);
}

/* Control center */
.control-center-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: 70px;
}

.control-copy > p {
	font-size: 18px;
}

.control-points {
	display: grid;
	gap: 18px;
	margin-top: 32px;
}

.control-points > div {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 16px;
	align-items: start;
}

.control-points > div > span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: var(--text-dark);
	color: var(--white);
	font-size: 10px;
	font-weight: 900;
}

.control-points strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
}

.control-points p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
}

.dashboard-shell {
	position: relative;
}

.dashboard-shell::before {
	content: "";
	position: absolute;
	inset: -8% -6%;
	z-index: 0;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,0,34,.10), transparent 62%);
	filter: blur(8px);
}

.dashboard-window {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: 1px solid #d9dee6;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 34px 80px rgba(18,24,39,.16);
}

.dashboard-window-top {
	min-height: 54px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	gap: 18px;
	border-bottom: 1px solid #e6e9ee;
	background: #171d2f;
}

.dash-wordmark {
	color: #fff;
	font-size: 14px;
	font-weight: 850;
}

.dash-wordmark span {
	color: var(--red);
}

.dash-property {
	margin-left: auto;
	color: rgba(255,255,255,.48);
	font-size: 10px;
}

.dash-avatar {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	font-size: 9px;
	font-weight: 900;
}

.dashboard-layout {
	display: grid;
	grid-template-columns: 145px 1fr;
	min-height: 410px;
}

.dash-sidebar {
	padding: 24px 14px;
	display: grid;
	align-content: start;
	gap: 7px;
	background: #1d2436;
}

.dash-sidebar span {
	padding: 10px 11px;
	border-radius: 9px;
	color: rgba(255,255,255,.47);
	font-size: 10px;
	font-weight: 700;
}

.dash-sidebar .dash-active {
	background: rgba(255,255,255,.08);
	color: #fff;
}

.dash-content {
	padding: 25px;
	background: #f5f6f8;
}

.dash-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.dash-heading small,
.dash-heading strong {
	display: block;
}

.dash-heading small {
	margin-bottom: 4px;
	color: var(--red);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 1px;
}

.dash-heading strong {
	font-size: 16px;
}

.dash-heading button {
	padding: 8px 11px;
	border: 0;
	border-radius: 999px;
	background: var(--red);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
}

.dash-kpis {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 9px;
	margin-bottom: 18px;
}

.dash-kpis > div {
	padding: 13px;
	border: 1px solid #e1e5eb;
	border-radius: 11px;
	background: #fff;
}

.dash-kpis b,
.dash-kpis span {
	display: block;
}

.dash-kpis b {
	font-size: 21px;
}

.dash-kpis span {
	margin-top: 3px;
	color: #7b8492;
	font-size: 8px;
}

.dash-table {
	overflow: hidden;
	border: 1px solid #e1e5eb;
	border-radius: 12px;
	background: #fff;
}

.dash-table-head,
.dash-table-row {
	display: grid;
	grid-template-columns: 1fr 1fr .7fr;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
}

.dash-table-head {
	background: #f8f9fa;
	color: #9299a4;
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
}

.dash-table-row {
	border-top: 1px solid #edf0f3;
	font-size: 9px;
}

.dash-status {
	width: fit-content;
	padding: 5px 7px;
	border-radius: 999px;
	background: #dff7e9;
	color: #1c8b57;
	font-size: 8px;
	font-weight: 850;
}

/* Pricing toggle */
.billing-toggle {
	width: fit-content;
	margin: -24px auto 34px;
	padding: 4px;
	display: flex;
	gap: 3px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #f2f4f7;
}

.billing-option {
	min-width: 126px;
	height: 40px;
	padding: 0 15px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #606875;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.billing-option span {
	margin-left: 5px;
	color: #198754;
	font-size: 9px;
}

.billing-option.is-active {
	background: #fff;
	color: var(--text-dark);
	box-shadow: 0 5px 14px rgba(18,24,39,.08);
}

.billing-option.is-active[data-billing="annual"] {
	background: var(--text-dark);
	color: #fff;
}

.billing-option.is-active[data-billing="annual"] span {
	color: #72e5a7;
}

/* Proof strip */
.proof-band {
	padding: 40px 0;
	background: #0d111c;
}

.proof-band-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 18px;
	overflow: hidden;
	background: rgba(255,255,255,.08);
}

.proof-band-grid > div {
	padding: 22px 24px;
	background: #111625;
}

.proof-band-grid span,
.proof-band-grid strong {
	display: block;
}

.proof-band-grid span {
	margin-bottom: 6px;
	color: var(--red);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 1.2px;
}

.proof-band-grid strong {
	color: rgba(255,255,255,.78);
	font-size: 13px;
	line-height: 1.5;
}

/* Slightly livelier card interactions */
.feature-card,
.platform-card,
.start-card,
.dark-card {
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.feature-card:hover,
.platform-card:hover,
.start-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(18,24,39,.10);
}

.dark-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255,255,255,.16);
	background: rgba(255,255,255,.065);
}

@media (max-width: 1050px) {
	.control-center-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.dashboard-shell {
		max-width: 780px;
	}
}

@media (max-width: 760px) {
	.hero-status-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	.status-metrics {
		width: 100%;
		justify-content: space-between;
		gap: 12px;
	}

	.status-metrics small {
		margin-left: 0;
	}

	.dashboard-layout {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.dash-sidebar {
		display: flex;
		overflow-x: auto;
		padding: 10px;
	}

	.dash-sidebar span {
		white-space: nowrap;
	}

	.dash-content {
		padding: 16px;
	}

	.dash-kpis {
		grid-template-columns: 1fr;
	}

	.dash-table-head,
	.dash-table-row {
		grid-template-columns: 1fr .9fr .7fr;
	}

	.billing-toggle {
		width: 100%;
		margin-top: -20px;
	}

	.billing-option {
		min-width: 0;
		flex: 1;
	}

	.proof-band-grid {
		grid-template-columns: 1fr;
	}
}


.hero-product .tv-card {
	transform:
		perspective(1100px)
		rotateY(var(--hero-tilt-x, 0deg))
		rotateX(var(--hero-tilt-y, 0deg));
	transition: transform .18s ease-out;
	transform-style: preserve-3d;
}


/* ------------------------------------------------------------------
 * Phase 2.2 — Motion system
 * Signature scroll effects without animation frameworks.
 * ------------------------------------------------------------------ */

:root {
	--motion-ease: cubic-bezier(.22, .78, .22, 1);
}

/* Compact premium header transition */
.header-inner,
.brand-logo,
.header-actions .button {
	transition:
		min-height .28s var(--motion-ease),
		width .28s var(--motion-ease),
		padding .28s var(--motion-ease),
		transform .28s var(--motion-ease);
}

.site-header.is-scrolled .header-inner {
	min-height: 64px;
}

.site-header.is-scrolled .brand-logo {
	width: 190px;
}

.site-header.is-scrolled .header-actions .button {
	min-height: 38px;
	padding-inline: 18px;
}

/* Signature product journey */
.product-demo-section {
	--demo-progress: 0;
	--demo-depth: 0;
	--demo-glow-x: 50%;
	overflow: visible;
}

.product-demo-section::before {
	content: "";
	position: absolute;
	inset: 8% 0 auto;
	height: 58%;
	pointer-events: none;
	background:
		radial-gradient(
			circle at var(--demo-glow-x) 42%,
			rgba(255, 0, 34, calc(.055 + var(--demo-depth) * .035)),
			transparent 34%
		);
	opacity: .95;
}

.product-demo-grid {
	position: relative;
	z-index: 2;
	align-items: start;
}

.sticky-wrap {
	position: sticky;
	top: 105px;
	min-height: calc(100vh - 140px);
	display: grid;
	align-content: center;
}

.demo-browser {
	position: relative;
	transform:
		translate3d(0, calc(var(--demo-depth) * -8px), 0)
		scale(calc(1 + var(--demo-depth) * .018));
	transform-origin: center center;
	transition: box-shadow .16s linear;
	box-shadow:
		0 calc(30px + var(--demo-depth) * 14px)
		calc(80px + var(--demo-depth) * 24px)
		rgba(0,0,0,calc(.34 + var(--demo-depth) * .08));
	will-change: transform;
}

.demo-screen {
	background: #161d30;
}

.demo-state {
	opacity: 0;
	transform: translate3d(0, 16px, 0) scale(.985);
	filter: blur(5px);
	transition: none;
	will-change: opacity, transform, filter;
}

.demo-state.is-active {
	filter: none;
}

.demo-copy {
	padding-bottom: 10vh;
}

.demo-step {
	min-height: 34vh;
	display: grid;
	align-content: center;
	opacity: .34;
	transform: translateX(0);
	transition:
		opacity .28s ease,
		transform .35s var(--motion-ease),
		border-color .28s ease;
}

.demo-step.is-active {
	opacity: 1;
	transform: translateX(10px);
	border-top-color: rgba(255,255,255,.22);
}

.demo-step.is-active h3 {
	text-shadow: 0 0 28px rgba(255,255,255,.07);
}

/* Scroll progress rail */
.demo-progress {
	position: absolute;
	top: 50%;
	right: -54px;
	display: grid;
	grid-template-columns: 2px auto;
	gap: 12px;
	align-items: stretch;
	transform: translateY(-50%);
}

.demo-progress-track {
	position: relative;
	width: 2px;
	height: 176px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255,255,255,.10);
}

.demo-progress-fill {
	position: absolute;
	inset: 0 0 auto;
	height: calc(var(--demo-progress, 0) * 100%);
	border-radius: inherit;
	background: linear-gradient(to bottom, #ff5269, var(--red));
	box-shadow: 0 0 18px rgba(255,0,34,.40);
	will-change: height;
}

.demo-progress-dots {
	height: 176px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.demo-progress-dots span {
	color: rgba(255,255,255,.25);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .5px;
	transition:
		color .25s ease,
		transform .25s var(--motion-ease);
}

.demo-progress-dots span.is-active {
	color: #fff;
	transform: translateX(4px);
}

/* Concierge signature mini-flow */
.concierge-image-card {
	isolation: isolate;
}

.concierge-image-card > img {
	transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.035);
	transition: transform .12s linear;
	will-change: transform;
}

.concierge-image-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, transparent 42%, rgba(15,20,34,.20) 100%);
}

.concierge-motion-layer {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.concierge-motion-tv,
.concierge-motion-phone,
.concierge-request-card {
	position: absolute;
	border: 1px solid rgba(255,255,255,.15);
	background: rgba(15,20,34,.88);
	box-shadow: 0 18px 45px rgba(0,0,0,.24);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	color: #fff;
}

.concierge-motion-tv {
	left: 6%;
	bottom: 9%;
	width: 37%;
	padding: 13px 14px;
	border-radius: 13px;
	opacity: 0;
	transform: translate3d(-14px, 8px, 0);
}

.concierge-motion-tv span,
.concierge-motion-phone span,
.concierge-request-card span {
	display: block;
	margin-bottom: 5px;
	color: #ff5870;
	font-size: 7px;
	font-weight: 900;
	letter-spacing: .8px;
}

.concierge-motion-tv strong,
.concierge-motion-phone strong,
.concierge-request-card strong {
	display: block;
	font-size: 11px;
	line-height: 1.3;
}

.concierge-motion-tv small,
.concierge-motion-phone small,
.concierge-request-card small {
	display: block;
	margin-top: 3px;
	color: rgba(255,255,255,.56);
	font-size: 8px;
	line-height: 1.35;
}

.concierge-qr-pulse {
	position: absolute;
	right: 11px;
	bottom: 11px;
	width: 29px;
	height: 29px;
	border: 5px solid #fff;
	border-radius: 5px;
	background:
		linear-gradient(90deg, #111 25%, transparent 25% 50%, #111 50% 75%, transparent 75%),
		linear-gradient(#111 25%, transparent 25% 50%, #111 50% 75%, transparent 75%),
		#fff;
	background-size: 10px 10px;
}

.concierge-qr-pulse::after {
	content: "";
	position: absolute;
	inset: -9px;
	border: 1px solid rgba(255,0,34,.7);
	border-radius: 10px;
	opacity: 0;
}

.concierge-motion-path {
	position: absolute;
	left: 39%;
	bottom: 22%;
	width: 20%;
	height: 2px;
	transform-origin: left center;
}

.concierge-motion-path::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(255,0,34,.25), var(--red));
	transform: scaleX(0);
	transform-origin: left center;
	box-shadow: 0 0 10px rgba(255,0,34,.35);
}

.concierge-motion-path i {
	position: absolute;
	top: 50%;
	left: 0;
	width: 7px;
	height: 7px;
	margin-top: -3px;
	border-radius: 50%;
	background: var(--red);
	opacity: 0;
	box-shadow: 0 0 0 5px rgba(255,0,34,.12);
}

.concierge-motion-phone {
	right: 9%;
	bottom: 8%;
	width: 28%;
	min-height: 145px;
	padding: 23px 13px 13px;
	border-radius: 17px;
	opacity: 0;
	transform: translate3d(0, 24px, 0) scale(.96);
}

.phone-notch {
	position: absolute;
	top: 7px;
	left: 50%;
	width: 34px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255,255,255,.18);
	transform: translateX(-50%);
}

.concierge-motion-phone b {
	display: inline-flex;
	margin-top: 13px;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--red);
	font-size: 8px;
}

.concierge-request-card {
	right: 6%;
	top: 8%;
	width: 41%;
	padding: 12px 13px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-radius: 13px;
	opacity: 0;
	transform: translate3d(14px, -8px, 0);
}

.concierge-request-card > b {
	padding: 6px 9px;
	border-radius: 999px;
	background: #fff2db;
	color: #9d6510;
	font-size: 7px;
	transition:
		background .3s ease,
		color .3s ease,
		transform .3s var(--motion-ease);
}

.concierge-request-card > b.is-accepted {
	background: #dcf7e9;
	color: #198754;
	transform: scale(1.04);
}

.concierge-image-card.is-animated .concierge-motion-tv {
	animation: conciergeTvIn .6s var(--motion-ease) .10s forwards;
}

.concierge-image-card.is-animated .concierge-qr-pulse::after {
	animation: conciergeQrPulse 1.15s ease-out .60s 2;
}

.concierge-image-card.is-animated .concierge-motion-path::before {
	animation: conciergePathDraw .65s var(--motion-ease) 1.05s forwards;
}

.concierge-image-card.is-animated .concierge-motion-path i {
	animation: conciergeDotTravel .65s var(--motion-ease) 1.05s forwards;
}

.concierge-image-card.is-animated .concierge-motion-phone {
	animation: conciergePhoneIn .65s var(--motion-ease) 1.50s forwards;
}

.concierge-image-card.is-animated .concierge-request-card {
	animation: conciergeRequestIn .65s var(--motion-ease) 2.10s forwards;
}

@keyframes conciergeTvIn {
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes conciergeQrPulse {
	0% {
		opacity: .85;
		transform: scale(.75);
	}
	100% {
		opacity: 0;
		transform: scale(1.35);
	}
}

@keyframes conciergePathDraw {
	to {
		transform: scaleX(1);
	}
}

@keyframes conciergeDotTravel {
	0% {
		left: 0;
		opacity: 0;
	}
	15% {
		opacity: 1;
	}
	100% {
		left: calc(100% - 7px);
		opacity: 1;
	}
}

@keyframes conciergePhoneIn {
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes conciergeRequestIn {
	to {
		opacity: 1;
		transform: none;
	}
}

/* Generic subtle parallax */
[data-parallax].dashboard-shell .dashboard-window {
	transform: translate3d(0, var(--parallax-y, 0px), 0);
	transition: transform .12s linear;
	will-change: transform;
}

[data-parallax].image-card:not(.concierge-image-card) > img {
	transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.025);
	transition: transform .12s linear;
	will-change: transform;
}

/* Pricing number transition */
[data-active-price] {
	display: inline-block;
	min-width: 190px;
	font-variant-numeric: tabular-nums;
	transition:
		opacity .16s ease,
		transform .2s var(--motion-ease);
}

[data-active-price].is-price-changing {
	opacity: .55;
	transform: translateY(-3px);
}

/* Slightly soften the transition out of the dark product section */
.product-demo-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 70px;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent, rgba(255,255,255,.025));
}

@media (max-width: 1180px) {
	.demo-progress {
		right: -24px;
	}
}

@media (max-width: 1050px) {
	.product-demo-section {
		overflow: hidden;
	}

	.sticky-wrap {
		position: static;
		min-height: auto;
	}

	.demo-progress {
		display: none;
	}

	.demo-step {
		min-height: 0;
	}

	.demo-state {
		transition:
			opacity .5s ease,
			transform .55s var(--motion-ease),
			filter .4s ease;
	}

	.concierge-motion-tv {
		width: 40%;
	}

	.concierge-motion-phone {
		width: 31%;
	}

	.concierge-request-card {
		width: 46%;
	}
}

@media (max-width: 760px) {
	.site-header.is-scrolled .brand-logo {
		width: 160px;
	}

	.concierge-motion-layer {
		display: none;
	}

	[data-parallax] > img,
	[data-parallax] .dashboard-window {
		transform: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.demo-state {
		filter: none !important;
	}

	.demo-browser,
	[data-parallax] > img,
	[data-parallax] .dashboard-window {
		transform: none !important;
	}

	.concierge-motion-tv,
	.concierge-motion-phone,
	.concierge-request-card {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}

	.concierge-motion-path::before {
		transform: scaleX(1) !important;
		animation: none !important;
	}

	.concierge-motion-path i {
		left: calc(100% - 7px) !important;
		opacity: 1 !important;
		animation: none !important;
	}
}


/* ------------------------------------------------------------------
 * Phase 2.3 — Layout, motion and mobile polish
 * ------------------------------------------------------------------ */

/* Mobile navigation */
.mobile-nav-actions {
	display: none;
}

@media (max-width: 760px) {
	.header-inner {
		min-height: 82px;
		grid-template-columns: 1fr auto;
		gap: 14px;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.brand-logo {
		width: 188px;
	}

	.header-actions {
		display: none;
	}

	.nav-toggle {
		display: block;
		order: initial;
		margin-left: auto;
		width: 48px;
		height: 48px;
		padding: 11px;
		border: 1px solid rgba(255,255,255,.08);
		border-radius: 13px;
		background: rgba(255,255,255,.035);
	}

	.main-nav {
		top: 82px;
		padding: 12px 18px 22px;
		border-top: 1px solid rgba(255,255,255,.06);
		box-shadow: 0 24px 50px rgba(0,0,0,.28);
	}

	.main-nav > a {
		padding: 16px 8px;
		font-size: 15px;
	}

	.mobile-nav-actions {
		display: grid;
		grid-template-columns: .75fr 1.25fr;
		gap: 10px;
		padding-top: 15px;
	}

	.mobile-nav-actions .mobile-login,
	.mobile-nav-actions .button {
		min-height: 48px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 999px;
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
	}

	.mobile-nav-actions .mobile-login {
		border: 1px solid rgba(255,255,255,.18);
		color: #fff;
		background: rgba(255,255,255,.035);
	}

	.site-header.is-scrolled .header-inner {
		min-height: 74px;
	}

	.site-header.is-scrolled .brand-logo {
		width: 172px;
	}

	.site-header.is-scrolled .main-nav {
		top: 74px;
	}

	.hero {
		padding-top: 128px;
	}

	.hero h1 {
		font-size: clamp(38px, 10.7vw, 51px);
		line-height: 1.045;
	}

	.hero-lead {
		font-size: 16.5px;
		line-height: 1.62;
	}

	.hero-actions {
		gap: 10px;
	}

	.hero-actions .button {
		flex: 1 1 0;
		min-width: 0;
		padding-inline: 18px;
	}

	.hero-proof {
		gap: 9px;
	}

	.hero-proof > div {
		padding: 12px 14px;
	}
}

/* Hero TV cleanup */
.floating-stat {
	display: none !important;
}

.tv-integrated-status {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 13px;
	z-index: 4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	pointer-events: none;
	color: rgba(255,255,255,.56);
	font-size: 9px;
	font-weight: 700;
}

.tv-integrated-status span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.tv-integrated-status i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #40d783;
	box-shadow: 0 0 0 4px rgba(64,215,131,.11);
}

.tv-logo-mark {
	bottom: 31px;
}

/* Fix the sticky product journey */
.product-demo-grid {
	align-items: stretch !important;
}

.demo-visual {
	position: relative;
	align-self: stretch;
	min-height: 100%;
}

.sticky-wrap {
	position: sticky !important;
	top: 94px;
	min-height: calc(100vh - 118px);
	align-content: center;
}

.demo-copy {
	padding-top: 4vh;
	padding-bottom: 5vh;
}

.demo-step {
	min-height: 29vh;
}

.demo-visual-label {
	margin: 0 0 12px 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.demo-visual-label span {
	color: var(--red);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 1.2px;
}

.demo-visual-label strong {
	color: rgba(255,255,255,.60);
	font-size: 10px;
	font-weight: 700;
}

/* Slightly larger visual, less dead space */
.demo-browser {
	width: calc(100% + 10px);
	margin-left: -5px;
}

.demo-tv-shell {
	padding: 22px;
}

/* More present progress rail */
.demo-progress-track {
	width: 3px;
	background: rgba(255,255,255,.12);
}

.demo-progress-fill {
	width: 3px;
}

.demo-progress-dots span {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border-radius: 9px;
	background: rgba(255,255,255,.035);
	color: rgba(255,255,255,.34);
}

.demo-progress-dots span.is-active {
	background: rgba(255,0,34,.14);
	color: var(--red);
	transform: translateX(5px) scale(1.04);
}

@media (max-width: 1050px) {
	.demo-visual {
		min-height: auto;
	}

	.sticky-wrap {
		position: static !important;
		min-height: auto;
	}

	.demo-step {
		min-height: 0;
	}
}

/* Revenue showcase */
.revenue-showcase {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.revenue-card {
	position: relative;
	min-height: 310px;
	overflow: hidden;
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	border: 1px solid #d9dee6;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(18,24,39,.055);
	transition:
		transform .34s var(--motion-ease),
		box-shadow .34s var(--motion-ease),
		border-color .34s ease;
}

.revenue-card:hover {
	transform: translateY(-7px);
	border-color: #cbd2dc;
	box-shadow: 0 24px 55px rgba(18,24,39,.11);
}

.revenue-card-art {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	background: linear-gradient(145deg, #151b2d, #27324c);
}

.revenue-card-art::before,
.revenue-card-art::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.revenue-card-art::before {
	width: 180px;
	height: 180px;
	right: -70px;
	top: -40px;
	background: radial-gradient(circle, rgba(255,255,255,.15), transparent 66%);
}

.revenue-card-art::after {
	width: 150px;
	height: 150px;
	left: -50px;
	bottom: -50px;
	background: radial-gradient(circle, rgba(255,0,34,.26), transparent 68%);
}

.revenue-card-spa .revenue-card-art {
	background: linear-gradient(145deg, #241d2b, #755461);
}

.revenue-card-food .revenue-card-art {
	background: linear-gradient(145deg, #211a17, #7a4e3d);
}

.revenue-card-explore .revenue-card-art {
	background: linear-gradient(145deg, #142431, #396773);
}

.revenue-card-upgrade .revenue-card-art {
	background: linear-gradient(145deg, #191d30, #4e456c);
}

.revenue-orb {
	position: absolute;
	width: 135px;
	height: 135px;
	left: 50%;
	top: 50%;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 50%;
	transform: translate(-50%,-50%);
	box-shadow:
		0 0 0 22px rgba(255,255,255,.035),
		0 0 0 46px rgba(255,255,255,.018);
	transition: transform .55s var(--motion-ease);
}

.revenue-card:hover .revenue-orb {
	transform: translate(-50%,-50%) scale(1.08);
}

.revenue-symbol {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 52px;
	font-weight: 500;
	text-shadow: 0 10px 28px rgba(0,0,0,.22);
	transition: transform .42s var(--motion-ease);
}

.revenue-card:hover .revenue-symbol {
	transform: translate(-50%,-54%) scale(1.08);
}

.revenue-card-content {
	padding: 32px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.revenue-label {
	margin-bottom: 9px;
	color: var(--red);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 1.15px;
}

.revenue-card h3 {
	margin-bottom: 11px;
	font-size: 23px;
}

.revenue-card p {
	margin-bottom: 22px;
	font-size: 14px;
	line-height: 1.62;
}

.revenue-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.revenue-tags span {
	padding: 7px 9px;
	border-radius: 999px;
	background: #f2f4f7;
	color: #606976;
	font-size: 9px;
	font-weight: 750;
}

@media (max-width: 900px) {
	.revenue-showcase {
		grid-template-columns: 1fr;
	}

	.revenue-card {
		min-height: 260px;
	}
}

@media (max-width: 560px) {
	.revenue-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.revenue-card-art {
		min-height: 155px;
	}

	.revenue-card-content {
		padding: 24px 22px;
	}
}

/* Control center motion polish */
.dash-sync-note {
	margin: -7px 0 16px auto;
	width: fit-content;
	padding: 7px 10px;
	display: flex;
	align-items: center;
	gap: 7px;
	border-radius: 999px;
	background: #edf8f2;
	color: #2b8058;
	font-size: 8px;
	font-weight: 800;
	opacity: 0;
	transform: translateY(-7px);
	transition:
		opacity .45s ease,
		transform .45s var(--motion-ease);
}

.dash-sync-note span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #40d783;
}

.dashboard-shell.is-dashboard-live .dash-sync-note {
	opacity: 1;
	transform: none;
}

.dashboard-shell.is-dashboard-live .dash-status {
	animation: dashStatusPulse 1.7s ease .55s 2;
}

@keyframes dashStatusPulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(64,215,131,0);
	}
	45% {
		box-shadow: 0 0 0 5px rgba(64,215,131,.12);
	}
}

/* Premium sliding billing toggle */
.billing-toggle {
	position: relative;
	overflow: hidden;
	background: #eef1f5;
	isolation: isolate;
}

.billing-slider {
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 4px;
	z-index: 0;
	width: calc(50% - 4px);
	border-radius: 999px;
	background: var(--text-dark);
	box-shadow: 0 5px 14px rgba(18,24,39,.10);
	transform: translateX(100%);
	transition: transform .32s var(--motion-ease), background .28s ease;
}

.billing-toggle.is-monthly .billing-slider {
	transform: translateX(0);
	background: #fff;
}

.billing-toggle.is-annual .billing-slider {
	transform: translateX(100%);
	background: var(--text-dark);
}

.billing-option {
	position: relative;
	z-index: 1;
	background: transparent !important;
	box-shadow: none !important;
}

.billing-toggle.is-monthly .billing-option[data-billing="monthly"] {
	color: var(--text-dark);
}

.billing-toggle.is-annual .billing-option[data-billing="annual"] {
	color: #fff;
}

.billing-toggle.is-annual .billing-option[data-billing="annual"] span {
	color: #72e5a7;
}

/* Slightly stronger premium focus for the paid pricing card */
.pricing-paid {
	position: relative;
	box-shadow: inset 3px 0 0 rgba(255,0,34,.65);
}

.pricing-paid::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 100% 0%, rgba(255,0,34,.045), transparent 34%);
}

/* Cleaner section transitions */
.section-soft + .section-dark,
.section-light + .section-dark {
	position: relative;
}

.section-soft + .section-dark::before,
.section-light + .section-dark::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -18px;
	width: min(92%, 1120px);
	height: 36px;
	border-radius: 999px;
	background: rgba(17,22,37,.08);
	filter: blur(20px);
	transform: translateX(-50%);
	pointer-events: none;
}

/* Mobile polish */
@media (max-width: 760px) {
	.section {
		padding: 68px 0;
	}

	.section-heading {
		margin-bottom: 42px;
	}

	.section-heading p {
		font-size: 16px;
	}

	.concierge-grid,
	.split-feature,
	.contact-grid {
		gap: 34px;
	}

	.pricing-card {
		padding: 28px 22px;
	}

	.billing-option {
		font-size: 11px;
	}

	.billing-option span {
		display: block;
		margin: 2px 0 0;
		font-size: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.revenue-card,
	.revenue-orb,
	.revenue-symbol,
	.billing-slider,
	.dash-sync-note {
		transition: none !important;
		animation: none !important;
	}
}


/* ------------------------------------------------------------------
 * Phase 2.4 — Hero cleanup, stronger dashboard mockup and media prep
 * ------------------------------------------------------------------ */

/* Remove the extra bottom labels from the hero TV */
.hero .tv-logo-mark,
.hero .tv-integrated-status {
	display: none !important;
}

/* Dashboard mockup redesign */
.control-center-grid {
	align-items: start;
}

.dashboard-shell::before {
	inset: -10% -8%;
	background: radial-gradient(circle, rgba(255,0,34,.08), transparent 64%);
	filter: blur(14px);
}

.dashboard-window {
	border-radius: 26px;
	border: 1px solid #d8dee7;
	box-shadow: 0 34px 85px rgba(18,24,39,.14);
}

.dashboard-window-top {
	min-height: 54px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	background: #f4f6fa;
	border-bottom: 1px solid #e3e8ef;
}

.dash-search-shell {
	min-width: 0;
	flex: 1 1 auto;
	max-width: 340px;
	height: 34px;
	padding: 0 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #e3e8ef;
	color: #9aa4b1;
}

.dash-search-icon {
	font-size: 12px;
	line-height: 1;
}

.dash-search-text {
	font-size: 10px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dash-top-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dash-top-badge {
	padding: 7px 10px;
	border-radius: 999px;
	background: #edf8f2;
	color: #2b8058;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .2px;
}

.dash-avatar {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: #616c7b;
	color: #fff;
	font-size: 10px;
	font-weight: 900;
}

.dashboard-layout {
	grid-template-columns: 164px 1fr;
	min-height: 430px;
}

.dash-sidebar {
	padding: 14px 12px 12px;
	gap: 12px;
	background: #131b31;
}

.dash-sidebar-brand {
	padding: 4px 6px 10px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: -.3px;
}

.dash-sidebar-brand span {
	color: var(--red);
}

.dash-sidebar-group {
	display: grid;
	gap: 5px;
}

.dash-sidebar-group small {
	padding: 8px 6px 3px;
	color: rgba(255,255,255,.38);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.dash-sidebar span {
	padding: 9px 10px;
	border-radius: 10px;
	color: rgba(255,255,255,.70);
	font-size: 10px;
	font-weight: 700;
}

.dash-sidebar .dash-active {
	background: rgba(255,255,255,.09);
	color: #ffffff;
}

.dash-sidebar-user {
	margin-top: auto;
	padding: 10px 8px 4px;
	display: flex;
	align-items: center;
	gap: 9px;
	border-top: 1px solid rgba(255,255,255,.08);
}

.dash-sidebar-user-avatar {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: rgba(255,255,255,.12);
	color: #ffffff;
	font-size: 9px;
	font-weight: 900;
	flex: 0 0 auto;
}

.dash-sidebar-user strong,
.dash-sidebar-user small {
	display: block;
}

.dash-sidebar-user strong {
	color: #ffffff;
	font-size: 9px;
}

.dash-sidebar-user small {
	margin-top: 2px;
	color: rgba(255,255,255,.46);
	font-size: 7px;
}

.dash-content {
	padding: 18px;
	background: #f6f7f9;
}

.dash-heading-advanced {
	margin-bottom: 14px;
	align-items: start;
}

.dash-heading-advanced p {
	margin: 7px 0 0;
	color: #7a8290;
	font-size: 10px;
	line-height: 1.5;
	max-width: 320px;
}

.dash-outline-button {
	padding: 8px 12px;
	border: 1px solid #e6c4c9;
	border-radius: 12px;
	background: #ffffff;
	color: #4f5560;
	font-size: 9px;
	font-weight: 800;
}

.dash-sync-note {
	margin: 0 0 12px auto;
}

.dash-banner {
	margin-bottom: 12px;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border: 1px solid #e1e6ed;
	border-radius: 14px;
	background: #ffffff;
}

.dash-banner-head strong,
.dash-banner-head small {
	display: block;
}

.dash-banner-head strong {
	color: #202635;
	font-size: 10px;
	font-weight: 800;
}

.dash-banner-head small {
	margin-top: 3px;
	color: #8a94a1;
	font-size: 8px;
	line-height: 1.4;
}

.dash-banner-kpi {
	flex: 0 0 auto;
	text-align: right;
}

.dash-banner-kpi b,
.dash-banner-kpi span {
	display: block;
}

.dash-banner-kpi b {
	color: #1d2433;
	font-size: 18px;
	line-height: 1;
}

.dash-banner-kpi span {
	margin-top: 4px;
	color: #818a97;
	font-size: 8px;
}

.dash-overview-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 12px;
}

.dash-panel {
	padding: 14px;
	border: 1px solid #e1e6ed;
	border-radius: 16px;
	background: #ffffff;
}

.dash-panel-head {
	margin-bottom: 12px;
}

.dash-panel-head strong,
.dash-panel-head small {
	display: block;
}

.dash-panel-head strong {
	color: #202635;
	font-size: 11px;
	font-weight: 800;
}

.dash-panel-head small {
	margin-top: 3px;
	color: #8a94a1;
	font-size: 8px;
	line-height: 1.45;
}

.dash-panel-metrics {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dash-mini-metric b,
.dash-mini-metric span {
	display: block;
}

.dash-mini-metric b {
	font-size: 24px;
	line-height: 1;
	color: #181f2f;
}

.dash-mini-metric span {
	margin-top: 3px;
	color: #8a94a1;
	font-size: 8px;
}

.dash-inline-stats {
	display: grid;
	gap: 4px;
}

.dash-inline-stats span {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #6d7583;
	font-size: 8px;
	font-weight: 700;
}

.dot-online,
.dot-offline {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.dot-online {
	background: #40d783;
}

.dot-offline {
	background: #c4cad3;
}

.dash-screen-list,
.dash-activity-list {
	display: grid;
	gap: 8px;
}

.dash-screen-row,
.dash-activity-list > div,
.dash-doc-preview {
	padding: 10px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-radius: 12px;
	background: #f7f8fa;
	border: 1px solid #eef1f4;
}

.dash-screen-row span,
.dash-screen-row b,
.dash-activity-list strong,
.dash-activity-list span,
.dash-doc-preview strong,
.dash-doc-preview span {
	display: block;
}

.dash-screen-row span {
	font-size: 9px;
	font-weight: 700;
	color: #222937;
}

.dash-status {
	padding: 5px 7px;
	font-size: 8px;
}

.dash-status-offline {
	background: #eef1f5;
	color: #7f8894;
}

.dash-tile-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 12px;
}

.dash-tile-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dash-tile {
	padding: 12px 10px;
	border-radius: 12px;
	background: #f7f8fa;
	border: 1px solid #eef1f4;
}

.dash-tile b,
.dash-tile span {
	display: block;
}

.dash-tile b {
	font-size: 21px;
	line-height: 1;
	color: #181f2f;
}

.dash-tile span {
	margin-top: 5px;
	color: #7d8693;
	font-size: 8px;
}

.dash-activity-list strong {
	font-size: 9px;
	color: #222937;
}

.dash-activity-list span {
	font-size: 8px;
	color: #8a94a1;
	text-align: right;
}

.dash-subscription-top {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.dash-subscription-status {
	padding: 5px 8px;
	border-radius: 999px;
	background: #dff7e9;
	color: #1c8b57;
	font-size: 8px;
	font-weight: 850;
}

.dash-subscription-top span {
	color: #8a94a1;
	font-size: 8px;
}

.dash-doc-preview strong {
	font-size: 9px;
	color: #222937;
}

.dash-doc-preview span {
	font-size: 8px;
	color: #8a94a1;
	text-align: right;
}

@media (max-width: 1180px) {
	.control-center-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.dash-overview-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.dashboard-layout {
		grid-template-columns: 1fr;
	}

	.dash-sidebar {
		display: none;
	}

	.dash-content {
		padding: 15px;
	}

	.dash-search-shell {
		max-width: none;
	}

	.dash-heading-advanced {
		flex-direction: column;
	}

	.dash-heading-advanced p {
		max-width: none;
	}

	.dash-banner {
		flex-direction: column;
		align-items: stretch;
	}

	.dash-banner-kpi {
		text-align: left;
	}

	.dash-tile-grid-three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


/* ------------------------------------------------------------------
 * Phase 2.5 — Real media wiring
 * Hero and product journey visuals use replaceable image files.
 * ------------------------------------------------------------------ */

/* Hero image slides */
.tv-slide.tv-slide-image {
	padding: 0 !important;
	display: block;
	background: #111625;
}

.tv-slide.tv-slide-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Product journey media */
.demo-state.demo-state-image {
	display: block;
	padding: 0;
	background: #111625;
}

.demo-state-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Keep the existing website framing while leaving supplied media untouched */
.demo-screen {
	background: #111625;
}

/* Hide legacy fake-slide structures if old markup is ever reintroduced */
.hero .slide-bg,
.hero .slide-content,
.hero .fake-qr,
.demo-screen .demo-overlay,
.demo-screen .promo-layout,
.demo-screen .concierge-demo,
.demo-screen .dashboard-demo {
	display: none !important;
}


/* ------------------------------------------------------------------
 * Phase 2.6 — Cleaner hero
 * Removed the mini proof cards and the live platform view strip.
 * ------------------------------------------------------------------ */

.hero.hero-clean .hero-copy {
	max-width: 590px;
}

.hero.hero-clean .hero-actions {
	margin-bottom: 0;
}

.hero.hero-clean .hero-bottom-note {
	margin-top: 32px;
}

@media (max-width: 980px) {
	.hero.hero-clean .hero-bottom-note {
		margin-top: 24px;
	}
}


/* ------------------------------------------------------------------
 * WTV Marketing WordPress integration
 * ------------------------------------------------------------------ */

.platform-icon.has-logo {
	padding: 8px;
	background: #ffffff;
	border: 1px solid #e3e7ed;
	box-shadow: 0 8px 22px rgba(18, 24, 39, .06);
}

.platform-icon.has-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.platform-card .platform-button-disabled {
	opacity: .58;
	pointer-events: none;
}

/* Contact Form 7 / shortcode form normalization */
.wtv-shortcode-form {
	padding: 34px;
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 30px 80px rgba(0,0,0,.22);
	color: var(--text-dark);
}

.wtv-shortcode-form .wpcf7-form,
.wtv-shortcode-form form {
	margin: 0;
}

.wtv-shortcode-form p {
	margin: 0 0 15px;
	color: var(--text-dark);
	font-size: 14px;
}

.wtv-shortcode-form label {
	display: block;
	color: #555e6b;
	font-size: 12px;
	font-weight: 700;
}

.wtv-shortcode-form input[type="text"],
.wtv-shortcode-form input[type="email"],
.wtv-shortcode-form input[type="tel"],
.wtv-shortcode-form input[type="url"],
.wtv-shortcode-form select,
.wtv-shortcode-form textarea {
	width: 100% !important;
	box-sizing: border-box !important;
	border: 1px solid #cfd5de !important;
	border-radius: 10px !important;
	background: #f6f7f9 !important;
	color: var(--text-dark) !important;
	font: inherit !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.wtv-shortcode-form input[type="text"],
.wtv-shortcode-form input[type="email"],
.wtv-shortcode-form input[type="tel"],
.wtv-shortcode-form input[type="url"],
.wtv-shortcode-form select {
	height: 48px !important;
	padding: 0 13px !important;
}

.wtv-shortcode-form textarea {
	min-height: 140px !important;
	padding: 13px !important;
	resize: vertical;
}

.wtv-shortcode-form input:focus,
.wtv-shortcode-form textarea:focus,
.wtv-shortcode-form select:focus {
	background: #ffffff !important;
	border-color: var(--red) !important;
	box-shadow: 0 0 0 3px rgba(255,0,34,.09) !important;
}

.wtv-shortcode-form input[type="submit"],
.wtv-shortcode-form button[type="submit"] {
	min-height: 48px !important;
	padding: 0 26px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--red) !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	cursor: pointer !important;
}

.wtv-contact-result {
	margin: 0 0 18px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.5;
}

.wtv-contact-result.is-success {
	background: #e8f8ef;
	color: #1c7b50;
}

.wtv-contact-result.is-error {
	background: #fff0f2;
	color: #b51f38;
}

.wtv-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 760px) {
	.wtv-shortcode-form {
		padding: 25px 20px;
	}
}


/* ------------------------------------------------------------------
 * WTV Marketing V1.0.1 — Mobile polish
 * ------------------------------------------------------------------ */

html {
	background: #111625;
	max-width: 100%;
	overflow-x: hidden;
}

body.wtv-marketing-home {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	overscroll-behavior-x: none;
	background: #111625;
}

body.wtv-marketing-home main {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

@supports (overflow: clip) {
	html,
	body.wtv-marketing-home,
	body.wtv-marketing-home main {
		overflow-x: clip;
	}
}

.wtv-media-empty-state {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	gap: 8px;
	padding: 24px;
	background: linear-gradient(135deg, #111625, #20283d);
	color: rgba(255,255,255,.62);
	text-align: center;
}

.wtv-media-empty-state strong {
	color: #ffffff;
	font-size: 20px;
}

.wtv-media-empty-state span {
	font-size: 11px;
}

.demo-step-media {
	display: none;
}

@media (max-width: 760px) {
	body.wtv-marketing-home {
		touch-action: pan-y pinch-zoom;
	}

	.site-header {
		padding-top: env(safe-area-inset-top, 0px);
		background: rgba(17,22,37,.94);
		transform: translate3d(0, 0, 0);
		will-change: transform;
		transition:
			transform .28s cubic-bezier(.22,.61,.36,1),
			background .25s ease,
			border-color .25s ease,
			box-shadow .25s ease;
	}

	.site-header.is-hidden {
		transform: translate3d(0, calc(-100% - env(safe-area-inset-top, 0px)), 0);
	}

	.header-inner,
	.site-header.is-scrolled .header-inner {
		min-height: 70px;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.brand-logo,
	.site-header.is-scrolled .brand-logo {
		width: 166px;
	}

	.nav-toggle {
		width: 44px;
		height: 44px;
		padding: 10px;
		border-radius: 12px;
	}

	.main-nav,
	.site-header.is-scrolled .main-nav {
		top: calc(70px + env(safe-area-inset-top, 0px));
	}

	.hero,
	.hero.hero-clean {
		padding-top: calc(108px + env(safe-area-inset-top, 0px));
	}

	/* Prevent wide transformed elements from creating a side-scroll lane. */
	.shell,
	.hero-grid,
	.product-demo-grid,
	.concierge-grid,
	.control-center-grid,
	.platform-grid,
	.pricing-wrap,
	.revenue-showcase,
	.dashboard-shell,
	.image-card,
	.tv-card,
	.demo-copy {
		min-width: 0;
		max-width: 100%;
	}

	.product-demo-section {
		overflow: hidden;
	}

	/* The desktop sticky visual is replaced by an image inside each step. */
	.product-demo-section .demo-visual {
		display: none;
	}

	.product-demo-grid {
		display: block;
	}

	.demo-copy {
		padding-top: 0;
		padding-bottom: 0;
	}

	.demo-step,
	.demo-step.is-active {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 16px;
		padding: 28px 0;
		opacity: 1;
		transform: none;
	}

	.demo-step:first-of-type {
		border-top: 0;
	}

	.demo-step > span {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.demo-step h3 {
		font-size: clamp(23px, 7vw, 30px);
		line-height: 1.12;
	}

	.demo-step p {
		font-size: 16px;
		line-height: 1.65;
	}

	.demo-step-media {
		grid-column: 1 / -1;
		display: block;
		margin: 6px 0 0;
		aspect-ratio: 16 / 9;
		overflow: hidden;
		border: 1px solid rgba(255,255,255,.10);
		border-radius: 18px;
		background: #0c101b;
		box-shadow: 0 20px 46px rgba(0,0,0,.20);
	}

	.demo-step-media img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	/* Compact, centered Concierge flow on phones. */
	.mini-flow {
		width: min(82%, 330px);
		margin: 32px auto 0;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.mini-flow div {
		padding: 16px 14px;
		border-radius: 15px;
		text-align: center;
		box-shadow: 0 8px 22px rgba(18,24,39,.045);
	}

	.mini-flow strong {
		font-size: 14px;
	}

	.mini-flow span {
		margin-top: 5px;
		font-size: 12px;
	}

	.mini-flow b {
		display: block;
		margin: -1px 0;
		transform: rotate(90deg);
		font-size: 18px;
		line-height: 1;
		text-align: center;
	}
}

@media (max-width: 390px) {
	.brand-logo,
	.site-header.is-scrolled .brand-logo {
		width: 154px;
	}

	.hero,
	.hero.hero-clean {
		padding-top: calc(100px + env(safe-area-inset-top, 0px));
	}

	.mini-flow {
		width: min(88%, 320px);
	}
}


/* ------------------------------------------------------------------
 * WTV Marketing V1.0.2 — Product journey repair
 * Restore the four step cards and keep the mobile journey deterministic.
 * ------------------------------------------------------------------ */

@media (max-width: 760px) {
	.product-demo-section .demo-copy {
		display: block;
	}

	.product-demo-section .demo-step,
	.product-demo-section .demo-step.is-active {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 16px;
		min-height: 0;
		padding: 30px 0;
		opacity: 1;
		transform: none;
		border-top-color: rgba(255,255,255,.11);
	}

	.product-demo-section .demo-step:first-of-type {
		border-top: 0;
	}

	/* Mobile no longer uses a changing active-number state. */
	.product-demo-section .demo-step > span,
	.product-demo-section .demo-step.is-active > span {
		background: rgba(255,255,255,.06);
		color: rgba(255,255,255,.62);
		transform: none;
	}

	.product-demo-section .demo-step-media {
		grid-column: 1 / -1;
		display: block;
		width: 100%;
		margin: 10px 0 0;
		aspect-ratio: 16 / 9;
		overflow: hidden;
		border: 1px solid rgba(255,255,255,.10);
		border-radius: 18px;
		background: #0c101b;
		box-shadow: 0 18px 42px rgba(0,0,0,.22);
	}

	.product-demo-section .demo-step-media img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}
