:root {
	--background: #ffffff;
	--surface: #f5f7f8;
	--surface-strong: #eef2f3;
	--text: #20252a;
	--heading: #171b20;
	--muted: #68737b;
	--line: #dce2e5;
	--primary: #a42662;
	--primary-dark: #83194d;
	--teal: #6f8d8e;
	--teal-dark: #4f7173;
	--navy: #26394c;
	--white: #ffffff;
	--shadow: 0 18px 50px rgba(25, 37, 45, .10);
	--shadow-soft: 0 9px 28px rgba(25, 37, 45, .07);
	--radius: 18px;
	--container: 1220px;
}

}

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background: var(--background);
	color: var(--text);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

.section {
	padding: 92px 0;
}

.section-soft {
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

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

h1,
h2,
h3 {
	color: var(--heading);
	font-weight: 700;
	letter-spacing: -.03em;
}

h1 {
	margin-bottom: 26px;
	font-size: clamp(3rem, 5vw, 5.1rem);
	line-height: .99;
}

h1 span {
	color: var(--teal-dark);
}

h2 {
	max-width: 820px;
	margin-bottom: 20px;
	font-size: clamp(2.15rem, 3.7vw, 3.7rem);
	line-height: 1.08;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
	line-height: 1.25;
}

.eyebrow {
	margin-bottom: 17px;
	color: var(--primary);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: -.03em;
	text-transform: none;
}
.hero-kicker { font-size: 1.5rem; }

.section-intro {
	max-width: 760px;
	margin-bottom: 42px;
	color: var(--muted);
	font-size: 1.08rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 28px;
}

.brand {
	flex: 0 0 auto;
}

.brand img {
	width: 252px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: .93rem;
	font-weight: 650;
}

.site-nav > a:not(.button) {
	position: relative;
	color: #3b434a;
}

.site-nav > a:not(.button)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -9px;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .22s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav .nav-login {
	padding-left: 17px;
	border-left: 1px solid var(--line);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--heading);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-size: .95rem;
	font-weight: 750;
	line-height: 1;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 12px 26px rgba(164, 38, 98, .20);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--primary-dark);
	box-shadow: 0 15px 32px rgba(164, 38, 98, .25);
}

.button-secondary {
	background: var(--white);
	color: var(--heading);
	border-color: #bdc8cd;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: var(--surface);
}

.button-small {
	min-height: 42px;
	padding: 0 18px;
}

