/* Base */
body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.55;
	font-size: 16px;
}

h1, h2, h3, h4 {
	color: var(--ink);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 0.6em;
	letter-spacing: -0.02em;
}

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

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 44px 0;
}

@media (min-width: 768px) {
	.section { padding: 72px 0; }
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--indigo);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Skip link — visually hidden until keyboard-focused (WCAG 2.4.1 Bypass Blocks) */
.skip-link {
	position: absolute;
	top: -100px;
	left: 12px;
	z-index: 1000;
	background: var(--ink);
	color: var(--white);
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: top 0.15s ease;
}
.skip-link:focus {
	top: 12px;
}

/* Scroll-reveal (progressively enhanced by main.js; safe with JS disabled
   since .reveal has no opacity rule until .js-reveal-ready is set on body) */
body.js-reveal-ready .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
body.js-reveal-ready .reveal--delay { transition-delay: 0.12s; }
body.js-reveal-ready .reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	body.js-reveal-ready .reveal { opacity: 1; transform: none; }
}

.section--muted { background: var(--paper); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--indigo);
	margin-bottom: 0.75em;
}

.section-head {
	max-width: 720px;
	margin: 0 0 40px;
}

.section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.text-muted { color: #475569; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 0;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
	min-height: 46px;
	white-space: nowrap;
}

/* .btn-primary and .btn-ghost render no border at all (see .btn above) —
   a `border: 1px solid transparent` here used to cause a visible dark seam
   at the rounded corners of the gradient background in Chrome/Edge. Only
   .btn-secondary variants need a real, visibly-colored border, so they set
   the full `border` shorthand themselves instead of relying on a shared
   transparent one. */
.btn-primary {
	background: var(--gradient-brand);
	color: var(--white);
	box-shadow: 0 10px 24px -12px rgba(37, 99, 235, 0.8);
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn-primary:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
	box-shadow: 0 14px 30px -12px rgba(37, 99, 235, 0.9);
}
.btn-primary:disabled { opacity: 0.65; cursor: not-allowed; }

.btn-secondary {
	background: var(--white);
	color: var(--ink);
	border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }

.btn-ghost {
	background: transparent;
	color: var(--ink);
}
.btn-ghost:hover { color: var(--indigo); }

.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-on-dark.btn-secondary {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.35);
	color: var(--white);
}
.btn-on-dark.btn-secondary:hover { border-color: var(--white); }

/* Grid / Cards */
.grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.grid--2 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
	.grid--4 { grid-template-columns: repeat(4, 1fr); }
	.grid--6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
	.grid--6 { grid-template-columns: repeat(6, 1fr); }
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 28px;
}

.card--muted { background: var(--paper); }

/* card-base/card-hover — the rounder, softer-shadow card used by the
   rebranded Problem/Features/Who-It's-For/Security sections; kept separate
   from the older .card so existing usages of .card aren't affected. */
.card-base {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-base h3 { margin-bottom: 8px; }
.card-hover:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: var(--shadow-lift);
}

.gradient-text {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.icon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--indigo);
	margin-bottom: 16px;
	font-size: 1.25rem;
}
/* Accent variants — cycle cards through the brand's three hues instead of
   using the same blue for every icon (Problem, Features, Who It's For,
   Security sections all use this). */
.icon-badge--cyan { background: rgba(0, 212, 255, 0.12); color: #0891B2; }
.icon-badge--blue { background: rgba(37, 99, 235, 0.1); color: var(--blue); }
.icon-badge--purple { background: rgba(124, 58, 237, 0.12); color: var(--purple); }
.icon-badge--green { background: rgba(4, 120, 87, 0.12); color: #047857; }
.icon-badge--amber { background: rgba(180, 83, 9, 0.12); color: #B45309; }

/* Icon sizing — a single, centralized rule per icon "slot" so every icon in
   a given role renders at the same physical size, instead of relying on
   whatever width/height each individual <svg> happened to be given inline
   (which drifted over time — some slots ended up with icons noticeably
   bigger or smaller than others of the same role). All content icons in the
   theme follow the Lucide icon-set convention: 24x24 viewBox, stroke-based,
   round caps/joins, stroke-width 2 (2.5 for small checkmarks, for legibility
   at very small sizes) — sized purely via these rules, never via inline
   width/height attributes on the <svg> itself. */
.icon-badge svg { width: 22px; height: 22px; }
.security-tile .icon-badge svg { width: 18px; height: 18px; }
.welcome-checklist__icon svg { width: 14px; height: 14px; }
.checkout-secure-badge svg { width: 15px; height: 15px; }

/* Logo */
.cubsys-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	line-height: 1;
}
.cubsys-logo--stacked { flex-direction: column; text-align: center; gap: 4px; }
.cubsys-logo__word {
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--ink);
}
.cubsys-logo__word-accent {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Announcement bar */
.announcement-bar {
	background: var(--ink);
	color: var(--white);
}
.announcement-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	padding: 8px 44px;
	position: relative;
	font-size: 0.82rem;
	text-align: center;
}
.announcement-bar__text { margin: 0; }
.announcement-bar__cta {
	color: #7DD3FC;
	font-weight: 700;
	white-space: nowrap;
}
.announcement-bar__close {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255,255,255,0.6);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.announcement-bar__close:hover { color: var(--white); }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 1px 2px rgba(11, 22, 56, 0.03);
	transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.is-scrolled {
	background: var(--white);
	box-shadow: 0 1px 0 rgba(11, 22, 56, 0.03), 0 8px 24px -12px rgba(11, 22, 56, 0.14);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 20px;
}
.site-header__logo--mobile { display: flex; }
.site-header__logo--full { display: none; }

.site-nav { display: none; }
.nav-menu {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}
.nav-menu a {
	position: relative;
	color: var(--ink);
	font-weight: 500;
	font-size: 0.92rem;
	letter-spacing: -0.01em;
	padding: 6px 0;
	transition: color 0.15s ease;
}
.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1.5px;
	background: var(--indigo);
	transition: right 0.2s ease;
}
.nav-menu a:hover { color: var(--indigo); }
.nav-menu a:hover::after { right: 0; }

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
	color: var(--indigo);
	font-weight: 600;
}
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after { right: 0; }

@media (min-width: 1280px) {
	.nav-menu { gap: 40px; }
}

.site-header__actions { display: none; }

.hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
}
.hamburger span {
	display: block;
	height: 2px;
	width: 22px;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* top/height are set inline by initMobileMenu() (main.js) from the real
   header height at the moment the menu opens — a hardcoded top offset here
   drifted out of sync with the header's actual height (announcement bar +
   nav row), leaving the panel opening mostly hidden behind the header with
   only a sliver of its first link visible. The 64px values below are only
   an unscripted-JS fallback. */
.mobile-menu {
	display: none;
	position: fixed;
	top: 64px;
	right: 0;
	left: 0;
	height: calc(100vh - 64px);
	background: var(--white);
	z-index: 39;
	padding: 24px 20px;
	overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.mobile-menu__list a {
	display: block;
	padding: 14px 4px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}
.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current_page_item > a { color: var(--indigo); }
.mobile-menu__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
body.mobile-menu-open { overflow: hidden; }

/* 900px, not 1024px — matches .site-footer__inner's own breakpoint (and
   most other tablet-vs-desktop switches in this file, e.g. .grid--3/--4,
   .dashboard-stats). The two used to disagree: from 900-1023px the footer
   already rendered its full desktop grid while the header stayed stuck in
   hamburger-menu mode — verified the desktop header content (logo, 5 nav
   links, actions) fits with no overlap/overflow all the way down to 900px. */
@media (min-width: 900px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		padding: 16px 24px;
	}
	.site-header__logo--mobile { display: none; }
	.site-header__logo--full { display: flex; }
	.site-nav { display: block; justify-self: center; }
	.site-header__actions { display: flex; align-items: center; justify-self: end; gap: 16px; }
	.hamburger { display: none; }
	.mobile-menu { display: none !important; }
	.site-header--checkout .site-header__inner { display: flex; justify-content: space-between; }
}

