/* Major League Extractions — layout & theme */

:root {
	--ml-bg: #07070b;
	--ml-bg-elevated: #0f0f16;
	--ml-text: #eceaf2;
	--ml-muted: #9d96ad;
	--ml-magenta: #ff00ff;
	--ml-indigo: #333399;
	--ml-orange: #ff9900;
	--ml-line: rgba(255, 255, 255, 0.08);
	--ml-glow: rgba(255, 0, 255, 0.12);
	--ml-radius: 14px;
	--ml-font: "DM Sans", system-ui, sans-serif;
	--ml-display: "Syne", var(--ml-font);
	--ml-container-max: 1700px;
	--ml-page-gutter: 120px;
	--ml-page-gutter-fluid: clamp(1.25rem, 5vw, var(--ml-page-gutter));
	--ml-narrow-content: 820px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--ml-font);
	font-size: 1.05rem;
	line-height: 1.6;
	font-optical-sizing: none;
	letter-spacing: -0.011em;
	color: var(--ml-text);
	background: var(--ml-bg);
	position: relative;
	overflow-x: clip;
}

img,
video {
	max-width: 100%;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
	opacity: 0.5;
}

.ml-smoke-wrap {
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.ml-smoke {
	position: absolute;
	width: 140%;
	height: 140%;
	left: -20%;
	top: -20%;
	filter: blur(72px);
	opacity: 0.55;
	mix-blend-mode: screen;
	animation: ml-drift 28s ease-in-out infinite;
}

.ml-smoke--1 {
	background: radial-gradient(ellipse 50% 40% at 25% 55%, rgba(180, 90, 255, 0.22), transparent 55%),
		radial-gradient(ellipse 45% 35% at 60% 30%, rgba(255, 0, 200, 0.12), transparent 50%);
	animation-duration: 32s;
}

.ml-smoke--2 {
	background: radial-gradient(ellipse 55% 45% at 75% 65%, rgba(51, 51, 153, 0.35), transparent 55%),
		radial-gradient(ellipse 40% 40% at 40% 75%, rgba(255, 153, 0, 0.1), transparent 50%);
	animation-duration: 26s;
	animation-delay: -8s;
}

.ml-smoke--3 {
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(120, 200, 255, 0.06), transparent 60%);
	animation-duration: 38s;
	animation-delay: -14s;
	opacity: 0.35;
}

@keyframes ml-drift {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	33% {
		transform: translate(4%, -3%) rotate(2deg) scale(1.04);
	}
	66% {
		transform: translate(-3%, 4%) rotate(-1deg) scale(1.02);
	}
}

.ml-vignette {
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 0;
	box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
}

.ml-header,
.ml-footer {
	position: relative;
	z-index: 1;
}

.ml-main {
	position: relative;
	z-index: 1;
	overflow-x: clip;
}

.ml-container {
	width: 100%;
	max-width: var(--ml-container-max);
	margin-inline: auto;
	padding-inline: var(--ml-page-gutter-fluid);
	box-sizing: border-box;
}

.ml-container.ml-narrow {
	display: grid;
	justify-items: stretch;
}

.ml-container.ml-narrow > * {
	max-width: min(var(--ml-narrow-content), 100%);
	width: 100%;
	justify-self: center;
	box-sizing: border-box;
}

.ml-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	background: linear-gradient(180deg, rgba(7, 7, 11, 0.92), rgba(7, 7, 11, 0.75));
	border-bottom: 1px solid var(--ml-line);
}

.ml-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.85rem 0;
	min-width: 0;
}

/* Desktop+: extra breathing room; was capped at 1920px so wide monitors saw no change. */
@media (min-width: 901px) {
	.ml-header .ml-container {
		padding-inline: max(var(--ml-page-gutter-fluid), clamp(1.75rem, 4vw, 3.5rem));
	}
}

.ml-logo img {
	display: block;
	height: auto;
	max-height: 52px;
	width: auto;
}

.ml-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	background: transparent;
	border: 1px solid var(--ml-line);
	border-radius: 8px;
	cursor: pointer;
}

.ml-nav-toggle__bar {
	width: 22px;
	height: 2px;
	background: var(--ml-text);
	border-radius: 1px;
}

.ml-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	align-items: center;
	justify-content: flex-end;
}

.ml-nav .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	align-items: center;
	justify-content: flex-end;
}

.ml-nav__link,
.ml-nav .menu-item > a {
	display: inline-block;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ml-muted);
	text-decoration: none;
	padding: 0.35rem 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}

.ml-nav__link:hover,
.ml-nav__link:focus-visible,
.ml-nav .menu-item > a:hover,
.ml-nav .menu-item > a:focus-visible {
	color: var(--ml-text);
	border-bottom-color: var(--ml-magenta);
}

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

.ml-hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
	/* Smoke layers use >100% size + negative inset; clip so they don’t widen the document. */
	overflow: hidden;
}

.ml-hero-smoke {
	pointer-events: none;
	position: absolute;
	inset: -12% -8% -8% -8%;
	z-index: 0;
	overflow: hidden;
}

.ml-hero-smoke__layer {
	position: absolute;
	width: 120%;
	height: 130%;
	left: -10%;
	top: -15%;
	filter: blur(56px);
	opacity: 0.65;
	mix-blend-mode: screen;
	animation: ml-hero-smoke-drift 22s ease-in-out infinite;
}

.ml-hero-smoke__layer--1 {
	background: radial-gradient(ellipse 55% 45% at 20% 55%, rgba(255, 0, 255, 0.35), transparent 52%),
		radial-gradient(ellipse 40% 35% at 55% 35%, rgba(180, 100, 255, 0.2), transparent 48%);
	animation-duration: 26s;
}

.ml-hero-smoke__layer--2 {
	background: radial-gradient(ellipse 50% 42% at 78% 60%, rgba(51, 51, 153, 0.45), transparent 52%);
	animation-duration: 20s;
	animation-delay: -5s;
	opacity: 0.5;
}

.ml-hero-smoke__layer--3 {
	background: radial-gradient(ellipse 45% 40% at 45% 75%, rgba(255, 153, 0, 0.12), transparent 50%);
	animation-duration: 30s;
	animation-delay: -10s;
}

.ml-hero-smoke__layer--4 {
	background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(255, 255, 255, 0.06), transparent 55%);
	animation-duration: 34s;
	animation-delay: -3s;
	opacity: 0.4;
}

