/* ==========================================================================
   Account Market: Deep Field
   Design tokens, reset, layout, components.
   Every color below comes from the active design system.
   ========================================================================== */

:root {
	/* Surface ladder, darkest to lightest. */
	--am-footer: #05080F;
	--am-bg: #070A12;
	--am-nav: #080C17;
	--am-surface: #0C1120;
	--am-raised: #121A2E;
	--am-product: #18213A;

	/* Ink. */
	--am-ink: #EAEEF9;
	--am-ink-muted: #98A4C0;
	--am-ink-faint: #6A768F;

	/* Hairlines. */
	--am-line: #1D2740;
	--am-line-strong: #2B3757;

	/* The single locked accent. */
	--am-accent: #37D5BC;
	--am-accent-deep: #1B9C89;
	--am-accent-ink: #04231F;
	--am-accent-hover: #4BE3CB;
	--am-accent-link: #5FE6D1;
	--am-field: #1B2542;

	/* Ambient wash only: never on a control, a border or text. */
	--am-amb-blue: #5F8AF0;
	--am-amb-violet: #7B71CE;

	--am-danger: #F4726A;

	/* Type. */
	--am-font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--am-font-body: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--am-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Space. */
	--am-xs: 6px;
	--am-sm: 12px;
	--am-md: 20px;
	--am-lg: 36px;
	--am-xl: 64px;
	--am-xxl: 104px;

	/* Radius rule: pill for buttons and chips, 8 inputs, 14 cards, 22 panels. */
	--am-r-sm: 8px;
	--am-r-md: 14px;
	--am-r-lg: 22px;
	--am-r-pill: 999px;

	--am-wrap: 1240px;
	--am-gutter: 20px;

	--am-shadow: 0 18px 40px rgba(4, 8, 20, 0.55);
	--am-shadow-lift: 0 24px 56px rgba(4, 8, 20, 0.68);

	--am-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--am-fast: 160ms;
	--am-slow: 320ms;
}

/* --------------------------------------------------------------------------
   Reset. Wrapped in :where() so component rules always win.
   -------------------------------------------------------------------------- */

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

:where(html) {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol, fieldset) {
	margin: 0;
	padding: 0;
}

:where(ul[class], ol[class]) { list-style: none; }

:where(img, svg, video, canvas) {
	display: block;
	max-width: 100%;
	height: auto;
}

:where(button, input, select, textarea) {
	font: inherit;
	color: inherit;
}

:where(table) { border-collapse: collapse; width: 100%; }
:where(fieldset) { border: 0; }
:where(a) { color: inherit; }

body {
	background: var(--am-bg);
	color: var(--am-ink);
	font-family: var(--am-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

/* Ambient page wash. Two low opacity radial fields, nothing neon. */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(58rem 40rem at 78% -8%, rgba(95, 138, 240, 0.10), transparent 62%),
		radial-gradient(46rem 34rem at 4% 12%, rgba(123, 113, 206, 0.09), transparent 60%),
		radial-gradient(40rem 30rem at 50% 108%, rgba(55, 213, 188, 0.06), transparent 64%);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--am-font-display);
	font-weight: 600;
	color: var(--am-ink);
	line-height: 1.15;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 1.35rem + 3.6vw, 4.05rem); line-height: 1.03; letter-spacing: -0.028em; font-weight: 700; }
h2 { font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.65rem); line-height: 1.1; letter-spacing: -0.022em; }
h3 { font-size: clamp(1.2rem, 1.02rem + 0.7vw, 1.5rem); letter-spacing: -0.012em; }
h4 { font-size: 1.075rem; letter-spacing: -0.006em; }

p { text-wrap: pretty; }

a { color: var(--am-accent); text-decoration: none; transition: color var(--am-fast) var(--am-ease); }
a:hover { color: var(--am-accent-link); }

strong, b { font-weight: 600; }
small { font-size: 0.85em; }

::selection { background: rgba(55, 213, 188, 0.26); color: var(--am-ink); }

:focus-visible {
	outline: 2px solid var(--am-accent);
	outline-offset: 3px;
	border-radius: var(--am-r-sm);
}

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

.am-skip {
	position: absolute;
	left: -9999px;
	top: 8px;
	z-index: 200;
	background: var(--am-accent);
	color: var(--am-accent-ink);
	padding: 10px 18px;
	border-radius: var(--am-r-pill);
	font-weight: 600;
}
.am-skip:focus { left: 16px; color: var(--am-accent-ink); }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.am-wrap {
	width: 100%;
	max-width: var(--am-wrap);
	margin-inline: auto;
	padding-inline: var(--am-gutter);
}

.am-main { display: block; min-height: 40vh; }

.am-sec { position: relative; padding-block: clamp(56px, 7vw, 104px); }
.am-sec--tight { padding-block: clamp(40px, 5vw, 68px); }
.am-sec--surface { background: var(--am-surface); }
.am-sec--raised { background: linear-gradient(160deg, var(--am-raised), var(--am-surface)); }
.am-sec--edge { border-block: 1px solid var(--am-line); }

.am-prose { color: var(--am-ink-muted); max-width: 68ch; }
.am-prose > * + * { margin-top: 1.05em; }
.am-prose h2, .am-prose h3, .am-prose h4 { color: var(--am-ink); margin-top: 1.6em; }
.am-prose ul, .am-prose ol { padding-left: 1.25em; }
.am-prose li + li { margin-top: 0.35em; }
.am-prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Section heading block. */
.am-shead { max-width: 56ch; margin-bottom: clamp(28px, 3.4vw, 46px); }
.am-shead--center { margin-inline: auto; text-align: center; }
.am-shead--wide { max-width: 72ch; }
.am-shead__title { margin: 0; }
.am-shead__text { margin-top: 14px; color: var(--am-ink-muted); font-size: 1.0625rem; }

.am-eyebrow {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--am-accent);
	margin-bottom: 14px;
}

/* Ambient layer used behind hero and CTA compositions. */
.am-ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.am-ambient--hero {
	background:
		radial-gradient(38rem 26rem at 72% 26%, rgba(95, 138, 240, 0.16), transparent 66%),
		radial-gradient(30rem 22rem at 14% 74%, rgba(123, 113, 206, 0.13), transparent 64%);
}
.am-ambient--band {
	background: radial-gradient(44rem 22rem at 50% 0%, rgba(55, 213, 188, 0.09), transparent 68%);
}
.am-ambient--panel {
	background: radial-gradient(26rem 18rem at 88% 8%, rgba(55, 213, 188, 0.12), transparent 62%);
}