/* Checkout — minimal header/footer (see header-checkout.php / footer-checkout.php) */
.checkout-secure-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #475569;
	font-size: 0.85rem;
	font-weight: 500;
	flex-shrink: 0;
}
.checkout-secure-badge svg { color: var(--indigo); flex-shrink: 0; }
.checkout-identity { margin-top: 10px; font-size: 0.88rem; color: #475569; }
.checkout-identity strong { color: var(--ink); }
.checkout-identity--warning { color: #92400e; }
.checkout-identity--warning a { color: var(--indigo); text-decoration: underline; }
.checkout-plan-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.checkout-change-plan { font-size: 0.85rem; color: var(--indigo); text-decoration: underline; }

/* Hero */
.hero {
	padding: 44px 0 54px;
	overflow: hidden;
}

/* .hero__content / .hero__visual / .hero__actions / .hero__trust are also
   used by the industry landing-page template (page-industry.php), so their
   base rules stay unscoped and neutral; anything homepage-specific below is
   scoped under .hero--home. */
.hero__content { max-width: 560px; }
.hero__visual { position: relative; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__trust { font-size: 0.85rem; color: #64748B; font-weight: 600; margin-bottom: 10px; }

.text-accent { color: var(--indigo); }

.hero--home {
	position: relative;
	background:
		radial-gradient(ellipse 560px 380px at 12% 10%, rgba(124, 58, 237, 0.07), rgba(124, 58, 237, 0) 70%),
		radial-gradient(ellipse 560px 380px at 90% 90%, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0) 70%);
}

/* Same soft brand-color wash as .hero--home, for secondary-page heroes
   that want a lighter touch than plain white (e.g. /how-it-works) without
   introducing a new visual style. */
.hero--wash {
	position: relative;
	background:
		radial-gradient(ellipse 700px 460px at 12% 8%, rgba(0, 212, 255, 0.16), rgba(0, 212, 255, 0) 70%),
		radial-gradient(ellipse 700px 460px at 88% 92%, rgba(124, 58, 237, 0.14), rgba(124, 58, 237, 0) 70%);
}

/* Centered, single-column hero layout (v2) — badge, headline, price, CTAs,
   a four-item proof-point row, and an industry-category row. */
.hero__inner-v2 { max-width: 860px; margin: 0 auto; text-align: center; }

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--surface-blue);
	border: 1px solid rgba(37, 99, 235, 0.18);
	color: var(--indigo);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__heading {
	margin: 0;
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.15;
}
.hero__lede { max-width: 560px; margin: 20px auto 0; font-size: 1.05rem; }

.hero__price { display: flex; align-items: baseline; gap: 8px; margin: 28px 0 4px; }
.hero__price--center { justify-content: center; }
.hero__price-amount {
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
	line-height: 1;
}
.hero__price-suffix { font-size: 1.1rem; font-weight: 600; color: #334155; }
.hero__price-note { font-size: 0.85rem; color: #64748B; margin: 4px 0 0; }

.hero--home .hero__actions,
.hero__actions--center { margin-top: 28px; margin-bottom: 0; justify-content: center; }
.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Four-item proof-point row */
.hero__features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px 40px;
	margin-top: 48px;
}
.hero__feature { display: flex; align-items: center; gap: 10px; }
.hero__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--surface-blue);
	color: var(--indigo);
	flex-shrink: 0;
}
.hero__feature-icon svg { width: 18px; height: 18px; }
.hero__feature-text { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.hero__feature-text strong { font-size: 0.9rem; color: var(--ink); font-weight: 700; }
.hero__feature-text small { font-size: 0.78rem; color: #64748B; }

/* Industry-category row */
.hero__industries { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.hero__industries-label { display: block; margin-bottom: 24px; }
.hero__industries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 12px;
}
@media (min-width: 640px) {
	.hero__industries-grid { grid-template-columns: repeat(8, 1fr); }
}
.hero__industry-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ink);
	transition: transform 0.15s ease, color 0.15s ease;
}
.hero__industry-item:hover { color: var(--indigo); transform: translateY(-2px); }
.hero__industry-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--surface-blue);
	color: var(--indigo);
}
.hero__industry-icon svg { width: 22px; height: 22px; }
.hero__industry-icon--1 { background: rgba(37, 99, 235, 0.1); color: var(--indigo); }
.hero__industry-icon--2 { background: rgba(124, 58, 237, 0.1); color: var(--violet); }
.hero__industry-icon--3 { background: rgba(0, 212, 255, 0.12); color: #0891B2; }
.hero__industry-icon--4 { background: rgba(37, 99, 235, 0.1); color: var(--indigo); }

.trust-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}
.trust-points li {
	font-size: 0.85rem;
	color: var(--ink);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}
.trust-points li::before {
	content: "✓";
	color: var(--indigo);
	font-weight: 700;
	font-size: 0.78rem;
}
.trust-points--center { justify-content: center; }
.trust-points--divided li:not(:last-child) { position: relative; padding-right: 20px; }
.trust-points--divided li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background: var(--line);
}

.hero__benefits { margin-top: 40px; padding: 20px 0; border-top: 1px solid var(--line); }

.browser-mock__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: #EDEFF3;
	border-bottom: 1px solid var(--line);
}
.browser-mock__dot {
	width: 9px; height: 9px; border-radius: 50%; background: #CBD5E1;
}
.browser-mock__url {
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 3px 14px;
	font-size: 0.72rem;
	color: #94A3B8;
}

/* Shared browser-mock frame — also used by the industry landing-page
   template (page-industry.php) and the Features / Lead-gen sections. */
.site-preview {
	position: relative;
	padding: 22px 20px 56px 0;
}
.site-preview__main {
	position: relative;
	z-index: 2;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 24px 48px -20px rgba(11, 22, 56, 0.22), 0 4px 12px -4px rgba(11, 22, 56, 0.06);
	background: var(--white);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
	.site-preview:hover .site-preview__main {
		transform: translateY(-6px);
		box-shadow: 0 32px 60px -18px rgba(11, 22, 56, 0.28), 0 6px 16px -4px rgba(11, 22, 56, 0.08);
	}
}
.site-preview__body {
	padding: 22px 24px 28px;
	background: linear-gradient(180deg, #FBFBFE, var(--white) 40%);
	min-height: 300px;
}
.site-preview__body--simple { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; min-height: 260px; }
.site-preview__simple-brand { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--indigo); }
.site-preview__simple-headline { font-size: 1.4rem; font-weight: 800; line-height: 1.25; color: var(--ink); letter-spacing: -0.01em; }
.site-preview__simple-subtext { font-size: 0.9rem; color: #64748B; }
.site-preview__simple-cta { display: inline-block; font-size: 0.85rem; font-weight: 700; color: var(--white); background: var(--indigo); padding: 9px 18px; border-radius: 8px; margin-top: 6px; }

/* Used by the industry landing-page template (page-industry.php), which
   reuses this .site-preview component with a simpler single-card mockup. */
.ui-label {
	position: absolute;
	z-index: 3;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ink);
	box-shadow: 0 10px 24px -10px rgba(11, 22, 56, 0.25);
}
.ui-label::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--indigo);
	margin-right: 7px;
}
.ui-label--1 { top: -14px; left: 10%; }
.ui-label--3 { bottom: 14%; left: 6%; }

@media (max-width: 640px) {
	.ui-label { display: none; }
}

@media (min-width: 900px) {
	.hero__inner { grid-template-columns: 0.92fr 1.18fr; }
	.hero--home .hero__top {
		grid-template-columns: 1.15fr 0.85fr;
		align-items: start;
	}
}

/* Checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; }
.checklist li::before {
	content: "✓";
	flex-shrink: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(37,99,235,0.12);
	color: var(--indigo);
	font-size: 0.75rem;
	font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	margin-top: 2px;
}

/* Boundaries */
.boundaries-grid { gap: 24px; }
.boundaries-card h3 { margin-bottom: 10px; }
.boundaries-card__badge { margin-top: 14px; background: rgba(37, 99, 235, 0.1); color: var(--indigo); }
.boundaries-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.boundaries-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: #64748B; }
.boundaries-list li::before {
	content: "×";
	flex-shrink: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: #F1F5F9;
	color: #94A3B8;
	font-size: 0.85rem;
	font-weight: 700;
	display: flex; align-items: center; justify-content: center;
}
.boundaries-note { max-width: 560px; margin: 28px auto 0; font-size: 0.88rem; }

/* Homepage Steps / timeline (condensed 5-step horizontal version) */
.steps { display: grid; gap: 36px 28px; counter-reset: step; }
@media (min-width: 900px) { .steps--5 { grid-template-columns: repeat(5, 1fr); } }
.step { position: relative; padding-left: 0; text-align: center; }
.step__text { font-size: 0.85rem; margin: 0; }
.step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--white);
	color: var(--indigo);
	box-shadow: var(--shadow-soft);
	margin: 0 auto 18px;
	position: relative;
	z-index: 1;
}
.step__number svg { width: 24px; height: 24px; }
.step__badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--indigo);
	color: var(--white);
	font-size: 0.7rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--paper);
	z-index: 2;
}
.step h3 { font-size: 0.98rem; }

@media (min-width: 900px) {
	.steps--timeline { position: relative; }
	.steps--timeline::before {
		content: "";
		position: absolute;
		top: 20px;
		left: calc(10% + 32px);
		right: calc(10% + 32px);
		height: 24px;
		z-index: 0;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='40' viewBox='0 0 400 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C25,3 75,3 100,20 C125,37 175,37 200,20 C225,3 275,3 300,20 C325,37 375,37 400,20' fill='none' stroke='%232563EB' stroke-opacity='0.4' stroke-width='2' stroke-dasharray='5 5' stroke-linecap='round'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-size: 100% 100%;
		background-position: center;
	}
	.steps--timeline .step { text-align: center; }
	.steps--timeline .step__number { margin-left: auto; margin-right: auto; }
}

/* /how-it-works page — vertical alternating-side timeline (7 steps, richer
   than the homepage's condensed version: per-step icon + description). */
.process-timeline {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px 0;
	max-width: 720px;
	margin: 16px auto 0;
}
.process-step__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--surface-blue);
	border: 1px solid rgba(37, 99, 235, 0.14);
	box-shadow: var(--shadow-soft);
	color: var(--indigo);
	position: relative;
	z-index: 1;
}
.process-step__icon svg { width: 24px; height: 24px; }
.process-step__content { text-align: center; }
.process-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--indigo);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
	margin-bottom: 8px;
}
.process-step__content h3 { font-size: 1.05rem; margin: 0 0 6px; }
.process-step__content p { font-size: 0.88rem; margin: 0; max-width: 320px; margin-left: auto; margin-right: auto; }
.process-timeline__footnote { text-align: center; margin: 36px 0 0; font-size: 0.88rem; }

@media (min-width: 780px) {
	.process-timeline {
		grid-template-columns: 1fr 72px 1fr;
		gap: 44px 24px;
		max-width: 900px;
	}
	.process-timeline::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 2px;
		background-image: repeating-linear-gradient(to bottom, rgba(37, 99, 235, 0.35) 0 6px, transparent 6px 14px);
	}
	/* Explicit column placement — independent of DOM order (icon is emitted
	   first in markup so mobile's single-column stack always shows icon
	   before text, regardless of which side a given step's content is on). */
	.process-step__icon { grid-column: 2; align-self: center; }
	.process-step__side--left { grid-column: 1; align-self: center; text-align: right; }
	.process-step__side--right { grid-column: 3; align-self: center; text-align: left; }
	.process-step__side--left .process-step__content p { margin-left: auto; margin-right: 0; }
	.process-step__side--right .process-step__content p { margin-left: 0; margin-right: auto; }
	.process-step__content { text-align: inherit; }

	/* Explicit row per step (icon + left-side + right-side share a row) —
	   only at this desktop breakpoint. Below it .process-timeline is a
	   single column and these three elements must stay in normal DOM flow
	   (icon, then whichever side has content), so this is intentionally
	   NOT set at the base/mobile rule above. */
	.process-row-1 { grid-row: 1; }
	.process-row-2 { grid-row: 2; }
	.process-row-3 { grid-row: 3; }
	.process-row-4 { grid-row: 4; }
	.process-row-5 { grid-row: 5; }
	.process-row-6 { grid-row: 6; }
	.process-row-7 { grid-row: 7; }
}

/* Lead generation split */
.leadgen-split {
	display: grid;
	gap: 40px;
	align-items: center;
}
.leadgen-split__content h2 { max-width: 460px; }
.leadgen-split__statement { font-size: 1.4rem; font-weight: 800; margin: 12px 0 0; letter-spacing: -0.01em; }

/* Security */
.security-split { display: grid; gap: 32px; align-items: center; }
.security-split__content h2 { max-width: 420px; }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 480px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }
.security-tile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 18px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
}
.security-tile .icon-badge { width: 36px; height: 36px; margin-bottom: 0; }
.security-tile__label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }

@media (min-width: 900px) {
	.security-split { grid-template-columns: 1fr 1.15fr; gap: 56px; }
}
.tag-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tag-list li {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
}
.leadgen-split__visual .browser-mock {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 24px 56px -28px rgba(11, 22, 56, 0.3);
}
.mock-form { padding: 24px; background: var(--white); }
.mock-form h3 { margin-bottom: 18px; font-size: 1.05rem; }
.mock-form__field { margin-bottom: 14px; }
.mock-form__field label { display: block; font-size: 0.78rem; font-weight: 600; color: #64748B; margin-bottom: 6px; }
.mock-form__field span {
	display: flex;
	align-items: center;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	background: var(--paper);
	border: 1px solid var(--line);
	font-size: 0.85rem;
	color: #94A3B8;
}
.mock-form__field span.mock-form__area { height: 56px; align-items: flex-start; padding-top: 10px; }
.mock-form .btn { margin-top: 6px; pointer-events: none; }

@media (min-width: 900px) {
	.leadgen-split { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* Vertical connected timeline (used on dedicated pages, e.g. How It Works) */
.vertical-timeline {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}
.vertical-timeline::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: var(--line);
}
.vertical-timeline__item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	position: relative;
	padding-bottom: 30px;
}
.vertical-timeline__item:last-child { padding-bottom: 0; }
.vertical-timeline__number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
	z-index: 1;
}
.vertical-timeline__content { padding-top: 8px; }
.vertical-timeline__content h3 { margin: 0 0 4px; font-size: 1.02rem; }
.vertical-timeline__content p { margin: 0; }

/* Comparison — two columns of pill rows (traditional vs. CUBSYS) with a
   center strip of small icons marking what each row is about. */
.compare-grid {
	display: grid;
	grid-template-columns: 1fr 48px 1fr;
	align-items: stretch;
	gap: 10px 16px;
	max-width: 900px;
	margin: 0 auto;
}
.compare-head {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 16px;
	border-radius: 14px;
	font-weight: 700;
	text-align: center;
	font-size: 1rem;
	line-height: 1.3;
}
.compare-head--no { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.compare-head--yes { background: var(--gradient-brand); color: var(--white); }

.compare-pill {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 14px;
	font-size: 0.9rem;
	font-weight: 600;
}
.compare-pill--no { background: rgba(239, 68, 68, 0.05); color: #64748B; }
.compare-pill--yes { background: var(--surface-blue); color: var(--ink); }

.compare-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	flex-shrink: 0;
}
.compare-pill__icon svg { width: 14px; height: 14px; }
.compare-pill__icon--no { background: rgba(220, 38, 38, 0.12); color: #DC2626; }
.compare-pill__icon--yes { background: rgba(22, 163, 74, 0.12); color: #16A34A; }

.compare-center-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--indigo);
	box-shadow: var(--shadow-soft);
}
.compare-center-icon svg { width: 16px; height: 16px; }

@media (max-width: 700px) {
	.compare-grid { grid-template-columns: 1fr; }
	.compare-center-icon { display: none; }
}

.why-cubsys-statement {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 32px auto 0;
	padding: 16px 28px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.1));
	border: 1px solid rgba(124, 58, 237, 0.12);
	max-width: 100%;
}
.why-cubsys-statement p { margin: 0; font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.why-cubsys-statement__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--white);
	color: var(--violet);
	flex-shrink: 0;
	box-shadow: var(--shadow-soft);
}
.why-cubsys-statement__icon svg { width: 16px; height: 16px; }

