﻿/* ────── Hero ────── */
.hero {
	position: relative;
	overflow: hidden;
	padding: 80px 0 100px;
	background:
		radial-gradient(ellipse at 82% 18%, color-mix(in srgb, var(--y-400) 28%, transparent) 0%, transparent 55%),
		radial-gradient(ellipse at 8% 92%, var(--ink-100) 0%, transparent 50%), var(--bg);
}
html[data-theme="dark"] .hero {
	background:
		radial-gradient(ellipse at 82% 18%, rgba(255, 204, 0, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse at 8% 92%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), var(--bg);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}
.hero-text,
.hero-visual {
	min-width: 0;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--ink-800);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
	width: 8px;
	height: 8px;
	background: var(--y-400);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.25);
}
.hero h1 {
	font-size: clamp(40px, 5.5vw, 68px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.035em;
	margin: 0 0 20px;
}
.hero h1 .accent {
	color: var(--y-500);
}
.hero .lead {
	font-size: 18px;
	color: var(--ink-600);
	line-height: 1.65;
	margin: 0 0 32px;
	max-width: 520px;
}
.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.hero-trust {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: var(--ink-600);
}
.hero-trust .check {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}
.hero-trust .check svg {
	width: 14px;
	height: 14px;
	color: var(--y-500);
}

/* Hero visual mock */
.hero-visual {
	position: relative;
	min-height: 520px;
}
.hero-device {
	position: absolute;
	filter: drop-shadow(0 24px 44px rgba(200, 154, 43, 0.22));
	will-change: transform;
}
.hero-device img {
	display: block;
	width: 100%;
	height: auto;
}
.hero-device-tablet {
	top: 30px;
	right: -44px;
	width: min(116%, 720px);
	aspect-ratio: 16 / 10;
	padding: 8px;
	border-radius: 31px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 20px 36px rgba(200, 154, 43, 0.14);
	overflow: visible;
}
.hero-tablet-screen {
	position: absolute;
	inset: 8px;
	border-radius: 23px;
	overflow: hidden;
	background: #fff;
}
.hero-tablet-screen img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	image-rendering: auto;
	backface-visibility: hidden;
	transform: translateX(100%) translateZ(0);
	opacity: 0;
	z-index: 0;
}
.hero-tablet-screen img.is-active,
.hero-tablet-screen img.is-entering {
	opacity: 1;
	transform: translateX(0) translateZ(0);
}
.hero-tablet-screen img.is-active {
	z-index: 1;
}
.hero-tablet-screen img.is-entering {
	z-index: 2;
	transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-tablet-badge {
	position: absolute;
	right: -68px;
	top: 18px;
	z-index: 4;
	display: inline-flex;
	align-items: flex-start;
	gap: 9px;
	padding: 10px 13px 10px 11px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 204, 0, 0.42);
	box-shadow: 0 10px 22px rgba(200, 154, 43, 0.18);
	color: var(--ink-900);
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.28s ease,
		transform 0.28s ease;
	pointer-events: none;
}
.hero-tablet-badge svg {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	padding: 4px;
	box-sizing: content-box;
	border-radius: 999px;
	background: var(--y-50);
	color: var(--y-700);
	flex: 0 0 auto;
}
.hero-tablet-badge span {
	display: grid;
	gap: 2px;
	white-space: nowrap;
}
.hero-tablet-badge strong {
	font-size: 12px;
	font-weight: 800;
	line-height: 1.1;
}
.hero-tablet-badge small {
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--ink-500);
}
.hero-device-tablet.show-badge .hero-tablet-badge {
	opacity: 1;
	transform: translateY(0);
}
.hero-device-watch {
	right: 74px;
	bottom: 58px;
	width: min(16.5%, 100px);
	z-index: 3;
	filter: none;
}
.hero-device-watch::after,
.hero-device-phone::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -14px;
	z-index: -1;
	width: 104%;
	height: 14px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(120, 82, 10, 0.58) 0%, rgba(200, 154, 43, 0.32) 42%, transparent 72%);
	filter: blur(4px);
	transform: translateX(-50%);
	pointer-events: none;
}
.hero-device-watch::after {
	width: 92%;
	height: 11px;
	bottom: -9px;
	background: radial-gradient(ellipse at center, rgba(120, 82, 10, 0.52) 0%, rgba(200, 154, 43, 0.3) 44%, transparent 74%);
}
.hero-device-phone {
	right: -96px;
	bottom: 62px;
	width: min(28%, 164px);
	z-index: 2;
	filter: none;
	aspect-ratio: 9 / 18.5;
	padding: 8px;
	border: 0;
	border-radius: 29px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: none;
	overflow: visible;
}
.hero-phone-screen {
	width: 100%;
	height: 100%;
	border-radius: 21px;
	overflow: hidden;
	background: #fff;
}
.hero-phone-screen img {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	border-radius: 0;
	animation: hero-phone-screen-scroll 9s ease-in-out infinite;
}
@keyframes hero-phone-screen-scroll {
	0%,
	12% {
		transform: translateY(0);
	}
	58%,
	72% {
		transform: translateY(-24%);
	}
	100% {
		transform: translateY(0);
	}
}
.mock {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 22px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.mock-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
	background: var(--bg-soft);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-700);
}
.mock-head .dots {
	display: inline-flex;
	gap: 5px;
}
.mock-head .dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--ink-300);
}
.mock-head .dots span:first-child {
	background: #ff5f57;
}
.mock-head .dots span:nth-child(2) {
	background: #ffbd2e;
}
.mock-head .dots span:nth-child(3) {
	background: #28c940;
}
.mock-body {
	padding: 18px;
}
.mock-tabs {
	display: flex;
	gap: 6px;
	margin-bottom: 16px;
	padding: 4px;
	background: var(--bg-soft);
	border-radius: 10px;
}
.mock-tab {
	flex: 1;
	text-align: center;
	padding: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink-600);
	border-radius: 7px;
}
.mock-tab.active {
	background: var(--bg);
	color: var(--ink-900);
	box-shadow: var(--shadow-sm);
}
.mock-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 14px;
}
.mock-stat {
	padding: 10px 12px;
	background: var(--bg-soft);
	border-radius: 10px;
}
.mock-stat .lbl {
	font-size: 11px;
	color: var(--ink-500);
	font-weight: 600;
}
.mock-stat .val {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink-900);
	margin-top: 2px;
	letter-spacing: -0.02em;
}
.mock-stat .val small {
	font-size: 12px;
	color: var(--ink-500);
	font-weight: 600;
	margin-left: 2px;
}
.mock-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.mock-row {
	display: grid;
	grid-template-columns: 36px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 10px 12px;
	background: var(--bg-soft);
	border-radius: 10px;
}
.mock-row.highlight {
	background: var(--y-50);
	border: 1px solid var(--y-200);
}
.mock-num {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--ink-900);
	color: var(--bg);
	font-weight: 800;
	font-size: 12.5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mock-row.highlight .mock-num {
	background: var(--y-400);
	color: var(--ink-900);
}
.mock-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink-900);
}
.mock-meta {
	font-size: 11.5px;
	color: var(--ink-500);
	margin-top: 2px;
}
.mock-status {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--ink-100);
	color: var(--ink-600);
}
.mock-status.calling {
	background: var(--y-400);
	color: #1c1d1f;
}