/* Hairline grid texture used sparingly on large panels. */
.am-grid-tex {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.5;
	background-image:
		linear-gradient(to right, rgba(43, 55, 87, 0.35) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(43, 55, 87, 0.35) 1px, transparent 1px);
	background-size: 56px 56px;
	/* Alpha mask: only the alpha channel is read, so this uses an on-palette ink. */
	-webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #EAEEF9 20%, transparent 78%);
	mask-image: radial-gradient(60% 60% at 50% 40%, #EAEEF9 20%, transparent 78%);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.am-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 24px;
	border-radius: var(--am-r-pill);
	border: 1px solid transparent;
	font-family: var(--am-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease),
		color var(--am-fast) var(--am-ease), transform var(--am-fast) var(--am-ease);
}
.am-btn:active { transform: translateY(1px); }
.am-btn__after { display: inline-flex; transition: transform var(--am-fast) var(--am-ease); }
.am-btn:hover .am-btn__after { transform: translateX(3px); }

.am-btn--primary {
	background: var(--am-accent);
	color: var(--am-accent-ink);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.am-btn--primary:hover { background: var(--am-accent-hover); color: var(--am-accent-ink); }

.am-btn--ghost {
	background: transparent;
	border-color: var(--am-line-strong);
	color: var(--am-ink);
}
.am-btn--ghost:hover { border-color: var(--am-accent); color: var(--am-ink); background: rgba(55, 213, 188, 0.07); }

.am-btn--quiet {
	background: transparent;
	color: var(--am-ink-muted);
	padding-inline: 4px;
	font-weight: 500;
}
.am-btn--quiet:hover { color: var(--am-accent); }

.am-btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.am-btn--lg { padding: 16px 30px; font-size: 1rem; }
.am-btn--block { width: 100%; }

.am-btn--tg .am-icon--telegram { margin-top: -1px; }

.am-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: var(--am-r-pill);
	background: transparent;
	border: 1px solid var(--am-line);
	color: var(--am-ink-muted);
	cursor: pointer;
	transition: color var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease);
}
.am-iconbtn:hover { color: var(--am-ink); border-color: var(--am-line-strong); }

.am-tg-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: var(--am-r-pill);
	border: 1px solid var(--am-line);
	color: var(--am-ink-muted);
	transition: color var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease), background var(--am-fast) var(--am-ease);
}
.am-tg-icon:hover { color: var(--am-accent); border-color: var(--am-line-strong); background: rgba(55, 213, 188, 0.07); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.am-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(8, 12, 23, 0.88);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom: 1px solid var(--am-line);
	transition: border-color var(--am-slow) var(--am-ease);
}
.am-header.is-stuck { border-bottom-color: var(--am-line-strong); }

.am-header__inner {
	display: flex;
	align-items: center;
	gap: var(--am-md);
	min-height: 72px;
}

.am-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--am-ink);
	font-family: var(--am-font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: -0.02em;
	flex: 0 0 auto;
}
.am-brand:hover { color: var(--am-ink); }
.am-brand__glyph { display: flex; }
.am-brand__img { max-height: 40px; width: auto; }

.am-nav { margin-left: auto; }
.am-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0; padding: 0;
	white-space: nowrap;
}
.am-nav__list a {
	display: inline-block;
	padding: 9px 14px;
	border-radius: var(--am-r-pill);
	color: var(--am-ink-muted);
	font-size: 0.925rem;
	font-weight: 500;
	transition: color var(--am-fast) var(--am-ease), background var(--am-fast) var(--am-ease);
}
.am-nav__list a:hover { color: var(--am-ink); background: rgba(43, 55, 87, 0.42); }
.am-nav__list .current-menu-item > a,
.am-nav__list .current_page_item > a,
.am-nav__list .current-menu-ancestor > a { color: var(--am-ink); }
.am-nav__list .current-menu-item > a::after,
.am-nav__list .current_page_item > a::after {
	content: "";
	display: block;
	height: 2px;
	width: 18px;
	margin: 5px auto -3px;
	border-radius: 2px;
	background: var(--am-accent);
}

.am-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}
.am-nav + .am-header__actions { margin-left: 4px; }

.am-cartbtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: var(--am-r-pill);
	border: 1px solid var(--am-line);
	background: transparent;
	color: var(--am-ink-muted);
	cursor: pointer;
	transition: color var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease);
}
.am-cartbtn:hover { color: var(--am-ink); border-color: var(--am-line-strong); }
.am-cartbtn__count {
	position: absolute;
	top: -4px; right: -4px;
	min-width: 19px; height: 19px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--am-r-pill);
	background: var(--am-accent);
	color: var(--am-accent-ink);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
}
.am-cartbtn__count.is-empty { display: none; }

.am-burger { display: none; }

/* Mobile panel. */
.am-mobile {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: var(--am-bg);
	display: flex;
	flex-direction: column;
	padding: 18px var(--am-gutter) 28px;
	overflow-y: auto;
	transform: translateY(-8px);
	opacity: 0;
	transition: opacity var(--am-slow) var(--am-ease), transform var(--am-slow) var(--am-ease);
}
.am-mobile[hidden] { display: none; }
.am-mobile.is-open { opacity: 1; transform: none; }
.am-mobile__head { display: flex; align-items: center; justify-content: space-between; }
.am-mobile__list { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.am-mobile__list a {
	display: block;
	padding: 14px 4px;
	font-family: var(--am-font-display);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--am-ink);
	border-bottom: 1px solid var(--am-line);
}
.am-mobile__list .sub-menu { padding-left: 14px; }
.am-mobile__list .sub-menu a { font-size: 1rem; font-family: var(--am-font-body); color: var(--am-ink-muted); }
.am-mobile__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 10px; }

/* --------------------------------------------------------------------------
   Hero. Asymmetric: content column against a layered infrastructure visual
   that breaks its frame on the right.
   -------------------------------------------------------------------------- */

.am-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(52px, 6.5vw, 96px) clamp(56px, 7vw, 104px);
	border-bottom: 1px solid var(--am-line);
}

.am-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5.4fr);
	gap: clamp(32px, 4vw, 64px);
	align-items: center;
}

.am-hero__content { max-width: 34ch; }
.am-hero__title { margin: 0; }
.am-hero__title .am-hero__accent { color: var(--am-accent); }
.am-hero__text {
	margin-top: 20px;
	font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.15rem);
	color: var(--am-ink-muted);
	max-width: 46ch;
}
.am-hero__actions {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* The visual: a stack of provider tiles at depth, plus a rack panel. */
.am-hero__visual {
	position: relative;
	min-height: 420px;
	margin-right: calc(var(--am-gutter) * -1);
}

.am-hero__panel {
	position: absolute;
	inset: 0 -18% 0 0;
	border-radius: var(--am-r-lg);
	border: 1px solid var(--am-line);
	background: linear-gradient(140deg, var(--am-raised), var(--am-surface));
	box-shadow: var(--am-shadow);
	overflow: hidden;
}
.am-hero__panelglow {
	position: absolute;
	inset: 0;
	background: radial-gradient(22rem 16rem at 78% 14%, rgba(55, 213, 188, 0.16), transparent 64%);
}

.am-hero__tiles {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap: 12px;
	padding: 22px;
	z-index: 2;
}
.am-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 14px;
	border-radius: var(--am-r-md);
	border: 1px solid var(--am-line);
	background: rgba(24, 33, 58, 0.72);
	color: var(--am-ink);
	overflow: hidden;
	transition: transform var(--am-slow) var(--am-ease), border-color var(--am-slow) var(--am-ease);
}
.am-tile:hover { transform: translateY(-3px); border-color: var(--am-line-strong); color: var(--am-ink); }
.am-tile__mark {
	font-family: var(--am-font-display);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.am-tile__name { font-size: 0.72rem; color: var(--am-ink-faint); line-height: 1.35; }
.am-tile__bar { position: absolute; left: 14px; top: 0; width: 22px; height: 2px; border-radius: 2px; background: var(--am-accent); }
.am-tile--wide { grid-column: span 2; }
.am-tile--lift { transform: translateY(-10px); }
.am-tile--lift:hover { transform: translateY(-14px); }
.am-tile--sunk { transform: translateY(8px); }
.am-tile--sunk:hover { transform: translateY(4px); }

/* --------------------------------------------------------------------------
   Cards and bento
   -------------------------------------------------------------------------- */

.am-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--am-raised);
	border: 1px solid var(--am-line);
	border-radius: var(--am-r-md);
	overflow: hidden;
	transition: transform var(--am-slow) var(--am-ease), border-color var(--am-slow) var(--am-ease), box-shadow var(--am-slow) var(--am-ease);
}
.am-card:hover {
	transform: translateY(-2px);
	border-color: var(--am-line-strong);
	box-shadow: var(--am-shadow-lift);
}