/* Problem — 3-card grid + closing statement bar */
.problem-closing {
	margin-top: 40px;
	padding: 24px 32px;
	border-radius: 24px;
	background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.1));
	border: 1px solid rgba(124, 58, 237, 0.12);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.problem-closing__text { display: flex; align-items: center; gap: 14px; }
.problem-closing__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--white);
	color: var(--violet);
	flex-shrink: 0;
	box-shadow: var(--shadow-soft);
}
.problem-closing__icon svg { width: 18px; height: 18px; }
.problem-closing p { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--ink); }

/* Why CUBSYS — compact dark */
.why-cubsys-compact { padding-top: 56px; padding-bottom: 56px; }
.why-cubsys-compact__grid { max-width: 820px; margin: 0 auto; }
.why-cubsys-compact__item { text-align: center; }
.why-cubsys-compact__item h3 { font-size: 1rem; margin-bottom: 6px; }
.why-cubsys-compact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: #C4B5FD;
	margin-bottom: 14px;
}

/* Showcase → industries sub-strip (merged into the showcase section) */
.showcase-industries {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--line);
}
.showcase-industries__label {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #94A3B8;
	margin-bottom: 18px;
}

/* Industry chips */
.industry-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	max-width: 780px;
	margin: 0 auto;
}
.industry-chip {
	padding: 12px 22px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	font-weight: 600;
	font-size: 0.9rem;
	transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.industry-chip:hover {
	border-color: var(--indigo);
	color: var(--indigo);
	background: rgba(37, 99, 235, 0.06);
	transform: translateY(-2px);
}

/* Pricing */
.pricing-section {
	position: relative;
}
.pricing-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 640px 420px at 15% 0%, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0) 70%),
		radial-gradient(ellipse 640px 420px at 85% 100%, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0) 70%);
	pointer-events: none;
}
.pricing-section > .container { position: relative; }

.pricing-toggle {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: var(--surface-blue);
	border: 1px solid rgba(37, 99, 235, 0.12);
	border-radius: 999px;
	padding: 5px;
	margin-top: 24px;
}
.pricing-toggle__option {
	border: none;
	background: none;
	padding: 10px 20px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.85rem;
	color: #475569;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-toggle__option.is-active {
	background: var(--ink);
	color: var(--white);
	box-shadow: 0 8px 20px -8px rgba(11, 22, 56, 0.45);
}
.pricing-toggle__save {
	background: rgba(37,99,235,0.12);
	color: var(--indigo);
	font-size: 0.68rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
}
.pricing-toggle__option.is-active .pricing-toggle__save { background: rgba(255,255,255,0.18); color: var(--white); }

.pricing-tiers {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
	margin-top: 48px;
	align-items: stretch;
}
.pricing-tier {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 34px 28px;
	position: relative;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-tier__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--surface-blue);
	color: var(--indigo);
	margin-bottom: 18px;
}
.pricing-tier__icon svg { width: 22px; height: 22px; }
.pricing-tier--outline .pricing-tier__icon { background: rgba(124, 58, 237, 0.1); color: var(--violet); }
.pricing-tier__name { font-size: 1.1rem; margin-bottom: 4px; }
.pricing-tier__tagline { font-size: 0.86rem; color: #64748B; margin-bottom: 20px; min-height: 2.6em; }
.pricing-tier__price { font-size: 2.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.pricing-tier__price--text { font-size: 1.6rem; }
.pricing-tier__period { font-size: 0.95rem; font-weight: 500; color: #64748B; }
.pricing-tier__save-note { font-size: 0.78rem; color: #64748B; margin: 8px 0 0; min-height: 1.4em; }
.pricing-tier__features { margin: 24px 0 28px; flex: 1; }
.pricing-tier__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient-brand);
	color: var(--white);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 6px 16px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 8px 16px -8px rgba(37, 99, 235, 0.6);
}

.pricing-tier--simple, .pricing-tier--strong { border-color: var(--line); }
.pricing-tier--featured {
	border: 2px solid var(--indigo);
	background: linear-gradient(180deg, var(--surface-blue) 0%, var(--white) 45%);
	box-shadow: 0 30px 60px -26px rgba(37, 99, 235, 0.45);
	/* On mobile (single-column stack) Business jumps to the front so it's
	   the first plan seen, not the second — matches the "steer toward
	   Business" pricing strategy. Reset to natural order once the grid
	   goes multi-column, where its border/badge/scale already stand out. */
	order: -1;
}
.pricing-tier--outline {
	background: transparent;
	border: 1px dashed var(--line);
	box-shadow: none;
	justify-content: center;
}
.pricing-tier--outline .pricing-tier__features { margin-top: 22px; }
.pricing-tier--simple:hover, .pricing-tier--strong:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lift);
	border-color: rgba(37, 99, 235, 0.35);
}

@media (min-width: 700px) {
	.pricing-tiers { grid-template-columns: repeat(2, 1fr); }
	.pricing-tier--featured { order: 0; }
}
@media (min-width: 1100px) {
	.pricing-tiers { grid-template-columns: repeat(4, 1fr); }
	.pricing-tier--featured { transform: scale(1.045); z-index: 1; }
}

/* Badges */
.badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(124, 58, 237, 0.12);
	color: var(--purple);
}