/* Floating cards on hero */
.float-card {
	position: absolute;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
	animation: float 6s ease-in-out infinite;
}
.float-card.alt {
	animation-delay: -3s;
}
.float-card .ic {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--y-50);
	color: var(--y-700);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.float-card .ic svg {
	width: 18px;
	height: 18px;
}
.float-card .label {
	font-size: 11px;
	color: var(--ink-500);
	font-weight: 600;
}
.float-card .value {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink-900);
}
.float-card-1 {
	top: 24px;
	left: -28px;
}
.float-card-2 {
	top: 44%;
	right: -32px;
}
.float-card-3 {
	bottom: 32px;
	left: 8%;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* ────── Common section ────── */
.section {
	padding: 110px 0;
}
.section-eyebrow {
	font-size: 12.5px;
	letter-spacing: 0.18em;
	color: var(--y-600);
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 12px;
}
html[data-theme="dark"] .section-eyebrow {
	color: var(--y-400);
}
.section-title {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.18;
	margin: 0 0 20px;
}
.section-title em {
	color: var(--y-500);
	font-style: normal;
}
.section-sub {
	font-size: 17px;
	color: var(--ink-600);
	line-height: 1.65;
	margin: 0;
}
.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}
.section-head .section-sub {
	max-width: 560px;
	margin: 0 auto;
}