.am-bento {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--am-md);
}
.am-bento__cell {
	position: relative;
	grid-column: span 2;
	padding: clamp(22px, 2.4vw, 32px);
	border: 1px solid var(--am-line);
	border-radius: var(--am-r-md);
	background: var(--am-raised);
	overflow: hidden;
	transition: border-color var(--am-slow) var(--am-ease), transform var(--am-slow) var(--am-ease);
}
.am-bento__cell:hover { border-color: var(--am-line-strong); transform: translateY(-2px); }
.am-bento__cell--wide { grid-column: span 4; }
.am-bento__cell--half { grid-column: span 3; }
.am-bento__cell--full { grid-column: span 6; }
.am-bento__cell--wash { background: linear-gradient(150deg, var(--am-raised), var(--am-surface)); }
.am-bento__cell--deep { background: var(--am-surface); }
.am-bento__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border-radius: var(--am-r-md);
	border: 1px solid var(--am-line-strong);
	background: rgba(55, 213, 188, 0.08);
	color: var(--am-accent);
	margin-bottom: 18px;
}
.am-bento__title { font-size: 1.1rem; margin-bottom: 10px; }
.am-bento__text { color: var(--am-ink-muted); font-size: 0.9375rem; }

/* Numbered process rail: the how it works family. */
.am-steps { display: grid; gap: 0; counter-reset: am-step; }
.am-step {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(16px, 2.5vw, 40px);
	align-items: start;
	padding-block: clamp(24px, 3vw, 38px);
	border-top: 1px solid var(--am-line);
}
.am-step:last-child { border-bottom: 1px solid var(--am-line); }
.am-step__num {
	font-family: var(--am-font-display);
	font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.9rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--am-line-strong);
}
.am-step:hover .am-step__num { color: var(--am-accent); transition: color var(--am-slow) var(--am-ease); }
.am-step__title { font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem); }
.am-step__body { color: var(--am-ink-muted); }

/* Split feature family: text against a large single visual. */
.am-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
	gap: clamp(28px, 4vw, 72px);
	align-items: center;
}
.am-split--flip > :first-child { order: 2; }
.am-split__visual {
	position: relative;
	border-radius: var(--am-r-lg);
	border: 1px solid var(--am-line);
	background: linear-gradient(140deg, var(--am-raised), var(--am-surface));
	overflow: hidden;
	box-shadow: var(--am-shadow);
	aspect-ratio: 16 / 11;
}
.am-split__visual .am-art { width: 100%; height: 100%; }

/* Marquee-free provider rail. */
.am-rail {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
	gap: 12px;
}
.am-rail__item {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 14px 16px;
	border: 1px solid var(--am-line);
	border-radius: var(--am-r-md);
	background: var(--am-surface);
	color: var(--am-ink-muted);
	font-size: 0.875rem;
	font-weight: 500;
	transition: border-color var(--am-fast) var(--am-ease), color var(--am-fast) var(--am-ease), background var(--am-fast) var(--am-ease);
}
.am-rail__item:hover { border-color: var(--am-line-strong); color: var(--am-ink); background: var(--am-raised); }
.am-rail__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px; height: 30px;
	padding-inline: 6px;
	border-radius: var(--am-r-sm);
	background: var(--am-product);
	border: 1px solid var(--am-line);
	font-family: var(--am-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--am-ink);
	letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */

.am-acc { border-top: 1px solid var(--am-line); }
.am-acc__item { border-bottom: 1px solid var(--am-line); }
.am-acc__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 4px;
	cursor: pointer;
	list-style: none;
	font-family: var(--am-font-display);
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	font-weight: 600;
	letter-spacing: -0.012em;
	color: var(--am-ink);
	transition: color var(--am-fast) var(--am-ease);
}
.am-acc__q::-webkit-details-marker { display: none; }
.am-acc__q:hover { color: var(--am-accent); }
.am-acc__chev { display: inline-flex; flex: 0 0 auto; color: var(--am-ink-faint); transition: transform var(--am-slow) var(--am-ease), color var(--am-fast) var(--am-ease); }
.am-acc__item[open] .am-acc__chev { transform: rotate(180deg); color: var(--am-accent); }
.am-acc__panel { display: grid; grid-template-rows: 1fr; }
.am-acc__a { padding: 0 4px 24px; color: var(--am-ink-muted); max-width: 72ch; }
.am-acc__a > * + * { margin-top: 0.9em; }

.am-js .am-acc__panel { grid-template-rows: 0fr; transition: grid-template-rows var(--am-slow) var(--am-ease); overflow: hidden; }
.am-js .am-acc__item[open] .am-acc__panel { grid-template-rows: 1fr; }
.am-js .am-acc__panel > * { min-height: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.am-cta {
	position: relative;
	overflow: hidden;
	border-radius: var(--am-r-lg);
	border: 1px solid var(--am-line-strong);
	background: linear-gradient(140deg, var(--am-raised), var(--am-surface));
	padding: clamp(34px, 5vw, 68px);
	box-shadow: var(--am-shadow);
}
.am-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: clamp(24px, 3vw, 56px);
	align-items: center;
}
.am-cta__title { font-size: clamp(1.7rem, 1.25rem + 1.7vw, 2.6rem); }
.am-cta__text { margin-top: 14px; color: var(--am-ink-muted); max-width: 52ch; }
.am-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.am-tgband {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 2.4vw, 32px);
	padding: clamp(22px, 2.6vw, 34px);
	border: 1px solid var(--am-line);
	border-radius: var(--am-r-md);
	background: var(--am-surface);
}
.am-tgband__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: var(--am-r-md);
	border: 1px solid var(--am-line-strong);
	background: rgba(55, 213, 188, 0.08);
	color: var(--am-accent);
	flex: 0 0 auto;
}
.am-tgband__body { flex: 1 1 260px; }
.am-tgband__title { font-size: 1.15rem; }
.am-tgband__text { color: var(--am-ink-muted); font-size: 0.9375rem; margin-top: 6px; }

/* --------------------------------------------------------------------------
   Structural content slots. Phase 2 replaces these.
   -------------------------------------------------------------------------- */

