/* ==========================================================================
   EventLayer Pro theme — single stylesheet, no build step.
   Tokens ported from marketing/design-system/tokens/ (source of truth).
   Layers: 1 tokens · 2 base · 3 components · 4 chrome · 5 front page ·
           6 interior · 7 docs · 8 responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens (design-system port)
   -------------------------------------------------------------------------- */
:root {
	/* Neutrals: cool slate-navy */
	--white: #ffffff;
	--navy-950: #0d1422;
	--navy-900: #101827;
	--navy-850: #16233b;
	--navy-800: #1a202c;
	--navy-700: #212a3a;
	--navy-600: #2b3648;

	--slate-600: #475569;
	--slate-500: #64748b;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--slate-200: #e4ecf4;
	--slate-100: #eef3f9;
	--slate-50: #f6fafd;

	/* Azure accent */
	--blue-50: #eef5fc;
	--blue-100: #d6e8f8;
	--blue-200: #b3d7e9;
	--blue-300: #7bb8e8;
	--blue-400: #4a97e0;
	--blue-500: #2d82d6;
	--blue-600: #2166b3;
	--blue-700: #1b5090;
	--sky-400: #38b6ff;

	/* Semantic */
	--green-500: #16a34a;
	--green-400: #22c55e;
	--amber-500: #d97706;
	--red-500: #dc3232;

	/* Surfaces */
	--surface-page: var(--slate-50);
	--surface-card: var(--white);
	--surface-sunken: var(--slate-100);
	--surface-dark: var(--navy-900);
	--surface-dark-raised: var(--navy-700);
	--surface-inverse: var(--navy-850);

	/* Text */
	--text-strong: var(--navy-850);
	--text-body: var(--slate-600);
	--text-muted: var(--slate-500);
	--text-faint: var(--slate-400);
	--text-on-dark: var(--white);
	--text-on-dark-muted: #a9b6cc;

	/* Brand */
	--accent: var(--blue-500);
	--accent-hover: var(--blue-600);
	--accent-soft: var(--blue-50);
	--accent-glow: var(--sky-400);
	--link: var(--blue-500);

	/* Borders */
	--border: var(--slate-200);
	--border-strong: var(--slate-300);
	--border-on-dark: rgba(255, 255, 255, 0.08);
	--border-focus: var(--blue-500);

	/* Type */
	--font-display: 'Poppins', ui-sans-serif, system-ui, sans-serif;
	--font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.375rem;
	--text-2xl: 1.75rem;
	--text-3xl: 2.25rem;
	--text-4xl: 3rem;
	--text-5xl: 3.75rem;

	--leading-tight: 1.1;
	--leading-snug: 1.25;
	--leading-normal: 1.55;
	--leading-relaxed: 1.7;

	--tracking-tight: -0.02em;
	--tracking-caps: 0.08em;

	/* Spacing / layout */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	--container: 1180px;
	--container-prose: 720px;
	--gutter: 1.5rem;
	--section-y: 5.5rem;

	/* Effects */
	--radius-xs: 4px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 14px;
	--radius-xl: 20px;
	--radius-pill: 999px;

	--shadow-xs: 0 1px 2px rgba(16, 24, 39, 0.06);
	--shadow-sm: 0 2px 6px rgba(16, 24, 39, 0.08);
	--shadow-md: 0 8px 24px rgba(16, 24, 39, 0.1);
	--shadow-lg: 0 18px 48px rgba(16, 24, 39, 0.14);
	--shadow-xl: 0 32px 70px rgba(16, 24, 39, 0.2);
	--shadow-accent: 0 12px 40px rgba(45, 130, 214, 0.35);
	--ring-focus: 0 0 0 3px rgba(45, 130, 214, 0.35);

	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--dur-fast: 120ms;
	--dur-base: 200ms;
	--dur-slow: 360ms;

	--grad-hero: radial-gradient(120% 80% at 50% 8%, #223a63 0%, var(--navy-900) 46%, var(--navy-950) 100%);
	--grad-accent: linear-gradient(135deg, var(--blue-500) 0%, var(--sky-400) 100%);
	--grad-text: linear-gradient(90deg, var(--sky-400) 0%, var(--blue-400) 100%);
	--grid-line: rgba(120, 160, 220, 0.06);

	/* Header height (used by anchors + sticky offsets) */
	--header-h: 68px;
}

/* --------------------------------------------------------------------------
   2. Base / reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
	margin: 0;
	background: var(--surface-page);
	color: var(--text-body);
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	color: var(--text-strong);
	letter-spacing: var(--tracking-tight);
	line-height: var(--leading-snug);
	margin: 0;
}

p {
	margin: 0 0 var(--space-4);
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--link);
}

code,
pre {
	font-family: var(--font-mono);
}

:focus-visible {
	outline: none;
	box-shadow: var(--ring-focus);
	border-radius: var(--radius-xs);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	background: var(--white);
	color: var(--text-strong);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

/* Layout primitives */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow {
	max-width: 860px;
}

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

.band {
	padding-block: var(--section-y);
}

.band--flush-top {
	padding-top: 0;
}

.band--dark {
	background: var(--grad-hero);
	color: var(--text-on-dark-muted);
	position: relative;
	overflow: hidden;
}

.band--dark h1,
.band--dark h2,
.band--dark h3 {
	color: var(--white);
}

.band--grid::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--grid-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
	background-size: 48px 48px;
	-webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 40%, transparent 100%);
	mask-image: radial-gradient(80% 60% at 50% 30%, #000 40%, transparent 100%);
	pointer-events: none;
}