.hero {
	padding-top: 84px;
	padding-bottom: 78px;
	background:
		radial-gradient(circle at 76% 15%, rgba(111, 141, 142, .12), transparent 26%),
		linear-gradient(#fff, #fff);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: center;
	gap: 58px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.hero-lead {
	max-width: 620px;
	margin-bottom: 32px;
	color: var(--muted);
	font-size: 1.15rem;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-actions .button span {
	margin-left: 12px;
	font-size: 1.1rem;
}

.hero-login {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: .9rem;
}

.hero-login a,
.text-link {
	color: var(--primary);
	font-weight: 700;
}

.image-frame {
	position: relative;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.image-frame img {
	width: 100%;
	height: auto;
}

.hero-media {
	align-self: center;
}

.image-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 62px 24px 23px;
	background: linear-gradient(to top, rgba(15, 22, 27, .84), transparent);
	color: var(--white);
}

.image-caption span {
	display: block;
	margin-bottom: 3px;
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: -.03em;
}

.image-caption strong {
	font-size: 1.1rem;
}

.capability-strip {
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.capability-grid > div {
	padding: 25px 18px;
	border-right: 1px solid var(--line);
}

.capability-grid > div:first-child {
	border-left: 1px solid var(--line);
}

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

.capability-grid strong {
	color: var(--heading);
	font-size: .96rem;
}

.capability-grid span {
	margin-top: 2px;
	color: var(--muted);
	font-size: .78rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.feature-card {
	position: relative;
	min-height: 218px;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
	transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(164, 38, 98, .38);
}

.feature-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 26px;
	background: rgba(164, 38, 98, .10);
	border-radius: 7px;
	color: var(--primary);
	font-size: .72rem;
	font-weight: 700;
}

.feature-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: .93rem;
}

.focus-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: center;
	gap: 62px;
}

.focus-grid-reverse {
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.focus-copy p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.05rem;
}

.plain-image {
	box-shadow: var(--shadow-soft);
}

.check-list {
	display: grid;
	gap: 13px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 29px;
	font-weight: 650;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .57em;
	width: 9px;
	height: 9px;
	background: var(--primary);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(164, 38, 98, .10);
}

.application-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 42px;
}

.application-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.application-card img {
	width: 100%;
	height: auto;
	border-bottom: 1px solid var(--line);
}

.application-card > div {
	padding: 29px 30px 31px;
}

.application-card span {
	color: var(--primary);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .15em;
}

.application-card h3 {
	margin-top: 9px;
	font-size: 1.55rem;
}

.application-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.pricing-wrap {
	overflow-x: auto;
	margin-top: 42px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
}

.pricing-table {
	width: 100%;
	min-width: 850px;
	border-collapse: collapse;
	text-align: center;
}

.pricing-table th,
.pricing-table td {
	padding: 22px 18px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.pricing-table tr > *:last-child {
	border-right: 0;
}

.pricing-table tbody tr:last-child > * {
	border-bottom: 0;
}

.pricing-table thead th {
	background: #f8fafb;
	color: var(--heading);
	font-size: 1.02rem;
}

.pricing-table thead th:first-child,
.pricing-table tbody th {
	width: 18%;
	text-align: left;
}

.pricing-table tbody th {
	background: #fbfcfc;
	color: var(--heading);
	font-size: .91rem;
}

.pricing-table td {
	color: #384149;
	font-weight: 650;
}

.pricing-table .plan-price {
	color: var(--primary);
	font-size: 1.08rem;
	font-weight: 800;
}

.pricing-table .featured-column {
	background: rgba(111, 141, 142, .08);
}

.pricing-table thead .featured-column {
	background: var(--navy);
	color: var(--white);
}

.price-row td {
	color: var(--primary);
	font-size: .74rem;
	font-weight: 700;
}

.table-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	height: 40px;
	border: 1px solid #aebbc1;
	border-radius: 6px;
	font-size: .84rem;
	font-weight: 700;
}

.table-button:hover,
.table-button:focus-visible {
	border-color: var(--primary);
	color: var(--primary);
}

.table-button-primary {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.table-button-primary:hover,
.table-button-primary:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
}

.pricing-note {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: .85rem;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 76px;
	align-items: start;
}

.about-copy {
	padding-top: 8px;
	color: var(--muted);
	font-size: 1.05rem;
}

.about-copy p:last-child {
	margin-bottom: 0;
}

.product-tour {
	padding-top: 74px;
	padding-bottom: 74px;
}

.product-tour-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
}

.product-tour-heading h2 {
	max-width: 700px;
	font-size: clamp(1.9rem, 3vw, 3rem);
}

.product-tour-heading .section-intro {
	margin-bottom: 0;
}

.carousel-controls {
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
	padding-bottom: 4px;
}

.carousel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--white);
	border: 1px solid #bdc8cd;
	border-radius: 7px;
	color: var(--heading);
	cursor: pointer;
	font-size: 1.15rem;
	transition: background .2s ease, border-color .2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
	background: var(--surface-strong);
	border-color: var(--primary);
}

.carousel-button:disabled {
	opacity: .4;
	cursor: default;
}

.screenshot-carousel {
	display: grid;
	grid-auto-columns: minmax(230px, 28%);
	grid-auto-flow: column;
	gap: 16px;
	overflow-x: auto;
	margin-top: 35px;
	padding: 2px 2px 14px;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-color: #b9c3c7 transparent;
	scrollbar-width: thin;
}

.screenshot-card {
	overflow: hidden;
	margin: 0;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
	scroll-snap-align: start;
}

.screenshot-card img {
	width: 100%;
	height: auto;
	background: #f3f5f7;
	border-bottom: 1px solid var(--line);
}

.screenshot-open {
	display: block;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: zoom-in;
}

.screenshot-open:hover img,
.screenshot-open:focus-visible img {
	opacity: .9;
}

.screenshot-card figcaption {
	display: grid;
	gap: 3px;
	padding: 17px 18px 19px;
}

.screenshot-card figcaption strong {
	color: var(--heading);
	font-size: .96rem;
}

.screenshot-card figcaption span {
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.45;
}

.carousel-hint {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: .78rem;
}