.am-slot {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--am-ink-faint);
	font-family: var(--am-font-mono);
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}
.am-slot--block {
	padding: 20px 22px;
	border: 1px dashed var(--am-line-strong);
	border-radius: var(--am-r-md);
	background: rgba(24, 33, 58, 0.32);
}
.am-slot--inline { padding: 4px 0; }
.am-slot__label { flex: 0 0 auto; }
.am-slot__rule { flex: 1 1 auto; height: 1px; background: var(--am-line); }

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.am-crumbs {
	padding-block: 18px;
	border-bottom: 1px solid var(--am-line);
	background: var(--am-surface);
	font-size: 0.85rem;
}
.am-crumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; }
.am-crumbs__item { display: inline-flex; align-items: center; gap: 8px; color: var(--am-ink-faint); }
.am-crumbs a { color: var(--am-ink-muted); }
.am-crumbs a:hover { color: var(--am-accent); }
.am-crumbs__sep { color: var(--am-line-strong); }
.am-crumbs .rank-math-breadcrumb p { display: flex; flex-wrap: wrap; gap: 8px; color: var(--am-ink-faint); margin: 0; }
.am-crumbs .rank-math-breadcrumb a { color: var(--am-ink-muted); }
.am-crumbs .rank-math-breadcrumb .separator { color: var(--am-line-strong); }

/* --------------------------------------------------------------------------
   Page header used by inner pages
   -------------------------------------------------------------------------- */

.am-phead {
	position: relative;
	overflow: hidden;
	padding-block: clamp(44px, 5.5vw, 78px);
	border-bottom: 1px solid var(--am-line);
}
.am-phead__inner { position: relative; z-index: 1; max-width: 58ch; }
.am-phead__title { margin: 0; }
.am-phead__text { margin-top: 16px; color: var(--am-ink-muted); font-size: 1.0625rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.am-footer {
	position: relative;
	background: var(--am-footer);
	border-top: 1px solid var(--am-line);
	margin-top: clamp(56px, 7vw, 104px);
	overflow: hidden;
}
.am-footer__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(40rem 20rem at 12% 0%, rgba(95, 138, 240, 0.10), transparent 66%);
}
.am-footer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 44px);
	padding-block: clamp(44px, 5vw, 72px);
}
.am-footer__brandcol { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 34ch; }
.am-footer__blurb { color: var(--am-ink-muted); font-size: 0.9375rem; }
.am-footer__title {
	font-family: var(--am-font-body);
	font-size: 0.74rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--am-ink-faint);
	margin-bottom: 16px;
}
.am-footer__list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.am-footer__list a,
.am-footer__static {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--am-ink-muted);
	font-size: 0.9125rem;
	transition: color var(--am-fast) var(--am-ease);
}
.am-footer__list a:hover { color: var(--am-accent); }
.am-footer__list .am-icon { color: var(--am-ink-faint); flex: 0 0 auto; }

.am-footer__bar { position: relative; z-index: 1; border-top: 1px solid var(--am-line); }
.am-footer__barinner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 22px;
}
.am-footer__copy { color: var(--am-ink-faint); font-size: 0.85rem; }
.am-footer__legallist { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; }
.am-footer__legallist a { color: var(--am-ink-faint); font-size: 0.85rem; }
.am-footer__legallist a:hover { color: var(--am-accent); }

/* --------------------------------------------------------------------------
   Cart drawer
   -------------------------------------------------------------------------- */

.am-scrim {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(4, 7, 15, 0.66);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity var(--am-slow) var(--am-ease);
}
.am-scrim[hidden] { display: none; }
.am-scrim.is-open { opacity: 1; }

.am-drawer {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	z-index: 130;
	width: min(420px, 100vw);
	display: flex;
	flex-direction: column;
	background: rgba(12, 17, 32, 0.97);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-left: 1px solid var(--am-line-strong);
	transform: translateX(100%);
	transition: transform var(--am-slow) var(--am-ease);
}
.am-drawer[hidden] { display: none; }
.am-drawer.is-open { transform: none; }

.am-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--am-line);
	flex: 0 0 auto;
}
.am-drawer__title { font-size: 1.05rem; }
.am-drawer__body { flex: 1 1 auto; display: flex; flex-direction: column; overflow-y: auto; }

.am-drawer__list { list-style: none; padding: 8px 20px; display: flex; flex-direction: column; }
.am-drawer__item {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) 32px;
	gap: 14px;
	align-items: start;
	padding-block: 16px;
	border-bottom: 1px solid var(--am-line);
}
.am-drawer__thumb {
	border-radius: var(--am-r-sm);
	overflow: hidden;
	border: 1px solid var(--am-line);
	aspect-ratio: 3 / 2;
	background: var(--am-product);
}
.am-drawer__thumb svg, .am-drawer__thumb img { width: 100%; height: 100%; object-fit: cover; }
.am-drawer__name { font-weight: 500; font-size: 0.925rem; line-height: 1.35; }
.am-drawer__name a { color: var(--am-ink); }
.am-drawer__name a:hover { color: var(--am-accent); }
.am-drawer__variation { font-size: 0.8rem; color: var(--am-ink-faint); margin-top: 3px; }
.am-drawer__variation p { margin: 0; }
.am-drawer__line { margin-top: 6px; font-size: 0.875rem; color: var(--am-ink-muted); }
.am-drawer__price { color: var(--am-ink); font-weight: 600; }
.am-drawer__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: var(--am-r-pill);
	color: var(--am-ink-faint);
	border: 1px solid transparent;
}
.am-drawer__remove:hover { color: var(--am-danger); border-color: var(--am-line); }

.am-drawer__foot {
	margin-top: auto;
	padding: 20px;
	border-top: 1px solid var(--am-line);
	background: var(--am-surface);
	display: grid;
	gap: 14px;
}
.am-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; }
.am-drawer__subtotal span { color: var(--am-ink-muted); font-size: 0.9rem; }
.am-drawer__subtotal strong { font-family: var(--am-font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.am-drawer__actions { display: grid; gap: 10px; }
.am-drawer__empty { padding: 48px 24px; text-align: center; display: grid; gap: 10px; justify-items: center; color: var(--am-ink-faint); }
.am-drawer__emptytitle { font-family: var(--am-font-display); font-size: 1.1rem; font-weight: 600; color: var(--am-ink); }
.am-drawer__emptytext { color: var(--am-ink-muted); font-size: 0.925rem; max-width: 26ch; }
.am-drawer__empty .am-btn { margin-top: 10px; }

body.am-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   Artwork
   -------------------------------------------------------------------------- */

.am-art { display: block; width: 100%; height: 100%; }
.am-photo { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Motion. Reveals degrade to visible without JavaScript and collapse under
   prefers-reduced-motion.
   -------------------------------------------------------------------------- */

.am-js .am-reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 520ms var(--am-ease), transform 520ms var(--am-ease);
}
.am-js .am-reveal.is-in { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
	.am-footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); }
	.am-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 1024px) {
	:root { --am-gutter: 24px; }
	.am-nav { display: none; }
	.am-burger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px; height: 40px;
		border-radius: var(--am-r-pill);
		border: 1px solid var(--am-line);
		background: transparent;
		color: var(--am-ink-muted);
		cursor: pointer;
	}
	.am-burger:hover { color: var(--am-ink); border-color: var(--am-line-strong); }
	.am-header__actions { margin-left: auto; }

	.am-hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.am-hero__content { max-width: 40ch; }
	.am-hero__visual { min-height: 340px; margin-right: 0; }
	.am-hero__panel { inset: 0; }

	.am-split { grid-template-columns: minmax(0, 1fr); }
	.am-split--flip > :first-child { order: 0; }

	.am-cta__inner { grid-template-columns: minmax(0, 1fr); }
	.am-cta__actions { justify-content: flex-start; }

	.am-bento__cell--wide, .am-bento__cell--half { grid-column: span 3; }
	.am-bento__cell { grid-column: span 3; }
}