.band--glow::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 120% at 50% 120%, rgba(45, 130, 214, 0.28), transparent 70%);
	pointer-events: none;
}

.band--dark > .container {
	position: relative;
}

.grad-text {
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* --------------------------------------------------------------------------
   3. Components: buttons, badges, section headings, accordion, avatar
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: var(--radius-md);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background var(--dur-base) var(--ease-out),
		border-color var(--dur-base) var(--ease-out),
		transform var(--dur-fast) var(--ease-out),
		box-shadow var(--dur-base) var(--ease-out);
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--sm {
	padding: 8px 14px;
	font-size: 13px;
}

.btn--lg {
	padding: 15px 28px;
	font-size: 16px;
}

.btn--full {
	display: flex;
	width: 100%;
}

.btn--primary {
	background: var(--accent);
	color: var(--white);
	box-shadow: 0 1px 2px rgba(16, 24, 39, 0.12);
}

.btn--primary:hover {
	background: var(--accent-hover);
	color: var(--white);
}

.btn--secondary {
	background: var(--white);
	color: var(--text-strong);
	border-color: var(--border-strong);
}

.btn--secondary:hover {
	border-color: var(--accent);
}

.btn--secondary.btn--on-dark {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	border-color: var(--border-on-dark);
}

.btn--accent {
	background: var(--grad-accent);
	color: var(--white);
	box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
	color: var(--white);
	filter: brightness(1.05);
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	background: var(--slate-100);
	color: var(--text-body);
	font-family: var(--font-body);
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

.badge--on-dark {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--border-on-dark);
	color: var(--white);
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 500;
}

.badge--on-dark .elp-icon {
	color: var(--blue-300);
}

.badge--accent {
	background: var(--accent);
	border-color: transparent;
	color: var(--white);
}

.badge--success {
	background: rgba(22, 163, 74, 0.12);
	border-color: rgba(22, 163, 74, 0.25);
	color: var(--green-400);
}

.eyebrow {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 var(--space-3);
}

.section-heading {
	max-width: 640px;
}

.section-heading h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.12;
}

.section-heading h2 .accent {
	color: var(--accent);
}

.section-heading__sub {
	font-size: 17px;
	line-height: 1.6;
	margin: var(--space-4) 0 0;
	max-width: 560px;
}

.section-heading--center {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.section-heading--center .section-heading__sub {
	margin-inline: auto;
}

.avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-pill);
	background: var(--accent-soft);
	color: var(--blue-600);
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

/* Accordion (FAQ) */
.accordion {
	border-bottom: 1px solid var(--border-on-dark);
}

.accordion:last-child {
	border-bottom: 0;
}

.accordion__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	width: 100%;
	padding: 18px 2px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--white);
}

.accordion__toggle .elp-icon {
	color: var(--blue-300);
	flex-shrink: 0;
	transition: transform var(--dur-base) var(--ease-out);
}

