:root {
	--landing-bg: #0b1020;
	--landing-bg-secondary: #121a2b;
	--landing-surface: #182235;
	--landing-surface-elevated: #1e2a40;
	--landing-border: #2a3753;
	--landing-text: #f5f7fb;
	--landing-text-secondary: #a8b3c7;
	--landing-text-tertiary: #d1d6e0;
	--landing-accent: #4da3ff;
	--landing-teal: #3dd9c5;
	--landing-glow: #78b8ff;
	--landing-highlight: #8ef2e4;
	--landing-gradient: linear-gradient(135deg, #4da3ff 0%, #3dd9c5 100%);
	--landing-gradient-secondary: linear-gradient(135deg, #182235 0%, #121a2b 100%);
	--landing-radius-xl: 32px;
	--landing-radius-lg: 24px;
	--landing-transition: 220ms ease;
	--landing-container: min(1440px, calc(100% - 32px));
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		radial-gradient(circle at 0% 0%, rgba(77, 163, 255, 0.16), transparent 32%),
		radial-gradient(circle at 100% 10%, rgba(61, 217, 197, 0.12), transparent 28%),
		linear-gradient(180deg, #0b1020 0%, #0e1424 42%, #121a2b 100%);
	color: var(--landing-text);
	font-family: "Inter", "aktiv-grotesk", "aktiv-grotesk-thin", sans-serif;
}

.bg-orbit {
	background:
		radial-gradient(circle at 16% 16%, rgba(77, 163, 255, 0.12), transparent 32%),
		radial-gradient(circle at 82% 18%, rgba(61, 217, 197, 0.1), transparent 26%),
		radial-gradient(circle at 75% 75%, rgba(120, 184, 255, 0.08), transparent 28%);
	opacity: 1;
}

.landing-page {
	position: relative;
	overflow: clip;
}

.landing-page::before,
.landing-page::after {
	content: "";
	position: absolute;
	inset: auto;
	pointer-events: none;
	filter: blur(80px);
	opacity: 0.32;
}

.landing-page::before {
	top: 120px;
	left: -120px;
	width: 320px;
	height: 320px;
	background: rgba(77, 163, 255, 0.22);
}

.landing-page::after {
	top: 620px;
	right: -100px;
	width: 280px;
	height: 280px;
	background: rgba(61, 217, 197, 0.16);
}

.landing-container {
	width: var(--landing-container);
	margin: 0 auto;
}

.landing-header-wrap {
	position: sticky;
	top: 0;
	z-index: 20;
	padding-top: 16px;
}

.landing-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: rgba(18, 26, 43, 0.6);
	backdrop-filter: blur(18px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.landing-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: var(--landing-text);
	text-decoration: none;
}

.landing-brand-logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.landing-brand-copy strong {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.landing-brand-copy span {
	display: block;
	font-size: 0.84rem;
	color: var(--landing-text-tertiary);
}

.landing-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.landing-menu-toggle,
.landing-mobile-nav,
.landing-mobile-overlay {
	display: none;
}

.landing-menu-toggle {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	padding: 10px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.landing-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--landing-text);
}

.landing-mobile-nav {
	position: fixed;
	top: 86px;
	right: 16px;
	left: 16px;
	z-index: 80;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(11, 16, 32, 0.96);
	backdrop-filter: blur(14px);
	padding: 12px;
	flex-direction: column;
	gap: 6px;
	transform: translateY(-10px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--landing-transition), transform var(--landing-transition), visibility var(--landing-transition);
}

.landing-mobile-nav a {
	display: block;
	border-radius: 10px;
	padding: 11px 12px;
	color: var(--landing-text-secondary);
	text-decoration: none;
}

.landing-mobile-nav a:hover,
.landing-mobile-nav a:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	color: var(--landing-text);
}

.landing-mobile-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(4, 8, 16, 0.56);
	border: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--landing-transition);
}

.landing-nav a,
.landing-link-secondary,
.landing-footer-links a {
	color: var(--landing-text-secondary);
	text-decoration: none;
	transition: color var(--landing-transition);
}

.landing-nav a {
	font-size: 0.95rem;
}

.landing-nav a:hover,
.landing-nav a:focus-visible,
.landing-link-secondary:hover,
.landing-link-secondary:focus-visible,
.landing-footer-links a:hover,
.landing-footer-links a:focus-visible {
	color: var(--landing-text);
}

.landing-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.landing-link-secondary {
	font-size: 0.95rem;
}

.landing-button,
.landing-button-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 16px;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: -0.01em;
	transition:
		transform var(--landing-transition),
		box-shadow var(--landing-transition),
		border-color var(--landing-transition),
		background var(--landing-transition),
		color var(--landing-transition);
}

.landing-button {
	color: #07111f;
	background: var(--landing-gradient);
	box-shadow: 0 14px 28px rgba(77, 163, 255, 0.18);
}

.landing-button:hover,
.landing-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(77, 163, 255, 0.2);
}

.landing-button-ghost {
	color: var(--landing-text);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
}

.landing-button-ghost:hover,
.landing-button-ghost:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(120, 184, 255, 0.28);
	background: rgba(255, 255, 255, 0.06);
}

.landing-hero {
	padding: 46px 0 36px;
}

.landing-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
	align-items: center;
	gap: 34px;
}

.landing-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(120, 184, 255, 0.2);
	background: rgba(255, 255, 255, 0.04);
	color: #dce8fb;
	font-size: 0.92rem;
}