/* ────── Features grid (4 main features) ────── */
.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.feature-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 36px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s;
	overflow: hidden;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--y-200);
}
.feature-card .fc-num {
	position: absolute;
	top: 28px;
	right: 32px;
	font-size: 13px;
	font-weight: 800;
	color: var(--ink-300);
	letter-spacing: 0.1em;
}
.feature-card .fc-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: var(--y-50);
	color: var(--y-700);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.feature-card .fc-icon svg {
	width: 28px;
	height: 28px;
}
.feature-card h3 {
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 10px;
	letter-spacing: -0.02em;
}
.feature-card p {
	color: var(--ink-600);
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 24px;
}
.feature-card .fc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink-900);
	font-weight: 700;
	font-size: 14px;
}
.feature-card .fc-link svg {
	transition: transform 0.2s;
}
.feature-card:hover .fc-link svg {
	transform: translateX(4px);
}

/* AI analytics */
.ai-analytics {
	position: relative;
	padding: 110px 0;
	background: radial-gradient(circle at 86% 5%, rgba(255, 204, 0, 0.18), transparent 28%), linear-gradient(180deg, var(--bg-soft), var(--bg));
	overflow: hidden;
}
.ai-analytics-head {
	max-width: 720px;
	margin: 0 auto 52px;
	text-align: center;
}
.ai-analytics-head .section-title { margin-bottom: 0; }
.ai-analytics-head .section-sub { max-width: 560px; margin: 20px auto 0; }
.ai-dashboard-visual {
	width: 100%;
	margin: 0;
}
.ai-dashboard-visual img {
	display: block;
	width: 100%;
	height: auto;
}
.ai-benefits { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 26px; }
.ai-benefits span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 18px;
	border-right: 1px solid var(--border);
	font-size: 13px;
	font-weight: 650;
	color: var(--ink-700);
}
.ai-benefits span:last-child { border-right: 0; }
.ai-benefits b { font-size: 10px; color: var(--y-600); letter-spacing: 0.08em; }
html[data-theme="dark"] .ai-analytics { background: radial-gradient(circle at 86% 5%, rgba(255, 204, 0, 0.09), transparent 28%), var(--bg-soft); }

/* ────── Why / Compare ────── */
.compare {
	background: var(--bg-soft);
	padding: 110px 0;
}
.compare-table {
	background: var(--surface);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	max-width: 920px;
	margin: 0 auto;
}
.compare-row {
	display: grid;
	grid-template-columns: 0.9fr 1fr 1.15fr;
	align-items: stretch;
	border-bottom: 1px solid var(--border);
}
.compare-row:last-child {
	border-bottom: none;
}
.compare-cell {
	display: flex;
	align-items: center;
	padding: 22px 28px;
	font-size: 15px;
	color: var(--ink-700);
}
.compare-cell.center {
	justify-content: center;
	text-align: center;
}
.compare-head .compare-cell {
	font-weight: 800;
	font-size: 14px;
	color: var(--ink-500);
	letter-spacing: 0.02em;
	background: var(--bg-soft);
}
.compare-cell.tinkle {
	background: var(--y-50);
	color: var(--ink-900);
	font-weight: 700;
}
html[data-theme="dark"] .compare-cell.tinkle {
	color: var(--y-400);
}
.compare-row .compare-cell:first-child {
	font-weight: 700;
	color: var(--ink-900);
}
.check-y {
	color: var(--y-500);
	font-weight: 800;
	font-size: 18px;
}
.x-mark {
	color: var(--ink-400);
	font-weight: 600;
}

/* ────── Add-ons / 부가서비스 ────── */
.addons-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.addon-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 26px 22px;
	transition:
		transform 0.2s,
		border-color 0.2s,
		background 0.2s;
}
.addon-card:hover {
	transform: translateY(-3px);
	border-color: var(--y-300);
	background: var(--bg-cream);
}
.addon-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ink-100);
	color: var(--ink-800);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.addon-card:hover .addon-icon {
	background: var(--y-400);
	color: var(--ink-900);
}
.addon-icon svg {
	width: 22px;
	height: 22px;
}
.addon-card h4 {
	font-size: 17px;
	font-weight: 800;
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}
.addon-card p {
	font-size: 13px;
	color: var(--ink-600);
	line-height: 1.55;
	margin: 0;
}