@media (max-width: 720px) {
	:root { --am-gutter: 18px; }

	.am-step { grid-template-columns: 48px minmax(0, 1fr); }
	.am-step__body { grid-column: 2; }
	.am-step__num { font-size: 1.7rem; }

	.am-bento { grid-template-columns: repeat(2, 1fr); }
	.am-bento__cell,
	.am-bento__cell--wide,
	.am-bento__cell--half,
	.am-bento__cell--full { grid-column: span 2; }

	.am-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.am-footer__brandcol { grid-column: span 2; }

	.am-hero__tiles { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 10px; }
	.am-tile--wide { grid-column: span 2; }
	.am-hero__visual { min-height: 300px; }

	.am-drawer { width: 100vw; }
}

@media (max-width: 420px) {
	:root { --am-gutter: 16px; }
	.am-brand__name { font-size: 0.95rem; }
	.am-hero__actions .am-btn { width: 100%; }
	.am-footer__grid { grid-template-columns: minmax(0, 1fr); }
	.am-footer__brandcol { grid-column: span 1; }
	.am-tile__name { display: none; }
}

/* ==========================================================================
   Page level compositions
   ========================================================================== */

/* Discovery band ---------------------------------------------------------- */
.am-discover { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.am-discover__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.am-discover__title { font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.8rem); margin: 0; }
.am-discover__form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1 1 340px;
	max-width: 480px;
	padding: 6px 6px 6px 14px;
	border: 1px solid var(--am-line-strong);
	border-radius: var(--am-r-pill);
	background: var(--am-raised);
	transition: border-color var(--am-fast) var(--am-ease);
}
.am-discover__form:focus-within { border-color: var(--am-accent); }
.am-discover__icon { color: var(--am-ink-faint); display: flex; flex: 0 0 auto; }
.am-discover__form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 9px 0;
	border: 0;
	background: transparent;
	color: var(--am-ink);
	font-size: 0.95rem;
	appearance: none;
	-webkit-appearance: none;
}
.am-discover__form input[type="search"]::placeholder { color: var(--am-ink-faint); }
.am-discover__form input[type="search"]:focus { outline: none; }
.am-discover__more { margin-top: 4px; }
.am-discover__more a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 500;
}

/* Featured: lead plus stack ----------------------------------------------- */
.am-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
	gap: var(--am-md);
	align-items: stretch;
}
.am-featured__lead, .am-featured__lead .am-pcard { height: 100%; }
.am-featured__lead .am-pcard__media { aspect-ratio: 16 / 10; }
.am-featured__lead .am-pcard__title { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); }
.am-featured__stack { display: grid; grid-template-rows: 1fr 1fr; gap: var(--am-md); }
.am-featured__stack > div, .am-featured__stack .am-pcard { height: 100%; }
.am-featured__stack .am-pcard { flex-direction: row; }
.am-featured__stack .am-pcard__media { aspect-ratio: auto; width: 40%; flex: 0 0 40%; border-bottom: 0; border-right: 1px solid var(--am-line); }
.am-featured__stack .am-pcard__body { flex: 1 1 auto; padding: 18px; }
.am-featured__stack .am-pcard__foot { display: none; }
.am-featured__stack .am-pcard__excerpt { display: none; }

/* Grid header ------------------------------------------------------------- */
.am-gridhead {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(24px, 3vw, 38px);
	padding-bottom: 18px;
	border-bottom: 1px solid var(--am-line);
}
.am-gridhead__title { margin: 0; }

/* Highlight list ---------------------------------------------------------- */
.am-hlist { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 0; }
.am-hlist__item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding-block: 20px;
	border-top: 1px solid var(--am-line);
}
.am-hlist__item:last-child { border-bottom: 1px solid var(--am-line); }
.am-hlist__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: var(--am-r-md);
	border: 1px solid var(--am-line-strong);
	background: rgba(55, 213, 188, 0.08);
	color: var(--am-accent);
}
.am-hlist__title { font-size: 1.05rem; margin-bottom: 6px; }
.am-hlist__text { color: var(--am-ink-muted); font-size: 0.9375rem; }

/* FAQ split and FAQ page --------------------------------------------------- */
.am-faqsplit {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
	gap: clamp(28px, 4vw, 72px);
	align-items: start;
}
.am-faqsplit__aside { position: sticky; top: 100px; display: grid; gap: 16px; justify-items: start; }
.am-faqsplit__note { color: var(--am-ink-muted); font-size: 0.9375rem; }

.am-faqpage {
	display: grid;
	grid-template-columns: 216px minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
}
.am-faqpage__aside { position: sticky; top: 100px; }
.am-faqnav__title {
	font-family: var(--am-font-body);
	font-size: 0.74rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--am-ink-faint);
	margin-bottom: 14px;
}
.am-faqnav__list { list-style: none; display: grid; gap: 2px; }
.am-faqnav__list a {
	display: block;
	padding: 9px 12px;
	border-radius: var(--am-r-sm);
	color: var(--am-ink-muted);
	font-size: 0.925rem;
}
.am-faqnav__list a:hover { background: var(--am-raised); color: var(--am-ink); }
.am-faqgroup + .am-faqgroup { margin-top: clamp(32px, 4vw, 52px); }
.am-faqgroup__title { font-size: 1.3rem; margin-bottom: 14px; }

/* Contact ----------------------------------------------------------------- */
.am-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
	gap: clamp(24px, 3.4vw, 52px);
	align-items: start;
}
.am-contact__form { margin-top: 18px; }
.am-contact__side { display: grid; gap: var(--am-md); }
.am-contact__card {
	padding: clamp(20px, 2.4vw, 28px);
	border: 1px solid var(--am-line);
	border-radius: var(--am-r-md);
	background: var(--am-raised);
	display: grid;
	gap: 12px;
	justify-items: start;
}
.am-contact__card--tg { background: linear-gradient(150deg, var(--am-raised), var(--am-surface)); border-color: var(--am-line-strong); }
.am-contact__cardtitle { font-size: 1.075rem; }
.am-contact__cardtext { color: var(--am-ink-muted); font-size: 0.9375rem; }
.am-contact__list { list-style: none; display: grid; gap: 11px; }
.am-contact__list li { display: flex; align-items: center; gap: 10px; color: var(--am-ink-muted); font-size: 0.9375rem; }
.am-contact__list .am-icon { color: var(--am-ink-faint); flex: 0 0 auto; }