.landing-eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--landing-gradient);
	box-shadow: 0 0 18px rgba(61, 217, 197, 0.55);
}

.landing-hero-copy h1 {
	max-width: 12ch;
	margin-top: 20px;
	font-size: clamp(2.8rem, 6vw, 5.6rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	font-weight: 600;
}

.landing-hero-copy p {
	max-width: 640px;
	margin-top: 22px;
	color: var(--landing-text-secondary);
	font-size: 1.08rem;
	line-height: 1.8;
}

.landing-hero-actions,
.landing-proof,
.landing-footer-links {
	display: flex;
	flex-wrap: wrap;
}

.landing-hero-actions {
	gap: 14px;
	margin-top: 30px;
}

.landing-hero-store-row {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.landing-hero-store-row.is-under-phone {
	margin-top: 16px;
	justify-content: center;
}

.landing-hero-store-link {
	display: block;
	max-width: 210px;
	border-radius: 0;
	overflow: visible;
	border: 0;
}

.landing-hero-store-link img {
	display: block;
	width: 100%;
	height: auto;
}

.landing-proof {
	gap: 12px;
	margin-top: 30px;
}

.landing-proof span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--landing-text-secondary);
	font-size: 0.92rem;
}

.landing-proof span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--landing-highlight);
	box-shadow: 0 0 16px rgba(142, 242, 228, 0.45);
}

.landing-hero-visual {
	position: relative;
	min-height: 690px;
	display: grid;
	place-items: center;
}

.landing-hero-orb {
	position: absolute;
	inset: 15% 12% auto;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(77, 163, 255, 0.18), transparent 60%);
	filter: blur(12px);
}

.landing-phone {
	position: relative;
	z-index: 2;
	width: min(100%, 380px);
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	animation: phoneFloat 5.8s ease-in-out infinite;
}

.landing-phone::before {
	content: none;
}

.landing-phone-screen {
	overflow: visible;
	border-radius: 0;
	background: transparent;
	border: 0;
}

.landing-phone-image {
	display: block;
	width: 100%;
	height: auto;
}

.phone-status,
.phone-appbar,
.phone-panel-head,
.phone-report-preview,
.landing-header,
.landing-footer-inner,
.landing-plan-row-head {
	display: flex;
	align-items: center;
}

.phone-status {
	justify-content: space-between;
	padding: 18px 20px 12px;
	color: #cfd9ea;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
}

.phone-status-dots {
	display: flex;
	gap: 6px;
}

.phone-status-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
}

.phone-appbar {
	justify-content: space-between;
	gap: 12px;
	padding: 0 20px 18px;
}

.phone-appbar strong {
	font-size: 1.02rem;
	letter-spacing: -0.02em;
}

.phone-appbar span {
	color: var(--landing-text-tertiary);
	font-size: 0.86rem;
}

.phone-appbar-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(77, 163, 255, 0.12);
	border: 1px solid rgba(77, 163, 255, 0.16);
	color: #ddecff;
	font-size: 0.84rem;
}

.phone-photo {
	position: relative;
	margin: 0 20px;
	height: 250px;
	border-radius: 24px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(9, 13, 22, 0.12), rgba(9, 13, 22, 0.46)),
		linear-gradient(140deg, #3b4658 0%, #617287 26%, #2f3a4b 58%, #1b2431 100%);
}

.phone-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 42px 42px;
	mix-blend-mode: screen;
	opacity: 0.18;
}

.phone-photo-marker,
.phone-photo-arrow,
.phone-photo-label,
.landing-floating-card {
	position: absolute;
}

.phone-photo-marker {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #8ef2e4;
	box-shadow: 0 0 0 6px rgba(61, 217, 197, 0.08);
}

.phone-photo-marker.is-a {
	top: 34px;
	left: 72px;
}

.phone-photo-marker.is-b {
	right: 82px;
	bottom: 58px;
}