/* ────── Stats banner ────── */
.stats-banner {
	background: var(--ink-900);
	color: #fff;
	padding: 80px 0;
	border-radius: 28px;
	margin: 0 24px;
	background-image:
		radial-gradient(ellipse at 90% 0%, rgba(255, 204, 0, 0.18) 0%, transparent 50%),
		radial-gradient(ellipse at 0% 100%, rgba(255, 204, 0, 0.08) 0%, transparent 50%);
}
.stats-banner .container {
	padding: 0 32px;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
.stat-item .stat-val {
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--y-400);
	line-height: 1.05;
}
.stat-item .stat-val small {
	font-size: 24px;
	color: rgba(255, 255, 255, 0.6);
	margin-left: 4px;
}
.stat-item .stat-lbl {
	margin-top: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

/* ────── Download teaser ────── */
.download-section {
	padding: 110px 0;
}
.download-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.download-text h2 {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
	line-height: 1.2;
}
.download-text p {
	color: var(--ink-600);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 28px;
}
.download-platforms {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.platform-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition:
		transform 0.2s,
		border-color 0.2s;
}
.platform-card:hover {
	transform: translateY(-2px);
	border-color: var(--ink-900);
}
.platform-card .pico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ink-900);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.platform-card .pico svg {
	width: 22px;
	height: 22px;
}
.platform-card .ptxt .label {
	font-size: 12px;
	color: var(--ink-500);
	font-weight: 600;
}
.platform-card .ptxt .name {
	font-size: 15px;
	font-weight: 800;
	color: var(--ink-900);
	margin-top: 1px;
}

/* Download visual */
.download-visual {
	position: relative;
	aspect-ratio: 1.05;
	background: radial-gradient(ellipse at 50% 100%, rgba(255, 204, 0, 0.18) 0%, transparent 60%), var(--bg-soft);
	border-radius: 28px;
	border: 1px solid var(--border);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.device-stack {
	position: relative;
	width: 78%;
	height: 78%;
}
.device {
	position: absolute;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
	padding: 16px;
}
.device-pc {
	inset: 0 0 30% 0;
	border-radius: 16px 16px 4px 4px;
}
.device-pc::after {
	content: "";
	position: absolute;
	bottom: -14px;
	left: -10%;
	right: -10%;
	height: 10px;
	background: var(--ink-200);
	border-radius: 0 0 12px 12px;
}
.device-tablet {
	bottom: 0;
	right: 0;
	width: 38%;
	height: 52%;
	border-radius: 14px;
	transform: rotate(4deg);
}
.device-phone {
	bottom: 6%;
	left: 4%;
	width: 25%;
	height: 58%;
	border-radius: 18px;
	transform: rotate(-6deg);
}
.device-screen {
	width: 100%;
	height: 100%;
	background: var(--bg-soft);
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 8px;
}
.device-screen .bar {
	height: 6px;
	border-radius: 3px;
	background: var(--ink-200);
}
.device-screen .bar.y {
	background: var(--y-400);
	width: 60%;
}
.device-screen .bar.short {
	width: 40%;
}

/* ────── Industries ────── */
.industry-card {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	grid-template-areas:
		"icon name"
		"icon description";
	column-gap: 12px;
	row-gap: 3px;
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 18px;
	text-align: left;
	transition:
		transform 0.2s,
		border-color 0.2s,
		background 0.2s;
}
.industry-card:hover {
	transform: translateY(-3px);
	border-color: var(--y-300);
	background: var(--bg-cream);
}
.ind-emoji {
	grid-area: icon;
	width: 36px;
	font-size: 28px;
	line-height: 1;
	text-align: center;
}
.ind-name {
	grid-area: name;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
}
.ind-desc {
	grid-area: description;
	font-size: 12.5px;
	color: var(--ink-500);
	line-height: 1.35;
}

/* ────── Testimonials ────── */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.testi-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.2s,
		border-color 0.2s;
}
.testi-card:hover {
	transform: translateY(-3px);
	border-color: var(--y-300);
}
.testi-stars {
	color: var(--y-400);
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.testi-quote {
	font-size: 15.5px;
	color: var(--ink-800);
	line-height: 1.7;
	margin: 0 0 22px;
	flex: 1;
}
.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--border);
	padding-top: 16px;
}
.testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--y-50);
	color: var(--y-700);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 15px;
	flex-shrink: 0;
}
.testi-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--ink-900);
	letter-spacing: -0.01em;
}
.testi-role {
	font-size: 12.5px;
	color: var(--ink-500);
	margin-top: 2px;
}