.video-explainer {
	display: grid;
	grid-template-columns: minmax(250px, 4fr) minmax(0, 8fr);
	align-items: center;
	gap: 44px;
	margin-top: 56px;
	padding-top: 52px;
	border-top: 1px solid var(--line);
}

.video-copy h3 {
	font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.video-copy p:last-child {
	margin-bottom: 0;
	color: var(--muted);
	font-size: .95rem;
}

.video-frame {
	overflow: hidden;
	background: #0d1115;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
	aspect-ratio: 16 / 9;
}

.video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.screenshot-lightbox {
	width: min(calc(100% - 32px), 850px);
	max-width: none;
	max-height: calc(100% - 24px);
	padding: 58px 72px 24px;
	background: #11171c;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 14px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
	color: var(--white);
}

.screenshot-lightbox[open] {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) 46px;
	align-items: center;
	gap: 14px;
}

.screenshot-lightbox::backdrop {
	background: rgba(8, 12, 15, .88);
	backdrop-filter: blur(4px);
}

.screenshot-lightbox figure {
	display: grid;
	justify-items: center;
	gap: 12px;
	margin: 0;
}

.screenshot-lightbox figure img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 140px);
	background: var(--white);
	box-shadow: 0 12px 42px rgba(0, 0, 0, .42);
}

.screenshot-lightbox figcaption {
	font-size: .92rem;
	font-weight: 700;
}

.lightbox-close {
	position: absolute;
	top: 14px;
	right: 16px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 6px;
	color: var(--white);
	cursor: pointer;
	font-size: .84rem;
}

.lightbox-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	color: var(--white);
	cursor: pointer;
	font-size: 1.25rem;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
	background: var(--primary);
	border-color: var(--primary);
}

.final-cta {
	padding-top: 30px;
}