@keyframes ml-hero-smoke-drift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	40% {
		transform: translate(6%, -4%) scale(1.06);
	}
	70% {
		transform: translate(-4%, 5%) scale(1.02);
	}
}

.ml-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

.ml-hero__brandmark {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ml-hero__logo-mark {
	display: block;
	max-width: min(280px, 32vw);
	height: auto;
	opacity: 0.92;
	filter: drop-shadow(0 12px 40px rgba(255, 0, 255, 0.15));
}

@media (max-width: 900px) {
	.ml-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ml-hero__brandmark {
		order: -1;
	}

	.ml-hero__logo-mark {
		max-width: 220px;
		margin-inline: auto;
	}

	.ml-hero__actions {
		justify-content: center;
	}

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

	.ml-header .ml-header__inner {
		padding-inline: 15px;
	}

	.ml-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(10, 10, 15, 0.98);
		border-bottom: 1px solid var(--ml-line);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.ml-nav.is-open {
		max-height: 420px;
	}

	.ml-nav__list,
	.ml-nav .menu {
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 1.25rem 1.5rem;
		gap: 0;
	}

	.ml-nav__link,
	.ml-nav .menu-item > a {
		padding: 0.65rem 0;
		border-bottom: 1px solid var(--ml-line);
	}
}

.ml-eyebrow {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ml-orange);
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.ml-hero-title {
	font-family: var(--ml-display);
	font-weight: 800;
	font-size: clamp(2.4rem, 6vw, 3.8rem);
	line-height: 1.05;
	letter-spacing: -0.035em;
	margin: 0 0 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.ml-hero-title__m {
	color: var(--ml-magenta);
	text-shadow: 0 0 40px var(--ml-glow);
}

.ml-hero-title__l {
	color: #5c5cb8;
	text-shadow: 0 0 28px rgba(51, 51, 153, 0.35);
}

.ml-hero-title__e {
	color: var(--ml-orange);
}

@media (max-width: 900px) {
	.ml-hero-title {
		align-items: center;
	}
}

.ml-hero__tagline {
	color: var(--ml-muted);
	margin: 0 0 1.75rem;
	max-width: 36rem;
}

@media (max-width: 900px) {
	.ml-hero__tagline {
		margin-inline: auto;
	}
}

@media (max-width: 560px) {
	.ml-hero {
		padding: clamp(1.5rem, 5vw, 2.25rem) 0 clamp(2rem, 7vw, 3rem);
	}

	.ml-hero__copy {
		min-width: 0;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.ml-hero__inner {
		gap: 1.15rem;
	}

	.ml-hero-smoke__layer {
		filter: blur(40px);
		opacity: 0.52;
	}

	.ml-hero__logo-mark {
		max-width: min(190px, 72vw);
	}

	.ml-hero .ml-eyebrow {
		font-size: 0.7rem;
		letter-spacing: 0.11em;
		line-height: 1.4;
		margin-bottom: 0.6rem;
	}

	.ml-hero-title {
		font-size: clamp(1rem, 6.25vw, 1.65rem);
		letter-spacing: -0.038em;
		line-height: 0.98;
		gap: 0.04rem;
		margin-bottom: 0.85rem;
		max-width: 100%;
	}

	.ml-hero__tagline {
		font-size: 0.94rem;
		line-height: 1.55;
		margin-bottom: 1.25rem;
		max-width: none;
	}

	.ml-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
		width: 100%;
	}

	.ml-hero__actions .ml-btn {
		width: 100%;
		min-height: 3rem;
		font-size: 0.88rem;
		padding: 0.7rem 1rem;
	}
}

.ml-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	overflow: visible;
	align-items: center;
}

.ml-hero__actions--center {
	justify-content: center;
}

.ml-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.75rem 1.5rem;
	min-height: 2.75rem;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	flex-shrink: 0;
	max-width: 100%;
	box-sizing: border-box;
	isolation: isolate;
	overflow: visible;
	transition: transform 0.15s, box-shadow 0.2s, filter 0.2s, border-color 0.2s;
}