/* Page level responsive --------------------------------------------------- */
@media (max-width: 1024px) {
	.am-featured { grid-template-columns: minmax(0, 1fr); }
	.am-featured__stack { grid-template-rows: auto auto; }
	.am-faqsplit { grid-template-columns: minmax(0, 1fr); }
	.am-faqsplit__aside { position: static; }
	.am-faqpage { grid-template-columns: minmax(0, 1fr); }
	.am-faqpage__aside { position: static; }
	.am-faqnav__list { display: flex; flex-wrap: wrap; gap: 8px; }
	.am-contact { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
	.am-discover__head { flex-direction: column; align-items: stretch; }
	.am-discover__form { max-width: none; }
	.am-featured__stack .am-pcard { flex-direction: column; }
	.am-featured__stack .am-pcard__media { width: 100%; flex: 0 0 auto; aspect-ratio: 3 / 2; border-right: 0; border-bottom: 1px solid var(--am-line); }
	.am-gridhead { flex-direction: column; align-items: flex-start; }
	.am-hlist__item { grid-template-columns: minmax(0, 1fr); }
	.am-hlist__icon { display: none; }
}

/* ==========================================================================
   Phase 2 content components
   ========================================================================== */

/* Provider catalogue cards ------------------------------------------------- */
.am-provgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: var(--am-md);
}
.am-provcard {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(20px, 2.2vw, 26px);
	border: 1px solid var(--am-line);
	border-radius: var(--am-r-md);
	background: var(--am-raised);
	transition: border-color var(--am-slow) var(--am-ease), transform var(--am-slow) var(--am-ease);
}
.am-provcard:hover { border-color: var(--am-line-strong); transform: translateY(-2px); }
.am-provcard__head { display: flex; align-items: center; gap: 11px; }
.am-provcard__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px; height: 32px;
	padding-inline: 8px;
	border-radius: var(--am-r-sm);
	background: var(--am-product);
	border: 1px solid var(--am-line-strong);
	font-family: var(--am-font-display);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	flex: 0 0 auto;
}
.am-provcard__title { font-size: 1.075rem; margin: 0; }
.am-provcard__title a { color: var(--am-ink); }
.am-provcard__title a:hover { color: var(--am-accent); }
.am-provcard__blurb { color: var(--am-ink-muted); font-size: 0.9375rem; margin: 0; }
.am-provcard__list { list-style: none; display: grid; gap: 8px; margin: 2px 0 0; padding: 0; }
.am-provcard__list li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	color: var(--am-ink-muted);
	font-size: 0.9rem;
}
.am-provcard__list .am-icon { color: var(--am-accent); margin-top: 3px; }
.am-provcard__best {
	margin: auto 0 0;
	padding-top: 12px;
	border-top: 1px solid var(--am-line);
	color: var(--am-ink-muted);
	font-size: 0.875rem;
}
.am-provcard__bestlabel {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--am-ink-faint);
	margin-bottom: 4px;
}

/* CTA checklist ------------------------------------------------------------ */
.am-cta__list { list-style: none; display: grid; gap: 9px; margin: 20px 0 0; padding: 0; }
.am-cta__list li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--am-ink-muted);
	font-size: 0.9375rem;
}
.am-cta__list .am-icon { color: var(--am-accent); margin-top: 3px; }

/* Audience list ------------------------------------------------------------ */
.am-audience { list-style: none; display: grid; gap: 0; margin: 26px 0 0; padding: 0; }
.am-audience__item {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	gap: 16px;
	align-items: baseline;
	padding-block: 13px;
	border-top: 1px solid var(--am-line);
}
.am-audience__item:last-child { border-bottom: 1px solid var(--am-line); }
.am-audience__title { font-weight: 600; color: var(--am-ink); font-size: 0.95rem; }
.am-audience__text { color: var(--am-ink-muted); font-size: 0.9125rem; }

.am-hlist__intro { margin-top: 16px; color: var(--am-ink-muted); }
.am-hlist__intro p { margin: 0 0 0.7em; }

/* Long form prose support -------------------------------------------------- */
.am-prose .am-rule {
	border: 0;
	border-top: 1px solid var(--am-line);
	margin-block: 2.2em;
}
.am-prose h2 { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem); margin-top: 1.8em; }
.am-prose h3 { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.28rem); margin-top: 1.5em; color: var(--am-ink); }
.am-prose h4 { margin-top: 1.3em; color: var(--am-ink); }
.am-prose strong { color: var(--am-ink); }
.am-prose > :first-child { margin-top: 0; }

.am-tablewrap { overflow-x: auto; margin-block: 1.4em; }
.am-tablewrap .am-spectable { min-width: 420px; }
.am-prose .am-spectable th { color: var(--am-ink); font-weight: 600; background: var(--am-surface); }
.am-prose .am-spectable td { font-family: var(--am-font-body); font-size: 0.9rem; color: var(--am-ink-muted); }

/* Best-for block on the product page --------------------------------------- */
.am-bestfor {
	padding: 16px 18px;
	border: 1px solid var(--am-line);
	border-left: 3px solid var(--am-accent);
	border-radius: var(--am-r-md);
	background: var(--am-surface);
}
.am-bestfor--spaced { margin-top: 28px; }
.am-bestfor__label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--am-ink-faint);
	margin-bottom: 5px;
}
.am-bestfor__text { color: var(--am-ink); font-size: 0.9375rem; margin: 0; }

.am-faqnav__cta { margin-top: 18px; }

@media (max-width: 640px) {
	.am-provgrid { grid-template-columns: minmax(0, 1fr); }
	.am-audience__item { grid-template-columns: minmax(0, 1fr); gap: 3px; }
}

/* ==========================================================================
   Polish layer
   Depth, micro-interactions and the Telegram lockups. Everything animates
   transform, opacity or color only, so nothing triggers layout.
   ========================================================================== */

:root {
	/* Layered elevation: a tight contact shadow plus a soft indigo ambient one. */
	--am-shadow: 0 1px 2px rgba(4, 8, 20, 0.4), 0 14px 34px rgba(4, 8, 20, 0.5);
	--am-shadow-lift: 0 2px 4px rgba(4, 8, 20, 0.45), 0 26px 56px rgba(4, 8, 20, 0.62);
	--am-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--am-pointer-x: 50%;
	--am-pointer-y: 30%;
}

/* --------------------------------------------------------------------------
   Surface depth: a hairline top highlight on raised panels
   -------------------------------------------------------------------------- */

.am-pcard,
.am-provcard,
.am-bento__cell,
.am-contact__card { position: relative; }

.am-pcard::before,
.am-provcard::before,
.am-bento__cell::before,
.am-contact__card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(90deg, transparent, rgba(234, 238, 249, 0.10) 22%, rgba(234, 238, 249, 0.10) 78%, transparent);
	opacity: 0.7;
	transition: opacity var(--am-slow) var(--am-ease), background var(--am-slow) var(--am-ease);
}
.am-pcard:hover::before,
.am-provcard:hover::before,
.am-bento__cell:hover::before,
.am-contact__card:hover::before {
	opacity: 1;
	background: linear-gradient(90deg, transparent, rgba(55, 213, 188, 0.34) 25%, rgba(55, 213, 188, 0.34) 75%, transparent);
}