/* ────── Footer ────── */
.footer {
	background: var(--bg);
	padding: 60px 0 40px;
	border-top: 1px solid var(--border);
}
.footer-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.footer-meta {
	font-size: 12.5px;
	color: var(--ink-500);
	line-height: 1.7;
}
.footer-meta strong {
	color: var(--ink-700);
	margin-right: 4px;
	font-weight: 700;
}
.footer-meta span {
	margin-right: 12px;
}
.footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
}
.footer-links a {
	color: var(--ink-600);
}
.footer-links a:hover {
	color: var(--ink-900);
}
.footer-copy {
	border-top: 1px solid var(--border);
	padding-top: 20px;
	font-size: 12px;
	color: var(--ink-500);
	text-align: center;
}

/* ────── Responsive ────── */
@media (max-width: 1024px) {
	.nav {
		display: none;
	}
	.menu-toggle {
		display: inline-flex;
	}
	.header-actions .btn-ghost {
		display: none;
	}
	.hero {
		padding: 56px 0 80px;
	}
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.hero-text {
		order: 2;
	}
	.hero-visual {
		order: 1;
		width: min(92vw, 560px);
		max-width: none;
		min-height: 440px;
		margin: 0 auto;
	}
	.hero-device-tablet {
		top: 24px;
		right: -8%;
		width: 118%;
	}
	.hero-tablet-badge {
		right: -34px;
	}
	.hero-device-watch {
		right: 90px;
		bottom: -14px;
		width: 17%;
	}
	.hero-device-phone {
		right: -13%;
		bottom: -10px;
		width: 27%;
	}
	.float-card-1 {
		left: -8px;
	}
	.float-card-2 {
		right: -8px;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.addons-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.compare-row {
		grid-template-columns: 0.9fr 1fr 1.15fr;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 24px;
	}
	.download-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.industries-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.pricing-grid {
		grid-template-columns: 1fr !important;
	}
	.testi-grid {
		grid-template-columns: 1fr !important;
	}
	.section-title {
		font-size: 34px;
	}
	.download-text h2 {
		font-size: 32px;
	}
}
@media (max-width: 640px) {
	.header-inner {
		height: 72px;
	}
	.hero {
		padding: 40px 0 64px;
	}
	.section {
		padding: 72px 0;
	}
	.industry-card {
		grid-template-columns: 28px minmax(0, 1fr);
		column-gap: 8px;
		padding: 13px 12px;
	}
	.ind-emoji {
		width: 28px;
		font-size: 23px;
	}
	.ind-name {
		font-size: 14px;
	}
	.ind-desc {
		font-size: 11.5px;
	}
	.compare {
		padding: 72px 0;
	}
	.ai-analytics {
		padding: 72px 0;
	}
	.ai-analytics-head {
		margin-bottom: 36px;
	}
	.ai-analytics-head .section-sub br {
		display: none;
	}
	.ai-benefits {
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 0 0 22px;
	}
	.ai-benefits span {
		justify-content: flex-start;
		border-right: 0;
	}
	.download-section {
		padding: 72px 0;
	}
	.hero h1 {
		font-size: 36px;
	}
	.hero .lead {
		font-size: 16px;
	}
	.compare-row {
		grid-template-columns: 1fr 0.9fr 1.1fr;
	}
	.compare-cell {
		padding: 14px 6px;
		font-size: 13px;
	}
	.compare-row .compare-cell:first-child {
		padding-left: 12px;
		padding-right: 8px;
		line-height: 1.45;
		word-break: keep-all;
	}
	.addons-grid {
		grid-template-columns: 1fr;
	}
	.addon-card {
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: 14px;
		row-gap: 4px;
		align-items: center;
		padding: 20px;
	}
	.addon-icon {
		grid-column: 1;
		grid-row: 1 / 3;
		align-self: center;
		margin-bottom: 0;
	}
	.addon-card h4 {
		grid-column: 2;
		grid-row: 1;
		align-self: end;
		margin: 0;
	}
	.addon-card p {
		grid-column: 2;
		grid-row: 2;
		align-self: start;
	}
	.stat-item .stat-val {
		font-size: 38px;
	}
	.stat-item .stat-val small {
		font-size: 18px;
	}
	.stats-banner {
		margin: 0 12px;
		padding: 56px 0;
	}
	.header-actions .btn:not(.btn-primary):not(.theme-toggle) {
		display: none;
	}
	.hero-cta .btn {
		flex: 1;
	}
	.hero-visual {
		width: min(100%, 430px);
		max-width: 100%;
		min-height: 290px;
		margin: 0 auto;
		transform: none;
	}
	.hero-device-tablet {
		top: 18px;
		right: 0;
		width: 100%;
		padding: 6px;
		border-radius: 24px;
	}
	.hero-tablet-screen {
		inset: 6px;
		border-radius: 18px;
	}
	.hero-tablet-badge {
		right: -8px;
		top: 10px;
		gap: 7px;
		padding: 8px 10px 8px 9px;
		border-radius: 13px;
	}
	.hero-tablet-badge svg {
		width: 13px;
		height: 13px;
		padding: 3px;
	}
	.hero-tablet-badge strong {
		font-size: 10.5px;
	}
	.hero-tablet-badge small {
		font-size: 9px;
	}
	.hero-device-watch {
		right: 90px;
		bottom: 52px;
		width: 60px;
	}
	.hero-device-phone {
		right: 0;
		bottom: 54px;
		width: 100px;
		padding: 6px;
		border-radius: 23px;
	}
	.hero-phone-screen {
		border-radius: 17px;
	}
	.float-card {
		display: none;
	}
}
@media (max-width: 420px) {
	.hero-grid {
		gap: 36px;
	}
	.hero {
		padding: 32px 0 56px;
	}
	.hero-visual {
		width: 100%;
		min-height: 270px;
	}
	.hero-device-tablet {
		right: 0;
		width: 100%;
	}
	.hero-device-watch {
		right: 90px;
		bottom: 52px;
		width: 60px;
	}
	.hero-device-phone {
		right: 0;
		bottom: 54px;
		width: 100px;
	}
	.hero-tablet-badge {
		right: 0;
		top: 8px;
	}
}

.trust-band {
	padding: 28px 0 24px;
	border-bottom: 1px solid var(--border);
	background: var(--bg);
}
.trust-band-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}
.tb-item {
	padding: 14px 20px;
	text-align: left;
	position: relative;
}
.tb-item + .tb-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18%;
	bottom: 18%;
	width: 1px;
	background: var(--border);
}
.tb-val {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--ink-900);
	line-height: 1.05;
	font-variant-numeric: tabular-nums;
}
.tb-val small {
	font-size: 14px;
	color: var(--ink-500);
	font-weight: 700;
	margin-left: 2px;
}
.tb-lbl {
	margin-top: 6px;
	font-size: 13px;
	color: var(--ink-600);
	font-weight: 500;
}
@media (max-width: 1024px) {
	.trust-band {
		padding: 20px 0;
	}
	.trust-band-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4px 0;
	}
	.tb-item {
		padding: 12px 16px;
	}
	.tb-item:nth-child(3)::before,
	.tb-item:nth-child(odd)::before {
		display: none;
	}
	.tb-val {
		font-size: 24px;
	}
}
@media (max-width: 480px) {
	.trust-band-grid {
		grid-template-columns: 1fr 1fr;
	}
	.tb-val {
		font-size: 22px;
	}
	.tb-lbl {
		font-size: 12px;
	}
}