.ml-btn--primary {
	background: linear-gradient(135deg, #ff2ef7 0%, #d946ef 38%, #a855f7 72%, #7c3aed 100%);
	background-size: 160% 100%;
	background-position: 0% 50%;
	color: #fff;
	box-shadow: 0 8px 28px rgba(255, 0, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ml-btn--primary:hover,
.ml-btn--primary:focus-visible {
	transform: translateY(-2px);
	background-position: 100% 50%;
	box-shadow: 0 12px 36px rgba(255, 0, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	color: #fff;
}

.ml-btn--ghost {
	background: rgba(255, 255, 255, 0.04);
	color: var(--ml-text);
	border-color: var(--ml-line);
}

.ml-btn--ghost:hover,
.ml-btn--ghost:focus-visible {
	border-color: rgba(255, 153, 0, 0.45);
	color: #fff;
}

/* Static pink–purple gradient (no marquee animation).
   Gradient on ::before extends under the 2px border so curved edges don’t show the page background. */
.ml-btn--pink-purple {
	position: relative;
	z-index: 0;
	background: transparent;
	color: #fff;
	border-color: transparent;
	box-shadow: 0 8px 26px rgba(192, 38, 211, 0.32);
}

.ml-btn--pink-purple::before {
	content: "";
	position: absolute;
	z-index: -1;
	/* Pull under .ml-btn’s 2px border (absolute inset is padding-box; border was leaking background). */
	inset: -2px;
	border-radius: 999px;
	background: linear-gradient(135deg, #f472b6 0%, #e879f9 32%, #c026d3 58%, #9333ea 82%, #7c3aed 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ml-btn--pink-purple:hover,
.ml-btn--pink-purple:focus-visible {
	transform: translateY(-2px);
	filter: brightness(1.06);
	color: #fff;
	box-shadow: 0 12px 34px rgba(124, 58, 237, 0.38);
	outline: none;
}

.ml-btn--pink-purple:hover::before,
.ml-btn--pink-purple:focus-visible::before {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ml-split__media--vape {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000000;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	min-height: 280px;
	overflow: hidden;
	filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(255, 0, 255, 0.15));
}

.ml-modern-design {
	padding-top: clamp(3.5rem, 10vw, 7rem);
	padding-bottom: clamp(1.15rem, 3.5vw, 2rem);
}

.ml-modern-design-section {
	padding-top: clamp(3.5rem, 10vw, 7rem);
	padding-bottom: clamp(1.15rem, 3.5vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 4vw, 2.75rem);
}

@media (min-width: 861px) {
	.ml-modern-design-section {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 4vw, 3.5rem);
		align-items: stretch;
	}

	.ml-modern-design-section__cycle {
		order: 1;
		align-self: stretch;
	}

	.ml-modern-design-section__intro {
		order: 2;
		min-width: 0;
	}

	.ml-modern-design-section .ml-modern-flavor-cycle {
		flex: 1 1 auto;
		align-self: stretch;
		max-width: none;
		aspect-ratio: unset;
		min-height: 0;
	}
}

.ml-modern-design-section__cycle {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	min-height: 0;
	min-width: 0;
	background: transparent;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	overflow: hidden;
	filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 24px rgba(255, 0, 255, 0.12));
}

.ml-modern-flavor-cycle {
	position: relative;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
}

.ml-modern-flavor-cycle__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	pointer-events: none;
}

.ml-modern-flavor-cycle__img.is-active {
	opacity: 1;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.ml-modern-flavor-cycle__img {
		transition: none;
	}
}

.ml-cta-row {
	text-align: center;
}

.ml-section__cta--solo {
	margin-top: 0;
	margin-bottom: 0;
}

.ml-commitment-excellence {
	padding-top: clamp(2.75rem, 6.5vw, 5rem);
}

.ml-extensive-range {
	padding-top: clamp(2.75rem, 6.5vw, 5rem);
}

.ml-ultimate-vaping {
	padding-top: clamp(3rem, 7.5vw, 5.5rem);
}

.ml-vape-flavours-page .ml-footer {
	border-top: none;
}

.ml-flavour-grid__open-modal {
	display: block;
	width: calc(100% - 1.5rem);
	margin: 0.4rem 0.75rem 0.85rem;
	padding: 0.4rem 0.55rem;
	box-sizing: border-box;
	font-family: var(--ml-font);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--ml-text);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--ml-line);
	border-radius: calc(var(--ml-radius) - 2px);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
	flex-shrink: 0;
}

.ml-flavour-grid__open-modal:hover,
.ml-flavour-grid__open-modal:focus-visible {
	border-color: rgba(255, 153, 0, 0.45);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	outline: none;
}

/* Pin to bottom of card front (extra space when face is taller than content, e.g. mobile grid). */
.ml-flavour-grid__face--front .ml-flavour-grid__open-modal {
	margin-top: auto;
}

.ml-vape-stage {
	position: relative;
	width: 100%;
	max-width: 420px;
	margin-inline: auto;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: calc(var(--ml-radius) - 2px);
}

.ml-vape-stage__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

@media (prefers-reduced-motion: reduce) {
	.ml-smoke,
	.ml-hero-smoke__layer,
	.ml-modal__smoke-layer {
		animation: none !important;
	}
}

.ml-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.ml-section.ml-section--after-flavour-grid {
	padding-top: clamp(1.25rem, 2.75vw, 2rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.ml-section--flush-y {
	padding-block: 0;
}

.ml-section--alt {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
	border-block: 1px solid var(--ml-line);
}

.ml-section--cta {
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 0, 255, 0.08), transparent),
		radial-gradient(ellipse 60% 50% at 80% 100%, rgba(51, 51, 153, 0.2), transparent);
	border-top: 1px solid var(--ml-line);
}

.ml-section--cta.ml-section--about-cta {
	padding-block: 0;
	border-bottom: 1px solid var(--ml-line);
	background:
		linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02)),
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 0, 255, 0.08), transparent),
		radial-gradient(ellipse 60% 50% at 80% 100%, rgba(51, 51, 153, 0.2), transparent);
}

.ml-section__title {
	font-family: var(--ml-display);
	font-weight: 800;
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin: 0 0 1.25rem;
}

.ml-section__lead {
	color: var(--ml-muted);
	font-size: 1.1rem;
	max-width: 52rem;
	margin: 0 0 2rem;
}

.ml-flavours .ml-section__lead {
	max-width: none;
	width: 100%;
}

.ml-section__cta {
	margin-top: 2.5rem;
	text-align: center;
}

.ml-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.ml-split--reverse .ml-split__text {
	order: 2;
}

.ml-split--reverse .ml-split__media {
	order: 1;
}

@media (max-width: 860px) {
	.ml-split,
	.ml-split--reverse .ml-split__text,
	.ml-split--reverse .ml-split__media {
		grid-template-columns: 1fr;
		order: unset;
	}

	/* Stacked: text first in DOM, then cycle — explicit ratio for absolute-positioned imgs. */
	.ml-modern-design-section .ml-modern-flavor-cycle {
		flex: 0 0 auto;
		align-self: center;
		width: 100%;
		max-width: min(100%, 420px);
		aspect-ratio: 1;
		min-height: min(72vw, 360px);
	}

	.ml-modern-design-section__cycle {
		min-height: min(72vw, 400px);
	}
}

.ml-split__media > img {
	width: 100%;
	height: auto;
	border-radius: var(--ml-radius);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	border: 1px solid var(--ml-line);
}

/* No border: 1px inset made the photo read narrower than a full-width CTA below / beside it. */
.ml-section--difference .ml-split__media > img {
	border: none;
}

