/* ==========================================================================
   Edysor landing — header + hero
   Layout metrics (1200px container, 72px hero display size, 100px bottom
   curve) are matched to the approved reference design; the palette is built
   from the plugin's own accent (#5b4fe8) rather than the reference's blue.
   ========================================================================== */

:root {
	--bd-primary: #5b4fe8;
	--bd-primary-600: #4a3ed8;
	--bd-primary-400: #7c6cff;
	--bd-primary-200: #a99bff;
	--bd-primary-050: #efecff;

	--bd-ink: #12103a;
	--bd-body: #4a4a68;
	--bd-muted: #7b7b95;
	--bd-line: #e8e6f2;

	/* Set by the hero's three-card row: the Generate window plus the two
	   settings cards either side. Every other section aligns to the same
	   width so nothing steps in or out against it. */
	--bd-container: 1600px;
	--bd-gutter: 24px;
	--bd-radius: 14px;

	--bd-shadow-card: 0 40px 90px -20px rgba(10, 4, 40, .55), 0 8px 24px rgba(10, 4, 40, .18);
	--bd-ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: "Be Vietnam Pro", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--bd-body);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* `clip`, not `hidden`. overflow-x:hidden makes overflow-y compute to auto,
	   which turns body into a scroll container and breaks position:sticky for
	   everything inside it (the how-it-works stage list). `clip` suppresses the
	   same horizontal overflow without creating that scroll container. */
	overflow-x: clip;
}

h1, h2, h3, h4 { margin: 0; color: var(--bd-ink); font-weight: 700; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.bd-container {
	width: 100%;
	max-width: calc(var(--bd-container) + (var(--bd-gutter) * 2));
	margin-inline: auto;
	padding-inline: var(--bd-gutter);
}

.screen-reader-text,
.bd-skip {
	position: absolute;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.bd-skip:focus {
	position: fixed; top: 12px; left: 12px;
	z-index: 200;
	width: auto; height: auto;
	clip: auto;
	padding: 10px 18px;
	border-radius: 8px;
	background: #fff;
	color: var(--bd-ink);
	font-weight: 600;
}

.bd-icon { width: 18px; height: 18px; flex: 0 0 auto; }


/* ---------------------------------------------------------------- buttons */

.bd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 26px;
	border: 0;
	border-radius: 10px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .18s var(--bd-ease), box-shadow .18s var(--bd-ease), background-color .18s var(--bd-ease);
}
.bd-btn:hover { transform: translateY(-2px); }
.bd-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.bd-btn--primary {
	background: var(--bd-primary);
	color: #fff;
	box-shadow: 0 10px 26px -8px rgba(91, 79, 232, .8);
}
.bd-btn--primary:hover { background: var(--bd-primary-400); box-shadow: 0 16px 34px -8px rgba(124, 108, 255, .9); }

.bd-btn--light {
	background: #fff;
	color: var(--bd-ink);
	box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .5);
}
.bd-btn--light:hover { background: #f4f2ff; }


/* ----------------------------------------------------------------- header */

.bd-header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 100;
	padding-block: 34px;
	transition: padding .28s var(--bd-ease), background-color .28s var(--bd-ease), box-shadow .28s var(--bd-ease);
}
/* Locks to the top once the hero starts scrolling away, so the CTA stays
   reachable through the rest of the page without covering the hero on load. */
.bd-header.is-stuck {
	position: fixed;
	padding-block: 14px;
	background: rgba(13, 7, 34, .82);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 12px 40px -12px rgba(0, 0, 0, .6);
}

/* Kept proportional to the resting height above, so the header still visibly
   contracts on scroll rather than the logo staying put while the bar shrinks. */
.bd-header.is-stuck .bd-logo img { height: 45px; }

.bd-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* The supplied wordmark is white-on-transparent, so it only ever sits on the
   dark header and dark footer. If it is ever needed on a light section, a
   dark variant has to be supplied — recolouring a PNG is not possible here. */
.bd-logo { display: inline-flex; align-items: center; }
.bd-logo img {
	display: block;
	width: auto;
	height: 65px;
	transition: opacity .2s var(--bd-ease), height .28s var(--bd-ease);
}
.bd-logo:hover img { opacity: .82; }
.bd-logo:focus-visible { outline: 2px solid var(--bd-primary-400); outline-offset: 6px; border-radius: 6px; }

.bd-nav { display: flex; align-items: center; }
.bd-nav__list { display: flex; align-items: center; gap: 34px; }
.bd-nav__list a {
	position: relative;
	color: rgba(255, 255, 255, .88);
	font-size: 16px;
	font-weight: 500;
	transition: color .18s var(--bd-ease);
}
.bd-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 2px;
	border-radius: 2px;
	background: var(--bd-primary-400);
	transform: scaleX(0);
	transition: transform .22s var(--bd-ease);
}
.bd-nav__list a:hover { color: #fff; }
.bd-nav__list a:hover::after { transform: scaleX(1); }

/* The nav CTA is the mobile-drawer copy; the header-level one is desktop. */
.bd-nav__cta { display: none; }

.bd-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px; height: 44px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, .1);
	cursor: pointer;
}
.bd-burger span {
	display: block;
	width: 18px; height: 2px;
	margin-inline: auto;
	border-radius: 2px;
	background: #fff;
	transition: transform .22s var(--bd-ease), opacity .22s var(--bd-ease);
}
.bd-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bd-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bd-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ------------------------------------------------------------------- hero */

.bd-hero {
	position: relative;
	isolation: isolate;
	padding-top: 186px;
	padding-bottom: 150px;
	overflow: hidden;
	text-align: center;
	background-color: #0c0620;
	background-image:
		radial-gradient(120% 82% at 50% 104%,
			rgba(184, 158, 255, .95) 0%,
			rgba(129, 104, 250, .72) 26%,
			rgba( 86,  56, 214, .40) 48%,
			rgba( 12,   6,  32,   0) 76%),
		linear-gradient(180deg, #120a30 0%, #1d1152 20%, #301d92 44%, #4729c6 66%, #5b3fe0 86%, #6a4ff0 100%);
}
/* Extra bloom directly behind the product card — the reference has a
   distinctly brighter core there than the base gradient alone produces. */
.bd-hero__glow {
	position: absolute;
	left: 50%;
	bottom: -6%;
	z-index: -1;
	width: min(1650px, 140%);
	aspect-ratio: 2 / 1;
	transform: translateX(-50%);
	pointer-events: none;
	background: radial-gradient(closest-side, rgba(196, 174, 255, .68), rgba(139, 118, 255, .26) 52%, transparent 72%);
	filter: blur(12px);
}

.bd-hero__inner { position: relative; z-index: 2; }

.bd-badge {
	display: inline-block;
	margin-bottom: 30px;
	padding: 8px 20px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .09);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.01em;
}

.bd-hero__title {
	/* Wide enough that the fixed first line never wraps at the 72px display
	   size — the rotating second line is a block element, so the two-line
	   break is structural rather than something the width has to produce. */
	max-width: 1040px;
	margin-inline: auto;
	color: #fff;
	font-size: clamp(38px, 5.1vw, 72px);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -.035em;
}

/* Marker-style highlight sitting behind the word's lower third, so
   descenders still read over the top of it. */
