:root {
	--accent: #6b52ff;
	--accent-soft: #6b52ff12;
	--accent-strong: #4e39d6;
	--accent-wash: #6b52ff22;
	--bg: #f4f7fb;
	--bg-strong: #e8eef8;
	--container: 1220px;
	--danger: #bc5d57;
	--font: 'Manrope', system-ui, sans-serif;
	--font-mono: 'IBM Plex Mono', monospace;
	--header-h: 84px;
	--ink: #162036;
	--ink-soft: #55657f;
	--line: #dce3f0;
	--line-strong: #bec8dc;
	--mint: #2fd6c4;
	--mint-soft: #2fd6c414;
	--muted: #8693aa;
	--panel: #ffffffd9;
	--panel-strong: #ffffff;
	--radius: 30px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--radius-xs: 12px;
	--rose: #f156c1;
	--rose-soft: #f156c118;
	--shadow-panel: 0 42px 110px -48px #30406c38;
	--shadow-soft: 0 30px 70px -34px #21386e24;
	--sky: #5e77ff;
	--sky-soft: #5e77ff18;
	--success: #2f9368;
	--surface: #ffffff;
	--surface-2: #eef3fa;
	--warm: #23a8ff;
	--warm-soft: #23a8ff16;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
body {
	background: radial-gradient(circle at 12% 8%, #7d68ff22 0, #7d68ff00 24%), radial-gradient(circle at 88% 10%, #38cfff20 0, #38cfff00 20%), radial-gradient(circle at 52% 32%, #ffffff 0, #ffffff00 38%), linear-gradient(180deg, #fbfdff 0%, var(--bg) 34%, #edf2fb 100%);
	color: var(--ink);
	font-family: var(--font);
	line-height: 1.65;
	min-height: 100dvh;
	overflow-x: hidden;
}
body.no-scroll {
	overflow: hidden;
}
h1 {
	font-size: clamp(2.9rem, 7vw, 6rem);
	max-width: 12ch;
}
h1,
h2,
h3,
h4 {
	color: var(--ink);
	letter-spacing: -0.04em;
	line-height: 1.05;
}
h2 {
	font-size: clamp(2rem, 4.2vw, 3.6rem);
	max-width: 13ch;
}
h3 {
	font-size: 1.3rem;
}
html {
	scroll-behavior: smooth;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
img {
	display: block;
	height: auto;
	max-width: 100%;
}
main {
	padding-top: var(--header-h);
}
p {
	color: var(--ink-soft);
	max-width: 66ch;
}
ul {
	list-style: none;
}
.analysis-card,
.prompt-block {
	background: #fffdf8;
	border: 1px solid var(--line);
	padding: 18px;
}
.audience-card--fit {
	background: linear-gradient(180deg, #fbfefd 0%, #eff8f2 100%);
}
.audience-card--less-fit {
	background: linear-gradient(180deg, #fffefe 0%, #f7f3f6 100%);
}
.avatar {
	align-items: center;
	border-radius: 50%;
	color: var(--ink);
	display: inline-flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}
.avatar--mint {
	background: linear-gradient(135deg, #d7fff6 0%, #dff8ff 100%);
}
.avatar--rose {
	background: linear-gradient(135deg, #ffd4ec 0%, #ffdff5 100%);
}
.avatar--sand {
	background: linear-gradient(135deg, #ece7ff 0%, #f4e8ff 100%);
}
.avatar--sky {
	background: linear-gradient(135deg, #dde8ff 0%, #e8f4ff 100%);
}
.bento {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(12, 1fr);
}
.bento-card {
	background: var(--panel);
	border: 1px solid #ffffffd0;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	grid-column: span 4;
	padding: 28px;
}
.bento-card--wide {
	grid-column: span 8;
}
.browser-shot,
.phone-shot,
.feature-panel,
.cta-panel,
.steps-panel {
	backdrop-filter: blur(18px);
	background: var(--panel);
	border: 1px solid #ffffffd8;
	border-radius: var(--radius);
	box-shadow: var(--shadow-panel);
	-webkit-backdrop-filter: blur(18px);
}
.browser-shot__bar {
	align-items: center;
	background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
	border-bottom: 1px solid #e5ebf6;
	display: flex;
	gap: 10px;
	padding: 16px 18px;
}
.browser-shot__bar span {
	background: #dde5f6;
	border-radius: 50%;
	height: 10px;
	width: 10px;
}
.browser-shot__bar span:nth-child(1){
	background: #ff8cc4;
}
.browser-shot__bar span:nth-child(2){
	background: #7ad6ff;
}
.browser-shot__bar span:nth-child(3){
	background: #8b75ff;
}
.browser-shot__bar strong {
	font-size: .9rem;
	letter-spacing: -.02em;
	margin-left: 6px;
}
.browser-shot__body {
	display: grid;
	grid-template-columns: 280px 1fr;
	min-height: 510px;
}
.browser-shot__body--conversation {
	display: block;
	min-height: 420px;
}
.browser-shot__main {
	background: linear-gradient(180deg, #f6f9ff 0%, #eef3fb 100%);
	padding: 24px;
	position: relative;
}
.browser-shot__sidebar {
	background: linear-gradient(180deg, #f9fbff 0%, #f3f7fd 100%);
	border-right: 1px solid #e5ebf6;
	padding: 16px;
}
.btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: .95rem;
	font-weight: 700;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--full {
	width: 100%;
}
.btn--ghost {
	background: var(--accent-soft);
	border-color: #0000;
	color: var(--accent);
}
.btn--ghost:hover {
	background: var(--accent-wash);
}
.btn--large {
	min-height: 56px;
	padding: 0 26px;
}
.btn--primary {
	background: var(--accent);
	box-shadow: 0 18px 34px -18px #0f5b4d88;
	color: #fffdf9;
}
.btn--primary:hover {
	background: var(--accent-strong);
}
.btn--secondary {
	background: #fffdf7;
	border-color: var(--line-strong);
	color: var(--ink);
}
.btn--secondary:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.btn--small {
	font-size: .88rem;
	min-height: 42px;
	padding: 0 16px;
}
.btn:active {
	transform: translateY(1px) scale(.985);
}
.case-logo {
	align-items: center;
	border-radius: 22px;
	box-shadow: 0 22px 36px -28px #243c7560;
	display: inline-flex;
	font-size: 1.05rem;
	font-weight: 800;
	height: 78px;
	justify-content: center;
	letter-spacing: .04em;
	width: 78px;
}
.case-logo--clean {
	background: linear-gradient(180deg, #eaf6ff 0%, #d9f2ff 100%);
	color: #2a86b2;
}
.case-logo--estate {
	background: linear-gradient(180deg, #eefcf7 0%, #dff7ef 100%);
	color: #2e8c70;
}
.case-logo--legal {
	background: linear-gradient(180deg, #f1edff 0%, #e3dbff 100%);
	color: #6a54d8;
}
.case-study {
	display: grid;
	gap: 24px;
	grid-template-columns: 260px 1fr;
	padding: 28px;
}
.case-study__content {
	display: grid;
	gap: 14px;
}
.case-study__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, 1fr);
}
.case-study__grid div {
	background: #fffdf9;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 18px;
}
.case-study__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}
.case-study__note,
.origin-story__signature {
	color: var(--muted);
	font-size: .95rem;
}
.case-study__placeholder,
.origin-story__placeholder {
	align-items: center;
	background: linear-gradient(180deg, #eef2fb 0%, #e5ecfa 100%);
	border: 1px dashed #c7d5ef;
	border-radius: var(--radius-md);
	color: var(--ink-soft);
	display: flex;
	font-size: 1.1rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: .04em;
	min-height: 220px;
	padding: 22px;
	text-align: center;
}
.channel-board {
	display: grid;
	gap: 18px;
}
.channel-board__group {
	background: var(--panel);
	border: 1px solid #ffffffd0;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	padding: 24px;
}
.channel-board__group h3 {
	margin-bottom: 14px;
}
.channel-board__group li {
	border-bottom: 1px solid #e5ddcf;
	color: var(--ink-soft);
	padding: 10px 0;
}
.channel-board__group li:last-child {
	border-bottom: none;
}
.channel-board__group ul {
	display: grid;
	gap: 10px;
}
.channel-capability-card {
	padding: 24px;
}
.channel-capability-card h3 {
	margin-bottom: 12px;
}
.channel-capability-grid--three {
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
}
.channel-detail-card__head {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 16px;
}
.channel-detail-grid--two {
	grid-template-columns: repeat(2, 1fr);
}
.channel-matrix {
	display: grid;
	gap: 0;
	margin-bottom: 18px;
}
.channel-matrix__head {
	color: var(--muted);
	display: grid;
	font-size: .82rem;
	font-weight: 700;
	gap: 8px;
	grid-template-columns: 1fr 100px 100px;
	padding: 8px 12px;
}
.channel-matrix__head span:nth-child(2){
	background: #e8f3ff;
	color: #2e6ca8;
}
.channel-matrix__head span:nth-child(2),
.channel-matrix__head span:nth-child(3){
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	justify-content: center;
	padding: 8px 10px;
}
.channel-matrix__head span:nth-child(3){
	background: #f1ebff;
	color: #684cc8;
}
.channel-matrix__row {
	align-items: center;
	border-top: 1px solid var(--line);
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 100px 100px;
	padding: 10px 12px;
}
.channel-matrix__row span {
	color: var(--ink);
	font-size: .92rem;
}
.channel-pill {
	background: #fffdf8;
	border: 1px solid var(--line);
}
.channel-pill--active {
	background: var(--accent-soft);
	border-color: #12715f30;
	color: var(--accent);
}
.channels-ask {
	max-width: 12ch;
}
.channels-compare-grid {
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.channels-configurator {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}
.channels-configurator-preview {
	display: grid;
	gap: 18px;
}
.channels-configurator-preview__copy {
	background: #ffffffc9;
	border: 1px solid #dbe5f2;
	border-radius: 20px;
	padding: 18px;
}
.channels-configurator-preview__copy strong {
	color: var(--ink);
	display: block;
	margin-bottom: 6px;
}
.channels-configurator__chip {
	align-items: center;
	background: #ffffff;
	border: 1px solid #d6e0f2;
	border-radius: 999px;
	color: var(--ink-soft);
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	padding: 10px 14px;
}
.channels-configurator__chip.is-active {
	background: linear-gradient(135deg, #eef4ff 0%, #f5efff 100%);
	border-color: #d8d4ff;
	color: #5f46d5;
}
.channels-video-block {
	background: linear-gradient(180deg, #0f1830 0%, #14213f 100%);
	border: 1px solid #243a61;
	border-radius: 30px;
	box-shadow: 0 36px 56px -42px #050d1f;
	margin: 8px 0 28px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
	overflow: hidden;
}
.channels-video-player {
	aspect-ratio: 16 / 9;
	background: #0b1327;
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}
.click-card {
	background: var(--surface);
	border: 2px solid var(--line);
	border-radius: var(--radius-md);
	color: var(--ink);
	cursor: pointer;
	display: block;
	font: inherit;
	font-weight: 600;
	padding: 18px 22px;
	text-align: left;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.click-card span {
	color: var(--ink-soft);
	display: block;
	font-size: .92rem;
	font-weight: 400;
	margin-top: 2px;
}
.click-card.is-selected {
	background: #6b52ff08;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px #6b52ff22;
}
.click-card:hover {
	border-color: var(--accent);
}
.click-cards {
	display: grid;
	gap: 12px;
}
.click-option {
	background: var(--surface);
	border: 2px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--ink);
	cursor: pointer;
	font: inherit;
	font-size: .92rem;
	font-weight: 600;
	min-height: 44px;
	padding: 14px 16px;
	text-align: center;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.click-option.is-selected {
	background: #6b52ff08;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px #6b52ff22;
}
.click-option:hover {
	border-color: var(--accent);
}
.click-row {
	display: grid;
	gap: 10px;
}
.click-row--four {
	grid-template-columns: repeat(4, 1fr);
}
.click-row--three {
	grid-template-columns: repeat(3, 1fr);
}
.click-row--two {
	grid-template-columns: repeat(2, 1fr);
}
.compare-card,
.audience-card {
	padding: 26px;
}
.compare-card,
.audience-card,
.testimonial-card,
.case-study,
.origin-story,
.price-anchor {
	background: var(--panel);
	border: 1px solid #ffffffd0;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}
.compare-card--after {
	background: linear-gradient(180deg, #101b2a 0%, #122331 100%);
	border-color: #2a4250;
}
.compare-card--after .compare-list li {
	color: #c8d7df;
}
.compare-card--after .compare-list li::before,
.audience-card--fit .compare-list li::before {
	color: #42d3a7;
	content: 'v';
	font-weight: 800;
	left: 0;
	position: absolute;
	top: 0;
}
.compare-card--before {
	background: linear-gradient(180deg, #171f33 0%, #121a2b 100%);
	border-color: #2c3754;
}
.compare-card--before .compare-list li {
	color: #c1cce0;
}
.compare-card--before .compare-list li::before,
.audience-card--less-fit .compare-list li::before {
	color: #ff7897;
	content: 'x';
	font-weight: 800;
	left: 0;
	position: absolute;
	top: 0;
}
.compare-card--before .eyebrow,
.compare-card--after .eyebrow {
	background: #0e1728;
	border-color: #2a3959;
	box-shadow: none;
}
.compare-card--before h2,
.compare-card--before h3,
.compare-card--after h2,
.compare-card--after h3 {
	color: #f5f8ff;
}
.compare-grid--two,
.audience-grid--two {
	grid-template-columns: repeat(2, 1fr);
}
.compare-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}
.compare-list li {
	color: var(--ink-soft);
	padding-left: 24px;
	position: relative;
}
.contact-form {
	display: grid;
	gap: 16px;
}
.contact-layout {
	align-items: start;
}
.contact-panel {
	background: var(--panel);
	border: 1px solid #ffffffd0;
	border-radius: var(--radius);
	box-shadow: var(--shadow-panel);
	padding: 30px;
}
.contact-panel,
.contact-sidebar {
	display: grid;
	gap: 18px;
}
.container {
	margin: 0 auto;
	padding: 0 28px;
	width: min(100%, var(--container));
}
.conversation-header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 18px 18px 6px;
}
.cta-panel {
	background: linear-gradient(135deg, #fbfcff 0%, #eef2ff 42%, #e9fbff 100%);
	overflow: hidden;
	padding: 34px;
	position: relative;
}
.cta-panel::before {
	background: radial-gradient(circle, #6b52ff26 0%, #6b52ff00 72%);
	border-radius: 50%;
	content: '';
	height: 220px;
	inset: auto -80px -80px auto;
	pointer-events: none;
	position: absolute;
	width: 220px;
}
.cta-panel__content {
	position: relative;
	z-index: 1;
}
.day-rhythm {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 18px;
	padding: 10px 0 22px;
	position: relative;
}
.day-rhythm__card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 24px;
	box-shadow: 0 32px 42px -34px #3043776b;
	min-height: 176px;
	padding: 22px 20px;
}
.day-rhythm__card p {
	max-width: none;
}
.day-rhythm__card strong {
	color: var(--ink);
	display: block;
	font-size: 1.08rem;
	margin-bottom: 10px;
}
.day-rhythm__meta {
	background: #eef4ff;
	border-radius: 12px;
	color: #6174a0;
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	margin-top: 14px;
	padding: 8px 11px;
}
.day-rhythm__mobile-note {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 26px;
	box-shadow: 0 32px 42px -34px #3043776b;
	padding: 24px 26px;
}
.day-rhythm__mobile-note strong {
	color: var(--ink);
	display: block;
	font-size: 1.12rem;
	margin-bottom: 10px;
}
.day-rhythm__rail {
	background: linear-gradient(90deg, #6fe2ff 0%, #6b52ff 50%, #ffbc73 100%);
	border-radius: 999px;
	box-shadow: 0 18px 28px -22px #4b64bb7c;
	height: 10px;
	left: 4%;
	position: absolute;
	right: 4%;
	top: 50%;
}
.day-rhythm__stop {
	align-content: start;
	display: grid;
	gap: 12px;
	position: relative;
	z-index: 1;
}
.day-rhythm__stop--bottom {
	padding-top: 154px;
}
.day-rhythm__stop--bottom::before {
	top: 36px;
}
.day-rhythm__stop--top {
	padding-bottom: 154px;
}
.day-rhythm__stop--top::before {
	bottom: 36px;
}
.day-rhythm__time {
	align-items: center;
	background: #111b31;
	border-radius: 999px;
	box-shadow: 0 18px 24px -22px #091122;
	color: #f6f9ff;
	display: inline-flex;
	font-size: .84rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: .04em;
	padding: 8px 12px;
	width: fit-content;
}
.day-rhythm__workspace {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
	margin-top: 24px;
}
.demo-bubble {
	background: #fff;
	border: 1px solid #e4e9f5;
	border-radius: 22px;
	box-shadow: 0 20px 30px -28px #3445817a;
	margin-bottom: 14px;
	max-width: 78%;
	padding: 16px 18px;
}
.demo-bubble strong {
	display: block;
	font-size: .84rem;
	margin-bottom: 6px;
}
.demo-bubble--assistant {
	background: linear-gradient(135deg, #eef4ff 0%, #f8efff 100%);
	border-color: #dddafc;
}
.demo-bubble--in {
	background: #ffffff;
}
.demo-bubble--meta {
	background: #fff;
	border-color: #e1d6ff;
	color: #8b64ff;
	font-weight: 800;
	padding: 10px 16px;
	width: fit-content;
}
.demo-bubble--meta span {
	font-size: .84rem;
}
.demo-bubble--out {
	background: #1e2a42;
	border-color: #1e2a42;
	margin-left: auto;
}
.demo-bubble--out strong,
.demo-bubble--out p {
	color: #f5f8ff;
}
.demo-bubble--translation {
	background: linear-gradient(135deg, #f2f7ff 0%, #eef4ff 100%);
	border-color: #d9e5ff;
}
.demo-bubble--translation strong {
	color: #5d70a4;
}
.demo-filter {
	align-items: center;
	background: #fff;
	border: 1px solid #dde6f4;
	border-radius: 12px;
	color: #61728f;
	display: inline-flex;
	font-size: .82rem;
	padding: 9px 12px;
}
.demo-lang {
	align-items: center;
	background: #eef3ff;
	border-radius: 12px;
	color: #6d57ff;
	display: inline-flex;
	font-weight: 800;
	height: 36px;
	justify-content: center;
	min-width: 46px;
	padding: 0 12px;
}
.demo-pill {
	align-items: center;
	background: #e8f8ff;
	border-radius: 999px;
	color: #1499df;
	display: inline-flex;
	font-size: .82rem;
	font-weight: 800;
	justify-content: center;
	padding: 8px 12px;
}
.demo-recording-placeholder {
	align-items: center;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 30px;
	box-shadow: 0 34px 46px -36px #30437765;
	display: grid;
	gap: 22px;
	grid-template-columns: .92fr 1.08fr;
	margin-top: 24px;
	padding: 24px;
}
.demo-recording-placeholder--compact {
	grid-template-columns: 1fr;
}
.demo-recording-placeholder__badge {
	align-items: center;
	background: #0b1428cc;
	border: 1px solid #2a3e63;
	border-radius: 999px;
	color: #9fe6ff;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 800;
	left: 18px;
	letter-spacing: .08em;
	padding: 9px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 18px;
	z-index: 1;
}
.demo-recording-placeholder__copy h3 {
	color: var(--ink);
	margin-bottom: 10px;
}
.demo-recording-placeholder__copy p {
	max-width: none;
}
.demo-recording-placeholder__play {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	position: absolute;
}
.demo-recording-placeholder__play span {
	align-items: center;
	background: linear-gradient(135deg, #27c5ff 0%, #8e58ff 100%);
	border-radius: 999px;
	box-shadow: 0 30px 46px -24px #0e1f45;
	color: #fff;
	display: inline-flex;
	font-size: 2rem;
	height: 88px;
	justify-content: center;
	width: 88px;
}
.demo-recording-placeholder__visual {
	background: radial-gradient(circle at 22% 20%, #5be0ff33 0, #5be0ff00 22%), radial-gradient(circle at 82% 72%, #8c63ff33 0, #8c63ff00 24%), linear-gradient(135deg, #0f1830 0%, #14213f 100%);
	border: 1px solid #26395f;
	border-radius: 24px;
	min-height: 220px;
	overflow: hidden;
	position: relative;
}
.demo-recording-placeholder__visual::before {
	background: linear-gradient(180deg, #ffffff0f 0%, #ffffff05 100%);
	border: 1px solid #ffffff1c;
	border-radius: 18px;
	content: '';
	inset: 18px;
	position: absolute;
}
.demo-send {
	align-items: center;
	background: #18223a;
	border: none;
	border-radius: 14px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	height: 46px;
	justify-content: center;
	min-width: 136px;
	padding: 0 18px;
}
.demo-thread {
	align-items: start;
	background: #0000;
	border: none;
	border-radius: 0;
	border-top: 1px solid #e8eef8;
	cursor: pointer;
	display: grid;
	gap: 12px;
	grid-template-columns: 42px 1fr auto;
	padding: 14px 12px;
	text-align: left;
	transition: background .18s ease, box-shadow .18s ease;
	width: 100%;
}
.demo-thread > span:last-child {
	color: #99a7be;
	font-size: .8rem;
	font-weight: 700;
}
.demo-thread p {
	color: #7a8ba6;
	font-size: .84rem;
	max-width: none;
}
.demo-thread strong {
	color: var(--ink);
	display: block;
	font-size: 1rem;
	margin-bottom: 4px;
}
.demo-thread.is-active {
	background: #ffffff;
	box-shadow: inset 4px 0 0 #9f68ff, 0 20px 28px -28px #5c6bf085;
}
.demo-thread:first-of-type {
	border-top: none;
}
.direct-contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.examples-autoplay {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 24px;
	margin-top: 22px;
	overflow: hidden;
}
.examples-autoplay__panel {
	background: #f3f7fe;
	border: 1px solid #dce6f4;
	border-radius: 18px;
	min-width: 260px;
	padding: 18px;
}
.examples-autoplay__panel span {
	color: #5f708c;
	font-size: .92rem;
}
.examples-autoplay__panel strong {
	color: var(--ink);
	display: block;
	margin-bottom: 6px;
}
.examples-autoplay__track {
	animation: examplesMarquee 28s linear infinite;
	display: flex;
	gap: 14px;
	padding: 14px;
	width: max-content;
}
.examples-overview {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 10px;
}
.examples-overview__card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 24px;
	box-shadow: 0 30px 42px -36px #3043775c;
	padding: 22px;
}
.examples-points {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}
.examples-points div {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 20px;
	padding: 18px;
}
.examples-points span {
	color: #5a6c87;
}
.examples-points strong {
	color: var(--ink);
	display: block;
	margin-bottom: 6px;
}
.examples-profile-demo {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 28px;
	box-shadow: 0 34px 46px -36px #30437765;
	overflow: hidden;
}
.examples-profile-demo__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
}
.examples-profile-demo__header {
	padding: 18px 18px 0;
}
.examples-profile-demo__header span {
	color: #60718c;
	font-size: .92rem;
}
.examples-profile-demo__header strong {
	color: var(--ink);
	display: block;
	margin-bottom: 4px;
}
.examples-profile-demo__panel {
	display: grid;
	gap: 14px;
	padding: 18px;
}
.examples-profile-demo__row {
	display: grid;
	gap: 8px;
}
.examples-profile-demo__row input,
.examples-profile-demo__textarea {
	background: #fbfcff;
	border: 1px solid #dce5f3;
	border-radius: 18px;
	color: #32415f;
	font: inherit;
	padding: 14px 16px;
	width: 100%;
}
.examples-profile-demo__row label {
	color: #61718c;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.examples-profile-demo__tab {
	align-items: center;
	background: #f6f8fd;
	border: 1px solid #d8e2f1;
	border-radius: 999px;
	color: #44516b;
	cursor: pointer;
	display: inline-flex;
	font-size: .86rem;
	font-weight: 700;
	justify-content: center;
	padding: 10px 14px;
}
.examples-profile-demo__tab.is-active {
	background: linear-gradient(135deg, #f1e9ff 0%, #e7f4ff 100%);
	border-color: #d4ddf4;
	color: #26334b;
}
.examples-profile-demo__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 18px 0;
}
.examples-profile-demo__textarea {
	line-height: 1.65;
	min-height: 112px;
}
.examples-profile-demo__toggles {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.examples-showcase {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: 1.02fr .98fr;
}
.examples-showcase--reverse > :first-child {
	order: 2;
}
.experience-choice {
	align-items: center;
	background: #ffffffcf;
	border: 1px solid #d8e2f1;
	border-radius: 18px;
	color: var(--ink);
	cursor: pointer;
	display: inline-flex;
	font-size: .92rem;
	font-weight: 700;
	justify-content: center;
	padding: 14px 18px;
	text-align: left;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.experience-choice.is-active {
	background: linear-gradient(135deg, #f4f0ff 0%, #eef7ff 100%);
	border-color: #8d73ff;
	box-shadow: 0 18px 28px -24px #4a59b678;
	color: #30256b;
}
.experience-demo__subline {
	color: #7d8ea9;
	display: block;
	font-size: .82rem;
	font-weight: 600;
	margin-top: 4px;
}
.experience-lab {
	display: grid;
	gap: 24px;
}
.experience-lab__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.experience-lab__intro {
	align-items: start;
	display: grid;
	gap: 18px;
	grid-template-columns: 1.08fr .92fr;
	margin-bottom: 8px;
}
.experience-lab__note {
	background: #ffffffb8;
	border: 1px solid #dde6f3;
	border-radius: 22px;
	padding: 18px 20px;
}
.experience-lab__note strong {
	color: var(--ink);
	display: block;
	font-size: 1.05rem;
	margin-bottom: 6px;
}
.experience-stage {
	align-items: center;
	background: #edf2fb;
	border: 1px solid #dce5f2;
	border-radius: 999px;
	color: #7c8ba3;
	display: inline-flex;
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .04em;
	padding: 8px 12px;
	text-transform: uppercase;
	transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.experience-stage.is-active {
	background: linear-gradient(135deg, #eef4ff 0%, #f5efff 100%);
	border-color: #d9d4ff;
	box-shadow: 0 14px 24px -22px #6b52ff;
	color: #5f46d5;
}
.experience-stagebar {
	background: #f9fbff;
	border-bottom: 1px solid #e8eef8;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px 22px;
}
.experience-thread {
	align-items: start;
	background: #0000;
	border: none;
	border-radius: 0;
	border-top: 1px solid #e8eef8;
	cursor: pointer;
	display: grid;
	gap: 12px;
	grid-template-columns: 42px 1fr auto;
	padding: 14px 12px;
	text-align: left;
	transition: background .18s ease, box-shadow .18s ease;
	width: 100%;
}
.experience-thread > span:last-child {
	color: #99a7be;
	font-size: .8rem;
	font-weight: 700;
}
.experience-thread p {
	color: #7a8ba6;
	font-size: .84rem;
	max-width: none;
}
.experience-thread strong {
	color: var(--ink);
	display: block;
	font-size: 1rem;
	margin-bottom: 4px;
}
.experience-thread.is-active {
	background: #ffffff;
	box-shadow: inset 4px 0 0 #38bdf8, 0 20px 28px -28px #5c6bf085;
}
.experience-thread:first-of-type {
	border-top: none;
}
.faq-item {
	background: var(--panel);
	border: 1px solid #ffffffd0;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
	padding: 18px 20px;
}
.faq-item p {
	margin-top: 12px;
}
.faq-item summary {
	color: var(--ink);
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-list {
	display: grid;
	gap: 12px;
}
.feature-copy h2 {
	margin-bottom: 14px;
}
.feature-copy p {
	margin-bottom: 18px;
}
.feature-grid--eight {
	grid-template-columns: repeat(4, 1fr);
}
.feature-panel {
	background: linear-gradient(180deg, #fffdfa 0%, #f5f0e6 100%);
	padding: 22px;
}
.feature-panel__body {
	display: grid;
	gap: 16px;
}
.feature-panel__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 18px;
}
.feature-split--reverse > :first-child {
	order: 2;
}
.feature-split--wide {
	grid-template-columns: 1fr 1fr;
}
.feature-tile {
	min-height: 168px;
}
.file-card {
	background: #fff;
	border: 1px solid var(--line);
	margin-bottom: 14px;
	padding: 16px;
}
.footer {
	background: linear-gradient(180deg, #eef3fc 0%, #e8eef8 100%);
	border-top: 1px solid #ffffffc8;
	padding: 42px 0 28px;
}
.footer__bottom {
	border-top: 1px solid #d9d1c2;
	display: flex;
	gap: 16px;
	grid-column: 1 / -1;
	justify-content: space-between;
	padding-top: 20px;
}
.footer__brand {
	display: grid;
	gap: 14px;
	max-width: 560px;
}
.footer__brand-copy {
	display: grid;
	gap: 1px;
}
.footer__col {
	display: grid;
	gap: 10px;
}
.footer__col h2 {
	font-size: 1rem;
	letter-spacing: -.02em;
	max-width: none;
}
.footer__col li,
.footer__col a,
.footer__bottom p {
	color: var(--ink-soft);
}
.footer__col ul {
	display: grid;
	gap: 8px;
}
.footer__cols {
	display: grid;
	justify-items: end;
}
.footer__inner {
	align-items: start;
	display: grid;
	gap: 24px 36px;
	grid-template-columns: minmax(0, 1.45fr) minmax(240px, .75fr);
}
.form-field {
	display: grid;
	gap: 8px;
}
.form-field input,
.form-field textarea {
	background: #fffdf9;
	border: 1px solid var(--line-strong);
	border-radius: 16px;
	color: var(--ink);
	font: inherit;
	outline: none;
	padding: 14px 16px;
	transition: border-color .18s ease, box-shadow .18s ease;
	width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px #12715f14;
}
.form-field span,
.form-options > span {
	color: var(--ink);
	font-weight: 700;
}
.form-field__input {
	background: #fffdf9;
	border: 1px solid var(--line-strong);
	border-radius: 16px;
	color: var(--ink);
	font: inherit;
	margin-top: 8px;
	outline: none;
	padding: 14px 16px;
	width: 100%;
}
.form-field__input.is-hidden {
	display: none;
}
.form-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
}
.form-microcopy {
	color: var(--muted);
	display: block;
	font-size: .84rem;
	margin-top: 6px;
}
.form-note {
	color: var(--muted);
	font-size: .9rem;
}
.form-options {
	background: #fffdf8;
	border: 1px solid var(--line);
	border-radius: 18px;
	display: grid;
	gap: 10px;
	padding: 16px;
}
.form-options label {
	align-items: center;
	color: var(--ink-soft);
	display: flex;
	gap: 10px;
}
.header {
	backdrop-filter: blur(18px) saturate(1.1);
	background: #f7faffc9;
	border-bottom: 1px solid #ffffffcc;
	height: var(--header-h);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	-webkit-backdrop-filter: blur(18px) saturate(1.1);
}
.header.is-scrolled {
	box-shadow: 0 14px 40px -28px #30281b55;
}
.header__actions {
	display: flex;
	gap: 10px;
}
.header__inner {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: auto 1fr auto auto;
	height: var(--header-h);
}
.header__logo,
.footer__logo {
	align-items: center;
	display: inline-flex;
	gap: 12px;
}
.header__logo-copy span,
.footer__logo span {
	color: var(--muted);
	font-size: .78rem;
}
.header__logo-copy strong,
.footer__logo strong {
	font-size: 1rem;
}
.header__logo-copy,
.footer__logo div {
	display: grid;
	gap: 1px;
}
.header__logo-image,
.footer__logo-image {
	display: block;
	height: 42px;
	object-fit: contain;
	width: 42px;
}
.header__logo-mark,
.footer__logo-mark {
	align-items: center;
	background: linear-gradient(135deg, #6b52ff 0%, #2cbcff 100%);
	border-radius: 14px;
	box-shadow: 0 18px 28px -18px #5f63ff8f;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}
.header__nav {
	justify-self: center;
}
.header__toggle {
	align-items: center;
	background: #fffdf8;
	border: 1px solid var(--line);
	border-radius: 50%;
	cursor: pointer;
	display: none;
	flex-direction: column;
	gap: 5px;
	height: 46px;
	justify-content: center;
	justify-self: end;
	margin-left: auto;
	width: 46px;
}
.header__toggle span {
	background: var(--ink);
	border-radius: 2px;
	height: 2px;
	transition: transform .2s ease, opacity .2s ease;
	width: 18px;
}
.header__toggle.is-active span:nth-child(1){
	transform: translateY(7px) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2){
	opacity: 0;
}
.header__toggle.is-active span:nth-child(3){
	transform: translateY(-7px) rotate(-45deg);
}
.hero {
	position: relative;
}
.hero-actions {
	margin-bottom: 0;
}
.hero-actions,
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.hero-float {
	animation: floatCard 6.5s ease-in-out infinite;
	backdrop-filter: blur(18px);
	background: #ffffffde;
	border: 1px solid #ffffffd6;
	border-radius: 20px;
	box-shadow: 0 28px 46px -30px #42508f7a;
	padding: 14px 16px;
	position: absolute;
	z-index: 3;
	-webkit-backdrop-filter: blur(18px);
}
.hero-float span {
	color: var(--accent);
	display: block;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .08em;
	margin-bottom: 4px;
	text-transform: uppercase;
}
.hero-float strong {
	display: block;
	font-size: .98rem;
	line-height: 1.25;
	max-width: 20ch;
}
.hero-float--left {
	animation-delay: -.8s;
	left: -34px;
	top: 140px;
}
.hero-float--right {
	animation-delay: -2.4s;
	right: -18px;
	top: 300px;
}
.hero-float--top {
	animation-delay: -1.6s;
	right: 54px;
	top: 10px;
}
.hero-glass-badge {
	backdrop-filter: blur(16px);
	background: #0f1a31cc;
	border: 1px solid #2a3c60;
	border-radius: 999px;
	color: #c8d5ea;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 10px 16px;
	position: absolute;
	z-index: 4;
	-webkit-backdrop-filter: blur(16px);
}
.hero-glass-badge--bottom {
	bottom: 22px;
	left: 28px;
}
.hero-glass-badge--top {
	left: 28px;
	top: 20px;
}
.hero-orb {
	animation: pulseGlow 6s ease-in-out infinite;
	border-radius: 50%;
	filter: blur(14px);
	pointer-events: none;
	position: absolute;
}
.hero-orb--cyan {
	animation-delay: -2s;
	background: radial-gradient(circle, #22c8ff28 0, #22c8ff00 70%);
	bottom: 18px;
	height: 180px;
	left: -18px;
	width: 180px;
}
.hero-orb--violet {
	background: radial-gradient(circle, #7c65ff34 0, #7c65ff00 70%);
	height: 240px;
	right: 10px;
	top: -24px;
	width: 240px;
}
.hero-stage {
	padding: 34px 0 28px;
	position: relative;
}
.hero-stage::before {
	background: linear-gradient(135deg, #6f52ff18 0%, #1cc6ff10 52%, #6f52ff14 100%);
	border-radius: 38px;
	content: '';
	filter: blur(22px);
	inset: 18px 12px 0 12px;
	pointer-events: none;
	position: absolute;
}
.hero::before {
	background: radial-gradient(circle at 74% 18%, #8a77ff22 0, #8a77ff00 26%), radial-gradient(circle at 70% 62%, #1fc8ff18 0, #1fc8ff00 24%);
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
}
.hero__content {
	padding-top: 18px;
}
.hero__grid,
.feature-split,
.contact-layout {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: 1.02fr .98fr;
}
.hero__lead {
	font-size: 1.15rem;
	margin-bottom: 28px;
}
.hero__mini-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	margin-top: 18px;
}
.hero__mini-proof span {
	background: #ffffff92;
	border: 1px solid #edf2fd;
	border-radius: 999px;
	box-shadow: none;
	color: var(--ink-soft);
	font-size: .82rem;
	font-weight: 700;
	opacity: .78;
	padding: 9px 14px;
}
.hero__visual {
	position: relative;
}
.icon-badge {
	align-items: center;
	border-radius: 14px;
	display: inline-flex;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	margin-bottom: 18px;
	width: 44px;
}
.icon-badge--mint {
	background: #d8efe5;
}
.icon-badge--rose {
	background: #f1d8dd;
}
.icon-badge--sand {
	background: #f3e0cf;
}
.icon-badge--sky {
	background: #dae9f1;
}
.intake-confirmation {
	background: var(--panel);
	border-radius: var(--radius);
	padding: 36px 28px;
	text-align: center;
}
.intake-confirmation h2 {
	margin-bottom: 10px;
	max-width: none;
}
.intake-confirmation.is-hidden {
	display: none;
}
.intake-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity .25s ease;
	z-index: 1000;
}
.intake-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}
.intake-modal__close {
	align-items: center;
	background: var(--bg);
	border: none;
	border-radius: 50%;
	color: var(--ink-soft);
	cursor: pointer;
	display: flex;
	font-size: 1.1rem;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 16px;
	top: 16px;
	transition: background .15s ease;
	width: 40px;
}
.intake-modal__close:hover {
	background: var(--line);
}
.intake-modal__dialog {
	background: var(--surface);
	border-radius: var(--radius-md);
	box-shadow: 0 24px 80px rgba(0,0,0,.18);
	max-height: 90vh;
	max-width: 720px;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	width: 94vw;
}
.intake-modal__nav {
	border-top: 1px solid var(--line);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 24px;
	padding-top: 18px;
}
.intake-modal__nav .is-hidden {
	display: none;
}
.intake-modal__overlay {
	background: rgba(0,0,0,.45);
	inset: 0;
	position: absolute;
}
.intake-modal__progress {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 24px;
}
.intake-modal__progress.is-hidden,
.intake-modal__body.is-hidden,
.intake-modal__nav.is-hidden {
	display: none;
}
.intake-next {
	margin-top: 18px;
}
.intake-next.is-hidden {
	display: none;
}
.intake-preview-ui {
	background: linear-gradient(180deg, #f8fbff 0%, #eef3fc 100%);
	border: 1px solid #dbe4f3;
	border-radius: 24px;
	box-shadow: 0 24px 54px -38px #30406c42;
	display: grid;
	gap: 14px;
	padding: 18px;
}
.intake-preview-ui .summary-card p,
.intake-preview-ui .prompt-block p {
	font-size: .86rem;
	line-height: 1.5;
	margin-top: 6px;
}
.intake-preview-ui .summary-card,
.intake-preview-ui .prompt-block {
	padding: 14px 15px;
}
.intake-preview-ui__body {
	display: grid;
	gap: 14px;
	grid-template-columns: .88fr 1.12fr;
}
.intake-preview-ui__conversation {
	display: grid;
}
.intake-preview-ui__detail {
	border-left: none;
	border-top: 1px solid #d9e2ef;
	display: grid;
	gap: 10px;
	padding-left: 0;
	padding-top: 14px;
	@media (max-width: 700px): ;
}
.intake-preview-ui__profiles,
.intake-preview-ui__channels {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.intake-preview-ui__threads {
	background: #f1f4fa;
	border: 1px solid #e2e8f3;
	border-radius: 18px;
	display: grid;
	gap: 8px;
	padding: 12px;
}
.intake-preview-ui__top {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}
.intake-preview.is-hidden {
	display: none;
}
.intake-preview__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.intake-preview__card {
	background: var(--panel);
	border: 1px solid #ffffffd0;
	border-radius: var(--radius);
	box-shadow: var(--shadow-panel);
	padding: 28px;
}
.intake-preview__copy {
	align-content: start;
	display: grid;
}
.intake-preview__layout {
	display: grid;
	gap: 20px;
	margin-bottom: 22px;
}
.intake-preview__text {
	color: var(--ink);
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.5;
	max-width: none;
}
.intake-preview__visual {
	display: grid;
}
.intake-progress {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 28px;
}
.intake-progress.is-hidden {
	display: none;
}
.intake-progress__bar,
.intake-modal__bar {
	background: var(--line);
	border-radius: 3px;
	flex: 1;
	height: 6px;
	overflow: hidden;
}
.intake-progress__fill,
.intake-modal__fill {
	background: var(--accent);
	border-radius: 3px;
	height: 100%;
	transition: width .35s ease;
	width: 0;
}
.intake-progress__label,
.intake-modal__label {
	color: var(--muted);
	font-size: .85rem;
	font-weight: 600;
	white-space: nowrap;
}
.intake-question {
	display: none;
}
.intake-question h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	margin-bottom: 20px;
	max-width: 28ch;
}
.intake-question.is-active {
	display: block;
}
.intake-subtext {
	color: var(--ink-soft);
	margin-bottom: 16px;
}
.intake-wizard {
	margin: 0 auto;
	max-width: 720px;
}
.integration-cloud {
	background: linear-gradient(180deg, #ffffffcc 0%, #f4f7ffda 100%);
	border: 1px solid #e3eaf6;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 22px;
}
.integration-logo {
	align-items: center;
	background: #ffffffc9;
	border: 1px solid #e4eaf5;
	border-radius: 999px;
	box-shadow: 0 24px 40px -34px #3d59a27a;
	color: #607293;
	display: inline-flex;
	font-size: 1.1rem;
	font-weight: 800;
	justify-content: center;
	padding: 16px 24px;
	white-space: nowrap;
}
.integration-marquee {
	display: grid;
	gap: 16px;
}
.integration-marquee__label {
	color: #61759a;
	display: block;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-align: center;
	text-transform: uppercase;
}
.integration-marquee__track {
	align-items: center;
	animation: marqueeX 28s linear infinite;
	display: flex;
	gap: 18px;
	width: max-content;
}
.integration-marquee__viewport {
	mask-image: linear-gradient(90deg, #0000, #000 10%, #000 90%, #0000);
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(90deg, #0000, #000 10%, #000 90%, #0000);
}
.integration-showcase {
	align-items: center;
	display: grid;
	gap: 26px;
	grid-template-columns: .9fr 1.1fr;
	margin-bottom: 24px;
}
.matrix-toggle {
	background: var(--surface);
	border: 2px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
	height: 40px;
	margin: 0 auto;
	transition: border-color .15s ease, background .15s ease;
	width: 40px;
}
.matrix-toggle.is-active::before {
	color: #fff;
	content: '✓';
	font-weight: 800;
}
.matrix-toggle[data-col="add"] {
	background: #fbf8ff;
	border-color: #d9cbff;
}
.matrix-toggle[data-col="add"].is-active {
	background: #7657ff;
	border-color: #7657ff;
}
.matrix-toggle[data-col="now"] {
	background: #f6fbff;
	border-color: #bfd8f4;
}
.matrix-toggle[data-col="now"].is-active {
	background: #2c78c4;
	border-color: #2c78c4;
}
.message-bubble {
	background: #ffffff;
	border: 1px solid #e4eaf6;
	border-radius: 20px;
	box-shadow: 0 24px 38px -30px #384d8f78;
	max-width: 420px;
	padding: 16px 18px;
}
.message-bubble strong {
	display: block;
	font-size: .82rem;
	margin-bottom: 6px;
}
.message-bubble--compact {
	border-radius: 16px;
	box-shadow: 0 16px 30px -26px #384d8f54;
	max-width: none;
	padding: 14px 15px;
}
.message-bubble--compact p {
	font-size: .86rem;
	line-height: 1.5;
}
.message-bubble--compact strong {
	font-size: .78rem;
	margin-bottom: 4px;
}
.message-bubble--out {
	background: linear-gradient(135deg, #eef2ff 0%, #f7edff 100%);
	border-color: #ddd5ff;
	margin-left: auto;
}
.message-stack,
.conversation-flow {
	display: grid;
	gap: 16px;
	margin-top: 18px;
}
.metric {
	padding: 22px;
}
.metric span {
	color: #60718e;
	display: block;
	font-size: .92rem;
}
.metric strong {
	color: var(--ink);
	display: block;
	font-size: 1.2rem;
	margin-bottom: 8px;
}
.metric,
.value-card,
.mode-card,
.shot-card,
.review-card,
.usecase-card,
.channel-detail-card,
.pricing-card,
.feature-tile,
.step-card,
.sidebar-card {
	backdrop-filter: blur(16px);
	background: var(--panel);
	border: 1px solid #ffffffc8;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	-webkit-backdrop-filter: blur(16px);
}
.metrics,
.value-grid,
.mode-grid,
.shots-grid,
.review-grid,
.usecase-grid,
.channel-detail-grid,
.pricing-grid,
.feature-grid,
.steps-grid {
	display: grid;
	gap: 18px;
}
.metrics--hero {
	grid-template-columns: repeat(3, 1fr);
	margin-top: 28px;
}
.mini-note {
	background: #fffdf8aa;
	border: 1px solid #ffffffc8;
	margin-top: auto;
	padding: 16px;
}
.mini-note span {
	color: #55657f;
}
.mini-note strong {
	display: block;
	margin-bottom: 6px;
}
.mobile-nav {
	backdrop-filter: blur(18px);
	background: #f5f1e8f0;
	inset: var(--header-h) 0 0 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity .2s ease;
	z-index: 99;
	-webkit-backdrop-filter: blur(18px);
}
.mobile-nav.is-active {
	opacity: 1;
	pointer-events: auto;
}
.mobile-nav__cta {
	margin-top: 12px;
	width: 100%;
}
.mobile-nav__cta a {
	border-bottom: none;
	padding: 0 18px;
}
.mobile-nav__inner {
	display: flex;
	justify-content: flex-end;
	padding: 20px 18px 28px;
}
.mobile-nav__list {
	display: grid;
	gap: 8px;
	justify-items: end;
	margin-left: auto;
	width: max-content;
}
.mobile-nav__list a {
	border-bottom: 1px solid var(--line);
	display: inline-flex;
	font-weight: 700;
	padding: 16px 0;
	text-align: right;
}
.mobile-sticky-cta {
	align-items: center;
	backdrop-filter: blur(16px);
	background: #ffffffea;
	border: 1px solid #dce5f4;
	border-radius: 18px;
	bottom: 12px;
	box-shadow: 0 28px 50px -34px #243b7563;
	display: none;
	gap: 14px;
	justify-content: space-between;
	left: 12px;
	padding: 14px 16px;
	position: fixed;
	right: 12px;
	z-index: 80;
	-webkit-backdrop-filter: blur(16px);
}
.mobile-sticky-cta p {
	color: var(--ink);
	font-size: .88rem;
	line-height: 1.35;
	max-width: 22ch;
}
.mobile-sticky-cta.is-hidden {
	display: none;
}
.mode-card {
	border: 1px solid #dde4f2;
	box-shadow: 0 28px 42px -34px #30437755;
	display: flex;
	flex-direction: column;
	padding: 28px;
}
.mode-card h3 {
	color: var(--ink);
}
.mode-card p {
	color: #506079;
	max-width: none;
}
.mode-card--auto {
	background: linear-gradient(180deg, #fdfdff 0%, #f1edff 100%);
}
.mode-card--auto .mode-speed {
	background: #f1e9ff;
	border-color: #dbcfff;
	color: #744ee8;
}
.mode-card--instruction {
	background: linear-gradient(180deg, #fefeff 0%, #e8f7ff 100%);
}
.mode-card--instruction .mode-speed {
	background: #e7f4ff;
	border-color: #cbe7ff;
	color: #1f73d8;
}
.mode-card--voice {
	background: linear-gradient(180deg, #fffdfd 0%, #ffe9f9 100%);
}
.mode-card--voice .mode-speed {
	background: #ffeaf4;
	border-color: #ffd2e8;
	color: #d84784;
}
.mode-card__top {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 18px;
}
.mode-grid {
	grid-template-columns: repeat(3, 1fr);
}
.mode-label {
	color: var(--ink);
	font-size: .78rem;
	letter-spacing: .1em;
}
.mode-speed {
	align-items: center;
	background: #f6f8fd;
	border: 1px solid #d8e1f2;
	border-radius: 999px;
	color: #34425f;
	display: inline-flex;
	font-size: .82rem;
	justify-content: center;
	letter-spacing: .02em;
	padding: 8px 14px;
	text-transform: none;
}
.nav-list {
	display: flex;
	gap: 8px;
}
.nav-list a {
	align-items: center;
	border-radius: 999px;
	color: var(--ink-soft);
	display: inline-flex;
	font-weight: 700;
	min-height: 42px;
	padding: 0 14px;
}
.nav-list a:hover {
	background: #ffffffaa;
	color: var(--ink);
}
.origin-story {
	background: linear-gradient(180deg, #ffffff 0%, #f5f7fe 100%);
	border-color: #e0e7f7;
	display: grid;
	gap: 24px;
	grid-template-columns: 220px 1fr;
	margin-bottom: 26px;
	padding: 28px;
}
.origin-story__content {
	align-content: start;
	display: grid;
	gap: 14px;
}
.page-shell {
	position: relative;
}
.page-top {
	padding-bottom: 60px;
}
.phone-shot {
	background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
	margin: 0 auto;
	max-width: 360px;
	padding: 16px;
}
.phone-shot__top {
	align-items: center;
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	padding-bottom: 14px;
}
.phone-shot__top span {
	color: var(--muted);
	font-size: .78rem;
}
.pill {
	background: #edf3ff;
	color: #586b91;
}
.pill,
.select-chip,
.channel-pill,
.tag,
.response-chip {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 700;
	justify-content: center;
	padding: 7px 12px;
}
.pill--active {
	background: linear-gradient(135deg, #745bff 0%, #8958ff 100%);
	box-shadow: 0 16px 26px -18px #745bffb8;
	color: #fff;
}
.pill-row,
.filter-row,
.filter-bar,
.channel-strip,
.workspace-panel__row,
.conversation-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.pref-label {
	color: var(--ink-soft);
	font-size: .88rem;
	font-weight: 600;
	min-width: 60px;
}
.pref-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.pref-rows {
	display: grid;
	gap: 12px;
}
.price-anchor {
	background: linear-gradient(180deg, #f8fbff 0%, #eef3fc 100%);
	margin-bottom: 28px;
	margin-top: 18px;
	padding: 18px 22px;
}
.price-anchor p {
	color: var(--ink);
	font-weight: 600;
	max-width: none;
}
.pricing-card {
	padding: 28px;
}
.pricing-card h3 {
	color: var(--ink);
}
.pricing-card p {
	color: var(--ink-soft);
}
.pricing-card--featured {
	background: linear-gradient(180deg, #fefefe 0%, #eff6f2 100%);
	border-color: #d4e8e0;
}
.pricing-card__label {
	color: var(--accent);
	margin-bottom: 12px;
}
.pricing-card__price {
	color: var(--ink);
	font-size: 1.1rem;
	margin: 18px 0;
}
.pricing-hero-heading {
	align-items: start;
	grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
}
.pricing-hero-heading > div {
	max-width: 740px;
}
.pricing-hero-heading h1 {
	font-size: clamp(2.45rem, 5vw, 4.4rem);
	line-height: .96;
	max-width: 15ch;
}
.pricing-hero-heading p {
	padding-top: 10px;
}
.pricing-list {
	display: grid;
	gap: 10px;
}
.pricing-list li,
.sidebar-list li {
	color: var(--ink-soft);
	padding-left: 18px;
	position: relative;
}
.pricing-list li::before,
.sidebar-list li::before {
	background: var(--accent);
	border-radius: 50%;
	content: '';
	height: 7px;
	left: 0;
	position: absolute;
	top: 11px;
	width: 7px;
}
.pricing-preview {
	display: grid;
	gap: 16px;
	padding: 22px;
}
.pricing-preview__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}
.pricing-preview__stack {
	display: grid;
	gap: 12px;
}
.pricing-preview__stack div {
	background: #fffdf9;
	border: 1px solid #e6ebf5;
	border-radius: 18px;
	padding: 16px 18px;
}
.pricing-preview__stack span {
	color: var(--ink-soft);
	display: block;
}
.profile-demo {
	background: linear-gradient(180deg, #f7faff 0%, #edf2fa 100%);
	border: 1px solid #dfe7f5;
	border-radius: var(--radius);
	box-shadow: var(--shadow-panel);
	display: grid;
	gap: 16px;
	padding: 20px;
}
.profile-demo__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.profile-demo__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
}
.profile-demo__panel {
	display: grid;
	gap: 14px;
}
.profile-demo__row {
	display: grid;
	gap: 8px;
}
.profile-demo__row input,
.profile-demo__textarea {
	background: #ffffff;
	border: 1px solid #d9e4f4;
	border-radius: 14px;
	color: var(--ink-soft);
	font: inherit;
	padding: 14px 16px;
	width: 100%;
}
.profile-demo__row label {
	color: var(--ink);
	font-weight: 700;
}
.profile-demo__tab {
	align-items: center;
	background: #ffffff;
	border: 1px solid #d8e3f4;
	border-radius: 999px;
	color: var(--ink-soft);
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	padding: 10px 14px;
}
.profile-demo__tab.is-active {
	background: linear-gradient(135deg, #745cff 0%, #55bfff 100%);
	border-color: #745cff;
	box-shadow: 0 18px 34px -22px #6857ff7c;
	color: #fff;
}
.profile-demo__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.profile-demo__textarea {
	line-height: 1.6;
	min-height: 118px;
	overflow: auto;
	white-space: pre-wrap;
}
.profile-demo__toggles {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.profile-toggle {
	align-items: center;
	background: #eef2fb;
	border-radius: 999px;
	color: #70829f;
	display: inline-flex;
	font-size: .86rem;
	font-weight: 700;
	padding: 10px 14px;
}
.profile-toggle.is-active {
	background: #dff6ef;
	color: #257d63;
}
.response-chip--auto {
	background: #ede7ff;
	color: #6852ff;
}
.response-chip--instruction {
	background: #dff4ff;
	color: #1a98e8;
}
.response-chip--voice {
	background: #ffe2f5;
	color: #e44bb7;
}
.response-dock {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.result-card {
	background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
	border: 1px solid #dfe8fb;
	border-radius: var(--radius-md);
	box-shadow: 0 26px 54px -34px #2f4c8750;
	overflow: hidden;
	padding: 28px 22px;
	position: relative;
}
.result-card span {
	color: var(--ink-soft);
	display: block;
	font-size: .95rem;
	max-width: 22ch;
}
.result-card strong {
	color: var(--ink);
	display: block;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	letter-spacing: -.05em;
	line-height: 1;
	margin-bottom: 10px;
}
.result-card::before {
	background: linear-gradient(90deg, #6d56ff 0%, #2ebfff 100%);
	content: '';
	height: 4px;
	inset: 0 auto auto 0;
	position: absolute;
	width: 100%;
}
.result-grid--four {
	grid-template-columns: repeat(4, 1fr);
}
.result-note {
	color: var(--muted);
	font-size: .95rem;
	margin-top: 18px;
}
.review-card p {
	color: var(--ink);
	font-size: 1rem;
	margin-bottom: 20px;
}
.review-card__meta {
	display: grid;
	gap: 3px;
}
.review-card__meta span {
	color: var(--muted);
	font-size: .88rem;
}
.review-grid--four {
	grid-template-columns: repeat(4, 1fr);
}
.roi-calculator {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid #dbe5f2;
	border-radius: 28px;
	box-shadow: 0 34px 46px -36px #30437765;
	display: grid;
	gap: 16px;
	padding: 24px;
}
.roi-calculator input[type=range] {
	width: 100%;
}
.roi-calculator label {
	color: #61718c;
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.roi-calculator__note {
	color: #5f718c;
	font-size: .92rem;
	max-width: none;
}
.roi-calculator__stats {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, 1fr);
}
.roi-calculator__stats div {
	background: #f3f7fe;
	border: 1px solid #dbe5f2;
	border-radius: 18px;
	padding: 16px;
}
.roi-calculator__stats span {
	color: #60718c;
}
.roi-calculator__stats strong {
	color: var(--ink);
	display: block;
	font-size: 1.35rem;
	margin-bottom: 6px;
}
.section {
	padding: 104px 0;
}
.section--alt {
	background: linear-gradient(180deg, #fffcf680 0%, #efeade80 100%);
	border-bottom: 1px solid #ddd5c730;
	border-top: 1px solid #ffffff70;
}
.section--dark {
	background: radial-gradient(circle at 18% 14%, #6e52ff2a 0, #6e52ff00 28%), radial-gradient(circle at 84% 12%, #1ec9ff20 0, #1ec9ff00 24%), linear-gradient(135deg, #081122 0%, #0a1328 54%, #0d1d34 100%);
	border-bottom: 1px solid #202b47;
	position: relative;
}
.section--dark .btn--secondary {
	background: #101a2d;
	border-color: #31486d;
	color: #eef3ff;
}
.section--dark .cta-panel h1,
.section--dark .cta-panel h2,
.section--dark-soft .cta-panel h1,
.section--dark-soft .cta-panel h2 {
	color: #f8fbff;
}
.section--dark .cta-panel p,
.section--dark-soft .cta-panel p {
	color: #aebcda;
}
.section--dark .cta-panel,
.section--dark-soft .cta-panel {
	background: linear-gradient(135deg, #121b30 0%, #16233e 44%, #163148 100%);
	border: 1px solid #28395f;
	box-shadow: 0 42px 110px -48px #00000066;
}
.section--dark .cta-panel::before,
.section--dark-soft .cta-panel::before {
	background: radial-gradient(circle, #6b52ff3b 0%, #6b52ff00 72%);
}
.section--dark .hero__mini-proof span {
	background: #121d3288;
	border-color: #223455;
	box-shadow: none;
	color: #b8c6de;
	opacity: 1;
}
.section--dark .section-heading p,
.section--dark-soft .section-heading p {
	color: #97a8c7;
}
.section--dark h1,
.section--dark h2,
.section--dark p,
.section--dark-soft h2,
.section--dark-soft h3,
.section--dark-soft p {
	color: #eef3ff;
}
.section--dark h1,
.section--dark h2,
.section--dark-soft h2 {
	color: #f8fbff;
	opacity: 1;
	text-shadow: none;
}
.section--dark p,
.section--dark-soft p {
	color: #a8b6d1;
}
.section--dark-soft {
	background: radial-gradient(circle at 82% 8%, #6e52ff14 0, #6e52ff00 18%), linear-gradient(180deg, #11192c 0%, #0e1627 100%);
	border-bottom: 1px solid #1d2740;
	border-top: 1px solid #1d2740;
	position: relative;
}
.section--dark-soft .case-study {
	background: linear-gradient(180deg, #151f34 0%, #10192b 100%);
	border-color: #293654;
}
.section--dark-soft .case-study .eyebrow {
	background: #0f182b;
	border-color: #293754;
	box-shadow: none;
}
.section--dark-soft .case-study h3,
.section--dark-soft .case-study p,
.section--dark-soft .case-study strong,
.section--dark-soft .case-study__note {
	color: #eef3ff;
}
.section--dark-soft .case-study__grid div {
	background: #10192c;
	border-color: #26324b;
}
.section--dark-soft .case-study__placeholder {
	background: linear-gradient(180deg, #172238 0%, #0f182a 100%);
	border-color: #314260;
	color: #d8e4f8;
}
.section--dark-soft .compare-card,
.section--dark-soft .testimonial-card,
.section--dark-soft .result-card {
	box-shadow: 0 28px 64px -42px #00000090;
}
.section--dark-soft .mode-card .mini-note span {
	color: #5c6e88;
}
.section--dark-soft .mode-card .mini-note strong {
	color: #22314a;
}
.section--dark-soft .mode-card .mode-label {
	color: #26334b;
}
.section--dark-soft .mode-card h3 {
	color: #1f2b40;
}
.section--dark-soft .mode-card p {
	color: #5a6b86;
}
.section--dark-soft .pricing-card h3 {
	color: var(--ink);
}
.section--dark-soft .pricing-card p {
	color: var(--ink-soft);
}
.section--dark-soft .voice-demo {
	background: linear-gradient(180deg, #161f33 0%, #0f182a 100%);
	border-color: #293754;
}
.section--dark-soft .voice-demo .eyebrow {
	background: #0f182b;
	border-color: #293754;
	box-shadow: none;
}
.section--dark-soft .voice-demo__chip {
	background: #111a2d;
	border-color: #2c3a56;
	color: #ced9ef;
}
.section--dark-soft .voice-demo__output {
	background: linear-gradient(135deg, #1a2340 0%, #15293a 100%);
	border-color: #314564;
	color: #f2f6ff;
}
.section--dark-soft .voice-demo__top span:not(.tag){
	color: #b9c7de;
}
.section--dark-soft .voice-demo__top strong,
.section--dark-soft .voice-demo__panel label {
	color: #eef3ff;
}
.section--dark-soft .voice-demo__transcript {
	background: #0f1729;
	border-color: #2a3957;
	color: #dce6f9;
}
.section--hero {
	padding-top: 72px;
}
.section--integration-belt {
	padding: 24px 0 38px;
}
.section-actions {
	margin-top: 34px;
}
.section-heading {
	display: grid;
	gap: 18px;
	margin-bottom: 42px;
}
.section-heading h1,
.section-heading h2 {
	margin-bottom: 8px;
}
.section-heading--split {
	align-items: end;
	grid-template-columns: 1.1fr .9fr;
}
.section-kicker,
.eyebrow {
	align-items: center;
	background: #ffffff8c;
	border: 1px solid var(--line);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 #ffffff;
	color: var(--accent);
	display: inline-flex;
	font-size: .78rem;
	font-weight: 800;
	gap: 10px;
	letter-spacing: .12em;
	margin-bottom: 18px;
	padding: 8px 14px;
	text-transform: uppercase;
}
.section-kicker--dark,
.section--dark-soft .section-kicker {
	background: #101b31;
	border-color: #253557;
	box-shadow: inset 0 1px 0 #ffffff08;
	color: #34c7ff;
}
.select-chip {
	background: #ffffff;
	border: 1px solid #dae4f2;
	color: #687993;
}
.shot-card {
	padding: 18px;
}
.shots-grid--two {
	grid-template-columns: repeat(2, 1fr);
}
.sidebar-card h3 {
	margin: 4px 0 10px;
}
.sidebar-list {
	display: grid;
	gap: 10px;
}
.stack-list div,
.check-list div {
	background: #fffdf8;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 14px 16px;
}
.stack-list strong {
	display: block;
	margin-bottom: 6px;
}
.stack-list,
.check-list {
	display: grid;
	gap: 14px;
}
.step-card strong {
	color: var(--accent);
	font-size: 2rem;
	line-height: 1;
}
.steps-grid {
	grid-template-columns: repeat(3, 1fr);
}
.steps-panel {
	padding: 28px;
}
.steps-panel__intro {
	margin-bottom: 24px;
}
.summary-card {
	background: #ffffffd8;
	border: 1px solid #dce6f8;
	box-shadow: 0 28px 48px -36px #5668a86b;
	padding: 18px;
}
.summary-card p,
.analysis-card p,
.prompt-block p {
	margin-top: 10px;
}
.summary-card span,
.analysis-card span,
.prompt-block span,
.pricing-card__label,
.mode-label,
.mode-speed {
	display: inline-block;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.summary-card,
.analysis-card,
.prompt-block,
.mini-note,
.file-card,
.roi-panel,
.workspace-panel,
.timeline-list,
.translation-stack,
.translation-strip,
.summary-demo,
.cta-panel__content {
	border-radius: var(--radius-sm);
}
.summary-card--floating {
	margin-bottom: 24px;
	margin-left: auto;
	max-width: 360px;
}
.summary-demo {
	background: linear-gradient(180deg, #f8fbff 0%, #eff3ff 100%);
	border: 1px solid #d9e4f8;
	margin-top: 20px;
	padding: 16px;
}
.summary-demo__items {
	display: grid;
	gap: 12px;
}
.summary-demo__items div,
.timeline-list div,
.roi-panel div,
.workspace-panel__feed div {
	border-bottom: 1px solid #d6dbe0;
	display: grid;
	gap: 12px;
	grid-template-columns: 88px 1fr;
	padding: 10px 0;
}
.summary-demo__items div:last-child,
.timeline-list div:last-child,
.workspace-panel__feed div:last-child {
	border-bottom: none;
}
.tag {
	background: #eef2fa;
	color: #647392;
}
.tag--green {
	background: #defaf6;
	color: #17988f;
}
.tag-btn {
	background: var(--surface);
	border: 1.5px solid var(--line-strong);
	border-radius: 100px;
	color: var(--ink);
	cursor: pointer;
	font: inherit;
	font-size: .92rem;
	font-weight: 500;
	min-height: 44px;
	padding: 10px 18px;
	transition: border-color .18s ease, background .18s ease;
}
.tag-btn.is-selected {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}
.tag-btn:hover {
	border-color: var(--accent);
}
.tag-counter {
	color: var(--muted);
	display: inline-block;
	font-size: .82rem;
	font-weight: 500;
	margin-left: 6px;
}
.tag-select {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.testimonial-card {
	background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
	border-color: #e0e8f7;
	display: grid;
	gap: 16px;
	padding: 24px;
}
.testimonial-card p {
	color: var(--ink);
	font-size: 1rem;
}
.testimonial-card small {
	border-top: 1px solid #e7ecf7;
	display: block;
	padding-top: 12px;
}
.testimonial-card__meta {
	display: grid;
	gap: 4px;
}
.testimonial-card__meta span,
.testimonial-card small {
	color: var(--muted);
}
.testimonial-card__placeholder {
	align-items: center;
	background: linear-gradient(180deg, #eef2ff 0%, #dde8ff 100%);
	border: 1px dashed #cad7ef;
	border-radius: 50%;
	color: var(--muted);
	display: inline-flex;
	font-size: 1rem;
	font-weight: 800;
	height: 76px;
	justify-content: center;
	letter-spacing: .04em;
	text-align: center;
	width: 76px;
}
.testimonial-grid--three {
	gap: 18px;
	grid-template-columns: repeat(3, 1fr);
}
.thread-list,
.phone-shot__list {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}
.thread-row > span:last-child,
.phone-thread > span:last-child {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: .76rem;
}
.thread-row p,
.phone-thread p {
	color: var(--muted);
	font-size: .8rem;
}
.thread-row strong,
.phone-thread strong {
	display: block;
	font-size: .92rem;
	margin-bottom: 3px;
}
.thread-row,
.phone-thread {
	align-items: start;
	background: #ffffff;
	border: 1px solid #edf1f7;
	border-radius: 18px;
	box-shadow: 0 14px 30px -28px #4150907a;
	display: grid;
	gap: 12px;
	grid-template-columns: 42px 1fr auto;
	padding: 12px;
}
.thread-row--active {
	background: linear-gradient(180deg, #f7f4ff 0%, #f8fafe 100%);
	border-color: #dacffd;
	box-shadow: inset 3px 0 0 #a56dff, 0 18px 34px -28px #745bff80;
}
.timeline-list,
.roi-panel {
	background: #fffdf8;
	border: 1px solid var(--line);
	display: grid;
	gap: 0;
	padding: 0 16px;
}
.translation-strip div,
.translation-stack div {
	background: #fffdf9;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 16px;
}
.translation-strip strong,
.translation-stack strong,
.workspace-panel strong,
.roi-panel strong,
.pricing-card__price,
.step-card strong {
	display: block;
	margin-bottom: 8px;
}
.translation-strip,
.translation-stack {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}
.usecase-grid {
	grid-template-columns: repeat(3, 1fr);
}
.value-card,
.usecase-card,
.review-card,
.channel-detail-card,
.pricing-card,
.feature-tile,
.step-card,
.sidebar-card {
	padding: 24px;
}
.value-grid--four {
	grid-template-columns: repeat(4, 1fr);
}
.value-grid--three,
.pricing-grid--custom,
.channel-board--three {
	grid-template-columns: repeat(3, 1fr);
}
.voice-demo {
	display: grid;
	gap: 16px;
	padding: 22px;
}
.voice-demo,
.pricing-preview,
.channel-capability-card {
	background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
	border: 1px solid #dfe8f8;
	border-radius: var(--radius);
	box-shadow: var(--shadow-panel);
}
.voice-demo__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.voice-demo__chip {
	align-items: center;
	background: #ffffff;
	border: 1px solid #d6e0f2;
	border-radius: 999px;
	color: var(--ink-soft);
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	padding: 10px 14px;
}
.voice-demo__chip.is-active {
	background: linear-gradient(135deg, #745cff 0%, #55bfff 100%);
	border-color: #745cff;
	box-shadow: 0 18px 34px -22px #6857ff7c;
	color: #fff;
}
.voice-demo__output {
	background: linear-gradient(135deg, #f4f1ff 0%, #eef8ff 100%);
	border-color: #d5dcff;
	color: var(--ink);
}
.voice-demo__panel {
	display: grid;
	gap: 8px;
}
.voice-demo__panel label {
	color: var(--ink);
	font-weight: 700;
}
.voice-demo__top {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}
.voice-demo__top span:not(.tag){
	color: var(--muted);
	font-size: .92rem;
}
.voice-demo__top strong,
.pricing-preview__header strong {
	display: block;
	margin-bottom: 6px;
}
.voice-demo__transcript,
.voice-demo__output {
	background: #ffffff;
	border: 1px solid #dce6f5;
	border-radius: 18px;
	color: var(--ink-soft);
	line-height: 1.65;
	padding: 16px 18px;
}
.voice-demo__wave {
	align-items: end;
	background: linear-gradient(135deg, #171f38 0%, #12192c 100%);
	border-radius: 18px;
	display: flex;
	gap: 8px;
	height: 56px;
	padding: 12px 16px;
}
.voice-demo__wave span {
	animation: voiceWave 1.6s ease-in-out infinite;
	background: linear-gradient(180deg, #7d67ff 0%, #4ec3ff 100%);
	border-radius: 999px;
	display: block;
	width: 10px;
}
.voice-demo__wave span:nth-child(1){
	height: 18px;
}
.voice-demo__wave span:nth-child(2){
	animation-delay: .08s;
	height: 34px;
}
.voice-demo__wave span:nth-child(3){
	animation-delay: .16s;
	height: 48px;
}
.voice-demo__wave span:nth-child(4){
	animation-delay: .24s;
	height: 28px;
}
.voice-demo__wave span:nth-child(5){
	animation-delay: .32s;
	height: 42px;
}
.voice-demo__wave span:nth-child(6){
	animation-delay: .4s;
	height: 22px;
}
.wapps-demo {
	background: linear-gradient(180deg, #eef3fb 0%, #f8fbff 100%);
	border: 1px solid #cfd9eb;
	border-radius: 34px;
	box-shadow: 0 48px 120px -58px #060d1ea8;
	padding: 18px;
	position: relative;
	z-index: 2;
}
.wapps-demo--experience {
	padding: 20px;
}
.wapps-demo__composer {
	background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
	border-top: 1px solid #e6ecf7;
	padding: 14px 22px 20px;
}
.wapps-demo__composer-field {
	background: #ffffff;
	border: 1px solid #dce4f3;
	border-radius: 22px;
	box-shadow: inset 0 1px 0 #fff;
	margin: 10px 0 12px;
	min-height: 124px;
	padding: 18px;
}
.wapps-demo__composer-toolbar,
.wapps-demo__composer-bottom {
	align-items: center;
	color: #8a97ad;
	display: flex;
	font-size: .82rem;
	gap: 14px;
	justify-content: space-between;
}
.wapps-demo__conversation {
	max-height: 360px;
	overflow-y: auto;
	padding: 18px 22px 8px;
	scrollbar-color: #b4bfd3 #edf2f9;
	scrollbar-width: thin;
}
.wapps-demo__conversation--experience {
	max-height: 420px;
}
.wapps-demo__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.wapps-demo__head {
	align-items: center;
	border-bottom: 1px solid #e4ebf7;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 18px 22px;
}
.wapps-demo__head strong {
	font-size: 1.5rem;
	letter-spacing: -.03em;
}
.wapps-demo__main {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	min-height: 660px;
}
.wapps-demo__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}
.wapps-demo__shell {
	background: #ffffff;
	border-radius: 28px;
	display: grid;
	grid-template-columns: 312px 1fr;
	min-height: 660px;
	overflow: hidden;
}
.wapps-demo__sidebar {
	align-content: start;
	background: linear-gradient(180deg, #f8fbff 0%, #f1f5fc 100%);
	border-right: 1px solid #e1e8f5;
	display: grid;
	gap: 12px;
	padding: 18px;
}
.wapps-demo__sidebar--experience {
	grid-template-rows: auto auto repeat(4, auto);
}
.wapps-demo__sidebar-top {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding-bottom: 6px;
}
.wapps-demo__sidebar-top strong {
	font-size: 2rem;
	letter-spacing: -.04em;
}
.wapps-demo__summary {
	align-items: center;
	background: #fbfcff;
	border-top: 1px solid #e6ecf7;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 16px 22px;
}
.wapps-demo__summary p {
	max-width: 58ch;
}
.wapps-demo__summary span:first-child {
	color: #8f72ff;
	display: inline-block;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .08em;
	margin-bottom: 6px;
	text-transform: uppercase;
}
.wapps-demo__summary-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.wapps-demo__typing {
	color: #41506a;
	display: block;
	font-size: 1.02rem;
	line-height: 1.7;
	white-space: pre-wrap;
}
.wapps-demo__typing::after {
	animation: blinkCursor 1s steps(2, start) infinite;
	background: #6b52ff;
	content: '';
	display: inline-block;
	height: 1.1em;
	margin-left: 3px;
	vertical-align: -2px;
	width: 1px;
}
.wiz-sector-other.is-hidden {
	display: none;
}
.wizard-company {
	background: var(--bg);
	border-radius: var(--radius-md);
	display: grid;
	gap: 14px;
	margin-bottom: 14px;
	padding: 20px;
}
.wizard-company select {
	background: #fffdf9;
	border: 1px solid var(--line-strong);
	border-radius: 16px;
	color: var(--ink);
	font: inherit;
	outline: none;
	padding: 14px 16px;
	width: 100%;
}
.wizard-conditional {
	background: var(--bg);
	border-radius: var(--radius-sm);
	margin-top: 18px;
	padding: 18px;
}
.wizard-conditional.is-hidden {
	display: none;
}
.wizard-confirm__summary {
	background: var(--bg);
	border-radius: var(--radius-sm);
	font-size: .92rem;
	line-height: 1.7;
	margin-top: 20px;
	padding: 18px;
	text-align: left;
}
.wizard-confirmation {
	padding: 40px 20px;
	text-align: center;
}
.wizard-confirmation h2 {
	margin-bottom: 10px;
	max-width: none;
}
.wizard-confirmation.is-hidden {
	display: none;
}
.wizard-consent {
	align-items: flex-start;
	color: var(--ink-soft);
	cursor: pointer;
	display: flex;
	font-size: .92rem;
	gap: 10px;
	margin-top: 18px;
}
.wizard-consent input {
	margin-top: 3px;
	min-height: 18px;
	min-width: 18px;
}
.wizard-intro {
	color: var(--ink-soft);
	margin-bottom: 20px;
}
.wizard-review {
	background: linear-gradient(180deg, #f8fbff 0%, #eef3fc 100%);
	border: 1px solid #dbe5f5;
	border-radius: var(--radius-md);
	margin-bottom: 22px;
	padding: 20px;
}
.wizard-review h3 {
	margin-bottom: 14px;
}
.wizard-review__content {
	display: grid;
	gap: 10px;
}
.wizard-review__item {
	background: #ffffff;
	border: 1px solid #e4eaf5;
	border-radius: 16px;
	padding: 14px 16px;
}
.wizard-review__item span {
	color: var(--ink-soft);
}
.wizard-review__item strong {
	display: block;
	font-size: .88rem;
	margin-bottom: 6px;
}
.wizard-step {
	display: none;
}
.wizard-step h3 {
	margin-bottom: 18px;
}
.wizard-step-error {
	background: #fff1f1;
	border: 1px solid #f0caca;
	border-radius: 16px;
	color: #9b4b4b;
	font-weight: 600;
	margin-top: 18px;
	padding: 14px 16px;
}
.wizard-step-error.is-hidden {
	display: none;
}
.wizard-step.is-active {
	display: block;
}
.workspace-panel {
	background: linear-gradient(180deg, #f8f4ea 0%, #fffdf8 100%);
	border: 1px solid var(--line);
	padding: 20px;
}
.workspace-panel__feed {
	display: grid;
	gap: 0;
	margin-top: 16px;
}
@keyframes blinkCursor {
	0%,
	49% {
		opacity: 1;
	}
	50%,
	100% {
		opacity: 0;
	}
}
@keyframes examplesMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
@keyframes marqueeX {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@keyframes pulseGlow {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: .74;
		transform: scale(1.06);
	}
}
@keyframes voiceWave {
	0%,
	100% {
		opacity: .7;
		transform: scaleY(.72);
	}
	50% {
		opacity: 1;
		transform: scaleY(1.08);
	}
}
@media (max-width: 1080px){
	.day-rhythm {
		grid-template-columns: 1fr;
		padding: 0;
	}
	.day-rhythm__card {
		min-height: 0;
	}
	.day-rhythm__rail {
		display: none;
	}
	.day-rhythm__stop {
		align-items: start;
		grid-template-columns: auto 1fr;
	}
	.day-rhythm__stop,
	.day-rhythm__stop--top,
	.day-rhythm__stop--bottom {
		padding: 0;
	}
}
@media (max-width: 480px){
	.channel-matrix__head {
		grid-template-columns: 1fr 70px 70px;
	}
	.channel-matrix__row {
		grid-template-columns: 1fr 70px 70px;
	}
	.click-row--two {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px){
	.click-row--four {
		grid-template-columns: repeat(2, 1fr);
	}
	.click-row--three {
		grid-template-columns: 1fr;
	}
	.feature-grid--eight {
		grid-template-columns: 1fr;
	}
	.intake-modal__dialog {
		padding: 20px;
	}
	.result-grid--four {
		grid-template-columns: 1fr;
	}
	.review-grid--four {
		grid-template-columns: 1fr;
	}
	.section {
		padding: 64px 0;
	}
	.value-grid--four {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 680px){
	.form-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 700px){
	.intake-preview-ui__body {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 720px){
	.browser-shot__body {
		grid-template-columns: 1fr;
	}
	.browser-shot__sidebar {
		border-bottom: 1px solid #e5ebf6;
		border-right: none;
	}
	.case-study__grid {
		grid-template-columns: 1fr;
	}
	.container {
		padding: 0 18px;
	}
	.examples-profile-demo__grid {
		grid-template-columns: 1fr;
	}
	.profile-demo__grid {
		grid-template-columns: 1fr;
	}
	.roi-calculator__stats {
		grid-template-columns: 1fr;
	}
	.wapps-demo__summary {
		flex-direction: column;
	}
}
@media (max-width: 760px){
	body {
		padding-bottom: 96px;
	}
	.channels-compare-grid {
		grid-template-columns: 1fr;
	}
	.footer__bottom {
		flex-direction: column;
	}
	.metrics--hero {
		grid-template-columns: 1fr;
	}
	.mobile-sticky-cta {
		display: flex;
	}
}
@media (max-width: 820px){
	.wapps-demo__shell {
		grid-template-columns: 1fr;
	}
	.wapps-demo__sidebar {
		border-bottom: 1px solid #e1e8f5;
		border-right: none;
	}
}
@media (max-width: 860px){
	.origin-story {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 900px){
	.case-study {
		grid-template-columns: 1fr;
	}
	.experience-lab__intro {
		grid-template-columns: 1fr;
	}
	.footer__cols {
		justify-items: start;
	}
	.footer__inner {
		grid-template-columns: 1fr;
	}
	.section-heading--split {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 920px){
	.day-rhythm__workspace {
		grid-template-columns: 1fr;
	}
	.demo-recording-placeholder {
		grid-template-columns: 1fr;
	}
	.section {
		padding: 80px 0;
	}
}
@media (max-width: 980px){
	.bento-card {
		grid-column: span 12;
	}
	.bento-card--wide {
		grid-column: span 12;
	}
	.channel-capability-grid--three {
		grid-template-columns: 1fr;
	}
	.channel-detail-grid--two {
		grid-template-columns: 1fr;
	}
	.compare-grid--two,
	.audience-grid--two {
		grid-template-columns: 1fr;
	}
	.examples-overview {
		grid-template-columns: 1fr;
	}
	.examples-showcase {
		grid-template-columns: 1fr;
	}
	.examples-showcase--reverse > :first-child {
		order: 0;
	}
	.feature-grid--eight {
		grid-template-columns: repeat(2, 1fr);
	}
	.feature-split--reverse > :first-child {
		order: 0;
	}
	.header__actions {
		display: none;
	}
	.header__inner {
		grid-template-columns: auto 1fr auto;
	}
	.header__nav {
		display: none;
	}
	.header__toggle {
		display: inline-flex;
	}
	.hero-float--left {
		left: 0;
		top: 110px;
	}
	.hero-float--right {
		right: 0;
		top: 290px;
	}
	.hero-float--top {
		right: 18px;
	}
	.hero__grid,
	.feature-split,
	.contact-layout {
		grid-template-columns: 1fr;
	}
	.integration-showcase {
		grid-template-columns: 1fr;
	}
	.mode-grid {
		grid-template-columns: 1fr;
	}
	.result-grid--four {
		grid-template-columns: repeat(2, 1fr);
	}
	.review-grid--four {
		grid-template-columns: repeat(2, 1fr);
	}
	.shots-grid--two {
		grid-template-columns: 1fr;
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
	.testimonial-grid--three {
		grid-template-columns: 1fr;
	}
	.usecase-grid {
		grid-template-columns: 1fr;
	}
	.value-grid--four {
		grid-template-columns: repeat(2, 1fr);
	}
	.value-grid--three,
	.pricing-grid--custom,
	.channel-board--three {
		grid-template-columns: 1fr;
	}
}