:root {
	--acl-green: #15803d;
	--acl-green-dark: #14532d;
	--acl-green-soft: #ecfdf3;
	--acl-gold: #c47f17;
	--acl-gold-soft: #fdf6e7;
	--acl-ink: #0f172a;
	--acl-muted: #64748b;
	--acl-border: #e2e8f0;
	--acl-bg: #f8fafc;
	--acl-card: #ffffff;
	--acl-shadow: 0 24px 70px rgba(15, 23, 42, 0.10), 0 4px 14px rgba(15, 23, 42, 0.05);
	--acl-radius: 24px;
	--acl-sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--acl-mono: 'IBM Plex Mono', Consolas, monospace;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.18), transparent 28rem),
		radial-gradient(circle at 92% 12%, rgba(196, 127, 23, 0.16), transparent 24rem),
		var(--acl-bg);
	color: var(--acl-ink);
	font-family: var(--acl-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

.acl-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	height: 64px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--acl-border);
}

.acl-brand {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	color: var(--acl-ink);
}

.acl-brand-mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: var(--acl-green);
	color: #fff;
	font-weight: 800;
	font-size: 0.7rem;
	letter-spacing: 0.02em;
}

.acl-brand strong {
	display: block;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.acl-wordmark {
	font-size: 1.2rem;
	line-height: 1;
	color: var(--acl-ink);
}

.acl-wordmark span {
	color: var(--acl-green);
}

.acl-brand small {
	display: none;
	color: var(--acl-muted);
	font-size: 0.72rem;
	margin-top: 1px;
}

.acl-nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.acl-nav .menu-item {
	list-style: none;
}

.acl-nav a,
.acl-nav-link {
	display: inline-flex;
	align-items: center;
	padding: 7px 13px;
	border-radius: 7px;
	color: #3d4452;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
}

.acl-nav a:hover,
.acl-nav-link:hover {
	background: #f7f8fa;
	color: var(--acl-ink);
	box-shadow: none;
}

.acl-nav .acl-nav-cta {
	order: 100;
	background: var(--acl-green);
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
}

.acl-nav .acl-nav-cta:hover {
	background: var(--acl-green-dark);
	color: #fff;
}

.acl-landing,
.acl-page {
	display: flex;
	flex-direction: column;
	max-width: 1180px;
	margin: 0 auto;
	padding: 36px 24px 70px;
}

.acl-page {
	display: block;
}

.acl-text-compact .acl-hero h1 {
	font-size: clamp(2.35rem, 5vw, 4.8rem);
	line-height: 0.98;
}

.acl-text-compact .acl-hero-text {
	font-size: clamp(0.95rem, 1.25vw, 1.05rem);
}

.acl-text-compact .acl-section h2 {
	font-size: clamp(1.55rem, 2.55vw, 2.45rem);
}

.acl-text-compact .acl-card p,
.acl-text-compact .acl-stat span,
.acl-text-compact .acl-use-grid span,
.acl-text-compact .acl-section-head > p:not(.acl-kicker) {
	font-size: 0.94rem;
}

.acl-text-large .acl-hero h1 {
	font-size: clamp(3rem, 6.5vw, 6.3rem);
}

.acl-text-large .acl-hero-text {
	font-size: clamp(1.08rem, 1.65vw, 1.28rem);
}

.acl-text-large .acl-section h2 {
	font-size: clamp(2rem, 3.3vw, 3.35rem);
}

.acl-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 44px;
	align-items: center;
	min-height: calc(100vh - 132px);
}

.acl-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	padding: 6px 12px;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	background: var(--acl-green-soft);
	color: var(--acl-green-dark);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.acl-kicker::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
}

.acl-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.7rem, 6vw, 5.8rem);
	line-height: 0.94;
	letter-spacing: -0.07em;
	color: #0f172a !important;
	-webkit-text-fill-color: #0f172a;
}