.accordion__toggle[aria-expanded='true'] .elp-icon {
	transform: rotate(180deg);
}

.accordion__panel {
	overflow: hidden;
}

.accordion__panel p {
	margin: 0;
	padding: 0 2px 18px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--text-on-dark-muted);
	max-width: 60ch;
}

/* --------------------------------------------------------------------------
   4. Chrome: header + footer
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(16, 24, 39, 0.82);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-on-dark);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	height: var(--header-h);
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	display: block;
	padding: 8px 14px;
	border-radius: var(--radius-md);
	font-size: 14.5px;
	font-weight: 500;
	text-decoration: none;
	color: var(--text-on-dark-muted);
	transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	color: var(--white);
	cursor: pointer;
	padding: 8px;
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__close {
	display: inline-flex;
}

.site-footer {
	background: var(--navy-900);
	border-top: 1px solid var(--border-on-dark);
	padding-block: var(--space-10);
	color: var(--text-on-dark-muted);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	gap: var(--space-5);
	flex-wrap: wrap;
}

.site-footer__legal {
	font-size: 12.5px;
	color: var(--slate-500);
	margin: var(--space-2) 0 0;
}

.site-footer__list {
	display: flex;
	gap: var(--space-4);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__list a {
	color: var(--text-on-dark-muted);
	text-decoration: none;
	font-size: 14px;
}

.site-footer__list a:hover {
	color: var(--white);
}

.site-footer__github {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	color: var(--text-on-dark-muted);
	text-decoration: none;
	font-size: 14px;
}

.site-footer__github:hover {
	color: var(--white);
}

/* --------------------------------------------------------------------------
   5. Front page
   -------------------------------------------------------------------------- */

/* Hero */
.hero {
	padding-top: var(--space-20);
	padding-bottom: var(--space-16);
}

.hero__inner {
	text-align: center;
}

.hero__inner > .badge {
	margin-bottom: var(--space-5);
}

.hero__title {
	font-size: clamp(38px, 6vw, 64px);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.05;
	max-width: 900px;
	margin-inline: auto;
}

.hero__sub {
	font-size: 18px;
	line-height: 1.6;
	max-width: 640px;
	margin: var(--space-5) auto 0;
}

.hero__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: var(--space-8);
}

/* Hero dashboard mock */
.dash {
	width: 100%;
	max-width: 720px;
	margin: 56px auto 0;
	background: var(--navy-800);
	border: 1px solid var(--border-on-dark);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	text-align: left;
}

.dash__bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-on-dark);
}

.dash__title {
	font-size: 13px;
	font-weight: 600;
	color: var(--white);
}

.dash__bar .badge {
	margin-left: auto;
}

.dash__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 18px;
}

.dash__stat {
	background: var(--navy-700);
	border: 1px solid var(--border-on-dark);
	border-radius: var(--radius-md);
	padding: 12px 13px;
}

.dash__stat-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-on-dark-muted);
}

.dash__stat-top .elp-icon {
	color: var(--blue-300);
}

.dash__stat-value {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	margin-top: 6px;
}

.dash__chart-wrap {
	padding: 0 18px 18px;
}

.dash__chart {
	background: var(--navy-700);
	border: 1px solid var(--border-on-dark);
	border-radius: var(--radius-md);
	padding: 16px;
}

.dash__chart-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--white);
}

.dash__trend {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--green-400);
}

.dash__chart svg {
	display: block;
	width: 100%;
	height: 96px;
}

/* Logo strip */
.logo-strip {
	background: var(--navy-900);
	border-top: 1px solid var(--border-on-dark);
	padding-block: var(--space-8);
}

.logo-strip__label {
	text-align: center;
	font-size: 12.5px;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--slate-500);
	margin: 0 0 var(--space-4);
}

.logo-strip__row {
	display: flex;
	justify-content: space-between;
	gap: var(--space-6);
	flex-wrap: wrap;
	opacity: 0.55;
}

.logo-strip__row span {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--white);
}

/* Features */
.features__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.feature-list {
	list-style: none;
	margin: var(--space-8) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.feature-list__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.feature-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: var(--radius-md);
	background: var(--accent-soft);
	color: var(--accent);
}