.bd-mark { position: relative; z-index: 0; display: inline-block; }
.bd-mark::after {
	content: "";
	position: absolute;
	z-index: -1;
	left: -.04em; right: -.04em;
	bottom: -.12em;
	height: .34em;
	border-radius: 3px;
	background: var(--bd-primary);
}

.bd-rotator { position: relative; display: block; height: 1.16em; }
.bd-rotator__item {
	position: absolute;
	left: 50%; top: 0;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-50%) scale(1.16);
	transition: opacity .5s var(--bd-ease), transform .5s var(--bd-ease);
}
.bd-rotator__item.is-active { opacity: 1; transform: translateX(-50%) scale(1); }
.bd-rotator__item.is-leaving { opacity: 0; transform: translateX(-50%) scale(.86); }

.bd-hero__lede {
	max-width: 720px;
	margin: 30px auto 0;
	color: rgba(255, 255, 255, .74);
	font-size: 18px;
	line-height: 1.72;
}

.bd-hero__form {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 52px;
}
.bd-hero__input {
	width: 310px;
	height: 48px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 10px;
	background: rgba(10, 5, 30, .45);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	transition: border-color .18s var(--bd-ease), background-color .18s var(--bd-ease);
}
.bd-hero__input::placeholder { color: rgba(255, 255, 255, .55); }
.bd-hero__input:focus {
	outline: 0;
	border-color: var(--bd-primary-400);
	background: rgba(10, 5, 30, .68);
}

/* Bottom curve — the white of the next section rising at both edges and
   dipping under the card in the centre. */
.bd-hero__curve {
	position: absolute;
	inset: auto 0 -1px;
	z-index: 3;
	line-height: 0;
	pointer-events: none;
}
.bd-hero__curve svg { display: block; width: 100%; height: 104px; }
.bd-hero__curve path { fill: #fff; }


/* ---------------------------------------------- hero product surface ---
   The plugin's real admin screens rebuilt in markup: the Generate tab as
   the main window, with the Publishing Schedule and Content Settings tabs
   as smaller cards flanking it. Nothing here is a screen the plugin does
   not actually have. */

/* Grid rather than absolutely-positioned overlays: the Generate table is
   dense, and anything floating on top of it hides the exact detail the
   card exists to show. */
.bd-stage {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 74px;
}

.bd-app {
	position: relative;
	z-index: 2;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--bd-shadow-card);
	overflow: hidden;
	font-family: "Inter", "Be Vietnam Pro", sans-serif;
	text-align: left;
}

.bd-app__chrome {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding-inline: 20px;
	border-bottom: 1px solid #f1f0f7;
}
.bd-app__dot { width: 11px; height: 11px; border-radius: 50%; }
.bd-app__dot--r { background: #ff5f57; }
.bd-app__dot--y { background: #febc2e; }
.bd-app__dot--g { background: #28c840; }

.bd-app__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 26px 14px;
}
.bd-app__head h3 { font-size: 19px; font-weight: 700; letter-spacing: -.02em; }

.bd-app__profile {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 32px;
	padding: 0 12px;
	border: 1px solid var(--bd-line);
	border-radius: 8px;
	color: #3f3f5a;
	font-size: 12.5px;
	font-weight: 500;
	white-space: nowrap;
}
.bd-app__profile-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bd-primary); }
.bd-app__profile .bd-icon { width: 13px; height: 13px; color: #9a9ab2; }

/* WP's own nav-tab pattern, since that is what the plugin actually renders. */
.bd-app__tabs {
	display: flex;
	gap: 26px;
	padding: 0 26px;
	border-bottom: 1px solid var(--bd-line);
}
.bd-app__tabs span {
	position: relative;
	padding-bottom: 12px;
	color: #7b7b95;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}
.bd-app__tabs .is-active { color: var(--bd-primary); font-weight: 600; }
.bd-app__tabs .is-active::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	height: 2px;
	background: var(--bd-primary);
}

.bd-app__body { padding: 20px 26px 24px; background: #fbfbfe; }

.bd-app__note { color: #6a6a85; font-size: 12.5px; }
.bd-app__note strong { color: var(--bd-ink); font-weight: 600; }

.bd-app__actions { display: flex; gap: 10px; margin-top: 14px; }
.bd-app__btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 36px;
	padding: 0 15px;
	border: 1px solid var(--bd-line);
	border-radius: 8px;
	background: #fff;
	color: #3f3f5a;
	font-size: 12.5px;
	font-weight: 600;
	white-space: nowrap;
}
.bd-app__btn .bd-icon { width: 15px; height: 15px; }
.bd-app__btn--primary {
	border-color: transparent;
	background: var(--bd-primary);
	color: #fff;
	box-shadow: 0 6px 16px -6px rgba(91, 79, 232, .8);
}

.bd-app__section { margin-top: 22px; }
.bd-app__section h4 { font-size: 14px; font-weight: 700; }
.bd-app__hint { margin-top: 3px; color: var(--bd-muted); font-size: 11.5px; }

.bd-app__table { width: 100%; border-collapse: collapse; margin-top: 12px; table-layout: fixed; }
.bd-app__table th {
	padding: 9px 12px;
	background: #f6f5fc;
	color: #6a6a85;
	font-size: 11px;
	font-weight: 600;
	text-align: left;
}
.bd-app__table th:first-child { border-radius: 7px 0 0 7px; }
.bd-app__table th:last-child { border-radius: 0 7px 7px 0; }
.bd-app__table td {
	padding: 12px;
	border-bottom: 1px solid #f0eff8;
	color: #40405c;
	font-size: 12.5px;
	vertical-align: top;
}
.bd-app__table tr:last-child td { border-bottom: 0; }

.bd-app__table--topics th:nth-child(1) { width: 38px; }
.bd-app__table--topics th:nth-child(2) { width: 31%; }
.bd-app__table--topics th:nth-child(3) { width: 22%; }
.bd-app__table--topics th:nth-child(4) { width: 20%; }

.bd-app__cell-title { color: var(--bd-ink); font-weight: 600; }
.bd-app__table td strong { display: block; color: var(--bd-ink); font-size: 12px; font-weight: 600; }
.bd-app__table td span:not([class]) { display: block; margin-top: 2px; color: var(--bd-muted); font-size: 11px; }
.bd-app__col-why { color: var(--bd-muted); font-size: 11.5px; line-height: 1.5; }

.bd-app__format {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--bd-primary-050);
	color: var(--bd-primary);
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.5;
	white-space: nowrap;
}

.bd-check {
	display: block;
	width: 15px; height: 15px;
	border: 1.5px solid #cfcce2;
	border-radius: 4px;
	background: #fff;
}
.bd-check.is-on {
	position: relative;
	border-color: var(--bd-primary);
	background: var(--bd-primary);
}
.bd-check.is-on::after {
	content: "";
	position: absolute;
	left: 4px; top: 1px;
	width: 4px; height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.bd-app__switch {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: 32px; height: 18px;
	border-radius: 999px;
	background: #ddd9ee;
}
.bd-app__switch[data-on="on"] { background: var(--bd-primary); }
.bd-app__switch::after {
	content: "";
	position: absolute;
	top: 2px; left: 2px;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: #fff;
}
.bd-app__switch[data-on="on"]::after { left: auto; right: 2px; }


/* ------------------------------------------------------ floating cards */

.bd-float {
	align-self: start;
	padding: 16px 18px 18px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 30px 60px -18px rgba(8, 3, 34, .55);
	font-family: "Inter", "Be Vietnam Pro", sans-serif;
	text-align: left;
}

.bd-float__head {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--bd-ink);
	font-size: 13px;
	font-weight: 700;
}
.bd-float__head .bd-icon { width: 15px; height: 15px; color: var(--bd-primary); }

.bd-float__label {
	margin: 14px 0 6px;
	color: var(--bd-muted);
	font-size: 10.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.bd-select,
.bd-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	height: 32px;
	padding: 0 11px;
	border: 1px solid var(--bd-line);
	border-radius: 7px;
	background: #fff;
	color: #40405c;
	font-size: 11.5px;
	white-space: nowrap;
	overflow: hidden;
}
.bd-select .bd-icon { width: 13px; height: 13px; color: #9a9ab2; }
.bd-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.bd-days { display: flex; gap: 4px; }
.bd-days__pill {
	flex: 1 1 0;
	padding: 6px 0;
	border: 1px solid var(--bd-line);
	border-radius: 6px;
	color: var(--bd-muted);
	font-size: 10px;
	font-weight: 600;
	text-align: center;
}
.bd-days__pill.is-on {
	border-color: var(--bd-primary);
	background: var(--bd-primary);
	color: #fff;
}

.bd-dayrow { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.bd-dayrow__day { width: 30px; color: var(--bd-ink); font-size: 11.5px; font-weight: 600; }
.bd-dayrow__time {
	padding: 5px 9px;
	border: 1px solid var(--bd-line);
	border-radius: 6px;
	color: #40405c;
	font-size: 11px;
}

.bd-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--bd-line);
	border-radius: 6px;
	overflow: hidden;
}
.bd-stepper i,
.bd-stepper b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	font-size: 11px;
	font-style: normal;
}
.bd-stepper i { width: 24px; background: #f6f5fc; color: #6a6a85; }
.bd-stepper b { width: 30px; color: var(--bd-ink); font-weight: 600; }

.bd-toggle-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-top: 1px solid #f3f2f9;
	color: #40405c;
	font-size: 11.5px;
	font-weight: 500;
}
.bd-float__label + .bd-toggle-row { padding-top: 0; border-top: 0; }