.acl-hero-text {
	max-width: 650px;
	margin: 24px 0 0;
	color: #475569;
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.acl-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.acl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 12px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.acl-btn:hover {
	transform: translateY(-1px);
}

.acl-btn-primary {
	background: var(--acl-green);
	color: #fff;
	box-shadow: 0 14px 30px rgba(21, 128, 61, 0.22);
}

.acl-btn-primary:hover {
	background: var(--acl-green-dark);
}

.acl-btn-secondary {
	border: 1.5px solid var(--acl-border);
	background: rgba(255, 255, 255, 0.75);
	color: var(--acl-ink);
}

.acl-btn-secondary:hover {
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.acl-btn.is-disabled,
.acl-btn.is-disabled:hover {
	cursor: default;
	pointer-events: none;
	opacity: 0.72;
	transform: none;
	box-shadow: none;
}

.acl-form-preview {
	position: relative;
	padding: 22px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
		radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.14), transparent 15rem);
	box-shadow: var(--acl-shadow);
}

.acl-form-preview::before {
	content: '';
	position: absolute;
	inset: 14px;
	z-index: -1;
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(21, 128, 61, 0.35), rgba(196, 127, 23, 0.20));
	filter: blur(28px);
	opacity: 0.6;
}

.acl-preview-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 4px 18px;
	border-bottom: 1px solid #eef2f6;
	margin-bottom: 18px;
}

.acl-preview-header span {
	color: var(--acl-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.acl-preview-header strong {
	color: var(--acl-green-dark);
}

.acl-preview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.acl-preview-field {
	margin-bottom: 16px;
}

.acl-preview-field label {
	display: block;
	margin-bottom: 7px;
	color: #334155;
	font-size: 0.78rem;
	font-weight: 800;
}

.acl-input-fake,
.acl-textarea-fake {
	width: 100%;
	border: 1.5px solid #d8e1eb;
	border-radius: 12px;
	background: #fff;
	color: var(--acl-ink);
	min-height: 44px;
	padding: 11px 13px;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.acl-input-wrap {
	position: relative;
}

.acl-input-fake.muted {
	color: #94a3b8;
	font-weight: 600;
}

.acl-autosuggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	z-index: 5;
	overflow: hidden;
	border: 1px solid #bbf7d0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.acl-suggest-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-bottom: 1px solid #eef2f6;
}

.acl-suggest-row:last-child {
	border-bottom: none;
}

.acl-suggest-row.is-active {
	background: var(--acl-green-soft);
}

.acl-suggest-row strong {
	color: var(--acl-ink);
	font-size: 0.9rem;
}

.acl-suggest-row span {
	color: var(--acl-green-dark);
	font-size: 0.74rem;
	font-weight: 800;
	white-space: nowrap;
}

.acl-textarea-fake {
	min-height: 86px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		repeating-linear-gradient(180deg, transparent 0 27px, #eef2f6 28px) border-box;
}

.acl-suggestion {
	display: inline-flex;
	margin-top: 8px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--acl-green-soft);
	color: var(--acl-green-dark);
	font-size: 0.76rem;
	font-weight: 800;
}

.acl-preview-submit {
	width: 100%;
	min-height: 48px;
	border: none;
	border-radius: 14px;
	background: var(--acl-green);
	color: #fff;
	font-family: inherit;
	font-weight: 800;
	cursor: default;
}

.acl-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 20px 0 86px;
}

.acl-stat {
	padding: 20px;
	border: 1px solid var(--acl-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.acl-stat strong {
	display: block;
	margin-bottom: 6px;
	color: var(--acl-ink);
	font-size: 1rem;
}

.acl-stat span {
	color: var(--acl-muted);
	font-size: 0.9rem;
}

.acl-section {
	margin: 76px 0;
}

.acl-section-head {
	max-width: 700px;
	margin-bottom: 24px;
}

.acl-section h2 {
	margin: 0;
	color: var(--acl-ink);
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1;
	letter-spacing: -0.045em;
}

.acl-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.acl-section-head > p:not(.acl-kicker) {
	margin: 14px 0 0;
	color: var(--acl-muted);
	font-size: 1rem;
	max-width: 680px;
}

.acl-integration-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.acl-integration-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 118px;
	padding: 14px;
	border: 1px solid var(--acl-border);
	border-radius: 18px;
	background: #fff;
	color: #334155;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.acl-integration-card img {
	display: block;
	max-width: 110px;
	max-height: 38px;
	object-fit: contain;
}

.acl-integration-card strong {
	font-size: 0.86rem;
}

.acl-integration-placeholder {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--acl-green-soft);
	color: var(--acl-green-dark);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.acl-card {
	padding: 24px;
	border: 1px solid var(--acl-border);
	border-radius: 24px;
	background: var(--acl-card);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.acl-card span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--acl-green-soft);
	color: var(--acl-green-dark);
	font-family: var(--acl-mono);
	font-size: 0.8rem;
	margin-bottom: 20px;
}

.acl-card h3 {
	margin: 0 0 8px;
	color: var(--acl-ink);
	font-size: 1.12rem;
}

.acl-card p {
	margin: 0;
	color: var(--acl-muted);
}

.acl-use-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.acl-use-grid article {
	position: relative;
	overflow: hidden;
	min-height: 150px;
	padding: 22px;
	border: 1px solid var(--acl-border);
	border-radius: 24px;
	background:
		radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.13), transparent 9rem),
		#fff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.acl-use-grid article::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: var(--acl-green);
	opacity: 0;
	transition: opacity 0.18s;
}