.feature-list__item h3 {
	font-size: 16.5px;
	font-weight: 600;
}

.feature-list__item p {
	font-size: 14.5px;
	line-height: 1.6;
	margin: 3px 0 0;
}

.features__panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--grad-hero);
	box-shadow: var(--shadow-lg);
}

.features__panel::before {
	-webkit-mask-image: none;
	mask-image: none;
	background-size: 32px 32px;
}

.features__panel img {
	position: relative;
	width: 46%;
	height: auto;
	opacity: 0.95;
}

/* Testimonial */
.testimonial__card {
	position: relative;
	margin: 0;
	background: var(--white);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	padding: 44px 48px;
	text-align: center;
}

.testimonial__mark {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	padding: 6px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	line-height: 0;
}

.testimonial__card blockquote {
	margin: 10px 0 20px;
	font-family: var(--font-display);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.01em;
	color: var(--text-strong);
}

.testimonial__card figcaption {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.testimonial__who {
	display: flex;
	flex-direction: column;
	text-align: left;
	font-size: 13.5px;
}

.testimonial__who strong {
	color: var(--text-strong);
	font-size: 14.5px;
}

/* CTA band */
.cta__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: var(--space-8);
}

/* Pricing */
.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
	align-items: start;
	margin-top: var(--space-10);
}

.price-card {
	display: flex;
	flex-direction: column;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: var(--space-8);
	color: var(--text-strong);
}

.price-card__name {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
}

.price-card__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: var(--space-4);
}

.price-card__amount {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 700;
	letter-spacing: var(--tracking-tight);
}

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

.price-card__desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-body);
	margin: 0 0 var(--space-5);
}

.price-card__features {
	list-style: none;
	margin: var(--space-6) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-card__features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-body);
}

.check-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	border-radius: var(--radius-pill);
	background: var(--accent-soft);
	color: var(--accent);
}

.price-card--featured {
	background: var(--navy-850);
	border-color: var(--border-on-dark);
	box-shadow: var(--shadow-xl);
	color: var(--white);
}

.price-card--featured .price-card__name {
	color: var(--blue-200);
}

.price-card--featured .price-card__period,
.price-card--featured .price-card__desc,
.price-card--featured .price-card__features li {
	color: var(--text-on-dark-muted);
}

.price-card--featured .check-dot {
	background: rgba(45, 130, 214, 0.25);
}

/* FAQ */
.faq__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
	margin-top: 36px;
	background: var(--navy-800);
	border: 1px solid var(--border-on-dark);
	border-radius: var(--radius-xl);
	padding: 12px 28px;
}

/* Contact */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.contact__card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	padding: var(--space-8);
}

.elp-contact-fallback {
	margin: 0;
	font-size: 15px;
}

/* Form plugin element styling (WPForms / Gravity Forms both render
   plain labels + inputs; these cover the common cases). */
.contact__card label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--text-strong);
	margin-bottom: 6px;
}

.contact__card input[type='text'],
.contact__card input[type='email'],
.contact__card textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	background: var(--white);
	color: var(--text-strong);
	font-family: var(--font-body);
	font-size: 15px;
	transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.contact__card input:focus,
.contact__card textarea:focus {
	outline: none;
	border-color: var(--border-focus);
	box-shadow: var(--ring-focus);
}

.contact__card button[type='submit'],
.contact__card input[type='submit'] {
	display: block;
	width: 100%;
	padding: 12px 20px;
	border: 0;
	border-radius: var(--radius-md);
	background: var(--accent);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--dur-base) var(--ease-out);
}

.contact__card button[type='submit']:hover,
.contact__card input[type='submit']:hover {
	background: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   6. Interior pages
   -------------------------------------------------------------------------- */
.page-hero {
	background: var(--grad-hero);
	padding-block: var(--space-12);
}

.page-hero__title {
	color: var(--white);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
}

.page-band {
	padding-block: var(--space-16);
}

.prose {
	font-size: 15.5px;
	line-height: 1.72;
	color: var(--text-body);
}

.prose h2 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 34px 0 12px;
	scroll-margin-top: calc(var(--header-h) + 12px);
}