/* Add-ons compact row */
.addons-section { padding-top: 48px; padding-bottom: 48px; }
.addons-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	max-width: 880px;
	margin: 0 auto;
}
.addon-chip {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: var(--shadow-soft);
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.addon-chip:hover { border-color: var(--indigo); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.addon-chip__icon { color: var(--indigo); flex-shrink: 0; }
.addon-chip__icon svg { width: 22px; height: 22px; }
.addon-chip__text { display: flex; flex-direction: column; gap: 2px; }
.addon-chip__name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.addon-chip__price { font-size: 0.8rem; color: var(--indigo); font-weight: 700; white-space: nowrap; }

/* Examples / filter tabs */
.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}
.filter-tabs button {
	padding: 11px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	min-height: 44px;
}
.filter-tabs button:hover {
	border-color: var(--indigo);
	color: var(--indigo);
}
.filter-tabs button.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

.demo-card__image {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
	background: var(--paper);
	aspect-ratio: 16 / 10;
}
.demo-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* Website showcase (homepage) */
.showcase-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}
.showcase-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.showcase-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -20px rgba(11, 22, 56, 0.2);
}
.showcase-card__image {
	position: relative;
	aspect-ratio: 4 / 3;
	background: linear-gradient(155deg, var(--paper) 0%, #EEEBFB 100%);
	overflow: hidden;
}
.showcase-card__image img { width: 100%; height: 100%; object-fit: cover; }
.showcase-card__link { display: inline-block; margin-top: 10px; font-size: 0.85rem; font-weight: 700; color: var(--indigo); }
.showcase-disclaimer { text-align: center; font-size: 0.82rem; margin: 20px 0 0; }
.showcase-card__demo-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	background: rgba(11, 22, 56, 0.85);
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}
.showcase-card__mock {
	position: absolute;
	inset: 16%;
	background: var(--white);
	border-radius: 8px;
	border: 1px solid var(--line);
	box-shadow: 0 16px 32px -16px rgba(11,22,56,0.25);
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}
.showcase-card__mock-brand {
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--indigo);
	margin-bottom: 3px;
}
.showcase-card__mock-headline { font-size: 0.85rem; font-weight: 800; line-height: 1.25; color: var(--ink); }
.showcase-card__mock-subtext { font-size: 0.68rem; color: #64748B; }
.showcase-card__mock-cta {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.66rem;
	font-weight: 700;
	color: var(--white);
	background: var(--indigo);
	padding: 5px 10px;
	border-radius: 5px;
	margin-top: 8px;
}
.showcase-card__body { padding: 20px 22px 24px; }
.showcase-card__body .badge { margin-bottom: 10px; }
.showcase-card:hover .showcase-card__mock { transform: scale(1.03); transition: transform 0.3s ease; }

@media (min-width: 700px) {
	.showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.showcase-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Homepage showcase — interactive single-preview swapper (distinct from
   .showcase-grid/.showcase-card above, which the /examples gallery page
   still uses for its full filterable grid). */
.showcase-tabs { margin-top: 32px; justify-content: center; }
.showcase-preview { margin-top: 32px; position: relative; }
.showcase-preview__panel {
	display: none;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}
.showcase-preview__panel.is-active {
	display: grid;
	animation: showcaseFadeIn 0.35s ease;
}
@keyframes showcaseFadeIn {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.showcase-preview__panel.is-active { animation: none; }
}
.showcase-preview__mock {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--white);
	box-shadow: 0 24px 48px -20px rgba(11, 22, 56, 0.2);
}
.showcase-preview__mock img { display: block; width: 100%; height: auto; }
.showcase-preview__demo-tag {
	position: absolute;
	top: 48px;
	left: 12px;
	z-index: 1;
	background: rgba(11, 22, 56, 0.85);
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}
.showcase-preview__info .badge { margin-bottom: 10px; }
.showcase-preview__info h3 { font-size: 1.3rem; }
.showcase-preview__info p { margin-bottom: 20px; }
@media (min-width: 860px) {
	.showcase-preview__panel { grid-template-columns: 1.3fr 1fr; gap: 48px; }
}

@media (max-width: 699px) {
	.showcase-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 16px;
		margin: 0 -20px;
		padding: 4px 20px 12px;
		-webkit-overflow-scrolling: touch;
	}
	.showcase-card {
		flex: 0 0 82%;
		scroll-snap-align: start;
	}
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
	border-bottom: 1px solid var(--line);
}
.faq-item__question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 18px 4px;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 44px;
	transition: color 0.15s ease;
}
.faq-item__question:hover { color: var(--indigo); }
.faq-list--compact .faq-item__answer p { font-size: 0.9rem; }
.faq-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--surface-blue);
	color: var(--indigo);
	flex-shrink: 0;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); background: var(--indigo); color: var(--white); }
.faq-item__answer {
	display: none;
	padding: 0 4px 20px;
	color: #475569;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* Final CTA */
.final-cta {
	text-align: center;
	position: relative;
	overflow: hidden;
}
.final-cta::before, .final-cta::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(10px);
}
.final-cta::before { top: -180px; left: -140px; background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, rgba(0, 212, 255, 0) 70%); }
.final-cta::after { bottom: -180px; right: -140px; background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0) 70%); }
.final-cta > .container, .final-cta__float { position: relative; z-index: 1; }
.final-cta .hero__price { justify-content: center; }
.final-cta__early-adopters { max-width: 460px; margin: 0 auto 24px; font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.final-cta__subtext { margin: 0; font-size: 1rem; }
.final-cta--dark .final-cta__subtext { color: rgba(255,255,255,0.75); }
.final-cta--light .final-cta__subtext { color: #64748B; }
.final-cta__yearly-link { font-size: 0.85rem; text-decoration: underline; }
.final-cta--dark .final-cta__yearly-link { color: rgba(255,255,255,0.55); }
.final-cta--light .final-cta__yearly-link { color: var(--indigo); }

.final-cta--light {
	background:
		radial-gradient(ellipse 520px 340px at 12% 15%, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0) 70%),
		radial-gradient(ellipse 520px 340px at 88% 85%, rgba(124, 58, 237, 0.06), rgba(124, 58, 237, 0) 70%);
}
.final-cta--light::before, .final-cta--light::after { display: none; }
.final-cta--light .final-cta__float {
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}
.final-cta--light .final-cta__float-bar { background: var(--line); }
.final-cta__float {
	position: absolute;
	top: 14%;
	right: 6%;
	width: 130px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 14px;
	padding: 16px 14px;
	transform: rotate(6deg);
	display: none;
}
.final-cta__float-bar { display: block; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.22); margin-bottom: 8px; }
.final-cta__float-bar--short { width: 60%; }
.final-cta__float-btn { display: block; width: 50%; height: 16px; border-radius: 5px; background: var(--indigo); margin-top: 6px; }

@media (min-width: 900px) {
	.final-cta__float { display: block; }
}

/* Sticky mobile CTA */
.sticky-mobile-cta {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 45;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: var(--white);
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 24px rgba(11,22,56,0.08);
	transform: translateY(100%);
	transition: transform 0.2s ease;
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }
/* Matches the header's own 900px cutover just above — the desktop header
   already carries its own "Get Started" action once it's showing, so the
   floating bar would otherwise stay visible, redundantly, from 900-1023px. */
@media (min-width: 900px) {
	.sticky-mobile-cta { display: none; }
}

/* Footer */
.site-footer {
	background: var(--white);
	color: #64748B;
	padding: 52px 0 0;
	border-top: 1px solid var(--line);
}
.site-footer a { color: #64748B; }
.site-footer a:hover { color: var(--indigo); }
.site-footer__inner {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
	padding-bottom: 36px;
}
.site-footer__tagline { margin-top: 14px; max-width: 280px; font-size: 0.9rem; }
.site-footer__col h3 {
	color: var(--ink);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.92rem; }
.site-footer__bottom {
	border-top: 1px solid var(--line);
	padding: 20px 0;
	font-size: 0.82rem;
	color: #94A3B8;
}
@media (min-width: 900px) {
	.site-footer__inner { grid-template-columns: 1.6fr repeat(4, 1fr); }
}
.site-footer--checkout { padding-top: 20px; }
.checkout-footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.checkout-footer-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; }

/* Forms */
.form-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) {
	.form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field .required { color: #DC2626; }
.form-field input,
.form-field select,
.form-field textarea {
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-size: 0.95rem;
	font-family: inherit;
	background: var(--white);
	color: var(--ink);
	min-height: 46px;
}
.form-field textarea { min-height: 120px; resize: vertical; }

.phone-field { display: flex; gap: 8px; }
.phone-select { position: relative; flex: 0 0 84px; }
.phone-field__code { width: 100%; padding-left: 8px; padding-right: 4px; font-size: 0.85rem; }
.phone-field__number { flex: 1; min-width: 0; }
@media (max-width: 480px) {
	.phone-field { flex-wrap: wrap; }
	.phone-select { flex-basis: 100%; }
	.phone-field__number { flex-basis: 100%; }
}

/* Searchable country-code enhancement (initPhoneCountrySelect() in main.js).
   The native <select> stays in the DOM and holds the real value that
   fieldValue()/the submit handler read — JS only hides it and layers a
   compact toggle + searchable panel on top, so with no JS the native
   select (full country list, no search) still works exactly as before. */
.phone-field__code--enhanced { position: absolute; opacity: 0; pointer-events: none; }
.phone-select__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	width: 100%;
	min-height: 46px;
	padding: 12px 10px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--white);
	color: var(--ink);
	font-size: 0.85rem;
	font-family: inherit;
	cursor: pointer;
}
.phone-select__toggle:hover { border-color: var(--indigo); }
.phone-select__toggle[aria-expanded="true"] { border-color: var(--indigo); outline: 2px solid var(--indigo); outline-offset: 1px; }
.phone-select__chevron { width: 14px; height: 14px; flex-shrink: 0; color: #94A3B8; }
.phone-select__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: 260px;
	max-width: 80vw;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--shadow-lift);
	z-index: 20;
	padding: 8px;
}
.phone-select__search {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 0.85rem;
	font-family: inherit;
	margin-bottom: 6px;
}
.phone-select__search:focus { outline: 2px solid var(--indigo); outline-offset: 1px; }
.phone-select__list { list-style: none; margin: 0; padding: 0; max-height: 220px; overflow-y: auto; }
.phone-select__option {
	display: block;
	width: 100%;
	text-align: left;
	padding: 8px 10px;
	border: none;
	background: none;
	border-radius: 6px;
	font-size: 0.85rem;
	font-family: inherit;
	color: var(--ink);
	cursor: pointer;
}
.phone-select__option:hover,
.phone-select__option:focus-visible { background: var(--paper); outline: none; }
.phone-select__option[aria-selected="true"] { color: var(--indigo); font-weight: 600; background: rgba(37, 99, 235, 0.06); }
.phone-select__empty { padding: 10px; font-size: 0.85rem; color: #94A3B8; text-align: center; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 2px solid var(--indigo);
	outline-offset: 1px;
}
.form-section-title {
	margin-top: 36px;
	margin-bottom: 16px;
	padding-bottom: 10px;
	font-size: 1.05rem;
	font-weight: 700;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 100px;
}
.form-section-title:first-child { margin-top: 0; }
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 0.88rem;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.radio-pill input { margin-right: 6px; }
.radio-pill:hover { border-color: var(--indigo); }
.radio-pill:has(input:checked) {
	border-color: var(--indigo);
	background: rgba(37, 99, 235, 0.06);
	color: var(--indigo);
	font-weight: 600;
}