/* --------------------------------------------------------------------------
   Pointer reactive ambient light. The controller sets the pointer custom
   properties on the panel; with no script the centred default simply stays.
   -------------------------------------------------------------------------- */

.am-hero__panelglow,
.am-ambient--panel {
	background: radial-gradient(
		22rem 16rem at var(--am-pointer-x) var(--am-pointer-y),
		rgba(55, 213, 188, 0.17),
		transparent 62%
	);
	transition: background 420ms var(--am-ease-out);
}

/* One very slow drift, scoped to the hero panel only. */
@media (prefers-reduced-motion: no-preference) {
	.am-hero__panel::after {
		content: "";
		position: absolute;
		inset: -30%;
		pointer-events: none;
		background: radial-gradient(28rem 20rem at 30% 70%, rgba(95, 138, 240, 0.13), transparent 62%);
		animation: am-drift 34s ease-in-out infinite alternate;
	}
}
@keyframes am-drift {
	from { transform: translate3d(-3%, 2%, 0) scale(1); }
	to   { transform: translate3d(4%, -3%, 0) scale(1.06); }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.am-btn {
	position: relative;
	overflow: hidden;
	transition: background var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease),
		color var(--am-fast) var(--am-ease), transform 220ms var(--am-ease-out), box-shadow 220ms var(--am-ease-out);
}
.am-btn > * { position: relative; z-index: 1; }
.am-btn--primary::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 46%);
	opacity: 0;
	transition: opacity var(--am-fast) var(--am-ease);
}
.am-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(4, 8, 20, 0.45);
}
.am-btn--primary:hover::after { opacity: 1; }
.am-btn--primary:active { transform: translateY(1px); box-shadow: none; }
.am-btn--ghost:hover { transform: translateY(-1px); }
.am-btn--ghost:active { transform: translateY(1px); }

.am-iconbtn,
.am-cartbtn,
.am-tg-icon {
	transition: color var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease),
		background var(--am-fast) var(--am-ease), transform 220ms var(--am-ease-out);
}
.am-iconbtn:hover,
.am-cartbtn:hover,
.am-tg-icon:hover { transform: translateY(-1px); }
.am-iconbtn:active,
.am-cartbtn:active,
.am-tg-icon:active { transform: translateY(0); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.am-nav__list > li > a { position: relative; }
.am-nav__list > li > a::before {
	content: "";
	position: absolute;
	left: 14px; right: 14px; bottom: 5px;
	height: 2px;
	border-radius: 2px;
	background: var(--am-accent);
	transform: scaleX(0);
	transform-origin: left center;
	opacity: 0.85;
	transition: transform 260ms var(--am-ease-out);
}
.am-nav__list > li > a:hover::before { transform: scaleX(1); }
.am-nav__list .current-menu-item > a::before,
.am-nav__list .current_page_item > a::before { transform: scaleX(1); }
.am-nav__list .current-menu-item > a::after,
.am-nav__list .current_page_item > a::after { display: none; }

.am-header { transition: border-color var(--am-slow) var(--am-ease), background var(--am-slow) var(--am-ease); }
.am-header.is-stuck { background: rgba(8, 12, 23, 0.94); }

.am-mobile__list a { transition: color var(--am-fast) var(--am-ease), padding-left var(--am-fast) var(--am-ease); }
.am-mobile__list a:hover { color: var(--am-accent); padding-left: 10px; }

/* --------------------------------------------------------------------------
   Cards and tiles
   -------------------------------------------------------------------------- */

.am-pcard:hover { transform: translateY(-3px); }
.am-pcard:focus-within { border-color: var(--am-line-strong); box-shadow: var(--am-shadow-lift); }
.am-pcard__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 45%, rgba(7, 10, 18, 0.34));
	opacity: 0;
	transition: opacity var(--am-slow) var(--am-ease);
}
.am-pcard:hover .am-pcard__media::after { opacity: 1; }
.am-pcard__price { transition: color var(--am-slow) var(--am-ease); }
.am-pcard:hover .am-pcard__price { color: var(--am-accent); }
.am-pcard__provider { z-index: 2; transition: border-color var(--am-slow) var(--am-ease), color var(--am-slow) var(--am-ease); }
.am-pcard:hover .am-pcard__provider { color: var(--am-ink); border-color: var(--am-accent); }

.am-provcard:hover { transform: translateY(-3px); box-shadow: var(--am-shadow); }
.am-provcard__mark { transition: border-color var(--am-slow) var(--am-ease), background var(--am-slow) var(--am-ease); }
.am-provcard:hover .am-provcard__mark { border-color: var(--am-accent); background: rgba(55, 213, 188, 0.10); }

.am-bento__cell:hover { transform: translateY(-3px); box-shadow: var(--am-shadow); }
.am-bento__icon { transition: transform 260ms var(--am-ease-out), border-color var(--am-fast) var(--am-ease); }
.am-bento__cell:hover .am-bento__icon { transform: translateY(-2px); border-color: var(--am-accent); }

.am-rail__item { transition: transform 220ms var(--am-ease-out), border-color var(--am-fast) var(--am-ease), color var(--am-fast) var(--am-ease), background var(--am-fast) var(--am-ease); }
.am-rail__item:hover { transform: translateY(-2px); }
.am-rail__mark { transition: border-color var(--am-fast) var(--am-ease), color var(--am-fast) var(--am-ease); }
.am-rail__item:hover .am-rail__mark { border-color: var(--am-accent); color: var(--am-accent); }

.am-hlist__icon { transition: transform 260ms var(--am-ease-out), border-color var(--am-fast) var(--am-ease); }
.am-hlist__item:hover .am-hlist__icon { transform: translateY(-2px); border-color: var(--am-accent); }

.am-step { transition: background var(--am-slow) var(--am-ease); }
.am-step:hover { background: linear-gradient(90deg, rgba(24, 33, 58, 0.42), transparent 72%); }

.am-tile { transition: transform var(--am-slow) var(--am-ease-out), border-color var(--am-slow) var(--am-ease), background var(--am-slow) var(--am-ease); }
.am-tile:hover { background: rgba(28, 39, 68, 0.86); border-color: var(--am-accent); }

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */

.am-acc__item { position: relative; transition: background var(--am-slow) var(--am-ease); }
.am-acc__item::before {
	content: "";
	position: absolute;
	left: -4px; top: 10px; bottom: 10px;
	width: 2px;
	border-radius: 2px;
	background: var(--am-accent);
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 300ms var(--am-ease-out);
}
.am-acc__item[open]::before { transform: scaleY(1); }
.am-acc__item:hover { background: rgba(24, 33, 58, 0.26); }

/* --------------------------------------------------------------------------
   Focus states
   -------------------------------------------------------------------------- */

.am-btn:focus-visible,
.am-tg-action:focus-visible { outline: 2px solid var(--am-accent); outline-offset: 3px; }
.am-acc__q:focus-visible { outline: 2px solid var(--am-accent); outline-offset: -2px; border-radius: var(--am-r-sm); }

/* --------------------------------------------------------------------------
   Telegram lockups
   -------------------------------------------------------------------------- */

.am-tg-icon { gap: 8px; }
.am-tg-icon__label {
	display: none;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}