.phone-photo-arrow {
	width: 72px;
	height: 2px;
	background: linear-gradient(90deg, #8ef2e4 0%, transparent 100%);
	transform-origin: left center;
}

.phone-photo-arrow.is-a {
	top: 44px;
	left: 88px;
	transform: rotate(18deg);
}

.phone-photo-arrow.is-b {
	right: 88px;
	bottom: 68px;
	width: 86px;
	transform: rotate(-20deg);
}

.phone-photo-label {
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 14px;
	background: rgba(11, 16, 32, 0.84);
	border: 1px solid rgba(142, 242, 228, 0.14);
	color: #e8f9f6;
	font-size: 0.78rem;
	line-height: 1.4;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.phone-photo-label.is-a {
	top: 18px;
	left: 168px;
}

.phone-photo-label.is-b {
	right: 18px;
	bottom: 24px;
}

.phone-sections,
.landing-side-list,
.landing-section-head,
.landing-feature-grid,
.landing-steps-grid,
.landing-use-grid,
.landing-plan-grid,
.landing-plan-capabilities,
.landing-history-ui,
.landing-editor-ui,
.landing-use-scene,
.landing-mini-ui,
.landing-history-copy,
.phone-lines {
	display: grid;
}

.phone-sections {
	gap: 12px;
	padding: 18px 20px 22px;
}

.phone-panel {
	padding: 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-panel-head {
	justify-content: space-between;
	gap: 12px;
}

.phone-panel-head strong {
	font-size: 0.96rem;
	letter-spacing: -0.02em;
}

.phone-panel-head span {
	color: var(--landing-text-tertiary);
	font-size: 0.8rem;
}

.phone-lines {
	gap: 10px;
	margin-top: 14px;
}

.phone-lines span,
.landing-editor-field span,
.landing-history-copy span,
.landing-pdf-page span {
	display: block;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(245, 247, 251, 0.9) 0%, rgba(168, 179, 199, 0.18) 100%);
}

.phone-lines span:nth-child(2) {
	width: 82%;
}

.phone-lines span:nth-child(3) {
	width: 68%;
}

.phone-report-preview {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 12px;
	align-items: center;
}

.phone-report-sheet {
	height: 72px;
	border-radius: 18px;
	background: linear-gradient(180deg, #f8fbff 0%, #dce9fb 100%);
}

.landing-floating-card {
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px 10px;
	min-width: 100px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgb(24 34 53 / 41%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(4px);
	flex-direction: column;
}

.landing-floating-card strong {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	font-size: 0.92rem;
	letter-spacing: -0.02em;
}

.landing-floating-card strong::before {
	content: "";
	width: 10px;
	height: 10px;
	flex: 0 0 10px;
	border-radius: 50%;
	background: #5ecf7a;
	box-shadow: 0 0 14px rgba(94, 207, 122, 0.45);
}

.landing-floating-card span {
	display: block;
	color: var(--landing-text-tertiary);
	font-size: 0.82rem;
}

.landing-floating-card::before {
	content: none;
}

.landing-floating-card.is-pdf {
	top: 127px;
	left: -58px;
	animation: floatTag 5.2s ease-in-out infinite;
}

.landing-floating-card.is-photo {
	top: 252px;
	right: -140px;
	animation: floatTag 6s ease-in-out infinite 0.8s;
}

.landing-floating-card.is-history {
	right: 28px;
	bottom: 117px;
	animation: floatTag 6.4s ease-in-out infinite 1.4s;
}

.landing-side-panel {
	position: absolute;
	right: -8px;
	top: 144px;
	z-index: 3;
	width: 220px;
	padding: 18px;
	border-radius: 24px;
	background: rgba(17, 24, 38, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

.landing-side-panel strong {
	display: block;
	font-size: 0.98rem;
	letter-spacing: -0.03em;
}

.landing-side-panel p {
	margin-top: 8px;
	color: var(--landing-text-secondary);
	font-size: 0.86rem;
	line-height: 1.65;
}

.landing-side-list {
	gap: 10px;
	margin-top: 16px;
}

.landing-side-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--landing-text-secondary);
	font-size: 0.84rem;
	list-style: none;
}

.landing-side-list li::before {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: 6px;
	border-radius: 50%;
	background: var(--landing-highlight);
	flex: 0 0 auto;
}

.landing-section {
	padding: 64px 0;
	scroll-margin-top: 60px;
}

.landing-section.is-alt {
	background: linear-gradient(180deg, rgba(18, 26, 43, 0.68) 0%, rgba(11, 16, 32, 0) 100%);
}

.landing-section-head {
	/* max-width: 760px; */
	margin-bottom: 30px;
}

.landing-section-kicker,
.landing-plan-label {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--landing-text-secondary);
	border: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.84rem;
	display: none;
}

.landing-section-head h2,
.landing-cta-card h2 {
	margin-top: 16px;
	line-height: 1.02;
	letter-spacing: -0.045em;
	font-weight: 600;
}

.landing-section-head h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.landing-section-head p,
.landing-feature-card p,
.landing-step-card p,
.landing-use-card p,
.landing-plan-card p,
.landing-cta-card p {
	margin-top: 14px;
	color: var(--landing-text-secondary);
	line-height: 1.78;
}

.landing-feature-grid {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
}

.landing-feature-card,
.landing-step-card,
.landing-use-card,
.landing-plan-card,
.landing-cta-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--landing-radius-xl);
	background: linear-gradient(180deg, rgba(24, 34, 53, 0.9), rgba(18, 26, 43, 0.86));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(18px);
}

.landing-feature-card::after,
.landing-step-card::after,
.landing-use-card::after,
.landing-plan-card::after,
.landing-cta-card::after {
	content: "";
	position: absolute;
	inset: auto 18px 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(142, 242, 228, 0.16), transparent);
}

.landing-feature-card {
	grid-column: span 4;
	padding: 24px;
	transition:
		transform var(--landing-transition),
		border-color var(--landing-transition),
		box-shadow var(--landing-transition);
}

.landing-feature-card.is-half {
	grid-column: span 6;
}

.landing-feature-card:hover,
.landing-feature-card:focus-within,
.landing-use-card:hover,
.landing-use-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(120, 184, 255, 0.2);
}

.landing-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	color: #d7f2ff;
}

.landing-card-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
}

.landing-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.landing-card-head h3 {
	margin-top: 0;
}

.landing-feature-card h3,
.landing-step-card h3,
.landing-use-card h3,
.landing-plan-card h3 {
	font-size: 1.2rem;
	letter-spacing: -0.03em;
	font-weight: 600;
}