.final-cta-box {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
	align-items: center;
	gap: 40px;
	overflow: hidden;
	padding: 56px 60px;
	background:
		radial-gradient(circle at 90% 0, rgba(164, 38, 98, .17), transparent 32%),
		linear-gradient(135deg, #f4f7f7, #ffffff);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.final-cta-box h2 {
	font-size: clamp(2rem, 3.3vw, 3.15rem);
}

.final-cta-box p:not(.eyebrow) {
	max-width: 690px;
	margin-bottom: 0;
	color: var(--muted);
}

.final-actions {
	display: grid;
	gap: 12px;
}

.final-actions .text-link {
	padding: 5px;
	text-align: center;
}

.android-download {
	padding-top: 30px;
}

.android-download-inner {
	grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
}

.android-download .eyebrow {
	margin-bottom: 17px;
}

.android-download h2 {
	font-size: clamp(2rem, 3.3vw, 3.15rem);
}

.android-download-lead {
	margin-bottom: 11px !important;
	color: var(--heading) !important;
	font-size: 1.03rem !important;
	font-weight: 650;
}

.android-download-copy > p:not(.eyebrow):not(.android-download-note) {
	max-width: 700px;
	color: var(--muted);
	font-size: .96rem;
}

.android-download-note {
	margin: 15px 0 0;
	color: var(--muted);
	font-size: .78rem;
}

.android-download-action {
	display: grid;
	gap: 12px;
}

.android-phone {
	position: relative;
	width: 30px;
	height: 52px;
	border: 2px solid var(--teal-dark);
	border-radius: 6px;
}

.android-phone::before {
	position: absolute;
	top: 4px;
	left: 50%;
	width: 9px;
	height: 2px;
	content: "";
	background: var(--teal-dark);
	border-radius: 2px;
	transform: translateX(-50%);
}

.android-phone span {
	position: absolute;
	bottom: 4px;
	left: 50%;
	width: 4px;
	height: 4px;
	background: var(--teal-dark);
	border-radius: 50%;
	transform: translateX(-50%);
}

.android-download-button {
	width: auto;
	justify-self: start;
}

.site-footer {
	margin-top: 92px;
	padding: 58px 0 24px;
	background: #f6f8f9;
	border-top: 1px solid var(--line);
}

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

.footer-brand img {
	width: 250px;
	height: auto;
}

.footer-brand p {
	max-width: 320px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: .9rem;
}

.footer-grid > div:not(.footer-brand) {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-grid strong {
	margin-bottom: 6px;
	color: var(--heading);
	font-size: .86rem;
}

.footer-grid a {
	color: var(--muted);
	font-size: .88rem;
}

.footer-grid span {
	color: var(--muted);
	font-size: .88rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
	color: var(--primary);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 44px;
	padding-top: 21px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: .78rem;
}

.footer-disclaimer {
	margin-top: 16px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: .68rem;
	line-height: 1.5;
	text-align: center;
}

:focus-visible {
	outline: 3px solid rgba(164, 38, 98, .35);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.site-nav {
		gap: 18px;
	}

	.brand img {
		width: 220px;
	}

	.hero-grid,
	.focus-grid,
	.focus-grid-reverse {
		grid-template-columns: 1fr;
	}

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

	.hero-media {
		max-width: 940px;
	}

	.focus-copy {
		max-width: 850px;
	}

	.focus-grid-reverse .image-frame {
		order: 2;
	}

	.focus-grid-reverse .focus-copy {
		order: 1;
	}
}

@media (max-width: 920px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		left: 20px;
		right: 20px;
		top: 68px;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 14px;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 12px;
		box-shadow: var(--shadow);
	}

	.site-nav.open {
		display: flex;
	}

	.site-nav > a:not(.button) {
		padding: 13px 8px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav > a:not(.button)::after {
		display: none;
	}

	.site-nav .nav-login {
		padding-left: 8px;
		border-left: 0;
	}

	.site-nav .button {
		margin-top: 12px;
	}

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

	.capability-grid > div,
	.capability-grid > div:first-child {
		border-left: 0;
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.capability-grid > div:nth-child(even) {
		border-right: 0;
	}

	.capability-grid > div:last-child {
		grid-column: 1 / -1;
		border-bottom: 0;
	}

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

	.about-grid,
	.final-cta-box {
		grid-template-columns: 1fr;
	}

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

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.screenshot-carousel {
		grid-auto-columns: minmax(220px, 43%);
	}

	.video-explainer {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.section {
		padding: 66px 0;
	}

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

	.brand img {
		width: 190px;
	}

	.hero {
		padding-top: 58px;
	}

	h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	h2 {
		font-size: 2.22rem;
	}

	.hero-grid,
	.focus-grid,
	.focus-grid-reverse {
		gap: 34px;
	}

	.hero-lead {
		font-size: 1rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
	}

	.image-caption {
		padding: 48px 18px 17px;
	}

	.image-caption strong {
		font-size: .92rem;
	}

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

	.capability-grid > div,
	.capability-grid > div:nth-child(even),
	.capability-grid > div:last-child {
		grid-column: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.capability-grid > div:last-child {
		border-bottom: 0;
	}

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

	.feature-card {
		min-height: auto;
	}

	.application-card > div {
		padding: 24px;
	}

	.final-cta-box {
		padding: 38px 25px;
	}

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

	.footer-brand,
	.footer-grid > div:last-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.product-tour-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.screenshot-carousel {
		grid-auto-columns: minmax(230px, 82%);
		margin-top: 27px;
	}

	.video-explainer {
		gap: 25px;
		margin-top: 42px;
		padding-top: 40px;
	}

	.screenshot-lightbox {
		width: calc(100% - 12px);
		padding: 56px 6px 18px;
	}

	.screenshot-lightbox[open] {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		gap: 5px;
	}

	.lightbox-arrow {
		width: 40px;
		height: 40px;
	}
}

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

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

/* Partner section */
.trial-note {
	max-width: 620px;
	margin: 18px 0 0;
	padding: 12px 15px;
	background: rgba(164, 38, 98, .07);
	border-left: 3px solid var(--primary);
	color: #4f5960;
	font-size: .9rem;
}

.trial-note strong {
	color: var(--heading);
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 42px;
}

.partner-card {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	min-height: 410px;
	padding: 31px;
	background: var(--white);
	border: 1px solid var(--line);
	border-top: 4px solid var(--primary);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
}

.partner-label {
	display: inline-block;
	margin-bottom: 23px;
	color: var(--primary);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .15em;
}

.partner-card h3 {
	font-size: 1.45rem;
}

.partner-card p {
	margin-bottom: 28px;
	color: var(--muted);
	font-size: .94rem;
}

.partner-card .button {
	box-sizing: border-box;
	width: 100%;
	margin-top: auto;
}

.partner-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: 18px;
	padding: 30px 32px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.partner-cta h3 {
	margin-bottom: 5px;
	font-size: 1.35rem;
}

.partner-cta p {
	margin-bottom: 0;
	color: var(--muted);
}

/* Registration and partner enquiry pages */
.form-page {
	background: var(--surface);
}

.form-page .site-header {
	background: rgba(255, 255, 255, .98);
}

.page-hero {
	padding: 70px 0 34px;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.page-hero h1 {
	max-width: 900px;
	margin-bottom: 18px;
	font-size: clamp(2.55rem, 5vw, 4.4rem);
	line-height: 1.03;
}

.page-hero p:not(.eyebrow) {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.06rem;
}

.form-section {
	padding: 56px 0 88px;
}

.form-layout {
	display: grid;
	grid-template-columns: minmax(250px, 4fr) minmax(0, 8fr);
	align-items: start;
	gap: 30px;
}

.form-aside,
.form-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
}

.form-aside {
	padding: 28px;
}

.form-aside h2 {
	margin-bottom: 13px;
	font-size: 1.55rem;
}

.form-aside p {
	color: var(--muted);
	font-size: .93rem;
}

.form-aside p:last-child {
	margin-bottom: 0;
}

.form-aside .check-list {
	margin-top: 25px;
}

.form-aside .check-list li {
	font-size: .9rem;
}

.form-card {
	padding: 34px;
}

.form-card h2 {
	margin-bottom: 8px;
	font-size: 1.85rem;
}

.form-card-intro {
	margin-bottom: 28px;
	color: var(--muted);
	font-size: .94rem;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.form-field {
	display: grid;
	gap: 7px;
}

.form-field-full {
	grid-column: 1 / -1;
}

.form-field label {
	color: var(--heading);
	font-size: .86rem;
	font-weight: 750;
}

.required {
	color: var(--primary);
}

.form-input,
.form-textarea {
	width: 100%;
	border: 1px solid #bdc8cd;
	border-radius: 7px;
	background: var(--white);
	color: var(--text);
	font: inherit;
	outline: 0;
	transition: border-color .18s ease, box-shadow .18s ease;
}

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

.form-textarea {
	min-height: 142px;
	padding: 12px 13px;
	resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(164, 38, 98, .12);
}

.form-hint {
	margin: 0;
	color: var(--muted);
	font-size: .76rem;
}

.form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.form-actions p {
	margin: 0;
	color: var(--muted);
	font-size: .8rem;
}

.notice {
	margin-bottom: 24px;
	padding: 15px 17px;
	border: 1px solid;
	border-radius: 8px;
	font-size: .91rem;
}

.notice strong {
	display: block;
	margin-bottom: 3px;
}

.notice-success {
	background: #edf8f2;
	border-color: #a8d9bd;
	color: #245c3d;
}

.notice-warning {
	background: #fff8e7;
	border-color: #e5c66c;
	color: #6e5514;
}

.notice-error {
	background: #fff0f0;
	border-color: #e1aaaa;
	color: #7e2d2d;
}

.error-list {
	margin: 8px 0 0;
	padding-left: 19px;
}

.account-steps {
	margin: 20px 0 0;
	padding-left: 21px;
	color: var(--muted);
	font-size: .9rem;
}

.account-steps li + li {
	margin-top: 8px;
}

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

.form-page-footer {
	margin-top: 0;
}

@media (max-width: 920px) {
	.partner-grid {
		grid-template-columns: 1fr;
	}

	.partner-card {
		min-height: auto;
	}

	.form-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.partner-cta,
	.form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.partner-cta .button,
	.form-actions .button {
		width: 100%;
	}

	.page-hero {
		padding-top: 50px;
	}

	.form-section {
		padding-top: 32px;
	}

	.form-card,
	.form-aside {
		padding: 24px;
	}

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

	.form-field-full {
		grid-column: auto;
	}
}


/* Bootstrap form/table refinements */
.form-table-wrap {
	border: 1px solid #d7dfe3;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 24px rgba(27, 39, 51, .06);
}

.form-entry-table {
	--bs-table-bg: #fff;
	--bs-table-border-color: #dfe5e8;
	color: var(--text);
}

.form-entry-table > :not(caption) > * > * {
	padding: 16px;
}

.form-entry-table th {
	width: 29%;
	min-width: 170px;
	background: #f5f7f8;
	color: var(--heading);
	font-size: .88rem;
	font-weight: 750;
	vertical-align: top;
}

.form-entry-table td {
	background: #fff;
}

.form-card .form-control {
	min-height: 48px;
	border: 1px solid #aebbc2;
	border-radius: 7px;
	background-color: #fff;
	color: #20252a;
	font-size: .96rem;
	box-shadow: inset 0 1px 2px rgba(27, 39, 51, .04);
}

.form-card textarea.form-control {
	min-height: 142px;
	line-height: 1.5;
	resize: vertical;
}

.form-card .form-control::placeholder {
	color: #7b8991;
	opacity: 1;
}

.form-card .form-control:hover {
	border-color: #83949d;
}

.form-card .form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 .22rem rgba(164, 38, 98, .14);
}

.form-card .form-label {
	color: var(--heading);
	font-size: .88rem;
	font-weight: 750;
}

.form-card .form-text {
	color: var(--muted);
	font-size: .78rem;
}

.submission-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.notice-success {
	padding: 20px;
	border-width: 1px;
	font-size: 1rem;
	box-shadow: 0 8px 24px rgba(36, 92, 61, .08);
}

.notice-success strong {
	margin-bottom: 6px;
	font-size: 1.12rem;
}

@media (max-width: 640px) {
	.form-entry-table,
	.form-entry-table tbody,
	.form-entry-table tr,
	.form-entry-table th,
	.form-entry-table td {
		display: block;
		width: 100%;
	}

	.form-entry-table th {
		min-width: 0;
		padding: 12px 14px 7px;
		border-bottom: 0;
	}

	.form-entry-table td {
		padding: 7px 14px 14px;
	}

	.form-entry-table tr + tr th {
		border-top: 1px solid #dfe5e8;
	}

	.submission-actions {
		flex-direction: column;
	}

	.submission-actions .button {
		width: 100%;
	}
}

/* Footer overrides kept at the end so existing page styles remain unchanged. */
.site-footer{margin-top:72px;padding:42px 0 20px;background:#12151c;border-top:1px solid #252b36;color:#eef1f4}
.site-footer .footer-grid{display:grid;grid-template-columns:minmax(220px,1.35fr) repeat(2,minmax(130px,.8fr)) minmax(220px,1.15fr);gap:36px;align-items:start}
.site-footer .footer-brand,.site-footer .footer-grid>nav,.site-footer .footer-contact{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.site-footer .footer-brand img{width:196px;padding:7px;background:#fff;border-radius:6px}
.site-footer .footer-brand p{max-width:260px;margin:7px 0 0;color:#c3cbd3;font-size:.88rem}
.site-footer .footer-grid strong{margin:0 0 8px;color:#fff;font-size:.86rem;font-weight:600;letter-spacing:.01em}
.site-footer .footer-grid a,.site-footer .footer-grid span{color:#c3cbd3;font-size:.86rem;line-height:1.45}
.site-footer .footer-grid a:hover,.site-footer .footer-grid a:focus-visible{color:#fff}
.site-footer .footer-grid a:focus-visible,.site-footer .footer-bottom a:focus-visible{outline:2px solid #f08ab8;outline-offset:3px;border-radius:3px}
.site-footer .footer-whatsapp{margin-top:7px;padding:9px 15px;background:var(--primary);border-radius:6px;color:#fff!important;font-weight:700}
.site-footer .footer-whatsapp:hover,.site-footer .footer-whatsapp:focus-visible{background:var(--primary-dark);color:#fff!important}
.site-footer .footer-bottom{display:flex;flex-wrap:wrap;align-items:center;gap:8px 24px;margin-top:34px;padding-top:18px;border-top:1px solid #303743;color:#c3cbd3;font-size:.76rem}
.site-footer .footer-bottom span:nth-child(2){flex:1 1 360px}
.site-footer .footer-bottom a{color:#e1e6ea;font-size:.76rem}
.site-footer .footer-bottom a:hover{color:#f08ab8}
@media (max-width:900px){.site-footer .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:30px 42px}.site-footer .footer-brand,.site-footer .footer-contact{grid-column:span 2}}
@media (max-width:640px){.site-footer{margin-top:56px;padding-top:40px;padding-bottom:20px}.site-footer .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 24px}.site-footer .footer-brand,.site-footer .footer-contact{grid-column:1/-1}.site-footer .footer-bottom{align-items:flex-start;flex-direction:column;gap:6px}.site-footer .footer-bottom span:nth-child(2){flex-basis:auto}}

/* Keep partner actions inside the shared section container at every width. */
.partner-grid,
.partner-card,
.partner-cta,
.partner-cta > div {
	min-width: 0;
}

.partner-card .button,
.partner-cta .button {
	max-width: 100%;
	white-space: normal;
	text-align: center;
}

.partner-cta .button {
	flex: 0 1 auto;
}

/* Homepage workflow, requirements and FAQ */
.how-it-works-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 42px;
}

.how-it-works-card {
	min-width: 0;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
}

.how-it-works-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 20px;
	background: rgba(164, 38, 98, .10);
	border-radius: 7px;
	color: var(--primary);
	font-size: .72rem;
	font-weight: 700;
}

.how-it-works-card p,
.requirements-intro > p,
.requirement-card small,
.compatibility-note {
	color: var(--muted);
}

.requirements-layout {
	display: grid;
	grid-template-columns: minmax(220px, 5fr) minmax(0, 7fr);
	gap: 62px;
	align-items: start;
}

.requirements-intro h2 {
	margin-bottom: 18px;
}

.requirements-content {
	min-width: 0;
}

.requirements-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.requirement-card {
	display: flex;
	min-width: 0;
	min-height: 145px;
	padding: 23px;
	flex-direction: column;
	justify-content: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
}

.requirement-card strong {
	margin-bottom: 7px;
	color: var(--primary);
	font-size: .72rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.requirement-card span {
	color: var(--heading);
	font-size: 1.08rem;
	font-weight: 750;
}

.requirement-card small {
	margin-top: 4px;
	font-size: .82rem;
}

.compatibility-panel {
	margin-top: 16px;
	padding: 27px;
	background: var(--navy);
	border-radius: 12px;
	color: var(--white);
}

.compatibility-panel h3 {
	margin-bottom: 15px;
	color: var(--white);
	font-size: 1.12rem;
}

.compatibility-panel .compatibility-note {
	color: #dce1eb;
}

.compatibility-panel .compatibility-note strong {
	color: #ffffff;
}

.compatibility-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 25px;
	margin: 0;
	padding-left: 19px;
}

.compatibility-list li {
	color: #edf2f5;
	font-size: .86rem;
}

.compatibility-note {
	margin: 21px 0 0;
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, .20);
	font-size: .82rem;
}

.compatibility-note strong {
	color: var(--white);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
	margin-top: 42px;
}

.faq-item {
	min-width: 0;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--shadow-soft);
}

.faq-item summary {
	position: relative;
	padding: 20px 52px 20px 22px;
	color: var(--heading);
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}

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

.faq-item summary::after {
	position: absolute;
	right: 22px;
	top: 50%;
	content: "+";
	color: var(--primary);
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1;
	transform: translateY(-50%);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item summary:focus-visible {
	outline: 3px solid rgba(164, 38, 98, .35);
	outline-offset: -3px;
	border-radius: 10px;
}

.faq-answer {
	padding: 0 22px 21px;
	border-top: 1px solid var(--line);
}

.faq-answer p {
	margin: 17px 0 0;
	color: var(--muted);
	font-size: .93rem;
}

@media (max-width: 900px) {
	.requirements-layout,
	.faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.android-download {
		padding: 30px 0;
	}

	.android-download-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 26px 24px;
	}

	.android-download-action {
		justify-content: space-between;
	}

	.how-it-works-grid,
	.requirements-grid,
	.compatibility-list {
		grid-template-columns: 1fr;
	}

	.how-it-works-card,
	.requirement-card,
	.compatibility-panel {
		padding: 23px;
	}
}

/* Proven technology maturity section */
.maturity-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 62px;
	align-items: center;
}

.maturity-copy {
	min-width: 0;
}

.maturity-copy h2 {
	max-width: 560px;
}

.maturity-copy p {
	max-width: 570px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.03rem;
}

.maturity-media {
	min-width: 0;
}

.maturity-media img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.maturity-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.maturity-copy h2,
	.maturity-copy p {
		max-width: none;
	}
}