@media (min-width: 1180px) {
	.am-header__tg.am-tg-icon { width: auto; padding-inline: 14px; }
	.am-header__tg .am-tg-icon__label { display: inline; }
}

.am-tg-action {
	/* Sits above the card's stretched title link so it stays clickable. */
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 20px 18px;
	padding: 9px 13px;
	border-radius: var(--am-r-sm);
	border: 1px solid var(--am-line);
	background: rgba(24, 33, 58, 0.42);
	color: var(--am-ink-muted);
	font-size: 0.85rem;
	font-weight: 500;
	transition: color var(--am-fast) var(--am-ease), border-color var(--am-fast) var(--am-ease), background var(--am-fast) var(--am-ease);
}
.am-tg-action .am-icon--telegram { color: var(--am-accent); flex: 0 0 auto; }
.am-tg-action__arrow { margin-left: auto; opacity: 0.55; transition: transform var(--am-fast) var(--am-ease), opacity var(--am-fast) var(--am-ease); }
.am-tg-action:hover {
	color: var(--am-ink);
	border-color: var(--am-line-strong);
	background: rgba(55, 213, 188, 0.08);
}
.am-tg-action:hover .am-tg-action__arrow { transform: translateX(3px); opacity: 1; }

.am-tg-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--am-ink-muted);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color var(--am-fast) var(--am-ease);
}
.am-tg-link .am-icon--telegram { color: var(--am-accent); }
.am-tg-link:hover { color: var(--am-accent); }

.am-tgcard {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px 14px;
	align-items: center;
	margin-top: 28px;
	padding: 18px;
	border: 1px solid var(--am-line-strong);
	border-radius: var(--am-r-md);
	background: linear-gradient(150deg, var(--am-raised), var(--am-surface));
	transition: border-color var(--am-slow) var(--am-ease), transform 260ms var(--am-ease-out);
}
.am-tgcard:hover { border-color: var(--am-accent); transform: translateY(-2px); }
.am-tgcard__icon { color: var(--am-accent); display: flex; }
.am-tgcard__title { font-weight: 600; color: var(--am-ink); font-size: 0.95rem; }
.am-tgcard__text { color: var(--am-ink-muted); font-size: 0.875rem; margin-top: 2px; }
.am-tgcard .am-btn { grid-column: 1 / -1; justify-content: center; }

.am-btn--tg .am-icon--telegram { color: inherit; }
.am-btn--ghost.am-btn--tg:hover { border-color: var(--am-accent); }

/* --------------------------------------------------------------------------
   Cart count pulse and reveal refinement
   -------------------------------------------------------------------------- */

.am-cartbtn__count { transition: transform 260ms var(--am-ease-out); }
.am-cartbtn__count.is-bump { animation: am-bump 420ms var(--am-ease-out); }
@keyframes am-bump {
	0% { transform: scale(1); }
	40% { transform: scale(1.28); }
	100% { transform: scale(1); }
}

.am-js .am-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 560ms var(--am-ease-out), transform 560ms var(--am-ease-out);
}
.am-js .am-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.am-hero__panel::after { animation: none; }
	.am-cartbtn__count.is-bump { animation: none; }
	.am-btn--primary:hover,
	.am-btn--ghost:hover,
	.am-pcard:hover,
	.am-provcard:hover,
	.am-bento__cell:hover,
	.am-rail__item:hover,
	.am-tgcard:hover,
	.am-iconbtn:hover,
	.am-cartbtn:hover,
	.am-tile:hover,
	.am-tg-icon:hover { transform: none; }
	.am-mobile__list a:hover { padding-left: 4px; }
}

/* ==========================================================================
   Telegram: header navigation item and product purchase box
   ========================================================================== */

/* Header nav item, sitting last in the list and so immediately before the
   cart button in the actions group. */
.am-nav__tg > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.am-nav__tg > a .am-icon--telegram {
	color: var(--am-accent);
	flex: 0 0 auto;
	transition: transform 220ms var(--am-ease-out);
}
.am-nav__tg > a:hover .am-icon--telegram { transform: translateY(-1px); }

/* Below the navigation breakpoint the compact header icon takes over; above
   it the nav item is the single Telegram entry point, so the icon is hidden. */
@media (min-width: 1025px) {
	.am-header__tg { display: none; }
}

/* The mobile panel renders the same menu, so the item inherits the panel
   type scale and simply gains its icon. */
.am-mobile__list .am-nav__tg > a {
	gap: 10px;
}
.am-mobile__list .am-nav__tg > a .am-icon--telegram { color: var(--am-accent); }

/* --------------------------------------------------------------------------
   Product page purchase box. One block level link: the whole box is a single
   control for both pointer and keyboard.
   -------------------------------------------------------------------------- */

.am-tgbuy {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 20px;
	gap: 14px;
	align-items: center;
	margin-top: 14px;
	padding: 15px 17px;
	border: 1px solid var(--am-line-strong);
	border-radius: var(--am-r-md);
	background: linear-gradient(150deg, var(--am-raised), var(--am-surface));
	color: var(--am-ink-muted);
	text-decoration: none;
	transition: border-color var(--am-fast) var(--am-ease), background var(--am-fast) var(--am-ease),
		transform 220ms var(--am-ease-out), box-shadow 220ms var(--am-ease-out);
}
.am-tgbuy:hover {
	color: var(--am-ink-muted);
	border-color: var(--am-accent);
	background: linear-gradient(150deg, var(--am-product), var(--am-surface));
	transform: translateY(-2px);
	box-shadow: var(--am-shadow);
}
.am-tgbuy:active { transform: translateY(0); box-shadow: none; }
.am-tgbuy:focus-visible { outline: 2px solid var(--am-accent); outline-offset: 3px; }

.am-tgbuy__icon { display: flex; color: var(--am-accent); }
.am-tgbuy__body { display: block; min-width: 0; }
.am-tgbuy__title {
	display: block;
	font-family: var(--am-font-display);
	font-size: 0.975rem;
	font-weight: 600;
	letter-spacing: -0.012em;
	color: var(--am-ink);
	line-height: 1.25;
}
.am-tgbuy__text {
	display: block;
	margin-top: 3px;
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--am-ink-faint);
}
.am-tgbuy__arrow { color: var(--am-ink-faint); transition: transform var(--am-fast) var(--am-ease), color var(--am-fast) var(--am-ease); }
.am-tgbuy:hover .am-tgbuy__arrow { transform: translateX(3px); color: var(--am-accent); }

@media (max-width: 480px) {
	.am-tgbuy { grid-template-columns: 30px minmax(0, 1fr); padding: 14px; }
	.am-tgbuy__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.am-tgbuy:hover { transform: none; }
	.am-nav__tg > a:hover .am-icon--telegram { transform: none; }
	.am-tgbuy:hover .am-tgbuy__arrow { transform: none; }
}

/* Footer Telegram: label with the handle beneath it. */
.am-footer__tg { align-items: flex-start; }
.am-footer__tg .am-icon--telegram { margin-top: 2px; }
.am-footer__tgtext { display: flex; flex-direction: column; line-height: 1.35; }
.am-footer__tghandle { font-size: 0.82rem; color: var(--am-ink-faint); }
.am-footer__tg:hover .am-footer__tghandle { color: var(--am-accent); }