.landing-mini-ui {
	margin-top: 22px;
	padding: 18px;
	border-radius: 20px;
	background: rgba(11, 16, 32, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-camera-ui,
.landing-history-ui,
.landing-editor-ui,
.landing-pdf-ui,
.landing-annotation-ui,
.landing-camera-photo {
	min-height: 160px;
}

.landing-camera-ui,
.landing-annotation-ui,
.landing-camera-photo {
	position: relative;
	overflow: hidden;
}

.landing-camera-photo {
	padding: 0;
}

.landing-camera-photo img {
	display: block;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.landing-camera-photo-compact img {
	height: 300px;
}

.landing-camera-photo-tall img {
	height: 700px;
}

.landing-camera-ui {
	background:
		linear-gradient(180deg, rgba(13, 20, 32, 0.16), rgba(13, 20, 32, 0.5)),
		linear-gradient(140deg, #445469 0%, #5f6e83 32%, #374355 62%, #1d2632 100%);
}

.landing-camera-ui::before {
	content: "";
	position: absolute;
	inset: 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-camera-ui::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 16px;
	width: 52px;
	height: 52px;
	transform: translateX(-50%);
	border-radius: 50%;
	border: 3px solid rgba(245, 247, 251, 0.84);
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.landing-annotation-ui {
	background: linear-gradient(135deg, rgba(37, 48, 65, 1), rgba(18, 26, 43, 1));
}

.landing-annotation-ui .line,
.landing-annotation-ui .circle,
.landing-annotation-ui .note {
	position: absolute;
}

.landing-annotation-ui .line {
	height: 2px;
	background: linear-gradient(90deg, #8ef2e4 0%, transparent 100%);
}

.landing-annotation-ui .line.is-a {
	top: 52px;
	left: 34px;
	width: 80px;
	transform: rotate(12deg);
}

.landing-annotation-ui .line.is-b {
	right: 38px;
	bottom: 46px;
	width: 94px;
	transform: rotate(-18deg);
}

.landing-annotation-ui .circle {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid #8ef2e4;
}

.landing-annotation-ui .circle.is-a {
	top: 36px;
	left: 16px;
}

.landing-annotation-ui .circle.is-b {
	right: 16px;
	bottom: 24px;
}

.landing-annotation-ui .note {
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 12px;
	background: rgba(11, 16, 32, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #edf7ff;
	font-size: 0.76rem;
}

.landing-annotation-ui .note.is-a {
	top: 24px;
	left: 82px;
}

.landing-annotation-ui .note.is-b {
	right: 24px;
	bottom: 14px;
}

.landing-editor-ui,
.landing-history-ui {
	gap: 12px;
}

.landing-editor-field,
.landing-history-row {
	padding: 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-editor-field span {
	margin-bottom: 10px;
}

.landing-editor-field span:last-child {
	width: 70%;
	margin-bottom: 0;
}

.landing-pdf-ui {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-items: end;
}

.landing-pdf-page {
	height: 144px;
	padding: 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, #f8fbff 0%, #dbe8f8 100%);
	box-shadow: 0 16px 28px rgba(3, 8, 20, 0.12);
}

.landing-pdf-page span {
	margin-top: 10px;
	background: rgba(27, 43, 72, 0.12);
}

.landing-pdf-page span:first-child {
	width: 64%;
	margin-top: 0;
}

.landing-history-row {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 12px;
	align-items: center;
}

.landing-history-thumb {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(77, 163, 255, 0.16), rgba(61, 217, 197, 0.16));
}

.landing-history-copy {
	gap: 10px;
}

.landing-history-copy span+span {
	width: 76%;
}

.landing-history-status {
	min-width: 62px;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(61, 217, 197, 0.1);
	color: #d9fbf7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.76rem;
}

.landing-steps-grid,
.landing-use-grid,
.landing-plan-grid {
	gap: 18px;
}

.landing-steps-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-step-card,
.landing-use-card,
.landing-plan-card {
	padding: 24px;
}

.landing-step-head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.landing-step-head h3 {
	margin-top: 0;
}

.landing-step-number,
.landing-plan-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.landing-step-number {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(77, 163, 255, 0.12);
	color: #e9f2ff;
	border: 1px solid rgba(77, 163, 255, 0.16);
	font-weight: 600;
}


.landing-use-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-pricing-flow {
	display: flex;
	align-items: stretch;
	gap: 22px;
}

.landing-pricing-left {
	display: flex;
	flex-direction: column;
	flex: 1.08 1 0;
	gap: 14px;
}

.landing-credit-hero {
	flex: 1 1 auto;
	padding: 42px;
	border-radius: 32px;
	background: linear-gradient(135deg, #233b6c 0%, #163647 52%, #245841 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 28px 50px rgba(0, 0, 0, 0.2);
}

.landing-credit-hero-head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.landing-credit-hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--landing-text);
}

.landing-credit-hero-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
}

.landing-credit-hero h3 {
	margin-top: 0;
	max-width: 100%;
	font-size: clamp(1.35rem, 2vw, 1rem);
	line-height: 1.08;
	letter-spacing: -0.05em;
	font-weight: 800;
	color: var(--landing-text);
}

.landing-credit-highlight {
	display: inline-block;
	background: linear-gradient(135deg, #d8ff59 0%, #58d67a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.landing-credit-hero p {
	max-width: 44rem;
	margin-top: 18px;
	color: rgba(245, 247, 251, 0.82);
	font-size: 1.08rem;
	line-height: 1.6;
}

.landing-credit-flow-list {
	display: grid;
	gap: 14px;
	margin-top: 24px;
	padding: 0;
	list-style: none;
}

.landing-credit-flow-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(245, 247, 251, 0.84);
	font-size: 1rem;
	line-height: 1.45;
}

.landing-credit-flow-list li svg {
	flex: 0 0 auto;
	margin-top: 2px;
	width: 19px;
	height: 19px;
	stroke: currentColor;
}

.landing-pricing-included h3 {
	margin-top: 0;
	font-size: 1.55rem;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.landing-pricing-included {
	display: flex;
	flex: 0.92 1 0;
}

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

.landing-credit-cost-card {
	padding: 18px;
	border-radius: 20px;
	background: rgba(23, 35, 56, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.landing-credit-cost-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.landing-credit-cost-head h4 {
	margin: 0;
	font-size: 1.12rem;
	letter-spacing: -0.02em;
	color: var(--landing-text);
}

.landing-credit-cost-card p {
	margin: 12px 0 0;
	color: var(--landing-text-secondary);
	line-height: 1.5;
	font-size: 0.95rem;
}

.landing-pricing-included-card {
	width: 100%;
	padding: 24px;
	border-radius: 24px;
	background: rgba(24, 34, 53, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

.landing-pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 14px 0;
}

.landing-pricing-feature+.landing-pricing-feature {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-pricing-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 14px;
}

.landing-pricing-feature-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
}

.landing-pricing-feature-icon.is-blue {
	background: rgba(77, 163, 255, 0.16);
	color: #5c9cff;
}

.landing-pricing-feature-icon.is-green {
	background: rgba(72, 202, 124, 0.16);
	color: #57d987;
}

.landing-pricing-feature-icon.is-orange {
	background: rgba(255, 166, 77, 0.16);
	color: #ffaf57;
}

.landing-pricing-feature-icon.is-violet {
	background: rgba(155, 123, 255, 0.16);
	color: #b394ff;
}

.landing-pricing-feature-icon.is-teal {
	background: rgba(34, 199, 184, 0.16);
	color: #49d7ca;
}

.landing-pricing-feature-icon.is-pink {
	background: rgba(255, 111, 174, 0.16);
	color: #ff87ba;
}

.landing-pricing-feature strong {
	display: block;
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--landing-text);
}

.landing-pricing-feature span {
	display: block;
	margin-top: 4px;
	color: var(--landing-text-secondary);
	line-height: 1.55;
	display: flex;
}

.landing-price-stack {
	display: flex;
	flex-direction: row;
	gap: 34px;
	max-width: 1440px;
	margin: 0 auto;
	align-items: flex-start;
}

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

.landing-price-card {
	position: relative;
	padding: 24px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(155deg, rgba(25, 39, 62, 0.94), rgba(15, 27, 45, 0.94));
	box-shadow: inset 0 0 20px rgba(120, 184, 255, 0.08), 0 20px 38px rgba(0, 0, 0, 0.24);
	display: flex;
	gap: 12px;
	transition: border-color var(--landing-transition), box-shadow var(--landing-transition);
	min-height: 340px;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}

.landing-price-card:hover {
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 20px rgba(120, 184, 255, 0.08), 0 20px 38px rgba(0, 0, 0, 0.24);
}

.landing-price-card.is-subscription {
	padding: 30px;
}

.landing-subscription-switch-card {
	max-width: none;
	width: 100%;
	margin: 0 auto;
	justify-items: center;
	text-align: center;
	height: auto;
}

.landing-subscription-area {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-content: flex-start;
	flex: 0 0 20%;
	min-width: 320px;
}

.landing-price-group-title {
	margin: 0;
	font-size: 1.28rem;
	letter-spacing: -0.02em;
	font-weight: 650;
	color: #ffffff;
}

.landing-price-group-subtitle {
	margin: -10px 0 0;
	color: #9cb1d2;
	font-size: 0.95rem;
	line-height: 1.45;
	text-align: left;
}

.landing-pack-area {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1 1 auto;
	min-width: 0;
}

.landing-price-card.is-featured {
	background: linear-gradient(145deg, rgba(37, 58, 93, 0.98), rgba(22, 45, 73, 0.98));
	border-color: rgba(98, 158, 255, 0.58);
	box-shadow: inset 0 0 28px rgba(120, 184, 255, 0.2), 0 28px 52px rgba(9, 16, 30, 0.48);
}

.landing-price-card.is-featured::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(130deg, rgba(120, 184, 255, 0.18), rgba(61, 217, 197, 0.08) 55%, transparent);
}

.landing-price-card.is-recommended {
	border-color: rgba(61, 217, 197, 0.4);
	box-shadow: inset 0 0 24px rgba(61, 217, 197, 0.1), 0 24px 44px rgba(0, 0, 0, 0.24);
}

.landing-price-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.landing-price-label {
	font-size: 1.08rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--landing-text);
}

.landing-micro-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.landing-micro-badge.is-gold {
	background: rgba(247, 214, 122, 0.12);
	border-color: rgba(247, 214, 122, 0.35);
	color: #f7d67a;
}

.landing-micro-badge.is-blue {
	background: rgba(77, 163, 255, 0.14);
	border-color: rgba(77, 163, 255, 0.38);
	color: #9bc6ff;
}

.landing-price-main {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.landing-price-amount {
	font-size: clamp(2.2rem, 3.8vw, 3.3rem);
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #f7fbff;
}

.landing-price-decimal {
	font-size: 0.46em;
	vertical-align: baseline;
	position: relative;
	top: -0.08em;
	margin-left: 1px;
}

.landing-price-period {
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--landing-text-secondary);
}

.landing-price-note {
	margin: 0;
	color: var(--landing-text-secondary);
	line-height: 1.5;
}

.landing-plan-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	padding: 4px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(11, 16, 32, 0.35);
	overflow: hidden;
}

.landing-plan-toggle::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: calc(50% - 7px);
	height: calc(100% - 8px);
	border-radius: 999px;
	background: linear-gradient(135deg, #36d981, #1fb76b);
	box-shadow: 0 0 14px rgba(49, 216, 128, 0.35);
	transform: translateX(0);
	transition: transform 240ms ease;
}

.landing-plan-toggle.is-annual::before {
	transform: translateX(calc(100% + 6px));
}

.landing-plan-toggle-text {
	border: 0;
	background: transparent;
	color: #93a3be;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 999px;
	cursor: pointer;
	transition: color var(--landing-transition), opacity 180ms ease;
	position: relative;
	z-index: 1;
}

.landing-plan-toggle-text.is-active {
	color: #eaf8f2;
}

.landing-plan-toggle-text:hover,
.landing-plan-toggle-text:focus-visible {
	transform: none !important;
	box-shadow: none !important;
}

.landing-fade-target {
	transition: opacity 180ms ease;
}

.landing-fade-target.is-fading {
	opacity: 0;
}

.landing-pricing-cost-note {
	margin-top: 12px;
	color: #b8c8e2;
	font-size: 0.98rem;
}

.landing-price-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 14px;
	border: 1px solid rgba(77, 163, 255, 0.28);
	background: linear-gradient(130deg, rgba(77, 163, 255, 0.28), rgba(61, 217, 197, 0.28));
	color: #eef6ff;
	font-weight: 600;
	text-decoration: none;
	transition: transform var(--landing-transition), box-shadow var(--landing-transition), background var(--landing-transition), border-color var(--landing-transition);
}

.landing-price-cta:hover,
.landing-price-cta:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(120, 184, 255, 0.5);
	box-shadow: 0 16px 30px rgba(77, 163, 255, 0.2);
}

.landing-price-cta.is-featured {
	background: var(--landing-gradient);
	border-color: rgba(120, 184, 255, 0.65);
	color: #081421;
}

.landing-price-cta.is-ghost {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--landing-text);
}

.landing-credit-pack-head h3 {
	margin-top: 0;
	font-size: clamp(1.55rem, 3vw, 2rem);
	letter-spacing: -0.03em;
	text-align: center;
}

.landing-credit-pack-head p {
	margin-top: 10px;
	max-width: 56ch;
	color: var(--landing-text-secondary);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.landing-credit-pack-grid {
	display: flex;
	flex-direction: row;
	gap: 18px;
	align-items: stretch;
}

.landing-pack-column {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
}

.landing-price-card.is-pack {
	min-height: 336px;
	background: linear-gradient(155deg, rgba(24, 36, 56, 0.95), rgba(14, 25, 43, 0.95));
	border-color: rgba(120, 184, 255, 0.2);
	box-shadow: inset 0 0 20px rgba(120, 184, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.22);
	text-align: center;
	justify-items: center;
	align-content: start;
}

.landing-pack-saving {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}

.landing-pack-old-price {
	margin: 0;
	color: #95a7c4;
	text-decoration: line-through;
	font-size: 0.95rem;
	font-weight: 500;
}

.landing-pack-old-price.is-neutral {
	text-decoration: none;
	opacity: 0.88;
}

.landing-pack-save-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(61, 217, 197, 0.12);
	border: 1px solid rgba(61, 217, 197, 0.34);
	color: #9af8ec;
	font-size: 0.8rem;
	font-weight: 600;
}

.landing-pack-credits {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #eaf3ff;
}

.landing-pack-bonus {
	/* margin: auto 0 0; */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(247, 214, 122, 0.35);
	background: rgba(247, 214, 122, 0.12);
	color: #f7d67a;
	font-size: 0.86rem;
	font-weight: 600;
}

.landing-pack-old-price.is-placeholder,
.landing-pack-bonus.is-placeholder {
	visibility: hidden;
}

.landing-subscription-credits {
	margin: 4px 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(247, 214, 122, 0.35);
	background: rgba(247, 214, 122, 0.12);
	color: #f7d67a;
	font-size: 0.86rem;
	font-weight: 600;
	width: fit-content;
}

.landing-subscription-bottom-badge {
	margin-top: auto;
}

.landing-estimate-note {
	margin: 8px 0 0;
	color: #9cb1d2;
	font-size: 0.9rem;
	text-align: center;
}

.landing-estimate-note.is-column-note {
	margin-top: 12px;
}

.landing-estimate-note.is-flow-disclaimer {
	margin: 40px 0 50px;
	text-align: left;
}

.landing-pack-column .landing-estimate-note.is-column-note {
	margin-top: 24px;
}

.landing-download-section .landing-section-head {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.landing-download-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: center;
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
}

.landing-store-link {
	display: block;
	border-radius: 0;
	border: 0;
	background: transparent;
	padding: 0;
	transition: none;
}

.landing-store-link:hover,
.landing-store-link:focus-visible {
	border-color: transparent;
	box-shadow: none;
}

.landing-store-link img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
	max-height: 70px;
	object-fit: contain;
}