.ml-section--difference .ml-section__title {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ml-section--difference__split .ml-split__text > p:first-child {
	margin-top: 0;
}

.ml-section--difference__media {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.ml-flavour-shop-btn.ml-difference-shop-btn {
	width: 100%;
	max-width: none;
	margin-top: clamp(1rem, 2.5vw, 1.5rem);
	margin-inline: 0;
	padding: 0.55rem 1.35rem;
	font-size: 0.72rem;
	line-height: 1.25;
	box-sizing: border-box;
}

.ml-section--difference__split .ml-split__text .ml-flavour-shop-btn.ml-difference-shop-btn {
	margin-top: clamp(1.35rem, 3.5vw, 2rem);
	margin-inline: 0;
}

.ml-section--best-weed-pen {
	padding-top: clamp(2.5rem, 6vw, 4rem);
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
	border-block: 1px solid var(--ml-line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.ml-section--best-weed-pen .ml-section__title {
	margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.ml-best-weed-pen__figure {
	margin: clamp(1.5rem, 3.5vw, 2.25rem) 0 0;
}

.ml-best-weed-pen__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.ml-best-weed-pen__copy {
	width: 100%;
	max-width: none;
	margin: 0;
}

.ml-best-weed-pen__copy p {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-best-weed-pen__copy p:last-child {
	margin-bottom: 0;
}

.ml-section--stand-out {
	padding-top: clamp(2.5rem, 6vw, 4rem);
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
	border-block: 1px solid var(--ml-line);
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.ml-section--stand-out .ml-section__title {
	margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.ml-stand-out__copy {
	width: 100%;
	max-width: none;
	margin: 0;
}

.ml-stand-out__copy > p {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-stand-out__copy > p:last-child {
	margin-bottom: 0;
}

.ml-stand-out__cta {
	margin-top: clamp(1.35rem, 3.5vw, 2rem);
	margin-bottom: 0 !important;
	text-align: center;
}

.ml-section--next-level {
	padding-top: clamp(2.5rem, 6vw, 4rem);
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
	border-block: 1px solid var(--ml-line);
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.ml-section--next-level .ml-section__title {
	margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.ml-next-level__copy {
	width: 100%;
	max-width: none;
	margin: 0;
}

.ml-next-level__copy > p {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-next-level__copy > p:last-child {
	margin-bottom: 0;
}

.ml-flavour-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
	gap: clamp(1rem, 2.5vw, 1.35rem);
	margin-top: 0.5rem;
}

@media (min-width: 480px) {
	.ml-flavour-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}
}

.ml-flavour-grid__card {
	perspective: 1100px;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
}

.ml-flavour-grid__inner {
	position: relative;
	width: 100%;
	min-height: clamp(300px, 36vw, 360px);
	transform-style: preserve-3d;
	transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
	border-radius: var(--ml-radius);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
	.ml-flavour-grid__card:hover .ml-flavour-grid__inner,
	.ml-flavour-grid__card:focus-within .ml-flavour-grid__inner {
		transform: rotateY(180deg);
		box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 0, 255, 0.2);
	}
}

.ml-flavour-grid__card:focus-visible .ml-flavour-grid__inner {
	box-shadow: 0 0 0 2px var(--ml-bg), 0 0 0 4px var(--ml-magenta), 0 12px 36px rgba(0, 0, 0, 0.32);
}

.ml-flavour-grid__face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	background: var(--ml-bg-elevated);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ml-flavour-grid__face--front {
	z-index: 2;
	transform: rotateY(0deg);
}

.ml-flavour-grid__face--back {
	transform: rotateY(180deg);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	padding: 0.9rem 0.95rem 1rem;
	justify-content: flex-start;
	align-items: stretch;
}

.ml-flavour-grid__face--front .ml-flavour-grid__media {
	flex: 1;
	min-height: 0;
	position: relative;
	aspect-ratio: 1;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.06), transparent 55%);
}

.ml-flavour-grid__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 0.75rem;
	box-sizing: border-box;
}

.ml-flavour-grid__desc {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--ml-muted);
	flex: 1 1 auto;
	min-height: 0;
}

.ml-flavour-grid__face--back .ml-flavour-grid__desc {
	flex: 1 1 0;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ml-flavour-grid__shop-wrap {
	margin: 0;
	margin-top: auto;
	padding-top: 0.75rem;
	flex-shrink: 0;
}

.ml-flavour-shop-btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0.48rem 0.65rem;
	font-size: 0.65rem;
	font-weight: 800;
	font-family: var(--ml-font);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	background: linear-gradient(
		90deg,
		#ff0080,
		#7928ca,
		#0070f3,
		#00dfd8,
		#00c853,
		#ffea00,
		#ff6600,
		#ff0080
	);
	background-size: 300% 100%;
	animation: ml-shop-rainbow-flow 3.5s linear infinite;
	box-shadow:
		0 0 12px rgba(255, 0, 200, 0.55),
		0 0 22px rgba(0, 220, 255, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
	transition: filter 0.2s ease, transform 0.15s ease;
}

.ml-flavour-shop-btn:hover,
.ml-flavour-shop-btn:focus-visible {
	color: #fff;
	filter: brightness(1.12) saturate(1.1);
	transform: translateY(-1px);
	outline: none;
	box-shadow:
		0 0 16px rgba(255, 0, 200, 0.65),
		0 0 28px rgba(0, 220, 255, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

@keyframes ml-shop-rainbow-flow {
	to {
		background-position: 300% center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ml-flavour-shop-btn {
		animation: none;
		background: linear-gradient(135deg, #c026d3, #7c3aed, #2563eb);
		box-shadow: 0 0 14px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	}

	.ml-flavour-shop-btn:hover,
	.ml-flavour-shop-btn:focus-visible {
		transform: none;
	}

	.ml-modal__shop .ml-btn--primary {
		animation: none;
		background: linear-gradient(135deg, #c026d3, #7c3aed, #2563eb);
		box-shadow: 0 0 14px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	}

	.ml-modal__shop .ml-btn--primary:hover,
	.ml-modal__shop .ml-btn--primary:focus-visible {
		transform: none;
	}
}

.ml-flavour-grid__name {
	font-family: var(--ml-font);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
	padding: 0.85rem 0.75rem 1rem;
	line-height: 1.3;
	border-top: 1px solid var(--ml-line);
	text-align: center;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.ml-flavour-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(0.65rem, 3vw, 1rem);
	}

	.ml-flavour-grid:not(.is-expanded) .ml-flavour-grid__card:nth-child(n + 7) {
		display: none;
	}

	/*
	 * Grid page only: stop image area from growing when titles differ — keeps photos aligned in each row.
	 * Do not apply to the home flavour carousel (same BEM classes, different parent).
	 */
	[data-ml-flavour-grid] .ml-flavour-grid__face--front .ml-flavour-grid__media {
		flex: 0 0 auto;
		flex-grow: 0;
	}

	/* Grid page only: fixed two-line title band for row alignment. */
	[data-ml-flavour-grid] .ml-flavour-grid__name {
		flex-shrink: 0;
		box-sizing: border-box;
		height: calc(0.85rem + (1.3em * 2) + 1rem);
		min-height: calc(0.85rem + (1.3em * 2) + 1rem);
		padding: 0.85rem 0.75rem 1rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.3;
	}
}

.ml-flavour-grid__expand-wrap {
	display: none;
	margin: 0;
	text-align: center;
}

@media (max-width: 768px) {
	.ml-flavour-grid__expand-wrap {
		display: block;
		margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
	}

	.ml-flavour-grid.is-expanded + .ml-flavour-grid__expand-wrap {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.ml-flavour-grid__expand-wrap {
		display: none !important;
	}
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
	.ml-flavour-grid__card.is-flipped .ml-flavour-grid__inner {
		transform: rotateY(180deg);
		box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 0, 255, 0.2);
	}

	.ml-flavour-grid__card {
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ml-flavour-grid__inner {
		transition: none;
		min-height: 0;
		transform-style: flat;
	}

	.ml-flavour-grid__card:hover .ml-flavour-grid__inner,
	.ml-flavour-grid__card:focus-within .ml-flavour-grid__inner,
	.ml-flavour-grid__card.is-flipped .ml-flavour-grid__inner {
		transform: none !important;
	}

	.ml-flavour-grid__face {
		position: relative;
		inset: auto;
		backface-visibility: visible;
		-webkit-backface-visibility: visible;
		transform: none !important;
	}

	.ml-flavour-grid__face--front {
		border-radius: var(--ml-radius) var(--ml-radius) 0 0;
		box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
	}

	.ml-flavour-grid__face--back {
		border-radius: 0 0 var(--ml-radius) var(--ml-radius);
		border-top: none;
		margin-top: -1px;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	}
}

/* Vape flavours page grid — mobile: copy + shop in modal; hide back face (fixes stacked text / overlap). */
@media (max-width: 768px) {
	[data-ml-flavour-grid] .ml-flavour-grid__inner {
		min-height: clamp(300px, 36vw, 360px);
	}

	[data-ml-flavour-grid] .ml-flavour-grid__face--back {
		display: none !important;
	}

	[data-ml-flavour-grid] .ml-flavour-grid__card.is-flipped .ml-flavour-grid__inner {
		transform: none !important;
	}

	[data-ml-flavour-grid] .ml-flavour-grid__card {
		cursor: default;
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
	[data-ml-flavour-grid] .ml-flavour-grid__inner {
		min-height: clamp(300px, 36vw, 360px);
	}

	[data-ml-flavour-grid] .ml-flavour-grid__face--front {
		position: absolute !important;
		inset: 0 !important;
	}
}

.ml-flavour-carousel {
	display: block;
	margin: clamp(1rem, 3vw, 1.75rem) 0 clamp(1.5rem, 4vw, 2.5rem);
	max-width: 100%;
	min-width: 0;
}

.ml-flavour-carousel__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	/* Match .ml-flavour-carousel__track horizontal padding so snap points align with card edges. */
	scroll-padding-inline: clamp(1rem, 3vw, 2rem);
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.ml-flavour-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.ml-flavour-carousel__track {
	display: flex;
	gap: clamp(0.75rem, 2vw, 1.15rem);
	padding: 0.35rem clamp(1rem, 3vw, 2rem) 1rem;
	min-height: min-content;
	width: max-content;
	box-sizing: border-box;
}

.ml-flavour-carousel__item {
	flex: 0 0 min(220px, 78vw);
	max-width: 260px;
	scroll-snap-align: start;
}

@media (min-width: 600px) {
	.ml-flavour-carousel__item {
		flex-basis: 240px;
	}
}

.ml-flavour-carousel__btn {
	display: none;
}

.ml-fullbleed-figure {
	margin: 0;
	width: 100%;
	line-height: 0;
}

.ml-fullbleed-figure__img {
	width: 100%;
	height: min(52vh, 560px);
	object-fit: cover;
	display: block;
	border-block: 1px solid var(--ml-line);
}

.ml-modal[hidden] {
	display: none !important;
}

.ml-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: min(1rem, 2.5vw);
	box-sizing: border-box;
}

.ml-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 3, 8, 0.82);
	backdrop-filter: blur(6px);
	cursor: pointer;
}

.ml-modal__panel {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: min(98vh, 1320px);
	overflow: hidden;
	background: linear-gradient(165deg, #12121c 0%, #0a0a10 100%);
	border: 1px solid var(--ml-line);
	border-radius: calc(var(--ml-radius) + 4px);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.ml-modal__smoke {
	pointer-events: none;
	position: absolute;
	inset: -5%;
	z-index: 0;
	overflow: hidden;
}

.ml-modal__smoke-layer {
	position: absolute;
	width: 110%;
	height: 120%;
	left: -5%;
	top: -10%;
	filter: blur(48px);
	opacity: 0.45;
	mix-blend-mode: screen;
	animation: ml-modal-smoke 18s ease-in-out infinite;
}

.ml-modal__smoke-layer--1 {
	background: radial-gradient(ellipse 50% 45% at 30% 50%, rgba(255, 0, 255, 0.35), transparent 55%);
	animation-duration: 20s;
}

.ml-modal__smoke-layer--2 {
	background: radial-gradient(ellipse 45% 40% at 75% 55%, rgba(51, 51, 153, 0.5), transparent 52%);
	animation-duration: 16s;
	animation-delay: -4s;
}

.ml-modal__smoke-layer--3 {
	background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(255, 153, 0, 0.1), transparent 50%);
	animation-duration: 24s;
	animation-delay: -8s;
	opacity: 0.35;
}

@keyframes ml-modal-smoke {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(5%, -4%) scale(1.05);
	}
}

.ml-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 3;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--ml-line);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	color: var(--ml-text);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}

.ml-modal__close:hover,
.ml-modal__close:focus-visible {
	background: rgba(255, 0, 255, 0.15);
	border-color: rgba(255, 0, 255, 0.35);
	outline: none;
}

.ml-modal__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
	padding: clamp(1.35rem, 2.5vw, 2rem);
	padding-top: 2.5rem;
}

.ml-modal__media {
	border-radius: var(--ml-radius);
	background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.06), transparent 55%);
	border: 1px solid var(--ml-line);
	overflow: hidden;
}

.ml-modal__media img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	max-height: min(52vh, 520px);
	margin: 0 auto;
}

@media (max-width: 700px) {
	.ml-modal__grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1rem;
		padding: clamp(1rem, 4vw, 1.35rem);
		padding-top: 2.25rem;
	}

	.ml-modal__media {
		max-width: min(220px, 55vw);
		margin-inline: auto;
	}

	.ml-modal__media img {
		max-height: min(28vh, 200px);
	}
}

.ml-modal__title {
	font-family: var(--ml-display);
	font-weight: 800;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	letter-spacing: -0.03em;
	margin: 0 0 0.85rem;
	line-height: 1.2;
}

.ml-modal__desc {
	margin: 0;
	color: var(--ml-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

.ml-modal__shop {
	margin: 1.25rem 0 0;
}

/* Same sliding rainbow as .ml-flavour-shop-btn (card back / carousel) */
.ml-modal__shop .ml-btn--primary {
	background: linear-gradient(
		90deg,
		#ff0080,
		#7928ca,
		#0070f3,
		#00dfd8,
		#00c853,
		#ffea00,
		#ff6600,
		#ff0080
	);
	background-size: 300% 100%;
	animation: ml-shop-rainbow-flow 3.5s linear infinite;
	box-shadow:
		0 0 12px rgba(255, 0, 200, 0.55),
		0 0 22px rgba(0, 220, 255, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
	transition: filter 0.2s ease, transform 0.15s ease;
}

.ml-modal__shop .ml-btn--primary:hover,
.ml-modal__shop .ml-btn--primary:focus-visible {
	color: #fff;
	filter: brightness(1.12) saturate(1.1);
	transform: translateY(-1px);
	outline: none;
	box-shadow:
		0 0 16px rgba(255, 0, 200, 0.65),
		0 0 28px rgba(0, 220, 255, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-page-hero {
	padding: clamp(2.5rem, 5vw, 4rem) 0 1rem;
	text-align: center;
}

.ml-page-hero__title {
	font-family: var(--ml-display);
	font-weight: 800;
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
}

.ml-page-hero__lead {
	color: var(--ml-muted);
	font-size: 1.1rem;
	margin: 0 auto;
	max-width: 40rem;
}

.ml-page-hero--flavours .ml-page-hero__lead {
	max-width: none;
	width: 100%;
}

.ml-page-hero--flavours {
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.ml-page-hero--about {
	padding-bottom: clamp(2.25rem, 5vw, 3.75rem);
	border-bottom: 1px solid var(--ml-line);
	background: linear-gradient(180deg, rgba(255, 0, 255, 0.07) 0%, transparent 55%);
}

.ml-page-hero--jetables {
	padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.ml-page-hero .ml-hero__actions {
	padding-top: clamp(0.75rem, 2.25vw, 1.35rem);
}

.ml-page-hero__title--jetables {
	max-width: none;
	width: 100%;
}

.ml-jetables-hero__brand {
	display: inline;
	background: linear-gradient(135deg, #ff9900 0%, #ff6b9d 38%, #c026d3 68%, #7c3aed 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 14px rgba(255, 153, 0, 0.5)) drop-shadow(0 0 32px rgba(255, 0, 255, 0.35));
}

@media (prefers-reduced-motion: reduce) {
	.ml-jetables-hero__brand {
		filter: none;
		background: none;
		-webkit-background-clip: unset;
		background-clip: unset;
		color: var(--ml-orange);
		-webkit-text-fill-color: unset;
	}
}

.ml-section--jetables-what .ml-section__title.ml-section__title--page-first,
.ml-section--jetables-what h2.ml-section__title--page-first {
	text-align: center;
}

.ml-split.ml-jetables-what-split,
.ml-split.ml-jetables-convenience-split,
.ml-split.ml-jetables-why-split {
	align-items: stretch;
}

/* Portrait column beside copy; row height follows the text column. */
.ml-split.ml-jetables-why-split {
	grid-template-columns: 1fr minmax(220px, min(36vw, 380px));
}

.ml-jetables-what-split__text > p,
.ml-jetables-convenience-split__text > p {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-jetables-what-split__text > p:last-child,
.ml-jetables-convenience-split__text > p:last-child {
	margin-bottom: 0;
}

.ml-jetables-what-split__media,
.ml-jetables-convenience-split__media,
.ml-jetables-why-split__media {
	align-self: stretch;
	min-height: 0;
	position: relative;
	overflow: hidden;
	border-radius: var(--ml-radius);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	border: 1px solid var(--ml-line);
}

.ml-jetables-what-split__media > img,
.ml-jetables-convenience-split__media > img,
.ml-jetables-why-split__media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.ml-jetables-what-closing {
	margin-top: clamp(1.75rem, 4vw, 2.75rem);
	margin-bottom: 0;
	margin-inline: 0;
	max-width: none;
	width: 100%;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	text-align: left;
}

@media (max-width: 768px) {
	.ml-section--jetables-what .ml-section__title.ml-section__title--page-first,
	.ml-section--jetables-what h2.ml-section__title--page-first,
	.ml-section--jetables-range .ml-section__title.ml-section__title--page-first,
	.ml-section--jetables-range h2.ml-section__title--page-first,
	.ml-section--jetables-convenience .ml-section__title.ml-section__title--page-first,
	.ml-section--jetables-convenience h2.ml-section__title--page-first,
	.ml-section--jetables-unmatched .ml-section__title.ml-section__title--page-first,
	.ml-section--jetables-unmatched h2.ml-section__title--page-first,
	.ml-section--jetables-why .ml-section__title.ml-section__title--page-first,
	.ml-section--jetables-why h2.ml-section__title--page-first {
		text-align: left;
	}
}

@media (max-width: 860px) {
	/* .ml-split.ml-jetables-why-split beats plain .ml-split in specificity — force one column. */
	.ml-split.ml-jetables-why-split {
		grid-template-columns: 1fr;
	}

	.ml-jetables-what-split__media,
	.ml-jetables-convenience-split__media {
		position: relative;
		min-height: min(220px, 50vw);
		aspect-ratio: 4 / 3;
		max-height: min(72vh, 520px);
	}

	.ml-jetables-what-split__media > img,
	.ml-jetables-convenience-split__media > img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	/* Why section: H2, then full-bleed image, then copy (DOM: text, media). */
	.ml-split.ml-jetables-why-split > .ml-jetables-why-split__text {
		order: 1;
		min-width: 0;
	}

	.ml-split.ml-jetables-why-split > .ml-jetables-why-split__media {
		order: -1;
		position: relative;
		width: calc(100% + 2 * var(--ml-page-gutter-fluid));
		max-width: none;
		margin-left: calc(-1 * var(--ml-page-gutter-fluid));
		margin-right: calc(-1 * var(--ml-page-gutter-fluid));
		border-radius: 0;
		aspect-ratio: 16 / 9;
		min-height: min(200px, 42vw);
		max-height: min(52vh, 420px);
	}

	.ml-split.ml-jetables-why-split > .ml-jetables-why-split__media > img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.ml-section--jetables-range .ml-section__title.ml-section__title--page-first,
.ml-section--jetables-range h2.ml-section__title--page-first {
	text-align: center;
}

.ml-jetables-range__subhead,
.ml-jetables-convenience__subhead,
.ml-jetables-unmatched__subhead {
	font-family: var(--ml-display);
	font-weight: 800;
	font-size: clamp(1.2rem, 2.6vw, 1.45rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: clamp(1.35rem, 3.25vw, 2rem) 0 1rem;
	color: var(--ml-text);
}

.ml-section--jetables-unmatched .ml-section__title.ml-section__title--page-first,
.ml-section--jetables-unmatched h2.ml-section__title--page-first,
.ml-section--jetables-why .ml-section__title.ml-section__title--page-first,
.ml-section--jetables-why h2.ml-section__title--page-first {
	text-align: center;
}

.ml-jetables-body__figure {
	margin: clamp(1.15rem, 3vw, 1.85rem) 0 clamp(1.35rem, 3.25vw, 2rem);
}

.ml-jetables-body__figure > img {
	display: block;
	width: 100%;
	max-height: min(52vh, 560px);
	object-fit: cover;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.ml-section--jetables-unmatched .ml-container > p,
.ml-jetables-why-split__text > p:not(.ml-jetables-why__cta) {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-section--jetables-unmatched .ml-container > p:last-of-type,
.ml-jetables-why-split__text > p:last-of-type {
	margin-bottom: 0;
}

.ml-jetables-why-split__text > p.ml-jetables-why__cta {
	margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
	margin-bottom: 0;
	text-align: center;
}

.ml-section.ml-section--jetables-convenience {
	padding-bottom: clamp(4.5rem, 10vw, 8rem);
}

.ml-section--jetables-convenience .ml-section__title.ml-section__title--page-first,
.ml-section--jetables-convenience h2.ml-section__title--page-first {
	text-align: center;
}

.ml-jetables-convenience__prose {
	margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.ml-jetables-convenience__prose > p {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-jetables-convenience__prose > p:last-child {
	margin-bottom: 0;
}

.ml-jetables-convenience__prose > .ml-jetables-convenience__subhead {
	margin-top: 0;
}

.ml-jetables-convenience__banner {
	margin-top: clamp(1.5rem, 4vw, 2.75rem);
	margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.ml-jetables-range__intro > p,
.ml-jetables-range__after > p {
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-jetables-range__intro > p:last-child,
.ml-jetables-range__after > p:last-child {
	margin-bottom: 0;
}

.ml-jetables-range__figure {
	margin-top: clamp(1.5rem, 4vw, 2.75rem);
	margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.ml-about-intro {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.ml-about-intro > .ml-section__title {
	text-align: center;
}

.ml-about-pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
	margin-top: clamp(1.5rem, 4vw, 2.75rem);
}

.ml-about-pillar {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(1.35rem, 3vw, 1.85rem);
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.ml-about-pillar__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(3.5rem, 10vw, 4.25rem);
	height: clamp(3.5rem, 10vw, 4.25rem);
	margin: 0 0 1.15rem;
	padding: 0.2rem;
	box-sizing: border-box;
	background: transparent;
	border: none;
	flex-shrink: 0;
	animation: ml-about-icon-rainbow 9s linear infinite;
}

.ml-about-pillar:nth-child(2) .ml-about-pillar__icon {
	animation-delay: -3s;
}

.ml-about-pillar:nth-child(3) .ml-about-pillar__icon {
	animation-delay: -6s;
}

.ml-about-pillar__icon svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: none;
	stroke: rgba(255, 255, 255, 0.92);
	stroke-width: 1.5;
	filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
		drop-shadow(0 0 6px #ff00cc)
		drop-shadow(0 0 12px #00f5ff)
		drop-shadow(0 0 22px rgba(168, 85, 247, 0.65))
		drop-shadow(0 0 34px rgba(255, 20, 147, 0.35));
}

@keyframes ml-about-icon-rainbow {
	from {
		filter: hue-rotate(0deg);
	}
	to {
		filter: hue-rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ml-about-pillar__icon {
		animation: none;
		filter: none;
	}

	.ml-about-pillar__icon svg {
		filter: drop-shadow(0 0 6px rgba(0, 230, 200, 0.45)) drop-shadow(0 0 14px rgba(255, 0, 180, 0.3));
	}
}

.ml-about-pillar h3 {
	font-family: var(--ml-display);
	font-size: clamp(1.05rem, 2.2vw, 1.2rem);
	font-weight: 800;
	margin: 0 0 0.65rem;
	letter-spacing: -0.02em;
	color: var(--ml-text);
}

.ml-about-pillar p {
	margin: 0;
	color: var(--ml-muted);
	font-size: 0.98rem;
	line-height: 1.6;
}

.ml-about-cta-band {
	text-align: center;
	padding-block: clamp(2rem, 5vw, 3rem);
}

.ml-about-cta-band .ml-section__title {
	margin-bottom: 0.75rem;
}

.ml-about-cta-band p {
	margin: 0 auto 1.5rem;
	max-width: 40rem;
	color: var(--ml-muted);
}

.ml-section--vape-intro .ml-section__title {
	text-align: center;
}

@media (max-width: 768px) {
	.ml-section__title.ml-section__title--page-first,
	h2.ml-section__title--page-first {
		text-align: left;
	}

	.ml-section--vape-intro .ml-section__title.ml-section__title--page-first {
		text-align: left;
	}
}

.ml-vape-intro__figure {
	margin: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(1.5rem, 3vw, 2rem);
	text-align: center;
}

.ml-vape-intro__img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
	display: block;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ml-page-hero__title--flavours {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: baseline;
	gap: 0.12em 0.4em;
	line-height: 1.12;
	text-align: center;
	max-width: 100%;
}

.ml-page-hero__title-line {
	display: inline;
	white-space: nowrap;
}

.ml-page-hero__title-line--m {
	color: var(--ml-magenta);
	text-shadow: 0 0 36px var(--ml-glow);
}

.ml-page-hero__title-line--l {
	color: #5c5cb8;
	text-shadow: 0 0 26px rgba(51, 51, 153, 0.35);
}

.ml-page-hero__title-line--f {
	color: var(--ml-orange);
	text-shadow: 0 0 28px rgba(255, 153, 0, 0.22);
}

.ml-text-center {
	text-align: center;
}

.ml-subnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	justify-content: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--ml-line);
}

.ml-subnav a {
	color: var(--ml-orange);
	font-weight: 600;
	text-decoration: none;
}

.ml-subnav a:hover,
.ml-subnav a:focus-visible {
	text-decoration: underline;
}

.ml-intro__figure {
	margin: clamp(2rem, 4vw, 2.75rem) 0 0;
	text-align: center;
}

.ml-intro__figure img {
	width: min(100%, 480px);
	height: auto;
	margin-inline: auto;
	display: block;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Home: Introducing — full container width copy + full-width photo */
.ml-section--home-intro .ml-container > .ml-section__title {
	margin-top: 0;
}

.ml-section--home-intro .ml-container > p {
	max-width: none;
	width: 100%;
	margin: 0 0 1.15rem;
	color: var(--ml-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.ml-section--home-intro .ml-container > p:last-of-type {
	margin-bottom: 0;
}

.ml-section--home-intro .ml-intro__figure--full {
	margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
	padding: 0;
	width: 100%;
	max-width: none;
	text-align: center;
	line-height: 0;
	border: none;
}

.ml-section--home-intro .ml-intro__figure-img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0;
	box-sizing: border-box;
	border-radius: var(--ml-radius);
	border: 1px solid var(--ml-line);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ml-section--why-video {
	position: relative;
	overflow: hidden;
	color: var(--ml-text);
	border-top: 1px solid var(--ml-line);
	padding-block: clamp(2rem, 4vw, 3rem);
}

.ml-section--why-video__wrap {
	position: relative;
	z-index: 1;
	min-height: min(72vh, 720px);
	display: flex;
	align-items: center;
	padding-block: clamp(2rem, 4vw, 3rem);
	box-sizing: border-box;
}

.ml-section--why-video__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.ml-section--why-video__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 0;
	opacity: 0.5;
}

.ml-section--why-video__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		var(--ml-bg) 0%,
		color-mix(in srgb, var(--ml-bg) 75%, transparent) 14%,
		rgba(0, 0, 0, 0.45) 32%,
		rgba(0, 0, 0, 0.78) 58%,
		#000000 100%
	);
}

@supports not (background: color-mix(in srgb, white 50%, black)) {
	.ml-section--why-video__scrim {
		background: linear-gradient(
			180deg,
			#07070b 0%,
			rgba(7, 7, 11, 0.55) 14%,
			rgba(0, 0, 0, 0.45) 32%,
			rgba(0, 0, 0, 0.78) 58%,
			#000000 100%
		);
	}
}

.ml-section--why-video__inner {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.ml-section--why-video__title {
	text-shadow: none;
}

.ml-section--why-video__inner p {
	color: var(--ml-text);
}

.ml-section--cta__inner {
	text-align: center;
}

.ml-section--cta__inner > p {
	text-align: center;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

.ml-section--cta__inner .ml-hero__actions {
	justify-content: center;
}

.ml-section--cta__inner .ml-subnav {
	justify-content: center;
}

.ml-footer {
	margin-top: 0;
	padding: 60px 0 2rem;
	border-top: 1px solid var(--ml-line);
	background: linear-gradient(180deg, #050508 0%, #020203 100%);
}

.ml-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 3rem);
	margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

@media (max-width: 768px) {
	.ml-footer__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ml-footer__logo-link {
		display: inline-block;
	}
}

.ml-footer__logo {
	display: block;
	height: auto;
	max-height: clamp(56px, 6.5vw, 80px);
	width: auto;
}

.ml-footer__tagline {
	margin: 1rem 0 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--ml-muted);
	max-width: 22rem;
}

@media (max-width: 768px) {
	.ml-footer__tagline {
		margin-inline: auto;
	}
}

.ml-footer__heading {
	font-family: var(--ml-display);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ml-orange);
	margin: 0 0 1rem;
}

.ml-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.ml-footer__list a {
	color: var(--ml-muted);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.2s;
}

.ml-footer__list a:hover,
.ml-footer__list a:focus-visible {
	color: var(--ml-text);
}

.ml-footer__bottom {
	padding-top: 1.75rem;
	border-top: 1px solid var(--ml-line);
	text-align: center;
}

.ml-footer__legal {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--ml-muted);
	max-width: 40rem;
	margin-inline: auto;
}

.ml-footer__copy {
	margin: 0;
	font-size: 0.85rem;
	color: var(--ml-muted);
}

.ml-narrow h2 {
	font-family: var(--ml-display);
	font-size: 1.35rem;
	letter-spacing: -0.025em;
	margin: 2rem 0 0.75rem;
}

.ml-narrow h2.ml-section__title {
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 800;
	margin: 2rem 0 1.25rem;
}

.ml-narrow h2.ml-section__title:first-child {
	margin-top: 0;
}

.ml-narrow h2:first-child {
	margin-top: 0;
}

.ml-narrow p a {
	color: var(--ml-orange);
	font-weight: 600;
}

.ml-narrow p a.ml-btn--primary,
.ml-narrow p a.ml-btn--primary:visited,
.ml-narrow p a.ml-btn--pink-purple,
.ml-narrow p a.ml-btn--pink-purple:visited {
	color: #fff;
	font-weight: 700;
}

.entry-content a {
	color: var(--ml-orange);
}

.entry-content a.ml-btn--primary,
.entry-content a.ml-btn--primary:visited,
.entry-content a.ml-btn--pink-purple,
.entry-content a.ml-btn--pink-purple:visited {
	color: #fff;
	font-weight: 700;
}
