@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
	--bg:        #0a0c0f;
	--bg-alt:    #0f1215;
	--panel:     #14181d;
	--panel-2:   #191e25;
	--border:    rgba(255,255,255,0.07);
	--border-md: rgba(255,255,255,0.12);
	--text:      #e8eaed;
	--text-muted:#949ba4;
	--text-dim:  #555c66;
	--amber:     #e8b84b;
	--amber-dim: rgba(232,184,75,0.12);
	--teal:      #4ec9b0;
	--teal-dim:  rgba(78,201,176,0.1);
	--panelr-panel: #141719;
	--panelr-panel-2: #1a1d20;
	--panelr-border: rgba(255, 255, 255, 0.08);
	--panelr-muted: #8b9196;
	--panelr-teal: #4ecfa8;
	--panelr-amber: #e8b84b;
	--panelr-radius: 12px;
	--panelr-radius-lg: 16px;
	--radius:    14px;
	--radius-lg: 20px;
	--container: 1200px;
	--panelr-speed: 0.85;
	--panelr-intensity: 1.75;
	--panelr-acc-r: 78;
	--panelr-acc-g: 207;
	--panelr-acc-b: 168;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
p { margin-bottom: 0; }

.container-xl { max-width: var(--container); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */

.eyebrow {
	display: inline-block;
	font-size: 13pt;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 18px;
}

.p_blue {
	color: #f59632;
}

.section-subtitle {
	font-size: 14pt;
	color: var(--text-muted);
	max-width: 640px;
	line-height: 1.7;
}

/* ─── SECTIONS ───────────────────────────────────────────── */

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mb-6 { margin-bottom: 56px !important; }

/* ─── HEADER ─────────────────────────────────────────────── */

.site-header {
	background: rgba(10,12,15,0.9);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.navbar { padding: 1rem 0; }

.navbar-brand {
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff !important;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	border: 1px solid var(--border-md);
	background: var(--panel);
	margin-right: 10px;
	font-size: 0.85rem;
	color: var(--teal);
}

.navbar-dark .navbar-nav .nav-link {
	color: var(--text-muted);
	font-weight: 500;
	padding: 0 1rem;
	font-size: 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover { color: #fff; }

.nav-link-demo {
	color: var(--amber) !important;
	font-weight: 600 !important;
}

.nav-link-demo:hover { color: #f0c65a !important; }

.gap-nav { gap: 10px; }

.header-logo {
	height: 40px;
	width: auto;
	display: block;
}

/* ─── BUTTONS ────────────────────────────────────────────── */

.btn {
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.75rem 1.5rem;
	box-shadow: none !important;
	transition: all .2s ease;
	border: none;
}

.btn-primary {
	background: var(--amber);
	color: #0a0c0f;
}

.btn-primary:hover {
	background: #f0c65a;
	color: #0a0c0f;
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	border: 1px solid var(--border-md);
	color: var(--text);
}

.btn-ghost:hover {
	background: var(--panel);
	border-color: var(--border-md);
	color: #fff;
}

.btn-login {
	background: transparent;
	border: 1px solid var(--border-md);
	color: var(--text-muted);
	font-size: 0.9rem;
	padding: 0.65rem 1.2rem;
}

.btn-login:hover {
	border-color: rgba(255,255,255,0.22);
	color: #fff;
	background: var(--panel);
}

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
	position: relative;
	overflow: hidden;
	color: var(--text, #F2F2F3);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--bg, #0B0B0D);
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px);
	padding-top: 170px;
	padding-bottom: 95px;

}

/* Ambient amber glow in the top-right */
.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -100px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(232, 184, 75, 0.12) 0%, transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 72px;
	align-items: center;
}

/* ---------- LEFT: copy ---------- */

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 11px 5px 8px;
	background: var(--panel, #131418);
	border: 1px solid var(--border, #23252B);
	border-radius: 999px;
	font-size: 12px;
	color: var(--text-dim, #9B9DA5);
	margin-bottom: 28px;
}

.hero-eyebrow .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--teal, #4EC9B0);
	box-shadow: 0 0 8px var(--teal, #4EC9B0);
}

.hero-title {
	font-size: clamp(2.2rem, 3.8vw, 3.4rem);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin: 0 0 28px;
	color: var(--text, #F2F2F3);
}

/* The italic accent word */
.hero-title .accent {
	font-family: 'Instrument Serif', Georgia, serif;
	font-style: italic;
	font-weight: 400;
	color: var(--amber, #E8B84B);
	letter-spacing: -0.01em;
}

.hero-title .accent-dot {
	color: var(--amber, #E8B84B);
}

.hero-subtitle {
	font-size: 1.1rem;
	line-height: 1.7rem;
	color: var(--text-muted);
	max-width: 480px;
	margin: 0 0 36px;
}

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


/* ---------- RIGHT: dashboard + floating activity ---------- */

.hero-visual-wrap {
	position: relative;
}

.hero-visual {
	background: var(--panel, #131418);
	border: 1px solid var(--border-md, #2E3138);
	border-radius: var(--radius-lg, 14px);
	overflow: hidden;
	transform: perspective(1800px) rotateY(-4deg) rotateX(2deg);
	transform-origin: center;
	box-shadow:
		0 30px 80px -20px rgba(0, 0, 0, 0.7),
		0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hv-header {
	background: var(--panel-2, #191A1F);
	border-bottom: 1px solid var(--border, #23252B);
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.hv-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #3A3D44;
	display: inline-block;
}

.hv-url {
	margin-left: auto;
	margin-right: auto;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
	color: var(--text-muted, #6F7179);
}

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

/* Floating activity-card slots.
Each slot contains a .activity-card that we re-create in JS to re-trigger animation. */
.activity-slot {
	position: absolute;
	pointer-events: none;
	min-width: 244px;
}

.activity-slot.pos-top-left {
	top: -30px;
	left: -44px;
}

.activity-slot.pos-middle-right {
	top: 38%;
	right: -48px;
}

.activity-slot.pos-bottom-left {
	bottom: -28px;
	left: 18%;
}

.activity-card {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 11px 13px;
	background: var(--panel, #131418);
	border: 1px solid var(--border-md, #2E3138);
	border-radius: var(--radius, 10px);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	animation: panelr-card-cycle 4000ms ease-in-out both;
}

.activity-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-size: 15px;
	font-weight: 700;
	flex: none;
}

.activity-body {
	flex: 1;
	min-width: 0;
}

.activity-title {
	font-size: 12.5px;
	color: var(--text, #F2F2F3);
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.activity-sub {
	font-size: 11px;
	color: var(--text-muted, #6F7179);
	margin-top: 1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.activity-tag {
	flex: none;
	font-size: 10px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Tone variants */
.tone-teal .activity-icon,
.tone-teal.activity-card .activity-tag {
	background: rgba(78, 201, 176, 0.12);
	color: var(--teal, #4EC9B0);
}

.tone-amber .activity-icon,
.tone-amber.activity-card .activity-tag {
	background: rgba(232, 184, 75, 0.12);
	color: var(--amber, #E8B84B);
}

.tone-violet .activity-icon,
.tone-violet.activity-card .activity-tag {
	background: rgba(167, 139, 250, 0.12);
	color: #A78BFA;
}

/* Card fade in → hold → fade out */
@keyframes panelr-card-cycle {
	0% {
		opacity: 0;
		transform: translateY(10px) scale(0.96);
		filter: blur(6px);
	}

	12% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}

	80% {
		opacity: 1;
		transform: translateY(-2px) scale(1);
		filter: blur(0);
	}

	100% {
		opacity: 0;
		transform: translateY(-10px) scale(0.98);
		filter: blur(4px);
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.hero {
		padding: 64px 24px;
		min-height: 0;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.hero-visual {
		transform: none;
	}

	.activity-slot.pos-top-left {
		top: -20px;
		left: -12px;
		min-width: 200px;
	}

	.activity-slot.pos-middle-right {
		top: 30%;
		right: -12px;
		min-width: 200px;
	}

	.activity-slot.pos-bottom-left {
		bottom: -20px;
		left: 8%;
		min-width: 200px;
	}
}

/* ─── PROBLEM ────────────────────────────────────────────── */

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

.problem-list li {
    position: relative;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 13pt;
    font-weight: 500;
    list-style: none;
}



.problem-list li:first-child { border-top: 0; padding-top: 0; }



.problem-list li:first-child::before { top: 7px; }

.problem-emphasis {
    color: var(--amber) !important;
}

.problem-emphasis::before {
	background: var(--amber) !important;
}

.use-cases {
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding: 32px 36px;
    background: var(--panel);
    border-radius: 14px;
}

.use-cases-label {
	font-size: 11pt;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--amber) !important;
    margin-bottom: 18px;
}

.use-cases-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.use-cases-pills span {
    font-size: 13pt;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0 16px 0 0;
}

.use-cases-pills span + span {
    padding-left: 16px;
    border-left: 1px solid var(--border-md);
}

.transition-line {
	font-size: 14pt;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom:12pt;
}

/* ─── ARCHITECTURE ───────────────────────────────────────── */

.arch-diagram {
	--acc-0: rgba(var(--panelr-acc-r), var(--panelr-acc-g), var(--panelr-acc-b), 0);
	--acc-55: rgba(var(--panelr-acc-r), var(--panelr-acc-g), var(--panelr-acc-b), calc(0.55 * var(--panelr-intensity)));

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20pt;
	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
	color: #fff;
}

.arch-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex-shrink: 0;
}

.arch-node {
	background: var(--panelr-panel);
	border: 1px solid var(--panelr-border);
	border-radius: var(--panelr-radius);
	padding: 18px 20px;
	text-align: center;
	width: 148px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	position: relative;
}

.arch-node i {
	font-size: 18pt;
	color: var(--panelr-teal);
}

.arch-node strong {
	font-size: 12pt;
	font-weight: 600;
	color: #fff;
	display: block;
}

.arch-node span {
	font-size: 10pt;
	color: var(--panelr-muted);
	display: block;
}

.arch-connector {
	display: flex;
	align-items: center;
	padding: 0 12px;
	flex-shrink: 0;
}

.arch-arrow-pair {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.arch-arrow-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.arch-arrow-label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--panelr-muted);
	white-space: nowrap;
	width: 48px;
	text-align: right;
}

.arch-arrow-row:last-child .arch-arrow-label {
	text-align: left;
}

.arch-arrow-line {
	width: 48px;
	height: 1px;
	position: relative;
	flex-shrink: 0;
	overflow: visible;

	/* Moving teal highlight layered over the static border line */
	background:
		linear-gradient(90deg,
			transparent 0%,
			var(--acc-0) 20%,
			var(--acc-55) 50%,
			var(--acc-0) 80%,
			transparent 100%),
		var(--panelr-border);
	background-size: 200% 100%, 100% 100%;
	background-repeat: no-repeat;
	background-position: -100% 0, 0 0;
}

.arch-arrow-right::after {
	content: "";
	position: absolute;
	right: -1px;
	top: -3px;
	border-left: 5px solid var(--panelr-border);
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
}

.arch-arrow-left::before {
	content: "";
	position: absolute;
	left: -1px;
	top: -3px;
	border-right: 5px solid var(--panelr-border);
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
}

.arch-core-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.arch-core {
	background: var(--panelr-panel-2);
	border: 1px solid rgba(232, 184, 75, 0.22);
	border-radius: var(--panelr-radius-lg);
	padding: 32px 36px;
	text-align: center;
	width: 188px;
}

.arch-core-icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.panelr-logo {
	font-family: "SF Pro Display", -apple-system, sans-serif;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: -0.04em;
	line-height: 1;
}

.panelr-logo .p {
	color: var(--panelr-teal);
}

.panelr-logo .r {
	color: var(--panelr-amber);
}

.arch-core-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.02em;
}

.arch-core-sub {
	font-size: 10pt;
	color: var(--panelr-muted);
	margin-top: 4px;
}

.arch-payments-connector {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.arch-payments-arrows {
	display: flex;
	gap: 6px;
	padding: 6px 0;
}

.arch-vpair {
	width: 1px;
	height: 28px;
	position: relative;
	overflow: visible;

	background:
		linear-gradient(180deg,
			transparent 0%,
			var(--acc-0) 20%,
			var(--acc-55) 50%,
			var(--acc-0) 80%,
			transparent 100%),
		var(--panelr-border);
	background-size: 100% 300%, 100% 100%;
	background-repeat: no-repeat;
	background-position: 0 -100%, 0 0;
}

.arch-vdown::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: -3px;
	border-top: 5px solid var(--panelr-border);
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}

.arch-vup::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -3px;
	border-bottom: 5px solid var(--panelr-border);
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}

.arch-payments-node {
	background: var(--panelr-panel);
	border: 1px solid var(--panelr-border);
	border-radius: var(--panelr-radius);
	padding: 16px 22px;
	text-align: center;
	width: 188px;
}

.arch-payments-node i {
	font-size: 1rem;
	color: var(--panelr-teal);
	margin-bottom: 6px;
	display: block;
}

.arch-payments-node strong {
	font-size: 12pt;
	font-weight: 600;
	color: #fff;
	display: block;
}

.arch-payments-node span {
	font-size: 10pt;
	color: var(--panelr-muted);
	display: block;
	margin-top: 2px;
}

/* ── Animations ──────────────────────────────────────────────── */

.arch-diagram .arch-arrow-row .arch-arrow-right {
	animation: panelr-dots-right calc(3.2s / var(--panelr-speed)) linear infinite;
}

.arch-diagram .arch-arrow-row .arch-arrow-left {
	animation: panelr-dots-left calc(3.2s / var(--panelr-speed)) linear infinite;
	animation-delay: calc(1.6s / var(--panelr-speed));
}

.arch-diagram .c-right .arch-arrow-right {
	animation-delay: calc(0.8s / var(--panelr-speed));
}

.arch-diagram .c-right .arch-arrow-left {
	animation-delay: calc(2.4s / var(--panelr-speed));
}

@keyframes panelr-dots-right {
	0% {
		background-position: -100% 0, 0 0;
	}

	100% {
		background-position: 200% 0, 0 0;
	}
}

@keyframes panelr-dots-left {
	0% {
		background-position: 200% 0, 0 0;
	}

	100% {
		background-position: -100% 0, 0 0;
	}
}

.arch-diagram .arch-vdown {
	animation: panelr-dots-vdown calc(3.2s / var(--panelr-speed)) linear infinite;
	animation-delay: calc(0.4s / var(--panelr-speed));
}

.arch-diagram .arch-vup {
	animation: panelr-dots-vup calc(3.2s / var(--panelr-speed)) linear infinite;
	animation-delay: calc(2.0s / var(--panelr-speed));
}

@keyframes panelr-dots-vdown {
	0% {
		background-position: 0 -100%, 0 0;
	}

	100% {
		background-position: 0 200%, 0 0;
	}
}

@keyframes panelr-dots-vup {
	0% {
		background-position: 0 200%, 0 0;
	}

	100% {
		background-position: 0 -100%, 0 0;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

	.arch-diagram *,
	.arch-diagram *::before,
	.arch-diagram *::after {
		animation: none !important;
	}
}

/* ─── SCREENSHOT FRAME ───────────────────────────────────── */

.screenshot-frame {
	background: var(--panel);
	border: 1px solid var(--border-md);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.screenshot-bar {
	background: var(--panel-2);
	border-bottom: 1px solid var(--border);
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.screenshot-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--border-md);
	display: inline-block;
	flex-shrink: 0;
}

.screenshot-url {
	font-size: 0.72rem;
	color: var(--text-dim);
	margin-left: 8px;
	font-family: 'DM Mono', monospace;
}

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

/* ─── DEMO CARDS (screenshot-first) ─────────────────────── */

.demo-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	height: 100%;
	transition: border-color .2s;
}

.demo-card:hover { border-color: var(--border-md); }

.demo-card-preview {
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.demo-card-preview img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .3s ease;
}

.demo-card:hover .demo-card-preview img { transform: scale(1.02); }

.demo-card-body { padding: 22px; }

.demo-card h3 {
	font-size: 14pt;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}

.demo-card p {
	font-size: 12pt;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 0;
}

.demo-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12pt;
	font-weight: 600;
	color: var(--amber);
	margin-top: 16px;
}

.demo-link:hover { color: #f0c65a; }

/* ─── FEATURE ROWS (screenshot + text) ──────────────────── */

.feature-row {
	padding: 48px 0;
	border-bottom: 1px solid var(--border);
}

.feature-row:first-of-type { padding-top: 0; }

.feature-row-title {
	font-size: 20pt;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 14px 0 10px;
	line-height: 1.2;
}

.feature-row-body {
	font-size: 13pt;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ─── FEATURES (icon cards) ──────────────────────────────── */

.feature-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 26px;
	height: 100%;
	transition: border-color .2s, background .2s;
}

.feature-card:hover {
	border-color: var(--border-md);
	background: var(--panel-2);
}

.feature-icon {
	width: 40px; height: 40px;
	border-radius: 10px;
	background: var(--amber-dim);
	border: 1px solid rgba(232,184,75,0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--amber);
	font-size: 0.95rem;
	margin-bottom: 14px;
}

.feature-card h3 {
	font-size: 14pt;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.3;
}

.feature-card p {
	font-size: 12pt;
	color: var(--text-muted);
	line-height: 1.65;
	margin: 0;
}

/* ─── INTEGRATIONS ───────────────────────────────────────── */

.int-group-label {
	font-size: 10pt;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: #7be7d6;
	margin-bottom: 14px;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.logo-grid-sm {
	grid-template-columns: repeat(4, 1fr);
}

.logo-item {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px 12px;
	text-align: center;
	font-size: 11pt;
	font-weight: 600;
	color: var(--text-muted);
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .2s, color .2s;
}

.dev_link {
	color: white;
}

/* ─── INFRASTRUCTURE ─────────────────────────────────────── */

.infra-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.infra-list li {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid var(--border);
}

.infra-list li:first-child { border-top: 0; padding-top: 0; }

.infra-icon {
	width: 36px; height: 36px;
	border-radius: 10px;
	background: var(--teal-dim);
	border: 1px solid rgba(78,201,176,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	font-size: 0.85rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.infra-content strong {
	display: block;
	font-size: 13pt;
	font-weight: 600;
	color: #fff;
	margin-bottom: 4px;
}

.infra-content p {
	font-size: 12pt;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ─── CTA ────────────────────────────────────────────────── */

.cta-box {
	background: var(--panel);
	border: 1px solid var(--border-md);
	border-radius: 24px;
	padding: 48px;
}

.cta-title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 14px;
}

.cta-sub {
	font-size: 14pt;
	color: var(--text-muted);
}

.home-cta-box--centered {
	text-align: center;
	padding: 70px 40px;
}

.home-cta-pill {
	display: inline-block;
	background: rgba(232, 184, 75, 0.1);
	border: 1px solid rgba(232, 184, 75, 0.25);
	border-radius: 999px;
	padding: 6px 18px;
	font-size: 10pt;
	font-weight: 600;
	color: var(--amber);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.home-cta-title--large {
	font-size: 2.6rem;
	max-width: 680px;
	margin: 0 auto 20px;
}

.home-cta-sub--centered {
	font-size: 14pt;
	max-width: 520px;
	margin: 0 auto 40px;
}

.home-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.home-cta-btn-primary {
	font-size: 14pt;
	padding: 14px 40px;
	border-radius: 999px;
}

.home-cta-demo-link {
	font-size: 12pt;
	color: var(--text-muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color .2s;
}

.home-cta-demo-link:hover {
	color: #fff;
}

.home-cta-trust {
	display: flex;
	gap: 32px;
	justify-content: center;
	flex-wrap: wrap;
}

.home-cta-trust-item {
	font-size: 13pt;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.home-cta-trust-item .fa-check {
	color: var(--teal);
}

/* ── CTA responsive ──────────────────────────────────────────────── */

@media (max-width: 767px) {
	.home-cta-box--centered {
		padding: 48px 24px;
	}

	.home-cta-title--large {
		font-size: 1.8rem;
	}

	.home-cta-sub--centered {
		font-size: 12pt;
	}

	.home-cta-btn-primary {
		font-size: 13pt;
		padding: 12px 28px;
		width: 100%;
		justify-content: center;
	}

	.home-cta-demo-link {
		width: 100%;
		justify-content: center;
	}

	.home-cta-trust {
		gap: 16px;
	}
}

.beta-form { display: flex; flex-direction: column; gap: 0; }

.beta-input {
	width: 100%;
	height: 52px;
	background: var(--bg);
	border: 1px solid var(--border-md);
	border-radius: var(--radius);
	padding: 0 18px;
	color: #fff;
	font-size: 14pt;
	font-family: inherit;
	outline: none;
	transition: border-color .2s;
}

.beta-input:focus { border-color: rgba(255,255,255,0.22); }
.beta-input::placeholder { color: var(--text-muted); }

.cta-reassurance {
	font-size: 0.82rem;
	color: var(--text-dim);
	margin-top: 12px;
	text-align: center;
}

.beta-field { margin-bottom: 12px; }

.beta-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.beta-success {
    text-align: center;
    padding: 32px;
    background: var(--panel);
    border: 1px solid var(--border-md);
    border-radius: var(--radius-lg);
}

.beta-success-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(78,201,176,0.1);
    border: 1px solid rgba(78,201,176,0.2);
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.beta-success h3 {
    font-size: 16pt;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.beta-success p {
    font-size: 11pt;
    color: var(--text-muted);
    margin: 0;
}

.beta-error {
    background: rgba(226,75,74,0.08);
    border: 1px solid rgba(226,75,74,0.2);
    color: #f09595;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 11pt;
    margin-bottom: 16px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.site-footer {
	padding: 64px 0 0;
	border-top: 1px solid var(--border);
	background: #070809;
}

.footer-logo {
	height: 28px;
	width: auto;
	display: block;
	margin-bottom: 14px;
}

.footer-tagline {
	font-size: 13pt;
	color: var(--text-muted);
	margin: 0;
	max-width: 220px;
	line-height: 1.6;
}

.footer-group-label {
	font-size: 10pt;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--text-dim);
	margin-bottom: 16px;
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav a {
	font-size: 11pt;
	color: var(--text-muted);
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
	border-top: 1px solid var(--border);
	margin-top: 48px;
	padding: 28px 0;
}

.footer-disclaimer {
	font-size: 10pt;
	color: var(--text-dim);
	line-height: 1.7;
	max-width: 860px;
	margin-bottom: 12px;
}

.footer-copy {
	font-size: 9pt;
	color: var(--text-dim);
	margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1199px) {
	.logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
	.section, .hero { padding: 80px 0; }
	.arch-diagram { flex-direction: column; gap: 20px; }
	.arch-connector { transform: rotate(90deg); }
	.arch-core-wrap { width: 100%; align-items: center; margin-bottom:20pt; margin-top:30pt;}
	.arch-col { flex-direction: row; flex-wrap: wrap; justify-content: center; margin-bottom:20pt; margin-top:20pt;}
	.arch-node { width: 140px; }
	.logo-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-links { justify-content: flex-start; margin-top: 16px; }
}

@media (max-width: 767px) {
	.hero-title { font-size: 2.4rem; margin-top:30pt;}
	.section-title { font-size: 1.9rem; }
	.logo-grid { grid-template-columns: repeat(2, 1fr); }
	.logo-grid-sm { grid-template-columns: repeat(2, 1fr); }
	.cta-box { padding: 28px 22px; }
	.hero-actions { flex-direction: column; }
	.hero-actions .btn { width: 100%; text-align: center; }
	.feature-row { padding-top:0; }
	.navbar-dark .navbar-nav .nav-link { font-size: 15pt; margin-top:10pt;}

 
}

/* ─── LEGAL PAGES ────────────────────────────────────────── */

.legal-section { padding-top: 120px; }

.legal-meta {
	font-size: 10pt;
	color: var(--text-dim);
	margin-bottom: 48px;
}

.legal-body h2 {
	font-size: 13pt;
	font-weight: 600;
	color: #fff;
	margin: 36px 0 12px;
}

.legal-body p,
.legal-body li {
	font-size: 12pt;
	color: var(--text-muted);
	line-height: 1.75;
}

.legal-body ul,
.legal-body ol {
	padding-left: 1.4rem;
	margin-bottom: 1rem;
}

.legal-body li { margin-bottom: 6px; }

.legal-body a {
	color: var(--amber);
	text-decoration: none;
}

.legal-body a:hover { color: #f0c65a; text-decoration: underline; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */

.contact-section { padding-top: 120px; }

.form-label {
	display: block;
	font-size: 10pt;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.beta-textarea {
	width: 100%;
	min-height: 160px;
	resize: vertical;
	padding: 14px 18px;
	line-height: 1.65;
}

/* --- PRICING PAGE ----- */
.pricing-hero {
		padding: 120px 0 40px;
		text-align: center;
	}

	.pricing-hero .section-subtitle {
		margin: 0 auto;
	}

	/* Billing toggle */
	.billing-toggle {
		display: inline-flex;
		align-items: center;
		gap: 14px;
		background: var(--panel);
		border: 1px solid var(--border-md);
		border-radius: 999px;
		padding: 6px 8px 6px 18px;
		margin: 32px auto 0;
	}

	.billing-toggle-label {
		font-size: 13pt;
		font-weight: 500;
		color: var(--text-muted);
		cursor: pointer;
		transition: color .2s;
		user-select: none;
	}

	.billing-toggle-label.active {
		color: #fff;
	}

	.toggle-switch {
		position: relative;
		width: 44px;
		height: 24px;
		flex-shrink: 0;
	}

	.toggle-switch input {
		opacity: 0;
		width: 0;
		height: 0;
		position: absolute;
	}

	.toggle-track {
		position: absolute;
		inset: 0;
		background: var(--border-md);
		border-radius: 999px;
		cursor: pointer;
		transition: background .2s;
	}

	.toggle-track::after {
		content: '';
		position: absolute;
		left: 3px;
		top: 3px;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: #fff;
		transition: transform .2s;
	}

	.toggle-switch input:checked+.toggle-track {
		background: var(--amber);
	}

	.toggle-switch input:checked+.toggle-track::after {
		transform: translateX(20px);
	}

	.yearly-badge {
		font-size: 10pt;
		font-weight: 600;
		color: var(--teal);
		background: var(--teal-dim);
		border: 1px solid rgba(78, 201, 176, 0.2);
		border-radius: 999px;
		padding: 3px 10px;
		white-space: nowrap;
	}

	/* Pricing grid */
	.pricing-grid {
		padding: 0 0 80px;
	}

	.pricing-card {
		background: var(--panel);
		border: 1px solid var(--border);
		border-radius: var(--radius-lg);
		padding: 24px 22px 22px;
		height: 100%;
		display: flex;
		flex-direction: column;
		transition: border-color .2s, transform .2s;
		position: relative;
	}

	.pricing-card:hover {
		border-color: var(--border-md);
		transform: translateY(-3px);
	}

	.pricing-card-featured {
		border-color: rgba(232, 184, 75, 0.35);
		background: var(--panel-2);
	}

	.pricing-card-featured:hover {
		border-color: rgba(232, 184, 75, 0.55);
	}

	.pricing-badge {
		position: absolute;
		top: -13px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 10pt;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: #0a0c0f;
		background: var(--amber);
		border-radius: 999px;
		padding: 3px 14px;
		white-space: nowrap;
	}

	.pricing-plan-name {
		font-size: 11pt;
		font-weight: 600;
		color: var(--text-muted);
		text-transform: uppercase;
		letter-spacing: 0.08em;
		margin-bottom: 6px;
	}

	.pricing-amount {
		display: flex;
		align-items: flex-end;
		gap: 4px;
		margin-bottom: 4px;
		line-height: 1;
	}

	.pricing-currency {
		font-size: 16pt;
		font-weight: 600;
		color: var(--text-muted);
		margin-bottom: 6px;
	}

	.pricing-price {
		font-size: 34pt;
		font-weight: 600;
		color: #fff;
		letter-spacing: -0.03em;
		line-height: 1;
	}

	.pricing-period {
		font-size: 11pt;
		color: var(--text-muted);
		margin-bottom: 6px;
	}

	.pricing-yearly-note {
		font-size: 10pt;
		color: var(--teal);
		margin-bottom: 12px;
		min-height: 16px;
	}

	.pricing-desc {
		font-size: 12pt;
		color: var(--text-muted);
		line-height: 1.6;
		margin-bottom: 16px;
	}

	.pricing-specs {
		list-style: none;
		padding: 0;
		margin: 0 0 20px;
		border-top: 1px solid var(--border);
		padding-top: 14px;
	}

	.pricing-specs li {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 11pt;
		color: var(--text-muted);
		padding: 4px 0;
	}

	.pricing-specs li i {
		color: var(--teal);
		font-size: 10pt;
		flex-shrink: 0;
		width: 14px;
		text-align: center;
	}

	.pricing-specs li strong {
		color: #fff;
	}

	.btn-pricing {
		display: block;
		width: 100%;
		text-align: center;
		padding: 0.75rem 1.5rem;
		border-radius: 999px;
		font-weight: 600;
		font-size: 0.95rem;
		cursor: pointer;
		transition: all .2s ease;
		background: var(--panel-2);
		border: 1px solid var(--border-md);
		color: var(--text);
		margin-top: auto;
	}

	.btn-pricing:hover {
		background: rgba(255, 255, 255, 0.08);
		color: #fff;
		transform: translateY(-1px);
		text-decoration:none;
	}

	.btn-pricing-featured {
		background: var(--amber);
		border-color: var(--amber);
		color: #0a0c0f;
	}

	.btn-pricing-featured:hover {
		background: #f0c65a;
		border-color: #f0c65a;
		color: #0a0c0f;
		text-decoration: none;
	}

		/* ── Callouts ── */
	.callout {
		border-left: 3px solid;
		border-radius: 0 8px 8px 0;
		padding: 14px 18px;
		margin: 20px 0;
		font-size: 13pt;
		line-height: 1.65;
	}

	.callout-info {
		border-color: var(--teal);
		background: var(--teal-dim);
		color: var(--text-muted);
	}

	.callout-warn {
		border-color: var(--amber);
		background: var(--amber-dim);
		color: var(--text-muted);
	}

	/* ── On-Premises Card ── */
	.op-card {
		border: 2px solid rgba(232, 184, 75, 0.35);
		border-radius: 12px;
		overflow: hidden;
		max-width: 1100px;
		margin: 0 auto;
	}

	.op-grid {
		display: grid;
		grid-template-columns: 320px 1fr 340px;
	}

	.op-col {
		padding: 2rem;
	}

	.op-col+.op-col {
		border-left: 1px solid rgba(255, 255, 255, 0.08);
	}

	.op-badge {
		font-size: 11pt;
		font-weight: 600;
		color: var(--amber);
		text-transform: uppercase;
		letter-spacing: 0.08em;
		margin-bottom: 6px;
	}

	.op-plan-name {
		font-size: 24px;
		font-weight: 600;
		color: var(--text-primary);
		margin-bottom: 4px;
	}

	.op-plan-sub {
		font-size: 12pt;
		color: var(--text-muted);
		margin-bottom: 1rem;
	}

	.op-price-row {
		display: flex;
		align-items: baseline;
		gap: 4px;
		margin-bottom: 4px;
	}

	.op-price-cur {
		font-size: 18px;
		font-weight: 600;
		color: var(--amber);
	}

	.op-price-num {
		font-size: 42px;
		font-weight: 600;
		color: var(--amber);
		line-height: 1;
	}

	.op-price-per {
		font-size: 14px;
		color: var(--text-muted);
	}

	.op-price-note {
		font-size: 10pt;
		color: var(--text-muted);
		margin-bottom: 1.5rem;
	}

	.op-feature-list {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 9px;
	}

	.op-feature-list li {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 11pt;
		color: var(--text-muted);
	}

	.op-check-amber {
		color: var(--amber);
		font-size: 11px;
		width: 14px;
		flex-shrink: 0;
	}

	.op-check-muted {
		color: var(--text-muted);
		font-size: 11px;
		width: 14px;
		flex-shrink: 0;
	}

	.op-col-title {
		font-size: 10pt;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: .07em;
		color: var(--text-muted);
		margin-bottom: 1.1rem;
	}

	.op-step-list {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.op-step-list li {
		display: flex;
		align-items: flex-start;
		gap: 12px;
	}

	.op-step-num {
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: rgba(232, 184, 75, 0.15);
		color: var(--amber);
		font-size: 12px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		margin-top: 1px;
	}

	.op-step-text {
		font-size: 11pt;
		color: var(--text-muted);
		line-height: 1.55;
	}

	.op-step-text strong {
		color: var(--text-primary);
		font-weight: 600;
	}

	.op-download-btn {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		font-size: 13px;
		color: var(--amber);
		text-decoration: none;
		border: 1px solid rgba(232, 184, 75, 0.35);
		padding: 8px 16px;
		border-radius: 8px;
		margin-top: 1.5rem;
		transition: background 0.15s;
	}

	.op-download-btn:hover {
		background: rgba(232, 184, 75, 0.08);
		color: var(--amber);
		text-decoration: none;
	}

	.op-footer {
		padding: 1.25rem 2rem;
		display: flex;
		align-items: center;
		gap: 1rem;
		background: rgba(255, 255, 255, 0.03);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.op-btn-primary {
		padding: 0.75rem 1.5rem;
		border-radius: 999px;
		background: var(--amber);
		color: #0a0c0f;
		font-size: 0.95rem;
		font-weight: 600;
		text-decoration: none;
		white-space: nowrap;
		transition: opacity 0.15s;
	}

	.op-btn-primary:hover {
		opacity: 0.9;
		color: #0a0c0f;
	}

	.op-btn-trial {
		padding: 11px 24px;
		border-radius: 8px;
		background: transparent;
		color: var(--teal);
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
		border: 1.5px solid rgba(78, 201, 176, 0.3);
		display: inline-flex;
		align-items: center;
		gap: 8px;
		white-space: nowrap;
		transition: background 0.15s;
	}

	.op-btn-trial:hover {
		background: rgba(232, 184, 75, 0.08);
		color: var(--amber);
	}

	.op-trial-badge {
		font-size: 11px;
		background: rgba(232, 184, 75, 0.15);
		color: var(--amber);
		padding: 2px 8px;
		border-radius: 20px;
	}

	.op-footer-spacer {
		flex: 1;
	}

	.op-footer-note {
		font-size: 10pt;
		color: var(--text-muted);
	}

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

		.op-col+.op-col {
			border-left: none;
			border-top: 1px solid rgba(255, 255, 255, 0.08);
		}

		.op-footer {
			flex-direction: column;
			align-items: stretch;
		}

		.op-btn-primary,
		.op-btn-trial {
			text-align: center;
			justify-content: center;
		}

		.op-footer-spacer,
		.op-footer-note {
			display: none;
		}
	}

	/* Developer add-on */
	.dev-addon-section {
		padding: 0 0 80px;
	}

	.dev-addon-card {
		background: var(--panel);
		border: 1px solid rgba(78, 201, 176, 0.18);
		border-radius: var(--radius-lg);
		padding: 32px 36px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
		flex-wrap: wrap;
	}

	.dev-addon-left {
		flex: 1;
		min-width: 280px;
	}

	.dev-addon-eyebrow {
		font-size: 10pt;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.09em;
		color: var(--teal);
		margin-bottom: 8px;
	}

	.dev-addon-title {
		font-size: 18pt;
		font-weight: 600;
		color: #fff;
		letter-spacing: -0.02em;
		margin-bottom: 10px;
	}

	.dev-addon-desc {
		font-size: 12pt;
		color: var(--text-muted);
		line-height: 1.65;
		max-width: 560px;
		margin: 0;
	}

	.dev-addon-right {
		text-align: center;
		flex-shrink: 0;
	}

	.dev-addon-price {
		font-size: 32pt;
		font-weight: 600;
		color: var(--teal);
		letter-spacing: -0.02em;
		line-height: 1;
	}

	.dev-addon-price-label {
		font-size: 11pt;
		color: var(--text-muted);
		margin-bottom: 14px;
	}

	

	/* Beta gate */
	.beta-gate-section {
		padding: 40px 0 80px;
		overflow-x: hidden;
	}

	.beta-gate-icon {
		width: 44px;
		height: 44px;
		border-radius: 50%;
		background: var(--amber-dim);
		border: 1px solid rgba(232, 184, 75, 0.2);
		color: var(--amber);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 1.1rem;
		margin-bottom: 14px;

	}

	.beta-gate-error {
		background: rgba(226, 75, 74, 0.08);
		border: 1px solid rgba(226, 75, 74, 0.2);
		color: #f09595;
		border-radius: var(--radius);
		padding: 10px 16px;
		font-size: 11pt;
		margin-bottom: 16px;
		display: none;
	}

	.beta-gate-input-row {
		display: flex;
		gap: 10px;
	}

	.beta-gate-input-row .beta-input {
		flex: 1;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		font-family: 'DM Mono', monospace;
		font-size: 13pt;
	}

	.beta-gate-input-row .btn {
		flex-shrink: 0;
	}

		@media (max-width: 576px) {
		.beta-gate-input-row {
			flex-direction: column;
			gap: 8px;
		}

		.beta-gate-input-row .btn {
			width: 100%;
			height: 52px;
		}

		.dev-addon-card {
			padding: 24px 20px;
		}

		.beta-gate-input-row .beta-input {
			padding: 10pt;
		}

		.beta-gate-section hr {
			margin-top: 10pt !important;
			margin-bottom: 10pt !important;
		}

	}

	/* ── Comparison Table ── */

	.comparison-section {
		padding: 0 0 80px;
	}

	.comparison-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.comparison-table {
		width: 100%;
		border-collapse: collapse;
		min-width: 600px;
	}

	.comparison-feature-col {
		width: 25%;
	}

	.comparison-plan-col {
		width: 20%;
		text-align: center;
	}

	.comparison-table thead th {
		padding: 20px 16px 24px;
		border-bottom: 1px solid var(--border-md);
		vertical-align: bottom;
	}

	.comparison-table thead th.comparison-plan-featured {
		background: var(--panel-2);
		border-left: 1px solid rgba(232, 184, 75, 0.2);
		border-right: 1px solid rgba(232, 184, 75, 0.2);
		border-top: 1px solid rgba(232, 184, 75, 0.2);
		border-radius: 12px 12px 0 0;
	}

	.comparison-plan-badge {
		display: inline-block;
		font-size: 9pt;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: #0a0c0f;
		background: var(--amber);
		border-radius: 999px;
		padding: 2px 10px;
		margin-bottom: 10px;
	}

	.comparison-plan-name {
		font-size: 13pt;
		font-weight: 600;
		color: #fff;
		margin-bottom: 4px;
	}

	.comparison-plan-price {
		font-size: 22pt;
		font-weight: 600;
		color: #fff;
		letter-spacing: -0.02em;
		line-height: 1;
	}

	.comparison-plan-price span {
		font-size: 11pt;
		font-weight: 400;
		color: var(--text-muted);
		letter-spacing: 0;
	}

	.comparison-table tbody td {
		padding: 11px 16px;
		border-bottom: 1px solid var(--border);
		font-size: 12pt;
		color: var(--text-muted);
		text-align: center;
		vertical-align: middle;
	}

	.comparison-table tbody td.comparison-feature {
		text-align: left;
		color: var(--text);
	}

	.comparison-table tbody td.comparison-plan-featured {
		background: rgba(232, 184, 75, 0.04);
		border-left: 1px solid rgba(232, 184, 75, 0.15);
		border-right: 1px solid rgba(232, 184, 75, 0.15);
	}

	.comparison-group-row td {
		background: var(--panel) !important;
		border-left: none !important;
		border-right: none !important;
		padding: 20px 16px 8px !important;
		font-size: 11pt !important;
		font-weight: 600 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.09em !important;
		color: #71777f !important;
		text-align: left !important;
		border-bottom: none !important;
	}

	.comparison-check {
		color: var(--teal);
		font-size: 14pt;
	}

	.comparison-cross {
		color: var(--border-md);
		font-size: 14pt;
	}

	.comparison-cta-row td {
		padding: 20px 16px !important;
		border-bottom: none !important;
	}

	.comparison-cta-row td.comparison-plan-featured {
		border-radius: 0 0 12px 12px;
		border-bottom: 1px solid rgba(232, 184, 75, 0.2) !important;
	}

	.cta-sub-pricing {
		font-size: 13pt;
		color: var(--text-muted);
	}

	.comparison-table .btn-pricing {
		margin-top: 0;
	}

	.pricing_disclaimer {
		font-size: 11pt;
		margin-top: 30pt;
		color: #71777f;
	}

	@media (max-width: 767px) {
		.comparison-plan-price {
			font-size: 16pt;
		}

		.comparison-table tbody td,
		.comparison-table tbody td.comparison-feature {
			padding: 9px 10px;
			font-size: 11pt;
		}
	}

	/* ─── CHECKOUT PAGE ──────────────────────────────────────────────────────────── */

	.checkout-page {
		padding-top: 100px;
		padding-bottom: 80px;
		min-height: 100vh;
	}

	.checkout-back {
		font-size: 12pt;
		color: var(--text-muted);
		display: inline-flex;
		align-items: center;
		gap: 6px;
		margin-bottom: 32px;
		transition: color .2s;
	}

	.checkout-back:hover {
		color: #fff;
	}

	/* ── Order Summary ── */
	.summary-card {
		background: var(--panel);
		border: 1px solid var(--border);
		border-radius: var(--radius-lg);
		padding: 28px;
		position: sticky;
		top: 88px;
	}

	.summary-title {
		font-size: 11pt;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.09em;
		color: var(--text-dim);
		margin-bottom: 20px;
	}

	.summary-product-name {
		font-size: 16pt;
		font-weight: 600;
		color: #fff;
		margin-bottom: 4px;
	}

	.summary-cycle-badge {
		display: inline-block;
		font-size: 10pt;
		font-weight: 600;
		padding: 2px 10px;
		border-radius: 999px;
		background: var(--amber-dim);
		border: 1px solid rgba(232, 184, 75, 0.2);
		color: var(--amber);
		margin-bottom: 20px;
	}

	.summary-line {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
		border-top: 1px solid var(--border);
		font-size: 12pt;
		color: var(--text-muted);
	}

	.summary-line:first-of-type {
		border-top: none;
		padding-top: 0;
	}

	.summary-line-value {
		color: #fff;
		font-weight: 500;
	}

	.summary-line-discount {
		color: var(--teal);
	}

	.summary-total {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		border-top: 1px solid var(--border-md);
		margin-top: 8px;
		padding-top: 16px;
	}

	.summary-total-label {
		font-size: 13pt;
		font-weight: 600;
		color: #fff;
	}

	.summary-total-amount {
		font-size: 24pt;
		font-weight: 600;
		color: #fff;
		letter-spacing: -0.02em;
	}

	.summary-total-period {
		font-size: 11pt;
		color: var(--text-muted);
		margin-left: 4px;
	}

	/* Developer add-on */
	.addon-row {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		padding: 14px 0;
		border-top: 1px solid var(--border);
		cursor: pointer;
	}

	.addon-checkbox-wrap {
		width: 18px;
		height: 18px;
		flex-shrink: 0;
		margin-top: 2px;
		position: relative;
	}

	.addon-checkbox-wrap input[type="checkbox"] {
		width: 18px;
		height: 18px;
		cursor: pointer;
		accent-color: var(--amber);
	}

	.addon-info {
		flex: 1;
	}

	.addon-label {
		font-size: 12pt;
		font-weight: 600;
		color: #fff;
		margin-bottom: 2px;
	}

	.addon-desc {
		font-size: 10pt;
		color: var(--text-muted);
		line-height: 1.5;
	}

	.addon-price {
		font-size: 12pt;
		font-weight: 600;
		color: var(--teal);
		white-space: nowrap;
		margin-top: 2px;
	}

	/* Coupon */
	.coupon-toggle {
		font-size: 11pt;
		color: var(--text-muted);
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 10px 0 0;
		transition: color .2s;
		border: none;
		background: none;
	}

	.coupon-toggle:hover {
		color: var(--amber);
	}

	.coupon-section {
		display: none;
		padding-top: 12px;
	}

	.coupon-input-row {
		display: flex;
		gap: 8px;
	}

	.coupon-input-row .beta-input {
		flex: 1;
		height: 44px;
		font-size: 12pt;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		font-family: 'DM Mono', monospace;
	}

	.coupon-btn {
		height: 44px;
		padding: 0 16px;
		border-radius: 999px;
		font-size: 11pt;
		font-weight: 600;
		border: 1px solid var(--border-md);
		background: var(--panel-2);
		color: var(--text);
		cursor: pointer;
		transition: all .2s;
		white-space: nowrap;
	}

	.coupon-btn:hover {
		background: rgba(255, 255, 255, 0.08);
		color: #fff;
	}

	.coupon-feedback {
		font-size: 11pt;
		margin-top: 8px;
		min-height: 16px;
	}

	.coupon-feedback.success {
		color: var(--teal);
	}

	.coupon-feedback.error {
		color: #f09595;
	}

	/* ── Details + Payment ── */
	.detail-card,
	.payment-card {
		background: var(--panel);
		border: 1px solid var(--border);
		border-radius: var(--radius-lg);
		padding: 28px;
		margin-bottom: 20px;
	}

	.card-section-title {
		font-size: 11pt;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.09em;
		color: var(--text-dim);
		margin-bottom: 20px;
	}

	.field-group {
		margin-bottom: 18px;
	}

	.field-label {
		display: block;
		font-size: 10pt;
		font-weight: 600;
		color: var(--text-muted);
		text-transform: uppercase;
		letter-spacing: 0.06em;
		margin-bottom: 8px;
	}

	/* Subdomain field */
	.subdomain-wrap {
		display: flex;
		align-items: center;
		background: var(--bg);
		border: 1px solid var(--border-md);
		border-radius: var(--radius);
		overflow: hidden;
		transition: border-color .2s;
	}

	.subdomain-wrap:focus-within {
		border-color: rgba(255, 255, 255, 0.22);
	}

	.subdomain-wrap.error {
		border-color: rgba(226, 75, 74, 0.5);
	}

	.subdomain-wrap.success {
		border-color: rgba(78, 201, 176, 0.4);
	}

	.subdomain-wrap .beta-input,
	.subdomain-wrap input {
		border: none !important;
		border-radius: 0 !important;
		flex: 1;
		background: transparent !important;
		color: #fff !important;
		outline: none;
		box-shadow: none !important;
	}

	.subdomain-suffix {
		padding: 0 14px;
		color: var(--text-muted);
		font-size: 12pt;
		font-family: 'DM Mono', monospace;
		white-space: nowrap;
		background: var(--panel-2);
		height: 52px;
		display: flex;
		align-items: center;
		border-left: 1px solid var(--border);
		flex-shrink: 0;
	}

	.field-feedback {
		font-size: 11pt;
		margin-top: 6px;
		min-height: 16px;
	}

	.field-feedback.success {
		color: var(--teal);
	}

	.field-feedback.error {
		color: #f09595;
	}

	.field-hint {
		font-size: 10pt;
		color: var(--text-dim);
		margin-top: 4px;
	}

	/* Email exists block */
	.email-exists-block {
		display: none;
		background: rgba(232, 184, 75, 0.08);
		border: 1px solid rgba(232, 184, 75, 0.2);
		border-radius: var(--radius);
		padding: 14px 16px;
		margin-top: 8px;
	}

	.email-exists-block p {
		font-size: 11pt;
		color: var(--text-muted);
		margin-bottom: 8px;
		line-height: 1.5;
	}

	.email-exists-block a {
		color: var(--amber);
		font-weight: 600;
	}

	.email-exists-block a:hover {
		color: #f0c65a;
	}

	/* Payment tabs */
	.payment-tabs {
		display: flex;
		gap: 0;
		border-bottom: 1px solid var(--border);
		margin-bottom: 24px;
	}

	.payment-tab-btn {
		background: none;
		border: none;
		border-bottom: 2px solid transparent;
		padding: 10px 20px;
		font-size: 12pt;
		font-weight: 500;
		color: var(--text-muted);
		cursor: pointer;
		transition: all .2s;
		margin-bottom: -1px;
	}

	.payment-tab-btn:hover {
		color: #fff;
	}

	.payment-tab-btn.active {
		color: #fff;
		border-bottom-color: var(--amber);
	}

	.payment-tab-pane {
		display: none;
	}

	.payment-tab-pane.active {
		display: block;
	}

	/* Stripe card element */
	.stripe-card-element {
		background: var(--bg);
		border: 1px solid var(--border-md);
		border-radius: var(--radius);
		padding: 14px 16px;
		height: 50px;
		transition: border-color .2s;
	}

	.stripe-card-element:focus-within {
		border-color: rgba(255, 255, 255, 0.22);
	}

	#card-errors {
		font-size: 11pt;
		color: #f09595;
		margin-top: 8px;
		min-height: 16px;
	}

	.save-card-row {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-top: 14px;
		font-size: 11pt;
		color: var(--text-muted);
		cursor: pointer;
	}

	.save-card-row input {
		accent-color: var(--amber);
		cursor: pointer;
	}

	/* Place order button */
	.place-order-btn {
		width: 100%;
		padding: 1rem;
		border-radius: 999px;
		font-size: 14pt;
		font-weight: 600;
		border: none;
		background: var(--amber);
		color: #0a0c0f;
		cursor: pointer;
		transition: all .2s;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	.place-order-btn:hover:not(:disabled) {
		background: #f0c65a;
		transform: translateY(-1px);
	}

	.place-order-btn:disabled {
		opacity: 0.65;
		cursor: not-allowed;
		transform: none;
	}

	.place-order-error {
		background: rgba(226, 75, 74, 0.08);
		border: 1px solid rgba(226, 75, 74, 0.2);
		color: #f09595;
		border-radius: var(--radius);
		padding: 12px 16px;
		font-size: 11pt;
		margin-bottom: 16px;
		display: none;
	}

	.secure-note {
		text-align: center;
		font-size: 10pt;
		color: var(--text-dim);
		margin-top: 14px;
	}

	#termsModal .modal-content {
		background: var(--panel);
		border: 1px solid var(--border);
		color: var(--text-muted);
	}

	#termsModal .modal-header {
		border-bottom: 1px solid var(--border);
	}

	#termsModal .modal-footer {
		border-top: 1px solid var(--border);
	}

	#termsModal .modal-title {
		color: #fff;
	}


	#termsModal .modal-body p {
		color: var(--text-muted);
	}

	#termsModal .btn-secondary {
		background: var(--panel-2);
		border-color: var(--border-md);
		color: var(--text);
	}

	#termsModal .btn-secondary:hover {
		background: rgba(255, 255, 255, 0.08);
		border-color: var(--border-md);
		color: #fff;
	}

	#termsModal p {
		margin-bottom: 12pt;
	}

	@media (max-width: 991px) {
		.summary-card {
			position: static;
			margin-bottom: 24px;
		}

		.checkout-page {
			padding-top: 90px;
		}
	}