.landing-use-scene {
	margin-top: 22px;
	height: 140px;
	border-radius: 20px;
	background: rgba(11, 16, 32, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}

.landing-use-photo {
	margin-top: 22px;
	padding: 0;
	height: 300px;
	border-radius: 20px;
	background: rgba(11, 16, 32, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.landing-use-photo img {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 20px;
}

.landing-use-scene::before,
.landing-use-scene::after {
	content: "";
	position: absolute;
}

.landing-use-scene.is-sopralluoghi::before {
	inset: 18px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(12, 17, 30, 0.08), rgba(12, 17, 30, 0.5)),
		linear-gradient(140deg, #56647a, #374456 56%, #202a39);
}

.landing-use-scene.is-sopralluoghi::after {
	left: 30px;
	top: 36px;
	width: 72px;
	height: 2px;
	background: linear-gradient(90deg, #8ef2e4, transparent);
	transform: rotate(14deg);
}

.landing-use-scene.is-cantieri::before {
	left: 18px;
	right: 18px;
	bottom: 18px;
	height: 56px;
	border-radius: 16px 16px 10px 10px;
	background: linear-gradient(180deg, rgba(77, 163, 255, 0.2), rgba(77, 163, 255, 0.06));
}

.landing-use-scene.is-cantieri::after {
	left: 42px;
	top: 28px;
	width: 102px;
	height: 102px;
	border: 2px solid rgba(255, 255, 255, 0.18);
	border-top: 0;
	border-left: 0;
	transform: skew(-18deg);
}

.landing-use-scene.is-manutenzione::before {
	top: 26px;
	left: 26px;
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(77, 163, 255, 0.2), rgba(61, 217, 197, 0.2));
}

.landing-use-scene.is-manutenzione::after {
	right: 24px;
	bottom: 26px;
	width: 74px;
	height: 14px;
	border-radius: 999px;
	background: rgba(245, 247, 251, 0.9);
	box-shadow: 0 -24px 0 rgba(245, 247, 251, 0.72), 0 -48px 0 rgba(245, 247, 251, 0.48);
}

.landing-use-scene.is-tecnici::before {
	left: 22px;
	top: 18px;
	width: 86px;
	height: 104px;
	border-radius: 20px;
	background: linear-gradient(180deg, #f8fbff 0%, #dce7f6 100%);
}

.landing-use-scene.is-tecnici::after {
	right: 24px;
	top: 36px;
	width: 86px;
	height: 72px;
	border-radius: 20px;
	background: linear-gradient(140deg, #49576b, #2d3748);
}

.landing-plan-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-plan-card {
	padding: 28px;
}

.landing-plan-card.is-premium {
	background:
		linear-gradient(180deg, rgba(24, 34, 53, 0.92), rgba(18, 26, 43, 0.88)),
		radial-gradient(circle at top right, rgba(77, 163, 255, 0.12), transparent 38%);
}

.landing-plan-head h3 {
	margin-top: 16px;
}

.landing-plan-capabilities {
	gap: 14px;
	margin-top: 22px;
}

.landing-plan-capabilities li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 14px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	list-style: none;
}

.landing-plan-capabilities li:first-child {
	border-top: 0;
	padding-top: 0;
}

.landing-plan-check {
	width: 24px;
	height: 24px;
	margin-top: 2px;
	border-radius: 50%;
	background: rgba(77, 163, 255, 0.16);
	border: 1px solid rgba(77, 163, 255, 0.22);
}

.landing-plan-check::before {
	content: "";
	width: 10px;
	height: 6px;
	border-left: 2px solid #4da3ff;
	border-bottom: 2px solid #4da3ff;
	transform: rotate(-45deg) translateY(-1px);
}

.landing-plan-capabilities strong {
	display: block;
	font-size: 1.02rem;
	letter-spacing: -0.02em;
}

.landing-plan-capabilities span {
	display: block;
	margin-top: 6px;
	color: var(--landing-text);
	display: flex;
	line-height: 1.68;
}

.landing-plan-row-head {
	justify-content: space-between;
	gap: 10px;
}

.landing-plan-row-head span {
	margin-top: 0;
}

.landing-plan-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 10px;
	background: #d0a817;
	color: #fff6d3;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.landing-comparison-note {
	margin-top: 18px;
	color: var(--landing-text-secondary);
	font-size: 0.96rem;
}

.landing-cta-card {
	padding: 44px 28px;
	text-align: center;
	background:
		radial-gradient(circle at top center, rgba(77, 163, 255, 0.18), transparent 42%),
		linear-gradient(180deg, rgba(24, 34, 53, 0.94), rgba(18, 26, 43, 0.9));
}

.landing-cta-card h2 {
	max-width: 14ch;
	margin: 0 auto;
	font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.landing-cta-card p {
	max-width: 60ch;
	margin: 18px auto 0;
}

.landing-footer {
	padding: 32px 0 48px;
}

.landing-footer-inner {
	justify-content: space-between;
	gap: 24px;
	padding: 22px 24px;
	border-radius: 24px;
	background: rgba(18, 26, 43, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
}

.landing-footer-copy strong {
	display: block;
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.landing-footer-copy span {
	display: block;
	margin-top: 6px;
	color: var(--landing-text-tertiary);
}

.landing-footer-links {
	gap: 18px;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 600ms ease,
		transform 600ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes phoneFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes floatTag {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@media (max-width: 1100px) {

	.landing-hero-grid,
	.landing-plan-grid {
		grid-template-columns: 1fr;
	}

	.landing-pricing-flow {
		flex-direction: column;
	}

	.landing-pricing-left {
		flex: 1 1 auto;
	}

	.landing-credit-pack-grid {
		flex-wrap: wrap;
	}

	.landing-price-stack {
		flex-direction: column;
	}

	.landing-subscription-area {
		flex: 1 1 auto;
		min-width: 0;
	}

	.landing-feature-card,
	.landing-feature-card.is-half {
		grid-column: span 6;
	}

	.landing-steps-grid,
	.landing-use-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.landing-side-panel {
		right: 8px;
	}
}

@media (max-width: 860px) {
	.landing-header-wrap {
		z-index: 90;
	}

	main section {
		padding: 46px 5vw !important;
	}

	.landing-header {
		flex-wrap: nowrap;
		align-items: center;
	}

	.landing-brand {
		flex: 1 1 auto;
		min-width: 0;
	}

	.landing-brand-copy {
		display: none;
	}

	.landing-brand-logo {
		content: url("/assets/images/logo-reporti-white.png");
		width: auto;
		height: 32px;
		max-width: 140px;
	}

	.landing-credit-hero {
		padding: 32px;
	}

	.landing-credit-cost-grid {
		grid-template-columns: 1fr;
	}

	.landing-subscription-grid {
		grid-template-columns: 1fr;
	}

	.landing-credit-hero-head {
		align-items: flex-start;
	}

	.landing-credit-hero h3 {
		max-width: none;
	}

	.landing-nav {
		display: none;
	}

	.landing-menu-toggle,
	.landing-mobile-nav,
	.landing-mobile-overlay {
		display: flex;
	}

	.landing-menu-toggle {
		margin-left: auto;
		flex: 0 0 auto;
	}

	.landing-mobile-overlay {
		display: block;
	}

	.landing-hero-visual {
		min-height: 620px;
	}

	.landing-floating-card.is-pdf {
		left: 14px;
	}

	.landing-floating-card.is-photo {
		right: 14px;
	}

	.landing-side-panel {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		margin-top: 18px;
	}

	body.landing-mobile-menu-open {
		overflow: hidden;
	}

	body.landing-mobile-menu-open .landing-mobile-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	body.landing-mobile-menu-open .landing-mobile-overlay {
		opacity: 1;
		pointer-events: auto;
	}
}

@media (max-width: 720px) {
	.landing-container {
		width: min(100% - 20px, 1180px);
	}

	.landing-header-wrap {
		padding-top: 10px;
	}

	.landing-header {
		border-radius: 18px;
		padding: 14px;
	}

	.landing-header-actions {
		width: 100%;
		justify-content: flex-end;
	}

	.landing-hero {
		padding-top: 24px;
	}

	.landing-hero-copy h1 {
		max-width: none;
		font-size: clamp(2.45rem, 9vw, 4rem);
		line-height: 1em;
	}

	.landing-hero-copy p {
		max-width: 640px;
		margin-top: 22px;
		color: var(--landing-text-secondary);
		font-size: 1.08rem;
		line-height: 1.2em;
	}

	.landing-section-head p,
	.landing-feature-card p,
	.landing-step-card p,
	.landing-use-card p,
	.landing-plan-card p,
	.landing-cta-card p {
		margin-top: 14px;
		color: var(--landing-text-secondary);
		line-height: 1.2;
	}

	.landing-credit-hero p {
		max-width: 44rem;
		margin-top: 18px;
		color: rgba(245, 247, 251, 0.82);
		font-size: 1.08rem;
		line-height: 1.2;
	}

	.landing-feature-grid,
	.landing-steps-grid,
	.landing-use-grid,
	.landing-plan-grid {
		grid-template-columns: 1fr;
	}

	.landing-credit-hero {
		padding: 24px;
		border-radius: 24px;
	}

	.landing-pricing-included-card {
		padding: 20px;
	}

	.landing-credit-pack-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.landing-subscription-area,
	.landing-pack-area,
	.landing-pack-column,
	.landing-pricing-included,
	.landing-pricing-left,
	.landing-subscription-grid,
	.landing-subscription-switch-card,
	.landing-price-card,
	.landing-price-card.is-pack {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.landing-price-card.is-pack {
		min-height: 190px;
		background: linear-gradient(155deg, rgba(24, 36, 56, 0.95), rgba(14, 25, 43, 0.95));
		border-color: rgba(120, 184, 255, 0.2);
		box-shadow: inset 0 0 20px rgba(120, 184, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.22);
		text-align: center;
		justify-items: center;
		align-content: start;
	}

	.landing-price-card {
		padding: 20px;
		border-radius: 20px;
	}

	.landing-feature-card,
	.landing-feature-card.is-half {
		grid-column: span 1;
	}

	.landing-feature-card,
	.landing-step-card,
	.landing-use-card,
	.landing-plan-card,
	.landing-cta-card {
		border-radius: 24px;
	}

	.landing-camera-photo-tall img {
		height: 620px;
	}

	.landing-hero-visual {
		min-height: auto;
		padding-top: 16px;
	}

	.landing-phone {
		width: min(100%, 360px);
		margin: 0 auto;
	}

	.landing-floating-card {
		min-width: 132px;
		padding: 12px 14px;
	}

	.landing-floating-card.is-pdf {
		top: 154px;
		left: 0;
	}

	.landing-floating-card.is-photo {
		top: 379px;
		right: 0;
	}

	.landing-floating-card.is-history {
		right: 12px;
		bottom: 207px;
	}

	.landing-plan-row-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.landing-footer-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.landing-footer-links {
		gap: 0;
		display: flex;
		flex-direction: column;
	}

	.landing-download-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) and (max-height: 700px) {
	.landing-camera-photo-tall img {
		height: 525px;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}