.trust-since {
	padding: 88px 0;
	background: var(--bg-cream);
	border-top: 1px solid var(--border);
}
.trust-since-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}
.trust-since-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--y-700);
	background: var(--y-50);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}
html[data-theme="dark"] .trust-since-eyebrow {
	color: var(--y-400);
	background: rgba(255, 204, 0, 0.12);
}
.trust-since-eyebrow .pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--y-500);
	animation: ts-pulse 2.4s infinite;
}
@keyframes ts-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(200, 154, 43, 0.55);
	}
	70% {
		box-shadow: 0 0 0 7px rgba(200, 154, 43, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(200, 154, 43, 0);
	}
}
.trust-since-head h2 {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin: 0 0 14px;
}
.trust-since-head h2 em {
	font-style: normal;
	color: var(--y-500);
}
.trust-since-head p {
	font-size: 15.5px;
	color: var(--ink-600);
	line-height: 1.7;
	margin: 0;
}
.trust-since-head p strong {
	color: var(--ink-900);
	font-weight: 700;
}

.trust-since-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	max-width: 880px;
	margin: 0 auto 40px;
}
.ts-line {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 24px;
	height: 2px;
	background: repeating-linear-gradient(to right, var(--ink-300) 0, var(--ink-300) 5px, transparent 5px, transparent 10px);
}
.ts-node {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.ts-marker {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: var(--surface);
	border: 1.5px solid var(--ink-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
	color: var(--ink-700);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}
.ts-node:hover .ts-marker {
	transform: translateY(-2px);
}
.ts-node.now .ts-marker {
	background: var(--y-400);
	border-color: var(--y-400);
	color: #1c1d1f;
	box-shadow: 0 6px 16px rgba(255, 204, 0, 0.35);
}
.ts-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink-800);
	text-align: center;
	line-height: 1.3;
}
.ts-node.now .ts-label {
	color: var(--y-700);
}
html[data-theme="dark"] .ts-node.now .ts-label {
	color: var(--y-400);
}