.acl-use-grid article:hover::after {
	opacity: 1;
}

.acl-use-grid strong {
	display: block;
	margin-bottom: 8px;
	color: var(--acl-ink);
	font-size: 1.05rem;
}

.acl-use-grid span {
	display: block;
	color: var(--acl-muted);
	font-size: 0.92rem;
}

.acl-content-card {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 18px 0 40px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.acl-content-card h1 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	letter-spacing: -0.05em;
}

.acl-login-shell {
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: 32px 18px;
}

.acl-login-card {
	width: min(100%, 460px);
	padding: 34px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.12), transparent 14rem);
	box-shadow: var(--acl-shadow);
}

.acl-login-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	color: var(--acl-ink);
	font-weight: 900;
	font-size: 1.25rem;
	letter-spacing: -0.04em;
}

.acl-login-brand strong span {
	color: var(--acl-green);
}

.acl-login-card h1 {
	margin: 0;
	color: var(--acl-ink);
	font-size: clamp(1.8rem, 4vw, 2.7rem);
	line-height: 1;
	letter-spacing: -0.055em;
}

.acl-login-intro,
.acl-login-card > p:not(.acl-kicker) {
	margin: 14px 0 0;
	color: var(--acl-muted);
}

.acl-login-error {
	margin-top: 18px;
	padding: 12px 14px;
	border: 1px solid #fecaca;
	border-radius: 14px;
	background: #fef2f2;
	color: #991b1b;
	font-size: 0.92rem;
	font-weight: 700;
}

.acl-login-form {
	display: grid;
	gap: 15px;
	margin-top: 24px;
}

.acl-login-form label {
	display: grid;
	gap: 7px;
	color: var(--acl-ink);
	font-weight: 800;
	font-size: 0.9rem;
}

.acl-login-form input[type='text'],
.acl-login-form input[type='password'] {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--acl-border);
	border-radius: 14px;
	background: #fff;
	color: var(--acl-ink);
	font: 600 1rem var(--acl-sans);
	padding: 0 14px;
	outline: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.acl-login-form input:focus {
	border-color: rgba(21, 128, 61, 0.6);
	box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}

.acl-login-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: var(--acl-muted);
	font-size: 0.9rem;
}

.acl-login-row a {
	color: var(--acl-green-dark);
	font-weight: 800;
	text-decoration: none;
}

.acl-login-remember {
	display: flex !important;
	grid-template-columns: none;
	align-items: center;
	gap: 7px !important;
	font-weight: 700 !important;
}

.acl-login-submit {
	min-height: 50px;
	border: 0;
	border-radius: 14px;
	background: var(--acl-green);
	color: #fff;
	cursor: pointer;
	font: 900 0.98rem var(--acl-sans);
	box-shadow: 0 14px 30px rgba(21, 128, 61, 0.22);
}

.acl-login-submit:hover {
	background: var(--acl-green-dark);
}