.prose h3 {
	font-size: 17px;
	font-weight: 600;
	margin: 26px 0 10px;
}

.prose a {
	color: var(--link);
}

.prose strong {
	color: var(--text-strong);
	font-weight: 600;
}

.prose ul,
.prose ol {
	padding-left: 1.4em;
	margin: 0 0 var(--space-4);
}

.prose li {
	margin-bottom: 6px;
}

.prose code {
	font-size: 0.88em;
	background: var(--slate-100);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 1px 6px;
	color: var(--blue-700);
}

.prose pre {
	background: var(--navy-900);
	color: var(--slate-200);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
	overflow-x: auto;
	font-size: 13.5px;
	line-height: 1.6;
}

.prose pre code {
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
	font-size: inherit;
}

.prose blockquote {
	margin: 0 0 var(--space-4);
	padding: var(--space-4) var(--space-5);
	border-left: 3px solid var(--accent);
	background: var(--accent-soft);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* --------------------------------------------------------------------------
   7. Docs
   -------------------------------------------------------------------------- */
.docs {
	display: grid;
	grid-template-columns: 248px minmax(0, 1fr) 220px;
	max-width: 1280px;
	margin-inline: auto;
	background: var(--white);
}

.docs__sidebar {
	border-right: 1px solid var(--border);
	padding: 28px 20px;
	position: sticky;
	top: var(--header-h);
	align-self: start;
	height: calc(100vh - var(--header-h));
	overflow-y: auto;
}

.docs__group {
	margin-bottom: 22px;
}

.docs__group-label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 8px;
}

.docs__home,
.docs__link {
	display: block;
	padding: 7px 10px;
	margin-bottom: 2px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	color: var(--text-body);
}

.docs__home {
	margin-bottom: 18px;
}

.docs__home:hover,
.docs__link:hover {
	background: var(--slate-100);
}

.docs__home.is-active,
.docs__link.is-active {
	color: var(--accent);
	background: var(--accent-soft);
	font-weight: 600;
}

.docs__article {
	padding: 36px 48px;
	min-width: 0;
}

.docs__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 14px;
}

.docs__breadcrumb a {
	color: var(--text-muted);
	text-decoration: none;
}

.docs__breadcrumb a:hover {
	color: var(--accent);
}

.docs__breadcrumb .elp-icon {
	color: var(--slate-300);
}

.docs__breadcrumb span {
	color: var(--text-body);
}

.docs__title {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: var(--space-4);
}

.docs__pager {
	display: flex;
	justify-content: space-between;
	gap: var(--space-4);
	margin-top: var(--space-10);
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.docs__pager a {
	text-decoration: none;
	font-size: 14px;
}

.docs__pager-prev {
	color: var(--text-muted);
}

.docs__pager-next {
	color: var(--accent);
	font-weight: 600;
	margin-left: auto;
}

.docs__toc {
	padding: 36px 20px;
	position: sticky;
	top: var(--header-h);
	align-self: start;
	max-height: calc(100vh - var(--header-h));
	overflow-y: auto;
}

.docs__toc a {
	display: block;
	padding: 5px 0;
	font-size: 13.5px;
	line-height: 1.5;
	text-decoration: none;
	color: var(--text-muted);
}

.docs__toc a:hover,
.docs__toc a.is-active {
	color: var(--accent);
}

/* --------------------------------------------------------------------------
   8. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.docs {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.docs__toc {
		display: none;
	}
}

@media (max-width: 900px) {
	.features__grid,
	.contact__grid {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}

	.pricing__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}

	.faq__panel {
		grid-template-columns: 1fr;
		gap: 0;
	}

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

@media (max-width: 768px) {
	.site-nav {
		display: none;
		position: absolute;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: var(--navy-900);
		border-bottom: 1px solid var(--border-on-dark);
		padding: var(--space-3) var(--gutter) var(--space-5);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.site-nav__list a {
		padding: 12px 14px;
		font-size: 16px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.band {
		padding-block: var(--space-16);
	}

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

	.docs__sidebar {
		position: static;
		height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--border);
	}

	.docs__article {
		padding: 28px var(--gutter);
	}

	.testimonial__card {
		padding: 36px 24px;
	}

	.logo-strip__row {
		justify-content: center;
	}
}