.trust-since-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	max-width: 880px;
	margin: 0 auto;
}
.ts-stat {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	transition:
		border-color 0.2s,
		transform 0.2s;
}
.ts-stat:hover {
	border-color: var(--y-300);
	transform: translateY(-2px);
}
.ts-num {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ink-900);
	line-height: 1;
}
.ts-num span {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink-600);
	margin-left: 2px;
}
.ts-stat:nth-child(3) .ts-num {
	font-size: 22px;
}
.ts-stat:nth-child(3) .ts-num span {
	font-size: 13px;
}
.ts-stat-lbl {
	font-size: 13px;
	color: var(--ink-600);
}

@media (max-width: 768px) {
	.trust-since {
		padding: 64px 0;
	}
	.trust-since-head h2 {
		font-size: 26px;
	}
	.trust-since-timeline {
		grid-template-columns: repeat(5, 1fr);
		gap: 6px;
	}
	.ts-marker {
		width: 44px;
		height: 44px;
		font-size: 12px;
		border-radius: 12px;
	}
	.ts-line {
		top: 21px;
	}
	.ts-label {
		font-size: 11.5px;
	}
	.trust-since-stats {
		grid-template-columns: 1fr;
	}
}

.footer-cs-card {
	background-color: #1c1d1f !important;
	color: #fff !important;
}
.footer-cs-card a {
	color: inherit;
}

/* Footer quick-start hover */
.quickstart-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 10px;
	margin: 0 -10px;
	border-radius: 10px;
	color: var(--ink-800);
	transition:
		background 0.15s ease,
		color 0.15s ease,
		padding 0.2s ease;
}
.quickstart-link + .quickstart-link {
}
.quickstart-link .qs-arrow {
	color: var(--ink-400);
	transition:
		transform 0.2s ease,
		color 0.2s ease;
}
.quickstart-link:hover {
	background: var(--y-50);
	color: var(--y-700);
	padding-left: 14px;
}
.quickstart-link:hover .qs-arrow {
	color: var(--y-600);
	transform: translateX(4px);
}
html[data-theme="dark"] .quickstart-link:hover {
	color: var(--y-400);
}
html[data-theme="dark"] .quickstart-link:hover .qs-arrow {
	color: var(--y-400);
}