/* ------------------------------------------------- section 2: features */

.bd-section { padding: 112px 0 124px; background: #fff; }

.bd-section__head { max-width: 740px; margin: 0 auto 68px; text-align: center; }

.bd-eyebrow {
	display: inline-block;
	margin-bottom: 20px;
	padding: 7px 16px;
	border: 1px solid var(--bd-line);
	border-radius: 8px;
	color: var(--bd-primary);
	font-size: 12.5px;
	font-weight: 700;
}

.bd-section__title {
	font-size: clamp(30px, 3.3vw, 44px);
	line-height: 1.18;
	letter-spacing: -.03em;
}
.bd-section__title span { color: var(--bd-primary); }

.bd-section__lede {
	max-width: 610px;
	margin: 18px auto 0;
	color: var(--bd-body);
	font-size: 17px;
	line-height: 1.72;
}

.bd-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px 44px; }

.bd-feature { display: flex; gap: 20px; }
.bd-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 66px; height: 66px;
	border-radius: 16px;
	background: var(--bd-primary-050);
	color: var(--bd-primary);
}
/* Overrides the 1.8 presentation attribute on the shared icon sprite —
   at 26px the thinner stroke keeps these from looking heavier than the
   12–18px instances used everywhere else. */
.bd-feature__icon .bd-icon { width: 26px; height: 26px; stroke-width: 1.6; }