.acl-footer {
	max-width: 1180px;
	margin: 0 auto;
	padding: 28px 24px 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: var(--acl-muted);
	border-top: 1px solid var(--acl-border);
}

.acl-footer strong {
	display: block;
	color: var(--acl-ink);
}

.acl-footer span {
	display: block;
	font-size: 0.9rem;
}

.acl-footer a {
	color: var(--acl-green-dark);
	font-weight: 800;
	text-decoration: none;
}

.acl-editor-toggle {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
	border: 0;
	border-radius: 999px;
	background: var(--acl-green);
	color: #fff;
	box-shadow: 0 16px 42px rgba(21, 128, 61, 0.28);
	cursor: pointer;
	font: 800 0.88rem var(--acl-sans);
	padding: 13px 18px;
}

.acl-editor {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(15, 23, 42, 0.34);
	backdrop-filter: blur(6px);
}

.acl-editor[hidden] {
	display: none;
}

.acl-editor-panel {
	position: absolute;
	right: 22px;
	bottom: 78px;
	width: min(390px, calc(100vw - 32px));
	max-height: calc(100vh - 110px);
	overflow: auto;
	border: 1px solid var(--acl-border);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
}

.acl-editor-head,
.acl-editor-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--acl-border);
}

.acl-editor-actions {
	border-top: 1px solid var(--acl-border);
	border-bottom: 0;
}

.acl-editor-close,
.acl-editor-list button {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--acl-border);
	border-radius: 9px;
	background: #fff;
	color: var(--acl-ink);
	cursor: pointer;
	font: 800 1rem var(--acl-sans);
}

.acl-editor-body {
	display: grid;
	gap: 18px;
	padding: 18px;
}

.acl-editor-field,
.acl-editor-group {
	display: grid;
	gap: 9px;
}

.acl-editor-field span,
.acl-editor-label {
	color: var(--acl-muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.acl-editor-field select,
.acl-editor-logo-field input {
	width: 100%;
	border: 1px solid var(--acl-border);
	border-radius: 12px;
	background: #fff;
	color: var(--acl-ink);
	font: 700 0.95rem var(--acl-sans);
	padding: 10px 12px;
}

.acl-editor-logo-list {
	display: grid;
	gap: 10px;
}

.acl-editor-logo-field {
	display: grid;
	gap: 6px;
}

.acl-editor-logo-field span {
	color: var(--acl-ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.acl-editor-logo-control {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.acl-editor-logo-control button {
	border: 1px solid var(--acl-border);
	border-radius: 12px;
	background: #fff;
	color: var(--acl-green-dark);
	cursor: pointer;
	font: 800 0.85rem var(--acl-sans);
	padding: 0 12px;
}

.acl-editor-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.acl-editor-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px;
	border: 1px solid var(--acl-border);
	border-radius: 14px;
	background: #f8fafc;
	font-weight: 700;
}

.acl-editor-list label {
	display: flex;
	align-items: center;
	gap: 8px;
}

.acl-editor-list li > div {
	display: flex;
	gap: 5px;
}

.acl-editor-save {
	border: 0;
	border-radius: 12px;
	background: var(--acl-green);
	color: #fff;
	cursor: pointer;
	font: 800 0.9rem var(--acl-sans);
	padding: 11px 15px;
}

.acl-editor-save:disabled {
	cursor: wait;
	opacity: 0.7;
}

.acl-editor-actions span {
	color: var(--acl-muted);
	font-size: 0.86rem;
	font-weight: 700;
}

@media (max-width: 900px) {
	.acl-site-header,
	.acl-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.acl-nav {
		flex-wrap: wrap;
	}

	.acl-hero {
		grid-template-columns: 1fr;
	}

	.acl-hero {
		min-height: auto;
		padding-top: 24px;
	}

	.acl-strip,
	.acl-cards,
	.acl-integration-grid,
	.acl-use-grid {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 560px) {
	.acl-landing,
	.acl-page,
	.acl-site-header,
	.acl-footer {
		padding-left: 16px;
		padding-right: 16px;
	}

	.acl-preview-grid {
		grid-template-columns: 1fr;
	}

	.acl-hero h1 {
		font-size: 3rem;
	}
}