@media (max-width: 1024px) {
	.footer-cs-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Inline styles moved from home\index.html */
.inline-index-1 {
	color: var(--y-700);
	font-weight: 800;
}
.inline-index-2 {
	background: var(--bg-soft);
}
.inline-index-3 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.industries-visual {
	width: min(100%, 880px);
	margin: 56px auto 0;
}
.industries-visual img {
	display: block;
	width: 100%;
	height: auto;
}
.inline-index-4 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 920px;
	margin: 0 auto;
}
.inline-index-5 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 36px;
}
.inline-index-6 {
	font-size: 13px;
	color: var(--ink-500);
	font-weight: 800;
	letter-spacing: 0.06em;
}
.inline-index-7 {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 14px 0 6px;
}
.inline-index-8 {
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.inline-index-9 {
	font-size: 18px;
	color: var(--ink-500);
	font-weight: 600;
}
.inline-index-10 {
	color: var(--ink-500);
	font-size: 14px;
	margin-bottom: 24px;
}
.inline-index-11 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
	font-size: 14.5px;
	color: var(--ink-700);
}
.inline-index-12 {
	background: #1c1d1f;
	color: #fff;
	border-radius: 24px;
	padding: 36px;
	position: relative;
}
html[data-theme="dark"] .inline-index-12 {
	background: linear-gradient(145deg, #292414 0%, #1c1d1f 42%);
	border: 1px solid rgba(255, 204, 0, 0.48);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(255, 204, 0, 0.08),
		0 0 32px rgba(255, 204, 0, 0.08);
}
.inline-index-13 {
	position: absolute;
	top: -12px;
	right: 24px;
	background: var(--y-400);
	color: #1c1d1f;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}
.inline-index-14 {
	font-size: 13px;
	opacity: 0.7;
	font-weight: 800;
	letter-spacing: 0.06em;
}
.inline-index-15 {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 14px 0 6px;
}
.inline-index-16 {
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.inline-index-17 {
	font-size: 18px;
	opacity: 0.7;
	font-weight: 600;
}
.inline-index-18 {
	opacity: 0.7;
	font-size: 14px;
	margin-bottom: 24px;
}
.inline-index-19 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
	font-size: 14.5px;
	opacity: 0.92;
}
.inline-index-20 {
	text-align: center;
	margin-top: 32px;
}
.inline-index-21 {
	background: var(--bg-soft);
	padding-top: 90px;
	padding-bottom: 90px;
}
.inline-index-22 {
	max-width: 920px;
}
.inline-index-23 {
	display: grid;
	gap: 12px;
}
.inline-index-24 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
}
.inline-index-25 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--ink-900);
}
.inline-index-26 {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.inline-index-27 {
	font-size: 11px;
	font-weight: 700;
	color: var(--y-700);
	background: var(--y-50);
	padding: 4px 10px;
	border-radius: 6px;
	flex-shrink: 0;
}
.inline-index-28 {
	color: var(--ink-400);
	flex-shrink: 0;
}
.inline-index-29 {
	padding: 0 24px 22px 70px;
	color: var(--ink-600);
	font-size: 15px;
	line-height: 1.7;
}
.inline-index-30 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
}
.inline-index-31 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--ink-900);
}
.inline-index-32 {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.inline-index-33 {
	font-size: 11px;
	font-weight: 700;
	color: var(--y-700);
	background: var(--y-50);
	padding: 4px 10px;
	border-radius: 6px;
	flex-shrink: 0;
}
.inline-index-34 {
	color: var(--ink-400);
	flex-shrink: 0;
}
.inline-index-35 {
	padding: 0 24px 22px 70px;
	color: var(--ink-600);
	font-size: 15px;
	line-height: 1.7;
}
.inline-index-36 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
}
.inline-index-37 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--ink-900);
}
.inline-index-38 {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.inline-index-39 {
	font-size: 11px;
	font-weight: 700;
	color: var(--y-700);
	background: var(--y-50);
	padding: 4px 10px;
	border-radius: 6px;
	flex-shrink: 0;
}
.inline-index-40 {
	color: var(--ink-400);
	flex-shrink: 0;
}
.inline-index-41 {
	padding: 0 24px 22px 70px;
	color: var(--ink-600);
	font-size: 15px;
	line-height: 1.7;
}
.inline-index-42 {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
}
.inline-index-43 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	font-size: 16px;
	color: var(--ink-900);
}
.inline-index-44 {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.inline-index-45 {
	font-size: 11px;
	font-weight: 700;
	color: var(--y-700);
	background: var(--y-50);
	padding: 4px 10px;
	border-radius: 6px;
	flex-shrink: 0;
}
.inline-index-46 {
	color: var(--ink-400);
	flex-shrink: 0;
}
.inline-index-47 {
	padding: 0 24px 22px 70px;
	color: var(--ink-600);
	font-size: 15px;
	line-height: 1.7;
}
.inline-index-48 {
	text-align: center;
	margin-top: 32px;
}
.inline-index-49 {
	background: var(--bg-soft);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