.bd-feature__title { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.bd-feature__text { margin-top: 9px; color: var(--bd-body); font-size: 15px; line-height: 1.72; }

@media (max-width: 1024px) {
	.bd-section { padding: 88px 0 96px; }
	.bd-features { grid-template-columns: repeat(2, 1fr); gap: 42px 34px; }
}

@media (max-width: 640px) {
	.bd-section { padding: 62px 0 72px; }
	.bd-section__head { margin-bottom: 44px; }
	.bd-section__lede { font-size: 16px; }
	.bd-features { grid-template-columns: 1fr; gap: 32px; }
	.bd-feature { gap: 16px; }
	.bd-feature__icon { width: 54px; height: 54px; border-radius: 14px; }
	.bd-feature__icon .bd-icon { width: 22px; height: 22px; }
}


/* ------------------------------------------------------------ responsive */

/* Wide screens: the two settings cards sit either side of the Generate
   window instead of under it, staggered vertically so the group reads as a
   composition rather than three boxes in a row. */
@media (min-width: 1500px) {
	.bd-stage {
		grid-template-columns: 300px minmax(0, 1fr) 300px;
		gap: 22px;
	}
	.bd-app { grid-column: 2; grid-row: 1; }
	.bd-float--left  { grid-column: 1; grid-row: 1; margin-top: 96px; }
	.bd-float--right { grid-column: 3; grid-row: 1; margin-top: 26px; }
}

/* Mid widths: full-width window, the two cards two-up beneath it. */
@media (min-width: 861px) and (max-width: 1499px) {
	.bd-stage { grid-template-columns: 1fr 1fr; }
	.bd-app { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
	.bd-nav {
		position: fixed;
		inset: 0 0 auto;
		z-index: 99;
		flex-direction: column;
		gap: 22px;
		padding: 108px 24px 40px;
		background: #0e0828;
		clip-path: inset(0 0 100% 0);
		transition: clip-path .34s var(--bd-ease);
	}
	.bd-nav.is-open { clip-path: inset(0 0 0 0); }
	.bd-nav__list { flex-direction: column; gap: 22px; }
	.bd-nav__list a { font-size: 19px; }
	.bd-nav__cta { display: inline-flex; }
	.bd-header__cta { display: none; }
	.bd-burger { display: flex; position: relative; z-index: 101; }

	.bd-hero { padding-top: 168px; padding-bottom: 120px; }

	/* The "why now" column is the first thing worth losing — it is the
	   longest text in the row and the least legible at this scale. */
	.bd-app__col-why { display: none; }
	.bd-app__table--topics th:nth-child(2) { width: 42%; }
	.bd-app__table--topics th:nth-child(3) { width: 30%; }
}

@media (max-width: 860px) {
	.bd-hero__curve svg { height: 70px; }
	.bd-app__tabs { gap: 18px; overflow-x: auto; }
	.bd-app__actions { flex-wrap: wrap; }
}

@media (max-width: 640px) {
	:root { --bd-gutter: 18px; }

	.bd-hero { padding-top: 140px; padding-bottom: 90px; }
	.bd-hero__title { max-width: none; }
	.bd-hero__lede { font-size: 16px; }

	.bd-hero__form { flex-direction: column; align-items: stretch; margin-top: 38px; }
	.bd-hero__input { width: 100%; }
	.bd-btn { width: 100%; }

	.bd-stage { margin-top: 48px; }
	.bd-app { border-radius: 12px; }
	.bd-app__head, .bd-app__tabs, .bd-app__body { padding-inline: 16px; }
	.bd-app__table th, .bd-app__table td { padding: 9px 8px; font-size: 11.5px; }
	/* Only three columns survive here, so their widths have to sum to 100%
	   — table-layout:fixed hands any shortfall to the checkbox column and
	   leaves a dead gap before the title. */
	.bd-app__table--topics th:nth-child(1) { width: 8%; }
	.bd-app__table--topics th:nth-child(2) { width: 50%; }
	.bd-app__table--topics th:nth-child(3) { width: 42%; }
	.bd-app__table--topics th:nth-child(4),
	.bd-app__table--topics td:nth-child(4) { display: none; }
	.bd-hero__curve svg { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}

/* -------------------------------------- section 3: how it works (sticky) */

.bd-how { padding: 112px 0 130px; background: #f7f6fd; }

.bd-how__grid {
	display: grid;
	grid-template-columns: 460px minmax(0, 1fr);
	gap: 80px;
	align-items: start;
}

/* Pins while the panels scroll past. `align-self: start` matters — a stretched
   grid item is full-height and sticky has nothing left to travel within. */
.bd-how__aside {
	position: sticky;
	top: 108px;
	align-self: start;
}
.bd-how__aside .bd-section__title,
.bd-how__aside .bd-section__lede { text-align: left; margin-inline: 0; }
.bd-how__aside .bd-section__lede { max-width: 420px; }

.bd-steps { margin-top: 34px; counter-reset: none; }
.bd-step {
	display: flex;
	gap: 16px;
	padding: 14px 16px;
	border-radius: 11px;
	cursor: pointer;
	transition: background-color .25s var(--bd-ease);
}
.bd-step + .bd-step { margin-top: 2px; }
.bd-step.is-active { background: #fff; box-shadow: 0 6px 20px -10px rgba(20, 8, 60, .3); }

.bd-step__num {
	flex: 0 0 auto;
	color: #b6b2d4;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	padding-top: 2px;
	transition: color .25s var(--bd-ease);
}
.bd-step.is-active .bd-step__num { color: var(--bd-primary); }

.bd-step__body strong {
	display: block;
	color: #6d6a8c;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -.01em;
	transition: color .25s var(--bd-ease);
}
.bd-step.is-active .bd-step__body strong { color: var(--bd-ink); }

.bd-step__body em {
	display: block;
	margin-top: 3px;
	color: #9a97b5;
	font-size: 13px;
	font-style: normal;
	line-height: 1.5;
}
.bd-step.is-active .bd-step__body em { color: var(--bd-body); }


/* ------------------------------------------------------------ panels */

.bd-panel + .bd-panel { margin-top: 46px; }

/* Mobile-only heading — on desktop the sticky list already names the stage. */
.bd-panel__label { display: none; }

.bd-panel__card {
	padding: 22px 24px 24px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 54px -26px rgba(20, 8, 60, .42);
	font-family: "Inter", "Be Vietnam Pro", sans-serif;
}

.bd-panel__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--bd-line);
}
.bd-panel__head h3 { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.bd-panel__meta { color: var(--bd-muted); font-size: 12px; font-weight: 500; }

.bd-panel__foot {
	margin-top: 16px;
	color: var(--bd-body);
	font-size: 13.5px;
	line-height: 1.65;
}

.bd-panel .bd-app__table { table-layout: auto; }
.bd-panel .bd-app__table td { font-size: 13px; }

.bd-held em {
	display: block;
	margin-top: 4px;
	color: #b06a13;
	font-size: 11.5px;
	font-style: normal;
}


/* outline list ------------------------------------------------------- */

.bd-outline { margin-top: 6px; }
.bd-outline li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f2f1f9;
}
.bd-outline li:last-child { border-bottom: 0; }
.bd-outline__heading { flex: 1 1 auto; color: var(--bd-ink); font-size: 13.5px; font-weight: 500; }
.bd-outline__words {
	flex: 0 0 auto;
	min-width: 48px;
	color: var(--bd-muted);
	font-size: 12px;
	font-weight: 600;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.bd-chip {
	flex: 0 0 auto;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 10.5px;
	font-weight: 600;
	white-space: nowrap;
}
.bd-chip--table { background: var(--bd-primary-050); color: var(--bd-primary); }
.bd-chip--image { background: #e4f7ee; color: #18855a; }


/* per-section progress ------------------------------------------------ */

.bd-progress { margin-top: 6px; }
.bd-progress li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px solid #f2f1f9;
}
.bd-progress li:last-child { border-bottom: 0; }
.bd-progress__name { flex: 1 1 auto; color: var(--bd-ink); font-size: 13px; font-weight: 500; }
.bd-progress__track {
	flex: 0 0 130px;
	height: 6px;
	border-radius: 999px;
	background: #eeecf8;
	overflow: hidden;
}
.bd-progress__track i { display: block; height: 100%; border-radius: 999px; background: var(--bd-primary); }
.bd-progress__count {
	flex: 0 0 auto;
	min-width: 72px;
	color: var(--bd-muted);
	font-size: 12px;
	font-weight: 600;
	text-align: right;
	font-variant-numeric: tabular-nums;
}
.bd-progress .is-retry .bd-progress__track i { background: #e8a13d; }
.bd-progress .is-retry .bd-progress__count { color: #b06a13; }


/* assembled-post preview ---------------------------------------------- */

.bd-preview { margin-top: 16px; }

.bd-preview__toc {
	padding: 14px 16px;
	border-left: 3px solid var(--bd-primary);
	border-radius: 6px;
	background: #f7f6fd;
}
.bd-preview__toc strong { display: block; color: var(--bd-ink); font-size: 12.5px; }
.bd-preview__toc span { display: block; margin-top: 5px; color: var(--bd-primary); font-size: 12px; }

.bd-preview__stat { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.bd-preview__stat-label { flex: 0 0 auto; color: var(--bd-body); font-size: 12.5px; }
.bd-preview__stat-track { flex: 1 1 auto; height: 9px; border-radius: 999px; background: #eeecf8; overflow: hidden; }
.bd-preview__stat-track i { display: block; height: 100%; background: var(--bd-primary); }
.bd-preview__stat-value { flex: 0 0 auto; color: var(--bd-ink); font-size: 12.5px; font-weight: 700; }

.bd-preview__table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.bd-preview__table th,
.bd-preview__table td {
	padding: 8px 12px;
	border: 1px solid var(--bd-line);
	font-size: 12px;
	text-align: left;
}
.bd-preview__table th { background: #f4f2fd; color: var(--bd-ink); font-weight: 600; }
.bd-preview__table td { color: var(--bd-body); }

.bd-preview__faq {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	padding: 12px 16px;
	border: 1px solid var(--bd-line);
	border-radius: 9px;
	color: var(--bd-ink);
	font-size: 12.5px;
	font-weight: 500;
}
.bd-preview__faq i { color: var(--bd-primary); font-style: normal; font-weight: 700; }

.bd-preview__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 16px;
	padding: 16px 18px;
	border-radius: 11px;
	background: linear-gradient(120deg, #efecff, #f7f6fd);
}
.bd-preview__cta strong { color: var(--bd-ink); font-size: 13px; }
.bd-preview__btn {
	flex: 0 0 auto;
	padding: 8px 15px;
	border-radius: 8px;
	background: var(--bd-primary);
	color: #fff;
	font-size: 11.5px;
	font-weight: 600;
}


/* ------------------------------------------------- how-it-works responsive */

@media (max-width: 1240px) {
	.bd-how__grid { grid-template-columns: 380px minmax(0, 1fr); gap: 52px; }
}

/* Below this the sticky pairing has no room, so the stage list is dropped and
   each panel carries its own heading instead. */
@media (max-width: 1024px) {
	.bd-how { padding: 88px 0 96px; }
	.bd-how__grid { grid-template-columns: 1fr; gap: 40px; }
	.bd-how__aside { position: static; }
	.bd-steps { display: none; }

	.bd-panel__label {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 12px;
		color: var(--bd-ink);
		font-size: 15px;
		font-weight: 700;
	}
	.bd-panel__label span {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 26px; height: 26px;
		border-radius: 8px;
		background: var(--bd-primary);
		color: #fff;
		font-size: 11px;
	}
}

@media (max-width: 640px) {
	.bd-how { padding: 62px 0 72px; }
	.bd-panel + .bd-panel { margin-top: 34px; }
	.bd-panel__card { padding: 18px 16px 20px; }
	.bd-progress li { flex-wrap: wrap; gap: 8px 12px; }
	.bd-progress__name { flex: 1 1 100%; }
	.bd-progress__track { flex: 1 1 auto; }
	.bd-preview__stat { flex-wrap: wrap; }
	.bd-preview__stat-label { flex: 1 1 100%; }
	.bd-preview__cta { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------- split rows (copy + photo + card)
   Reusable shell: sections 4 onward alternate sides with .bd-split--flip. */

.bd-split-section { padding: 116px 0; background: #fff; }
.bd-split-section--tint { background: #f7f6fd; }

.bd-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 90px;
	align-items: center;
}
.bd-split--flip .bd-split__media { order: -1; }

.bd-split__copy .bd-section__title,
.bd-split__copy .bd-section__lede { text-align: left; margin-inline: 0; }
.bd-split__copy .bd-section__lede { max-width: 500px; }
.bd-split__cta { margin-top: 34px; }


/* photo + overlapping card --------------------------------------------- */

.bd-showcase { position: relative; min-height: 460px; }

.bd-showcase__figure {
	position: absolute;
	left: 0;
	top: 60px;
	width: 68%;
	margin: 0;
	/* The source frames are 16:9 with their subject weighted to the left, so
	   a 4:3 window cropped from the left keeps the subject and gives the card
	   a taller block to sit against. */
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 30px 60px -24px rgba(12, 4, 40, .6);
}
.bd-showcase__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.bd-showcase__card {
	position: absolute;
	right: 0;
	top: 32px;
	width: 52%;
	padding: 22px 22px 20px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 30px 70px -20px rgba(20, 8, 60, .38);
}
.bd-showcase__card h3 { font-size: 15px; font-weight: 700; }


/* blocked-phrase chips -------------------------------------------------- */

.bd-blocked { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.bd-blocked span {
	padding: 5px 10px;
	border: 1px solid var(--bd-line);
	border-radius: 7px;
	background: #fafaff;
	color: var(--bd-muted);
	font-family: "Inter", sans-serif;
	font-size: 11.5px;
	font-weight: 500;
	text-decoration: line-through;
	text-decoration-color: var(--bd-primary);
	text-decoration-thickness: 1.5px;
}
.bd-blocked .bd-blocked__more {
	border-color: rgba(91, 79, 232, .3);
	background: var(--bd-primary-050);
	color: var(--bd-primary);
	font-weight: 600;
	text-decoration: none;
}

.bd-showcase__legend {
	display: flex;
	gap: 22px;
	margin-top: 18px;
	padding-top: 15px;
	border-top: 1px solid var(--bd-line);
	color: var(--bd-body);
	font-family: "Inter", sans-serif;
	font-size: 11.5px;
}
.bd-showcase__legend b { color: var(--bd-primary); font-size: 14px; }


/* ----------------------------------------------------- split responsive */

@media (max-width: 1240px) {
	.bd-split { gap: 56px; }
	.bd-showcase { min-height: 410px; }
	.bd-showcase__figure { top: 50px; width: 70%; }
	.bd-showcase__card { top: 24px; width: 56%; }
}

@media (max-width: 1024px) {
	.bd-split-section { padding: 88px 0; }
	.bd-split { grid-template-columns: 1fr; gap: 48px; }
	/* Stacked, the copy always leads — flipping only makes sense side by side. */
	.bd-split--flip .bd-split__media { order: 0; }

	.bd-showcase { min-height: 0; max-width: 620px; }
	.bd-showcase__figure,
	.bd-showcase__card { position: static; width: auto; }
	/* Stays cropped from the left at every size: the source frames carry a
	   generator badge in their bottom-right corner, and a full-width window
	   would bring it back into view. */
	.bd-showcase__figure { aspect-ratio: 3 / 2; }
	.bd-showcase__card { margin-top: 18px; border: 1px solid var(--bd-line); }
}

@media (max-width: 640px) {
	.bd-split-section { padding: 62px 0; }
	.bd-split__cta { margin-top: 26px; }
	.bd-showcase__card { padding: 18px; }
	.bd-blocked span { font-size: 11px; }
}

/* ------------------------------------------- dark panels: compliance (s5) */

.bd-dark-section {
	padding: 116px 0;
	background: linear-gradient(180deg, #0e0726 0%, #160d38 55%, #120a30 100%);
}

.bd-panel-dark {
	padding: 46px 48px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 24px;
	background: rgba(255, 255, 255, .035);
}
.bd-panel-dark + .bd-panel-dark { margin-top: 26px; }

.bd-eyebrow--light {
	border-color: rgba(255, 255, 255, .2);
	background: rgba(255, 255, 255, .07);
	color: #fff;
}
.bd-panel-dark .bd-section__title {
	color: #fff;
	text-align: left;
	margin-inline: 0;
	font-size: clamp(28px, 2.9vw, 40px);
}
.bd-panel-dark .bd-section__lede {
	color: rgba(255, 255, 255, .66);
	text-align: left;
	margin-inline: 0;
	max-width: 520px;
}


/* three enforcement stages ---------------------------------------------- */

/* minmax(0, 1fr), not 1fr — a bare fr floors at the track's max-content, and
   the heading row (title plus a nowrap badge) is wide enough that the row
   would overflow and squeeze each paragraph down to one word per line. */
.bd-enforce-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: start;
	gap: 30px;
}

.bd-enforce__head { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px; }
.bd-enforce__head h3 { color: #fff; font-size: 20px; letter-spacing: -.02em; }
.bd-enforce__badge {
	flex: 0 0 auto;
	padding: 5px 11px;
	border-radius: 7px;
	background: var(--bd-primary);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.bd-enforce p {
	margin-top: 12px;
	color: rgba(255, 255, 255, .62);
	font-size: 15px;
	line-height: 1.7;
}

.bd-enforce__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 50%;
	color: rgba(255, 255, 255, .7);
}
.bd-enforce__arrow .bd-icon { width: 19px; height: 19px; }


/* split panel ----------------------------------------------------------- */

.bd-panel-dark--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 80px;
	align-items: center;
	padding: 58px 48px;
}
.bd-panel-dark__cta { margin-top: 32px; }

.bd-ticks { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 30px; }
.bd-ticks li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: rgba(255, 255, 255, .8);
	font-size: 14.5px;
	font-weight: 500;
}
.bd-ticks .bd-icon { width: 19px; height: 19px; color: var(--bd-primary-400); }


/* banned-claims card + floating badge ------------------------------------ */

.bd-panel-dark__media { position: relative; }

.bd-rules {
	padding: 24px 26px 22px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 34px 70px -24px rgba(0, 0, 0, .6);
	font-family: "Inter", "Be Vietnam Pro", sans-serif;
}
.bd-rules__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--bd-line);
}
.bd-rules__head h3 { font-size: 16px; font-weight: 700; }
.bd-rules__head span { color: var(--bd-muted); font-size: 12px; font-weight: 500; }

.bd-rules li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 13px 0;
	border-bottom: 1px solid #f3f2f9;
	color: #3a3a56;
	font-size: 13.5px;
	line-height: 1.5;
}
.bd-rules li:last-child { border-bottom: 0; }
.bd-rules li .bd-icon { width: 17px; height: 17px; margin-top: 1px; color: #d5453f; }

/* Right-aligned so it clears the compliance badge, which overlaps this
   card's bottom-left corner. */
.bd-rules__foot {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--bd-line);
	color: var(--bd-muted);
	font-size: 12px;
	text-align: right;
}

/* Overlaps the card's lower-left corner and hangs outside the panel a
   little, the way the reference's floating stat chip does. */
.bd-rules__badge {
	position: absolute;
	left: -34px;
	bottom: -30px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px 14px 16px;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 24px 50px -16px rgba(0, 0, 0, .55);
	font-family: "Inter", sans-serif;
}
.bd-rules__badge .bd-icon { width: 26px; height: 26px; color: var(--bd-primary); }
.bd-rules__badge em { display: block; color: var(--bd-muted); font-size: 11px; font-style: normal; }
.bd-rules__badge strong { display: block; color: var(--bd-ink); font-size: 17px; letter-spacing: -.01em; }


/* ------------------------------------------------ dark-panel responsive */

@media (max-width: 1240px) {
	.bd-panel-dark { padding: 38px 32px; }
	.bd-panel-dark--split { gap: 48px; padding: 44px 32px; }
	.bd-enforce-row { gap: 22px; }
	.bd-enforce__head h3 { font-size: 18px; }
}

/* The arrows only mean anything on one line, so the row becomes a stack
   and they are dropped rather than left pointing downward at nothing. */
@media (max-width: 1024px) {
	.bd-dark-section { padding: 88px 0; }
	.bd-enforce-row { grid-template-columns: 1fr; gap: 30px; }
	.bd-enforce__arrow { display: none; }
	.bd-panel-dark--split { grid-template-columns: 1fr; gap: 54px; }
	.bd-rules__badge { left: auto; right: 16px; bottom: -26px; }
}

@media (max-width: 640px) {
	.bd-dark-section { padding: 62px 0; }
	.bd-panel-dark { padding: 28px 20px; border-radius: 18px; }
	.bd-panel-dark--split { padding: 32px 20px; }
	.bd-panel-dark__cta { width: 100%; }
	.bd-ticks { gap: 10px 18px; }
	.bd-rules { padding: 20px 18px 18px; }
	.bd-rules__badge {
		position: static;
		margin-top: 16px;
		box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5);
	}
}

/* -------------------------------------------- section 6: format library */

/* topic-to-format rows inside the overlapping card */
.bd-matches { margin-top: 6px; font-family: "Inter", sans-serif; }
.bd-matches li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px solid #f3f2f9;
}
.bd-matches li:last-child { border-bottom: 0; }
.bd-matches__topic {
	min-width: 0;
	color: #3a3a56;
	font-size: 12.5px;
	line-height: 1.4;
}


/* the full library band ------------------------------------------------- */

.bd-library { margin-top: 86px; }

.bd-library__label {
	margin-bottom: 18px;
	color: var(--bd-muted);
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.bd-library__grid { display: flex; flex-wrap: wrap; gap: 10px; }

.bd-library__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid var(--bd-line);
	border-radius: 999px;
	background: #fff;
	color: var(--bd-ink);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -.01em;
}
/* The three the pipeline refuses to auto-generate. Muted rather than hidden —
   the refusal is the point being made, so it has to stay visible. */
.bd-library__chip.is-off {
	border-style: dashed;
	border-color: #d9d5ea;
	background: transparent;
	color: var(--bd-muted);
}
.bd-library__chip.is-off .bd-icon { width: 15px; height: 15px; color: #b9b4d0; }

.bd-library__note {
	max-width: 760px;
	margin-top: 26px;
	color: var(--bd-body);
	font-size: 14.5px;
	line-height: 1.72;
}

@media (max-width: 1024px) {
	.bd-library { margin-top: 60px; }
	.bd-library__chip { padding: 9px 14px; font-size: 13px; }
}

@media (max-width: 640px) {
	.bd-library { margin-top: 44px; }
	.bd-library__grid { gap: 8px; }
	.bd-library__chip { padding: 8px 12px; font-size: 12px; }
	.bd-library__note { font-size: 13.5px; }
}

/* ---------------------------------------------- section 7: industry orbit */

.bd-controls__label {
	margin: 34px 0 14px;
	color: var(--bd-muted);
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.bd-controls {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	max-width: 520px;
}
.bd-controls li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--bd-body);
	font-size: 14.5px;
	font-weight: 500;
}
.bd-controls .bd-icon { width: 18px; height: 18px; color: var(--bd-primary); }


/* the orbit ------------------------------------------------------------- */

.bd-orbit {
	--bd-bubble: 58px;
	position: relative;
	width: 100%;
	max-width: 640px;
	margin-inline: auto;
	/* Square, so the trigonometry that places the nodes produces a true
	   circle rather than an ellipse. */
	aspect-ratio: 1 / 1;
}

.bd-orbit__ring {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid var(--bd-line);
	border-radius: 50%;
}
.bd-orbit__ring--in  { width: 50%; height: 50%; }
.bd-orbit__ring--mid { width: 82%; height: 82%; }
.bd-orbit__ring--out { width: 100%; height: 100%; border-style: dashed; border-color: #eeecf7; }

.bd-orbit__core {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 124px; height: 124px;
	border-radius: 50%;
	background: linear-gradient(150deg, var(--bd-primary-400), var(--bd-primary));
	color: #fff;
	box-shadow: 0 22px 50px -14px rgba(91, 79, 232, .75);
}
.bd-orbit__core svg { width: 56px; height: 56px; }

/* Offset by half a bubble rather than half the node: the node is a column of
   bubble plus label, so centring the whole thing leaves the ring passing
   through the gap between them instead of through the bubble. */
.bd-orbit__node {
	position: absolute;
	transform: translate(-50%, calc(var(--bd-bubble) / -2));
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 116px;
	text-align: center;
}

.bd-orbit__bubble {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--bd-bubble); height: var(--bd-bubble);
	border-radius: 50%;
	background: #fff;
	color: var(--bd-primary);
	box-shadow: 0 12px 28px -10px rgba(20, 8, 60, .3);
}
.bd-orbit__bubble .bd-icon { width: 24px; height: 24px; }

.bd-orbit__label {
	color: var(--bd-ink);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.3;
}

/* Drawn differently on purpose: these are slots, not shipped profiles. */
.bd-orbit__node.is-placeholder .bd-orbit__bubble {
	border: 1.5px dashed #cfcbe4;
	background: transparent;
	color: #b0abcc;
	box-shadow: none;
}
.bd-orbit__node.is-placeholder .bd-orbit__label {
	color: var(--bd-muted);
	font-weight: 500;
}


/* ------------------------------------------------------ orbit responsive */

@media (max-width: 1240px) {
	.bd-orbit__core { width: 100px; height: 100px; }
	.bd-orbit__core svg { width: 46px; height: 46px; }
	.bd-orbit { --bd-bubble: 52px; }
	.bd-orbit__node { width: 100px; }
	.bd-orbit__label { font-size: 12px; }
}

@media (max-width: 1024px) {
	.bd-controls { max-width: none; }
	.bd-orbit { max-width: 520px; }
}

@media (max-width: 640px) {
	.bd-controls { grid-template-columns: minmax(0, 1fr); gap: 10px; }
	.bd-orbit { max-width: 340px; --bd-bubble: 40px; }
	.bd-orbit__core { width: 68px; height: 68px; }
	.bd-orbit__core svg { width: 32px; height: 32px; }
	.bd-orbit__bubble .bd-icon { width: 18px; height: 18px; }
	.bd-orbit__node { width: 76px; gap: 5px; }
	.bd-orbit__label { font-size: 10px; }
}

/* ------------------------------------------------------ section 8: pricing */

.bd-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: -30px 0 52px;
}

.bd-toggle__label {
	color: var(--bd-muted);
	font-size: 15.5px;
	font-weight: 600;
	transition: color .2s var(--bd-ease);
}
.bd-toggle__label.is-active { color: var(--bd-primary); }

.bd-toggle__switch {
	position: relative;
	width: 50px; height: 28px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #d9d5ee;
	cursor: pointer;
	transition: background-color .22s var(--bd-ease);
}
.bd-toggle__switch[aria-checked="true"] { background: var(--bd-primary); }
.bd-toggle__knob {
	position: absolute;
	top: 4px; left: 4px;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: #fff;
	transition: transform .22s var(--bd-ease);
}
.bd-toggle__switch[aria-checked="true"] .bd-toggle__knob { transform: translateX(22px); }

.bd-toggle__save {
	padding: 5px 11px;
	border-radius: 999px;
	background: #e4f7ee;
	color: #18855a;
	font-family: "Inter", sans-serif;
	font-size: 11.5px;
	font-weight: 700;
}


/* plan cards ------------------------------------------------------------- */

.bd-plans {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin-inline: auto;
	align-items: start;
}

.bd-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 32px 32px;
	border: 1px solid var(--bd-line);
	border-radius: 20px;
	background: #fff;
}
/* Lifted rather than just recoloured, so the recommended tier still reads as
   the recommended one in a greyscale print or for a colour-blind visitor. */
.bd-plan.is-featured {
	border-color: transparent;
	background: linear-gradient(165deg, var(--bd-primary-400), var(--bd-primary));
	box-shadow: 0 30px 60px -20px rgba(91, 79, 232, .6);
	transform: translateY(-14px);
	padding-bottom: 46px;
}

.bd-plan__flag {
	position: absolute;
	top: 20px; right: 24px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .2);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.bd-plan__name { font-size: 21px; font-weight: 700; }
.bd-plan__blurb {
	margin-top: 10px;
	min-height: 48px;
	color: var(--bd-body);
	font-size: 14.5px;
	line-height: 1.6;
}

.bd-plan__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--bd-line);
	color: var(--bd-ink);
}
.bd-plan__currency { font-size: 22px; font-weight: 700; align-self: flex-start; margin-top: 8px; }
.bd-plan__amount { font-size: 52px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.bd-plan__period { margin-left: 4px; color: var(--bd-muted); font-size: 14px; font-weight: 500; }

/* The quota is the thing being bought, so it sits directly under the price
   rather than as one bullet among five. */
.bd-plan__quota {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 18px;
	padding: 10px 14px;
	border-radius: 9px;
	background: var(--bd-primary-050);
	color: var(--bd-primary);
	font-size: 14.5px;
	font-weight: 700;
}
.bd-plan__quota .bd-icon { width: 18px; height: 18px; }
.bd-plan.is-featured .bd-plan__quota {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.bd-plan__features { margin-top: 22px; display: grid; gap: 13px; }
.bd-plan__features li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: var(--bd-body);
	font-size: 14.5px;
	line-height: 1.5;
}
.bd-plan__features .bd-icon { width: 19px; height: 19px; margin-top: 1px; color: var(--bd-primary); }

.bd-plan__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	margin-top: 30px;
	border: 1px solid var(--bd-line);
	border-radius: 11px;
	background: #fff;
	color: var(--bd-primary);
	font-size: 15px;
	font-weight: 600;
	transition: background-color .18s var(--bd-ease), border-color .18s var(--bd-ease);
}
.bd-plan__cta:hover { border-color: var(--bd-primary); background: var(--bd-primary-050); }

/* featured card: everything inverts */
.bd-plan.is-featured .bd-plan__name,
.bd-plan.is-featured .bd-plan__price,
.bd-plan.is-featured .bd-plan__amount { color: #fff; }
.bd-plan.is-featured .bd-plan__blurb,
.bd-plan.is-featured .bd-plan__features li { color: rgba(255, 255, 255, .85); }
.bd-plan.is-featured .bd-plan__period { color: rgba(255, 255, 255, .7); }
.bd-plan.is-featured .bd-plan__price { border-top-color: rgba(255, 255, 255, .22); }
.bd-plan.is-featured .bd-plan__features .bd-icon { color: #fff; }
.bd-plan.is-featured .bd-plan__cta {
	border-color: transparent;
	background: #fff;
	color: var(--bd-primary);
}
.bd-plan.is-featured .bd-plan__cta:hover { background: #f1eeff; }

.bd-plans__note {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	max-width: 720px;
	margin: 44px auto 0;
	color: var(--bd-body);
	font-size: 14px;
	line-height: 1.65;
	text-align: left;
}
.bd-plans__note .bd-icon { width: 19px; height: 19px; margin-top: 2px; color: var(--bd-primary); }


/* ---------------------------------------------------- pricing responsive */

@media (max-width: 1024px) {
	.bd-plans { grid-template-columns: minmax(0, 1fr); gap: 18px; max-width: 560px; }
	/* Stacked, the lift just opens a gap above the card, so drop it. */
	.bd-plan.is-featured { transform: none; padding-bottom: 32px; }
	.bd-plan__blurb { min-height: 0; }
}

@media (max-width: 640px) {
	.bd-toggle { flex-wrap: wrap; margin-bottom: 40px; }
	.bd-plan { padding: 28px 22px 26px; }
	.bd-plan__amount { font-size: 44px; }
	.bd-plans__note { font-size: 13.5px; }
}

/* --------------------------------------------- section 9: proof / quotes */

.bd-proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

.bd-proof__card {
	padding: 28px 26px 26px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 40px -26px rgba(20, 8, 60, .35);
}
.bd-proof__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 12px;
	background: var(--bd-primary-050);
	color: var(--bd-primary);
}
.bd-proof__icon .bd-icon { width: 21px; height: 21px; }
.bd-proof__card h3 { margin-top: 18px; font-size: 16.5px; font-weight: 700; }
.bd-proof__card p { margin-top: 10px; color: var(--bd-body); font-size: 14.5px; line-height: 1.65; }


/* Testimonial cards — rendered only once real quotes exist. Alternating
   card backgrounds give the staggered checkerboard of the reference without
   needing per-item classes. */
.bd-quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }

.bd-quote {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 26px;
	margin: 0;
	padding: 34px 32px 30px;
	border-radius: 18px;
}
.bd-quote:nth-child(odd) {
	background: #fff;
	box-shadow: 0 20px 44px -28px rgba(20, 8, 60, .4);
}

.bd-quote blockquote {
	margin: 0;
	color: var(--bd-body);
	font-size: 16px;
	line-height: 1.72;
}

.bd-quote figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.bd-quote__who strong { display: block; color: var(--bd-ink); font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.bd-quote__who > span { display: block; margin-top: 3px; color: var(--bd-body); font-size: 14.5px; }

.bd-quote__avatar {
	flex: 0 0 auto;
	width: 54px; height: 54px;
	border-radius: 50%;
	object-fit: cover;
}
.bd-quote__avatar--initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bd-primary);
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .01em;
}


/* ------------------------------------------------------- section 10: FAQ */

/* Two independent columns, not one grid: in a grid, opening an item on the
   left stretches its row and leaves a gap beside the closed item opposite. */
.bd-faqs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.bd-faqs__col { display: grid; gap: 20px; align-content: start; }

.bd-faq-item {
	border-radius: 14px;
	background: #f4f2fb;
	transition: background-color .2s var(--bd-ease);
}
.bd-faq-item[open] { background: #efecf9; }

.bd-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 24px 26px;
	cursor: pointer;
	list-style: none;
}
/* The native disclosure triangle is replaced by the chevron below. */
.bd-faq-item summary::-webkit-details-marker { display: none; }
.bd-faq-item summary::marker { content: ""; }
.bd-faq-item summary:focus-visible { outline: 2px solid var(--bd-primary); outline-offset: 3px; border-radius: 14px; }

.bd-faq-item__q {
	color: var(--bd-ink);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.45;
}
.bd-faq-item__q i { font-style: normal; color: var(--bd-ink); }

.bd-faq-item__mark {
	flex: 0 0 auto;
	display: inline-flex;
	color: var(--bd-muted);
	transition: transform .22s var(--bd-ease), color .2s var(--bd-ease);
}
.bd-faq-item__mark .bd-icon { width: 20px; height: 20px; }
.bd-faq-item[open] .bd-faq-item__mark { transform: rotate(180deg); color: var(--bd-primary); }

.bd-faq-item > p {
	padding: 0 26px 24px;
	color: var(--bd-body);
	font-size: 15px;
	line-height: 1.75;
}


/* --------------------------------------------- proof / FAQ responsive */

@media (max-width: 1240px) {
	.bd-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bd-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
	.bd-faqs { grid-template-columns: minmax(0, 1fr); gap: 16px; }
	.bd-faqs__col { gap: 16px; }
	/* One column, so the alternating checkerboard would read as a mistake. */
	.bd-quote { background: #fff; box-shadow: 0 20px 44px -28px rgba(20, 8, 60, .4); }
}

@media (max-width: 640px) {
	.bd-proof,
	.bd-quotes { grid-template-columns: minmax(0, 1fr); gap: 16px; }
	.bd-proof__card { padding: 22px 20px; }
	.bd-quote { padding: 26px 22px 24px; gap: 20px; }
	.bd-faq-item summary { gap: 16px; padding: 20px 20px; }
	.bd-faq-item__q { font-size: 15.5px; }
	.bd-faq-item > p { padding: 0 20px 20px; font-size: 14.5px; }
}

/* ------------------------------------------------------- final CTA band */

.bd-cta {
	position: relative;
	padding: 118px 0 126px;
	overflow: hidden;
	text-align: center;
	background-color: #0c0620;
	background-image:
		radial-gradient(110% 130% at 50% 118%,
			rgba(170, 142, 255, .78) 0%,
			rgba(120,  96, 248, .48) 30%,
			rgba( 12,   6,  32,   0) 72%),
		linear-gradient(180deg, #100929 0%, #1b1049 55%, #241461 100%);
}

.bd-cta__title {
	max-width: 18ch;
	margin: 26px auto 0;
	color: #fff;
	font-size: clamp(30px, 3.6vw, 50px);
	line-height: 1.16;
	letter-spacing: -.035em;
}

.bd-cta__lede {
	max-width: 560px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, .72);
	font-size: 17px;
	line-height: 1.7;
}

.bd-cta .bd-hero__form { margin-top: 40px; }


/* ------------------------------------------------------------- footer */

.bd-footer {
	padding: 82px 0 34px;
	background: #0a0518;
	color: rgba(255, 255, 255, .62);
}

.bd-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 60px;
	padding-bottom: 62px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

/* Sits just under the header's resting height. Leaving this at its old value
   would make the footer mark the largest logo on the page. */
.bd-footer__brand .bd-logo img { height: 58px; }
.bd-footer__tagline {
	max-width: 330px;
	margin-top: 20px;
	font-size: 14.5px;
	line-height: 1.7;
}

.bd-footer__badges { display: grid; gap: 10px; margin-top: 24px; }
.bd-footer__badges li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: rgba(255, 255, 255, .78);
	font-size: 13.5px;
	font-weight: 500;
}
.bd-footer__badges .bd-icon { width: 17px; height: 17px; color: var(--bd-primary-400); }

.bd-footer__col h3 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .01em;
}
.bd-footer__col ul { display: grid; gap: 13px; margin-top: 20px; }
.bd-footer__col a {
	position: relative;
	color: rgba(255, 255, 255, .6);
	font-size: 14.5px;
	transition: color .18s var(--bd-ease);
}
.bd-footer__col a:hover { color: #fff; }
.bd-footer__col a:focus-visible { outline: 2px solid var(--bd-primary-400); outline-offset: 3px; border-radius: 3px; }

.bd-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 28px;
	font-size: 13.5px;
}
.bd-footer__note { color: rgba(255, 255, 255, .45); }


/* ------------------------------------------------ footer responsive */

@media (max-width: 1024px) {
	.bd-cta { padding: 88px 0 94px; }
	.bd-footer { padding-top: 64px; }
	.bd-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
	.bd-footer__brand { grid-column: 1 / -1; }
	.bd-footer__tagline { max-width: 460px; }
}

@media (max-width: 640px) {
	.bd-cta { padding: 62px 0 68px; }
	.bd-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; padding-bottom: 40px; }
	.bd-footer__bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* ============================================================== motion ===
   Reveal-on-scroll. The hidden state only exists under .js-anim, which JS
   adds — and only when the visitor has not asked for reduced motion. Without
   JS, or with reduced motion, every element renders in its final state and
   nothing is ever stuck invisible. */

.js-anim [data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .65s var(--bd-ease), transform .65s var(--bd-ease);
	will-change: opacity, transform;
}
/* For absolutely-positioned targets (orbit nodes) whose own transform is
   load-bearing — fade only, never translate. */
.js-anim [data-reveal="fade"] { transform: none; }

.js-anim [data-reveal].is-in {
	opacity: 1;
	transform: none;
	will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
	.js-anim [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 640px) {
	.bd-logo img,
	.bd-header.is-stuck .bd-logo img { height: 46px; }
	.bd-footer__brand .bd-logo img { height: 52px; }
}