/* Website style — an even grid of chips instead of ragged flex-wrap pills
   (which left a lone last item stranded on its own short row). Each chip
   fills its grid cell equally; the native radio is visually hidden (not
   removed, so it's still keyboard/screen-reader operable) and a per-style
   icon stands in for the usual radio dot. */
.radio-group--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 480px) {
	.radio-group--grid { grid-template-columns: repeat(3, 1fr); }
}
.radio-pill--grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	padding: 16px 10px;
	border-radius: 10px;
}
.radio-pill--grid input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.radio-pill__icon { display: inline-flex; color: #94A3B8; transition: color 0.15s ease; }
.radio-pill__icon svg { width: 22px; height: 22px; }
.radio-pill--grid:has(input:checked) .radio-pill__icon { color: var(--indigo); }
.radio-pill--grid:has(input:focus-visible) { outline: 2px solid var(--indigo); outline-offset: 1px; }

/* Logo upload — a dashed dropzone card around the native file input. The
   input itself stays visible/unhidden (only its chrome is restyled via
   ::file-selector-button) rather than being replaced with a custom
   JS-driven control, so choosing a file still works with no JS at all. */
.file-drop {
	border: 1.5px dashed var(--line);
	border-radius: 12px;
	padding: 22px 16px;
	text-align: center;
	background: var(--paper);
	transition: border-color 0.15s ease, background 0.15s ease;
}
.file-drop:hover,
.file-drop:focus-within { border-color: var(--indigo); background: rgba(37, 99, 235, 0.03); }
.file-drop__icon { display: inline-flex; margin-bottom: 8px; color: var(--indigo); }
.file-drop__icon svg { width: 24px; height: 24px; }
.file-drop__input { display: block; margin: 0 auto; min-height: auto; border: none; background: transparent; font-size: 0.85rem; color: var(--ink); cursor: pointer; }
.file-drop__input::file-selector-button {
	padding: 8px 16px;
	margin-right: 10px;
	border: none;
	border-radius: 8px;
	background: var(--indigo);
	color: var(--white);
	font-weight: 600;
	font-size: 0.82rem;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease;
}
.file-drop__input::file-selector-button:hover { background: #1D4ED8; }
.file-drop__hint { margin: 10px 0 0; font-size: 0.78rem; }
.form-notice {
	border-radius: 12px;
	padding: 16px 18px;
	margin-bottom: 24px;
	font-size: 0.92rem;
}
.form-notice--success { background: rgba(16,185,129,0.1); color: #047857; }
.form-notice--error { background: rgba(220,38,38,0.08); color: #B91C1C; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.form-consent input { margin-top: 3px; }

/* Get Started two-column layout */
.get-started-layout {
	display: grid;
	gap: 40px;
	align-items: start;
}
.get-started-layout__form { max-width: 100%; }
.get-started-layout__form .form-notice { margin-bottom: 24px; }
.get-started-layout__sidebar { position: static; }
.plan-confirm { margin-top: 12px; font-size: 0.95rem; color: #475569; }
.plan-confirm strong { color: inherit; font-weight: 600; }
.plan-confirm a { color: var(--indigo); text-decoration: underline; }
.vertical-timeline--compact .vertical-timeline__number { width: 30px; height: 30px; font-size: 0.8rem; }
.vertical-timeline--compact .vertical-timeline__content h3 { font-size: 0.9rem; }
.vertical-timeline--compact .vertical-timeline__item { padding-bottom: 20px; }
.vertical-timeline--compact::before { left: 14px; }

/* Get Started wizard — step visibility + sidebar step-status indicators.
   .form-step[hidden] mirrors .dashboard-panel[hidden] below; the `hidden`
   attribute itself is only ever set by initGetStartedWizard() in main.js,
   so with JS disabled every step stays visible (progressive enhancement). */
.form-step[hidden] { display: none; }
.form-step__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
.form-step__actions--end { justify-content: flex-end; }

.vertical-timeline--wizard .vertical-timeline__item { padding-bottom: 26px; }
.vertical-timeline--wizard .vertical-timeline__status { margin: 0; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; }
.vertical-timeline--wizard .is-pending .vertical-timeline__content h3 { color: #94A3B8; }
.vertical-timeline--wizard .is-current .vertical-timeline__status { color: var(--indigo); font-weight: 700; }
.vertical-timeline--wizard .is-complete .vertical-timeline__status { color: #047857; }

/* Sidebar checklist's circle state colors — is-pending/is-current/is-complete
   are set by updateIndicators() in main.js on each [data-step-indicator]. */
.is-pending .vertical-timeline__number { background: var(--paper); color: #94A3B8; border: 1px solid var(--line); }
.is-current .vertical-timeline__number { background: var(--indigo); color: var(--white); }
.is-complete .vertical-timeline__number { background: #047857; color: var(--white); }

.order-summary__group-title { margin: 20px 0 8px; font-size: 0.95rem; font-weight: 700; }
.order-summary__group-title:first-child { margin-top: 0; }

.form-step__card { margin-bottom: 0; padding: 24px; }
.form-step__icon { display: inline-flex; vertical-align: -6px; margin-right: 8px; color: var(--indigo); }
.form-step__icon svg { width: 22px; height: 22px; }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #DC2626; }
.form-field__error { margin: 2px 0 0; font-size: 0.8rem; color: #DC2626; }

.need-help-card__heading { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.need-help-card__heading .icon-badge { width: 32px; height: 32px; border-radius: 10px; margin-bottom: 0; flex-shrink: 0; }
.need-help-card__heading .icon-badge svg { width: 17px; height: 17px; }
.need-help-card__heading h3 { margin: 0; }

.security-note { display: flex; align-items: center; gap: 8px; justify-content: center; margin: 20px 0 0; font-size: 0.85rem; color: #94A3B8; }
.security-note svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (min-width: 960px) {
	/* minmax(0, 1fr), not bare 1fr — a bare 1fr track's implicit min-width
	   is auto (its content's min-content size), so it refuses to shrink
	   below that and forces the whole grid past the viewport instead;
	   minmax(0, ...) overrides that floor to 0 so the track actually
	   fills only the space left after the fixed 300px sidebar column,
	   letting its own content wrap/scroll internally as needed. Caused a
	   real ~20px horizontal-scroll bug at exactly this breakpoint. */
	.get-started-layout { grid-template-columns: minmax(0, 1fr) 300px; }
	.get-started-layout__sidebar { position: sticky; top: 90px; }
}

/* "What happens next" + "Good to know" — moved out of the sidebar column
   into their own full-width section below the wizard, since a single form
   step is much shorter than the old one-long-scrolling-page form was, and
   stacking these under the step checklist made the sidebar column taller
   than the form on short steps (Branding, Services), leaving a large empty
   gap under the form. As a standalone row they scale independently of
   whichever step is currently showing. */
.get-started-extras { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) {
	.get-started-extras { grid-template-columns: 1fr 1fr; }
}

/* Contact routing buttons */
.contact-routes { display: grid; gap: 16px; margin-bottom: 48px; }
@media (min-width: 700px) { .contact-routes { grid-template-columns: repeat(3, 1fr); } }
.contact-route { text-align: center; }

.contact-layout {
	display: grid;
	gap: 32px;
	max-width: 880px;
	margin: 48px auto 0;
	align-items: start;
}
@media (min-width: 800px) {
	/* minmax(0, ...), not bare 1fr — see .get-started-layout's identical
	   fix above (a bare 1fr paired with a fixed-width column won't shrink
	   past its content's min-content width, and overflowed there). Doesn't
	   currently overflow here, but it's the same fragile pattern. */
	.contact-layout { grid-template-columns: minmax(0, 1fr) 260px; }
}

/* Checkout */
.checkout-layout {
	display: grid;
	gap: 32px;
	max-width: 920px;
	margin: 0 auto;
}
@media (min-width: 800px) {
	.checkout-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
.order-summary__row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.95rem;
}
.order-summary__row:last-of-type { border-bottom: none; }
.order-summary__total { font-weight: 800; font-size: 1.1rem; color: var(--ink); }

.checkout-discount-row { display: flex; gap: 8px; }
.checkout-discount-row input { flex: 1; min-width: 0; }
.checkout-discount-row .btn { flex-shrink: 0; padding: 12px 20px; min-height: 46px; }
/* Purely a "this will be sent" confirmation, not real validation — Paddle is
   the only thing that actually checks whether a code is valid, when the
   overlay opens. */
.checkout-discount-status {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 8px 0 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #047857;
}
/* The class rule's own `display: flex` above otherwise beats the browser's
   default [hidden] { display: none; } (a class selector outranks an
   attribute selector) — same fix this theme already applies to
   .dashboard-panel[hidden] and .form-step[hidden] elsewhere. */
.checkout-discount-status[hidden] { display: none; }
.checkout-discount-status svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Customer dashboard — gradient hero + overlapping white shell (dashboard
   "Variant 2" design). The hero's own bottom padding plus the shell's
   negative top margin are tuned together so the shell overlaps a fixed
   ~40px into the gradient at both breakpoints, rather than fighting
   .section's own responsive top padding indirectly. */
.dashboard-hero {
	position: relative;
	background: var(--gradient-brand);
	color: var(--white);
	padding: 48px 0 88px;
	overflow: hidden;
}
@media (min-width: 768px) {
	.dashboard-hero { padding: 64px 0 128px; }
}
.dashboard-hero .eyebrow { color: rgba(255, 255, 255, 0.85); }
.dashboard-hero h1 { color: var(--white); margin: 0 0 12px; }
.dashboard-hero .text-muted { color: rgba(255, 255, 255, 0.82); }
.dashboard-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.dashboard-hero__illustration { flex-shrink: 0; display: none; }
@media (min-width: 860px) {
	.dashboard-hero__illustration { display: block; }
}

.dashboard-shell {
	position: relative;
	background: var(--white);
	border-radius: 24px;
	box-shadow: var(--shadow-lift);
	padding: 24px 20px 32px;
	margin: -68px 0 32px;
}
@media (min-width: 768px) {
	.dashboard-shell { padding: 32px 32px 40px; margin-top: -112px; }
}

/* Segmented-control tab track — .filter-tabs still supplies each button's
   base padding/pill shape and .is-active's dark-fill state (higher
   specificity, so it still wins); this only swaps the idle-state border
   for a shared light track behind every button. */
.dashboard-tabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
	background: var(--paper);
	border-radius: 14px;
	padding: 6px;
	margin-bottom: 28px;
}
.dashboard-tabs button { border: none; background: transparent; min-height: 40px; }

.dashboard-panel[hidden] { display: none; }
.dashboard-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.dashboard-stat {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.dashboard-stat .icon-badge { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 0; }
.dashboard-stat .icon-badge svg { width: 20px; height: 20px; }
.dashboard-stat__head { display: flex; align-items: center; gap: 10px; }
.dashboard-stat__value { margin: 0; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.dashboard-stat__value--success { color: #047857; }
.dashboard-stat__label { margin: 4px 0 0; font-size: 0.82rem; color: #64748B; }
@media (min-width: 700px) {
	.dashboard-stats { grid-template-columns: repeat(4, 1fr); }
}

.dashboard-website-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 18px 22px;
	margin-top: 20px;
}
.dashboard-website-row h3, .dashboard-website-row p { margin: 0; }

/* The update-request textarea inherits .form-field textarea's sitewide
   120px min-height, which looked squashed once its card went full-width
   (~1000px) instead of the old 640px cap — taller here so the box stays
   proportionate at that width without changing the shared default other
   pages (e.g. Get Started) still rely on. */
#update_description { min-height: 220px; }

/* .order-summary__row's `justify-content: space-between` is designed for
   the ~480px Checkout column it was built for — at the dashboard's
   full-width card the label/value pair ends up ~800px apart, which reads
   as broken rather than spacious. Capping the row's own width keeps the
   pair close while the surrounding .card still spans the full shell. */
.dashboard-subscription-summary { max-width: 420px; }

.billing-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.billing-table th, .billing-table td {
	padding: 12px 10px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	font-size: 0.9rem;
}
.billing-table th { color: #64748B; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.billing-table tr:last-child td { border-bottom: none; }

/* Welcome hero — compact inline icon + "WELCOME" eyebrow instead of the
   larger 44px .icon-badge stacking above the eyebrow text at its default
   size (the shared .icon-badge is sized for section headers elsewhere, too
   large next to a 12px uppercase label here). Scoped to this page only —
   page-industry.php reuses the same bare .icon-badge markup at full size. */
.welcome-eyebrow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 0.75em; }
.welcome-eyebrow__icon { width: 28px; height: 28px; border-radius: 8px; margin-bottom: 0; font-size: 1rem; }
.welcome-eyebrow__icon svg { width: 15px; height: 15px; }
.welcome-eyebrow .eyebrow { margin-bottom: 0; }

/* The default .hero → .section rhythm (44px hero padding + 72px section
   padding at desktop) left a very large gap between the subtitle and the
   progress track below it — tightened here since this page has no other
   content between them to fill that space. */
.welcome-progress-section { padding-top: 32px; }
@media (min-width: 768px) {
	.welcome-progress-section { padding-top: 40px; }
}

/* Welcome checklist */
.welcome-onboarding { max-width: 1080px; margin: 0 auto; }
.progress-track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
/* Circles live in their own relatively-positioned wrapper (sized exactly to
   their own content, not the full centered row) so the connecting line's
   left:15px still lands under the first circle's center regardless of where
   .progress-track ends up centering the whole row. */
.progress-track__steps { position: relative; display: flex; align-items: center; gap: 6px; }
.progress-track__steps::before {
	/* Spans center-to-center between the first and last of the 8 circles:
	   8 * 30px circles + 7 * 6px gaps = 282px total, minus one circle radius
	   (15px) off each end = 252px. */
	content: "";
	position: absolute;
	left: 15px;
	width: 252px;
	top: 15px;
	height: 1px;
	background: var(--line);
	z-index: 0;
}
.progress-track__step {
	position: relative;
	z-index: 1;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: #F1F5F9;
	border: 1px solid var(--line);
	color: #64748B;
	font-size: 0.8rem;
	font-weight: 700;
	display: flex; align-items: center; justify-content: center;
}
.progress-track__step.is-done {
	background: var(--indigo);
	border-color: var(--indigo);
	color: var(--white);
}
.progress-track__step.is-done::before { content: "\2713"; }
.progress-track__ellipsis { margin-left: 4px; color: var(--line); font-weight: 700; letter-spacing: 1px; }
.progress-track__count { margin-left: 4px; font-size: 0.85rem; }
@media (max-width: 560px) {
	.progress-track { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}

.welcome-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; max-width: 1080px; }
.welcome-checklist__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 52px;
	padding: 14px 20px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(7, 26, 61, 0.04);
	font-weight: 600;
	font-size: 0.95rem;
	color: #64748B;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}
a.welcome-checklist__item:hover,
a.welcome-checklist__item:focus-visible {
	border-color: var(--indigo);
}
a.welcome-checklist__item:hover .welcome-checklist__chevron,
a.welcome-checklist__item:focus-visible .welcome-checklist__chevron {
	transform: translateX(3px);
}
.welcome-checklist__item.is-done { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.05); color: var(--ink); }
.welcome-checklist__item.is-current { border-color: var(--indigo); }
.welcome-checklist__icon {
	width: 26px; height: 26px;
	border-radius: 50%;
	background: #F1F5F9;
	color: #64748B;
	display: flex; align-items: center; justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
}
.welcome-checklist__item.is-done .welcome-checklist__icon { background: var(--indigo); color: var(--white); }
.welcome-checklist__label { flex: 1; }
.welcome-checklist__chevron { width: 18px; height: 18px; flex-shrink: 0; color: #CBD5E1; transition: transform 0.2s ease; }
.welcome-checklist__item.is-done .welcome-checklist__chevron { color: var(--indigo); }

.welcome-next-step {
	margin-top: 32px;
	padding: 20px 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #F1F7FF;
	box-shadow: 0 2px 8px rgba(7, 26, 61, 0.04);
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	text-align: left;
}
.welcome-next-step__icon {
	flex-shrink: 0;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(37,99,235,0.12);
	color: var(--indigo);
	display: flex; align-items: center; justify-content: center;
}
.welcome-next-step__icon svg { width: 20px; height: 20px; }
.welcome-next-step__body { flex: 1; min-width: 200px; }
.welcome-next-step__title { margin: 0 0 4px; font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.welcome-next-step__body p.text-muted { margin: 0; font-size: 0.9rem; }
.welcome-next-step__cta { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 640px) {
	.welcome-next-step { text-align: center; justify-content: center; }
	.welcome-next-step__cta { white-space: normal; width: 100%; }
}

/* Legal / prose pages */
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { margin-bottom: 0.4em; }
.prose h2 { margin-top: 2.2em; font-size: 1.35rem; }
.prose p { color: #475569; line-height: 1.7; }
.prose ul { padding-left: 1.2em; color: #475569; line-height: 1.7; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }
.draft-banner {
	background: #FEF3C7;
	color: #92400E;
	border: 1px solid #FDE68A;
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 32px;
}

/* 404 / error states */
.error-page { text-align: center; padding: 100px 0; }
.error-page__code {
	font-size: clamp(3.5rem, 10vw, 6rem);
	font-weight: 800;
	color: var(--indigo);
	opacity: 0.15;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}
.error-page__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* /features page — true radial layout, sized as a major feature section
   (~1060x680px) rather than a small diagram. Every item's (left, top) is a
   real point on an ellipse, computed in PHP from an angle + two radii (not
   approximated with grid columns) — see page-features.php. Below 1180px
   there isn't room for a composition this size, so .features-fallback (a
   2-column grid with the center pinned to the top) is shown instead and
   this whole diagram is hidden. */
.features-circle-wrap {
	display: none;
	justify-content: center;
	margin: 16px auto 0;
	padding: 24px 0;
	position: relative;
}
/* Very soft ambient glow behind the composition — blue on one side, purple
   on the other, barely visible (per spec: subtle, not a visible band). */
.features-circle-wrap::before {
	content: "";
	position: absolute;
	inset: -60px;
	z-index: -1;
	background:
		radial-gradient(ellipse 560px 400px at 15% 25%, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0) 70%),
		radial-gradient(ellipse 560px 400px at 85% 75%, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0) 70%);
}
.features-circle { position: relative; flex-shrink: 0; }
.features-circle__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.features-circle__center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 220px;
	z-index: 2;
}
.features-circle__center-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.features-circle__center-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 168px;
	height: 168px;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	margin-bottom: 20px;
}
.features-circle__center-icon-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 22px;
	background: var(--gradient-brand);
	color: var(--white);
}
.features-circle__center-icon-inner svg { width: 40px; height: 40px; }
.features-circle__center-text { font-weight: 800; font-size: 1.3rem; line-height: 1.3; color: var(--ink); margin: 0; }

/* .features-circle__item is positioning-only (absolute + transform to place
   it on the ellipse) — the reveal fade/slide-in and any hover motion live on
   .features-circle__item-inner instead, so they never fight this element's
   own transform (both would otherwise try to set the same CSS property). */
.features-circle__item { position: absolute; width: 230px; z-index: 1; }
.features-circle__item--left { transform: translate(calc(-100% + 22px), -50%); }
.features-circle__item--right { transform: translate(-22px, -50%); }
.features-circle__item--bottom { transform: translate(-50%, -22px); }

.features-circle__item-inner {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 6px;
	border-radius: 12px;
	transition: transform 0.2s ease;
}
.features-circle__item-inner:hover { transform: translateY(-2px); }
.features-circle__item--left .features-circle__item-inner { flex-direction: row-reverse; text-align: right; }
.features-circle__item--right .features-circle__item-inner { text-align: left; }
.features-circle__item--bottom .features-circle__item-inner { flex-direction: column; text-align: center; }

.features-circle__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.features-circle__icon svg { width: 20px; height: 20px; }
.features-circle__icon--cyan { background: rgba(0, 212, 255, 0.14); color: #0891B2; }
.features-circle__icon--blue { background: rgba(37, 99, 235, 0.12); color: var(--indigo); }
.features-circle__icon--purple { background: rgba(124, 58, 237, 0.12); color: var(--violet); }
.features-circle__item-inner:hover .features-circle__icon { transform: scale(1.08); box-shadow: var(--shadow-soft); }
.features-circle__item-inner:hover .features-circle__text strong { color: var(--indigo); }
.features-circle__text { display: flex; flex-direction: column; gap: 4px; }
.features-circle__text strong { font-size: 1.15rem; color: var(--ink); transition: color 0.2s ease; }
.features-circle__text .text-muted { font-size: 0.95rem; line-height: 1.5; }

/* Mobile/tablet fallback — center pinned to the top, then a 2-column grid
   (Support spans both columns at the end), no radial positioning at all. */
.features-fallback { max-width: 640px; margin: 20px auto 0; }
.features-fallback__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}
.features-list-fallback {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 20px;
}
.features-list-fallback li { display: flex; align-items: flex-start; gap: 14px; }
.features-list-fallback__support { grid-column: 1 / -1; justify-content: center; }
.features-list-fallback .features-circle__icon { width: 44px; height: 44px; }
.features-list-fallback .features-circle__icon svg { width: 20px; height: 20px; }
.features-list-fallback .features-circle__text strong { font-size: 1rem; }
.features-list-fallback .features-circle__text .text-muted { font-size: 0.85rem; line-height: 1.45; }

@media (max-width: 520px) {
	.features-list-fallback { grid-template-columns: 1fr; }
	.features-list-fallback__support { grid-column: 1; }
}

@media (min-width: 1180px) {
	.features-circle-wrap { display: flex; }
	.features-fallback { display: none; }
}

/* CTA below the composition, sized per spec (~190px wide, ~56px tall) —
   same .btn.btn-primary component/colors/radius/shadow, just bigger padding
   for this one instance rather than a new button style. */
.features-circle__cta { min-width: 190px; min-height: 56px; padding: 0 36px; font-size: 1.05rem; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 14px; }
