@charset "UTF-8";
/* ==========================================================================
   Miles — milesonlineshop.co
   Design system + landing page styles
   Layers: tokens → reset → type → components → sections → utilities
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
	/* palette */
	--ink:        #0F1A15;
	--ink-2:      #16261F;
	--ink-3:      #22362E;
	--lime:       #DDFF3C;
	--lime-deep:  #C6E92B;
	--stone:      #D9D3C6;
	--stone-2:    #CFC8B8;
	--bone:       #F3F1EA;
	--white:      #FFFFFF;
	--clay:       #CE5C31;

	/* Surface tokens. Any element that flips to a dark ground re-declares
	   these four, and every component below reads them instead of hard-coding
	   a colour — so a white card inside a dark section themes itself correctly. */
	--text:          var(--ink);
	/* Both muted tiers clear 4.5:1 against their surfaces — verified, not
	   eyeballed. Anything lighter is reserved for non-text ornament. */
	--text-muted:    color-mix(in srgb, var(--ink) 70%, transparent);
	--text-faint:    color-mix(in srgb, var(--ink) 62%, transparent);
	--rule:          color-mix(in srgb, var(--ink) 12%, transparent);
	--link-hover:    var(--ink);

	--on-dark:       #FFFFFF;
	--on-dark-muted: rgba(255, 255, 255, .72);
	--on-dark-faint: rgba(255, 255, 255, .48);
	--rule-dark:     rgba(255, 255, 255, .14);

	/* type */
	--font-display: "Bricolage Grotesque", "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-body:    "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--fs-display-xl: clamp(2.75rem, 6.1vw, 5.25rem);
	--fs-display-lg: clamp(2.15rem, 4.6vw, 3.9rem);
	--fs-display-md: clamp(1.35rem, 1.55vw, 1.75rem);
	--fs-display-sm: clamp(1.15rem, 1.15vw, 1.3rem);
	--fs-mega:       clamp(3.25rem, 10.4vw, 9.25rem);
	--fs-figure:     clamp(3rem, 8.5vw, 7.5rem);
	--fs-lede:       clamp(1rem, 1.05vw, 1.1875rem);
	--fs-body:       1rem;
	--fs-sm:         .875rem;
	--fs-xs:         .8125rem;
	--fs-eyebrow:    .6875rem;

	/* space */
	--gutter:      clamp(1.25rem, 4.4vw, 4rem);
	--maxw:        1320px;
	--maxw-narrow: 760px;
	--section-y:   clamp(4.5rem, 8.5vw, 8.75rem);
	--stack:       clamp(1.5rem, 2.6vw, 2.5rem);

	/* form */
	--r-card:  20px;
	--r-media: 16px;
	--r-pill:  999px;
	--shadow-card: 0 1px 2px rgba(15, 26, 21, .06), 0 12px 32px -18px rgba(15, 26, 21, .3);
	--shadow-lift: 0 2px 4px rgba(15, 26, 21, .08), 0 28px 60px -24px rgba(15, 26, 21, .42);
	--ease: cubic-bezier(.2, .7, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bone);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	font-feature-settings: "kern", "liga";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }

:focus-visible {
	outline: 3px solid var(--ink);
	outline-offset: 3px;
	border-radius: 4px;
}
.is-dark :focus-visible,
.miles-footer :focus-visible { outline-color: var(--lime); }

::selection { background: var(--lime); color: var(--ink); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; top: -100px; left: 1rem; z-index: 999;
	background: var(--ink); color: var(--white);
	padding: .85rem 1.25rem; border-radius: var(--r-pill);
	font-weight: 700; font-size: var(--fs-sm);
	transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ------------------------------------------------------------ typography -- */
.display {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: .96;
	letter-spacing: -.032em;
	text-wrap: balance;
}
.display--xl { font-size: var(--fs-display-xl); }
.display--lg { font-size: var(--fs-display-lg); }
.display--md { font-size: var(--fs-display-md); line-height: 1.06; letter-spacing: -.02em; }
.display--sm { font-size: var(--fs-display-sm); line-height: 1.12; letter-spacing: -.015em; }

.eyebrow {
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-faint);
}

.lede {
	font-size: var(--fs-lede);
	line-height: 1.55;
	color: var(--text-muted);
	text-wrap: pretty;
}

.hl { color: var(--lime); }

/* ------------------------------------------------------------- layout ----- */
.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 5vw, 5rem); }
.section__head { max-width: 46rem; margin-inline: auto; text-align: center; }
.section__head .lede { margin-top: 1.1rem; }

.on-dark,
.is-dark {
	--text:       var(--on-dark);
	--text-muted: var(--on-dark-muted);
	--text-faint: var(--on-dark-faint);
	--rule:       var(--rule-dark);
	--link-hover: var(--lime);
	color: var(--on-dark);
}
.is-dark { background: var(--ink); }

/* A light card sitting on a dark section restores the light surface. */
.on-light {
	--text:       var(--ink);
	--text-muted: color-mix(in srgb, var(--ink) 70%, transparent);
	--text-faint: color-mix(in srgb, var(--ink) 62%, transparent);
	--rule:       color-mix(in srgb, var(--ink) 12%, transparent);
	--link-hover: var(--ink);
	color: var(--ink);
}
.is-bone { background: var(--bone); }
.is-stone { background: var(--stone); }

/* ------------------------------------------------------------- buttons ---- */
.btn {
	--btn-bg: var(--ink);
	--btn-fg: var(--white);
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	background: var(--btn-bg);
	color: var(--btn-fg);
	border: 0;
	border-radius: var(--r-pill);
	padding: .9rem 1.55rem;
	font-size: var(--fs-sm);
	font-weight: 700;
	letter-spacing: -.005em;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(15, 26, 21, .55); }
.btn:active { transform: translateY(0); }
.btn--lime  { --btn-bg: var(--lime); --btn-fg: var(--ink); }
.btn--lime:hover { --btn-bg: var(--lime-deep); }
.btn--light { --btn-bg: var(--white); --btn-fg: var(--ink); }
.btn--ghost {
	--btn-bg: transparent; --btn-fg: var(--ink);
	box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--ink) 22%, transparent);
}
.is-dark .btn--ghost, .on-dark .btn--ghost { --btn-fg: var(--white); box-shadow: inset 0 0 0 1.5px var(--rule-dark); }
.btn--sm { padding: .62rem 1.1rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

.arrowlink {
	display: inline-flex; align-items: center; gap: .4rem;
	font-size: var(--fs-xs); font-weight: 600;
	color: var(--text-muted);
	transition: color .18s var(--ease), gap .18s var(--ease);
}
.arrowlink::after { content: "→"; transition: transform .18s var(--ease); }
.arrowlink:hover { color: var(--link-hover); gap: .6rem; }
.arrowlink:hover::after { transform: translateX(2px); }

/* ---------------------------------------------------- signature contrail -- */
.contrail {
	position: absolute;
	pointer-events: none;
	z-index: 0;
	color: var(--lime);
}
.contrail svg { width: 100%; height: auto; }

/* ================================================================ HEADER == */
.topbar {
	background: var(--stone-2);
	border-bottom: 1px solid rgba(15, 26, 21, .08);
	font-size: var(--fs-xs);
}
.topbar__inner {
	display: flex; align-items: stretch; justify-content: space-between; gap: 1rem;
	min-height: 34px;
}
.topbar__tabs { display: flex; }
.topbar__tab {
	display: inline-flex; align-items: center;
	padding: .35rem .95rem;
	font-size: .75rem; font-weight: 600;
	color: color-mix(in srgb, var(--ink) 68%, transparent);
	transition: background-color .18s var(--ease), color .18s var(--ease);
}
.topbar__tab:hover { color: var(--ink); }
.topbar__tab.is-active { background: var(--stone); color: var(--ink); }
.topbar__note {
	display: none; align-items: center;
	font-size: .75rem; color: color-mix(in srgb, var(--ink) 70%, transparent);
}
@media (min-width: 900px) { .topbar__note { display: flex; } }

.masthead { background: var(--stone); position: relative; z-index: 30; }
.masthead__inner {
	display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.75rem);
	padding-block: 1.05rem;
}

.brand { display: inline-flex; align-items: center; gap: .5rem; flex: 0 0 auto; }
.brand__mark { width: 22px; height: 22px; flex: 0 0 auto; }
.brand__word {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.4rem;
	letter-spacing: -.045em;
	line-height: 1;
}
.brand__dot { color: var(--lime-deep); }

.nav { display: none; flex: 1 1 auto; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__link {
	font-size: var(--fs-sm); font-weight: 500;
	color: color-mix(in srgb, var(--ink) 78%, transparent);
	padding-block: .35rem;
	position: relative;
}
.nav__link::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
	height: 2px; background: var(--ink);
	transition: right .22s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { right: 0; }

.masthead__actions { display: flex; align-items: center; gap: .85rem; margin-left: auto; }
.masthead__login { display: none; font-size: var(--fs-sm); font-weight: 600; }

.navtoggle {
	display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
	width: 42px; height: 42px; padding: 0 10px;
	background: transparent; border: 0; cursor: pointer;
}
.navtoggle span {
	display: block; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform .24s var(--ease), opacity .18s var(--ease);
}
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
	display: none;
	background: var(--stone);
	border-top: 1px solid rgba(15, 26, 21, .1);
	padding-block: 1rem 1.75rem;
}
.drawer.is-open { display: block; }
.drawer__list { display: grid; gap: .25rem; }
.drawer__link {
	display: block; padding: .8rem 0;
	font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
	letter-spacing: -.03em;
	border-bottom: 1px solid rgba(15, 26, 21, .08);
}
.drawer__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

@media (min-width: 1000px) {
	.nav { display: block; }
	.masthead__login { display: inline-block; }
	.navtoggle { display: none; }
	.drawer { display: none !important; }
}

/* ================================================================== HERO == */
.hero {
	background: var(--stone);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.hero__grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	padding-block: clamp(2rem, 4.2vw, 3.75rem) 0;
	position: relative;
	z-index: 2;
}
.hero__copy { max-width: 34rem; }
.hero__title { margin-bottom: 1.35rem; }
.hero__title span { display: block; }
.hero__lede { max-width: 30rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 2.1rem; }

.hero__media { position: relative; align-self: end; }
.hero__figure {
	position: relative;
	margin: 0 auto;
	width: min(100%, 30rem);
	filter: drop-shadow(0 24px 48px rgba(15, 26, 21, .22));
}
.hero__contrail {
	position: absolute;
	inset-inline-start: -22%;
	top: 4%;
	width: 150%;
	z-index: -1;
}

.hero__trust {
	display: flex; flex-wrap: wrap; gap: 1.6rem;
	border-top: 1px solid rgba(15, 26, 21, .13);
	padding-block: 1.25rem;
	position: relative; z-index: 2;
}
.hero__trust li {
	display: flex; align-items: center; gap: .5rem;
	font-size: var(--fs-xs); font-weight: 600;
	color: color-mix(in srgb, var(--ink) 66%, transparent);
}
.hero__trust svg { width: 15px; height: 15px; flex: 0 0 auto; }

@media (min-width: 900px) {
	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
		align-items: end;
		gap: clamp(1rem, 3vw, 2rem);
	}
	.hero__copy { padding-bottom: clamp(3rem, 7vw, 7rem); }
	.hero__figure {
		height: clamp(24rem, 62vh, 41rem);
		width: auto;
		max-width: none;
		margin-inline: auto -7%;
	}
}

/* ========================================================== BRAND MARQUEE == */
.marquee {
	background: var(--bone);
	border-block: 1px solid var(--rule);
	overflow: hidden;
	padding-block: clamp(1.5rem, 2.6vw, 2.25rem);
	position: relative;
}
.marquee::before, .marquee::after {
	content: ""; position: absolute; top: 0; bottom: 0; width: clamp(2rem, 8vw, 7rem); z-index: 2;
	pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bone), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bone), transparent); }
.marquee__track {
	display: flex; align-items: center; gap: clamp(2.5rem, 6vw, 5.5rem);
	width: max-content;
	animation: miles-marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; }
.marquee__item img {
	height: clamp(22px, 2.3vw, 29px); width: auto;
	opacity: .58;
	transition: opacity .2s var(--ease);
}
.marquee__item:hover img { opacity: .95; }
@keyframes miles-marquee { to { transform: translateX(-50%); } }

/* ================================================================== KIT ==== */
.kit { position: relative; overflow: hidden; }
.kit__head { margin-bottom: clamp(2.5rem, 4.5vw, 4rem); }

.bento {
	display: grid;
	gap: clamp(.75rem, 1.1vw, 1rem);
	grid-template-columns: 1fr;
}
@media (min-width: 860px) {
	.bento { grid-template-columns: repeat(12, minmax(0, 1fr)); }
	.bento__card--wide   { grid-column: span 7; }
	.bento__card--narrow { grid-column: span 5; }
}

.bento__card {
	background: var(--white);
	border-radius: var(--r-card);
	padding: clamp(1.4rem, 1.9vw, 1.9rem);
	display: flex; flex-direction: column;
	min-height: 19rem;
	position: relative;
	overflow: hidden;
	transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.bento__card--dark {
	background: var(--ink-2);
	box-shadow: inset 0 0 0 1px var(--rule-dark);
}

.bento__eyebrow { margin-bottom: .5rem; }
.bento__body {
	display: flex; flex-direction: column; gap: .55rem;
	margin-top: auto;
	max-width: 26rem;
}
.bento__title { letter-spacing: -.025em; }
.bento__text { font-size: var(--fs-sm); color: var(--text-muted); }
.bento__link { margin-top: .5rem; align-self: flex-start; }

.bento__media {
	display: flex; align-items: center; justify-content: flex-end;
	margin: .25rem 0 1.4rem;
	flex: 1 1 auto;
	min-height: 7rem;
}
.bento__media img {
	height: clamp(7.5rem, 13vw, 11rem); width: auto;
	transition: transform .38s var(--ease);
}
.bento__card:hover .bento__media img { transform: translateY(-6px) rotate(-2deg); }

@media (min-width: 860px) {
	.bento__card--wide { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); grid-template-rows: auto 1fr; column-gap: 1.25rem; }
	.bento__card--wide .bento__eyebrow { grid-column: 1 / -1; }
	.bento__card--wide .bento__body { grid-column: 1; align-self: end; }
	.bento__card--wide .bento__media { grid-column: 2; grid-row: 1 / span 2; margin: 0; align-items: center; }
	.bento__card--wide .bento__media img { height: clamp(9rem, 15vw, 13.5rem); }
}

.bento__card--dark .bento__media { justify-content: center; }
.bento__play {
	display: inline-flex; align-items: center; gap: .6rem;
	background: var(--white); color: var(--ink);
	border-radius: var(--r-pill);
	padding: .5rem .95rem .5rem .5rem;
	font-size: var(--fs-xs); font-weight: 700;
	align-self: flex-start;
	transition: transform .18s var(--ease);
}
.bento__play:hover { transform: translateX(3px); }
.bento__play i {
	display: grid; place-items: center;
	width: 26px; height: 26px; border-radius: 50%;
	background: var(--lime); font-style: normal; font-size: .6rem;
}
.bento__glyph { width: clamp(72px, 8vw, 104px); opacity: .95; }

/* ============================================================== LIGHTER ==== */
.lighter {
	background: var(--bone);
	position: relative;
	overflow: hidden;
	padding-block: clamp(4rem, 9vw, 9rem);
}
.lighter__stage {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(24rem, 46vw, 40rem);
}
.lighter__word {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: var(--fs-mega);
	line-height: .82;
	letter-spacing: -.05em;
	color: var(--ink);
	position: relative;
	z-index: 3;
	pointer-events: none;
}
.lighter__word--a { justify-self: end;   align-self: start; }
.lighter__word--b { justify-self: start; align-self: end; }
.lighter__phone {
	grid-area: 1 / 1;
	position: relative; z-index: 4;
	width: min(58vw, 17rem);
	justify-self: center; align-self: center;
}
.lighter__word--a, .lighter__word--b, .lighter__phone { grid-area: 1 / 1; }
.lighter__contrail--1 { left: -14%; top: 12%; width: 84%; z-index: 1; }
.lighter__contrail--2 { right: -18%; bottom: 6%; width: 78%; z-index: 2; transform: scaleX(-1); }
.lighter__lede {
	max-width: 30rem; margin: clamp(2rem, 4vw, 3.25rem) auto 0;
	text-align: center; position: relative; z-index: 5;
}

/* ========================================================== TESTIMONIAL ==== */
.quote__grid {
	display: grid; gap: clamp(1.75rem, 4vw, 4rem);
	align-items: center;
}
@media (min-width: 820px) {
	.quote__grid { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); }
}
.quote__figure { position: relative; margin: 0; }
.quote__figure::after {
	content: "";
	position: absolute; inset: auto 0 0 0; height: 34%;
	border-radius: 0 0 var(--r-media) var(--r-media);
	background: linear-gradient(to top, rgba(8, 18, 15, .82), transparent);
	pointer-events: none;
}
.quote__figure img {
	width: 100%; border-radius: var(--r-media);
	aspect-ratio: 4 / 5; object-fit: cover;
}
.quote__caption {
	position: absolute; left: 50%; bottom: 8%;
	transform: translateX(-50%);
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(.8rem, 1.1vw, .95rem);
	letter-spacing: .26em; text-indent: .26em;
	white-space: nowrap;
	color: var(--white);
	z-index: 2;
}
.quote__mark {
	display: block;
	width: clamp(2.75rem, 4vw, 3.75rem);
	height: auto;
	margin-bottom: 1.5rem;
	color: var(--ink);
}
.quote__text {
	font-size: clamp(1.15rem, 1.85vw, 1.65rem);
	line-height: 1.34;
	letter-spacing: -.02em;
	text-wrap: pretty;
	max-width: 34rem;
}
.quote__by { margin-top: 1.75rem; font-size: var(--fs-xs); }
.quote__by strong { display: block; font-weight: 700; }
.quote__by span { color: var(--text-muted); }
.quote__rule { width: 2.25rem; height: 2px; background: var(--ink); opacity: .3; margin-top: 1.5rem; }

/* ================================================================= STAT ==== */
.stat { position: relative; overflow: hidden; }
.stat__contrail { right: -12%; top: -18%; width: 78%; z-index: 0; }
.stat__card {
	position: relative; z-index: 2;
	background: var(--white);
	border-radius: clamp(20px, 2vw, 28px);
	box-shadow: var(--shadow-card);
	padding: clamp(1.75rem, 3.4vw, 3.25rem);
	display: grid; gap: clamp(1.75rem, 3vw, 3rem);
	align-items: center;
}
@media (min-width: 780px) {
	.stat__card { grid-template-columns: minmax(0, 1fr) auto; }
}
.stat__title { max-width: 22rem; }
.stat__text { font-size: var(--fs-sm); color: var(--text-muted); max-width: 26rem; margin-top: .85rem; }
.stat__action { margin-top: 1.6rem; }
.stat__figure { text-align: right; }
.stat__number {
	font-family: var(--font-display); font-weight: 800;
	font-size: var(--fs-figure); line-height: .84; letter-spacing: -.055em;
	display: flex; align-items: baseline; justify-content: flex-end; gap: .04em;
}
.stat__number em { font-style: normal; color: var(--lime-deep); }
.stat__note { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .75rem; }
.stat__glyph { position: absolute; top: clamp(1.25rem, 2.4vw, 2.25rem); right: clamp(1.25rem, 2.4vw, 2.25rem); width: 26px; }

/* ============================================================== BUNDLES ==== */
.bundles__head { margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.bundles__grid {
	display: grid; gap: clamp(1rem, 1.6vw, 1.5rem);
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 800px) { .bundles__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.bundle {
	background: var(--white);
	border-radius: var(--r-card);
	padding: clamp(1.4rem, 2.1vw, 2rem);
	display: flex; flex-direction: column;
	box-shadow: var(--shadow-card);
	position: relative;
	transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.bundle:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.bundle--featured { background: var(--ink); }
.bundle--featured .bundle__includes li::before { background: var(--lime); }

.bundle__badge {
	position: absolute; top: 1rem; right: 1rem;
	background: var(--lime); color: var(--ink);
	border-radius: var(--r-pill);
	padding: .3rem .7rem;
	font-size: .6875rem; font-weight: 700; letter-spacing: .02em;
}
.bundle__media {
	display: grid; place-items: center;
	background: var(--bone);
	border-radius: var(--r-media);
	padding: 1.25rem;
	margin-bottom: 1.4rem;
	aspect-ratio: 5 / 4;
}
.bundle--featured .bundle__media { background: var(--ink-2); }
.bundle__media img { height: 100%; width: auto; max-height: 12rem; }
.bundle__name { letter-spacing: -.025em; }
.bundle__sub { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .3rem; }
.bundle__price {
	display: flex; align-items: baseline; flex-wrap: wrap; gap: .55rem;
	margin: 1.1rem 0 1.25rem;
	font-family: var(--font-display); font-weight: 800;
	font-size: 2.1rem; letter-spacing: -.04em; line-height: 1;
}
.bundle__save {
	font-family: var(--font-body);
	font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0;
	background: var(--lime); color: var(--ink);
	border-radius: var(--r-pill);
	padding: .28rem .6rem;
	white-space: nowrap;
	transform: translateY(-.15em);
}
.bundle__was {
	font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 500;
	color: var(--text-faint); text-decoration: line-through;
}
.bundle__includes { display: grid; gap: .5rem; margin-bottom: 1.6rem; }
.bundle__includes li {
	position: relative; padding-left: 1.35rem;
	font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.4;
}
.bundle__includes li::before {
	content: ""; position: absolute; left: 0; top: .55em;
	width: 8px; height: 8px; border-radius: 2px; background: var(--ink); opacity: .8;
}
.bundle .btn { margin-top: auto; justify-content: center; }
.bundles__foot { text-align: center; font-size: var(--fs-xs); color: var(--text-faint); margin-top: 1.75rem; }

/* ================================================================== FAQ ==== */
.faq__grid { display: grid; gap: clamp(1.5rem, 4vw, 4rem); }
@media (min-width: 900px) { .faq__grid { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); } }
.faq__aside .lede { margin-top: 1rem; }
.faq__aside .btn { margin-top: 1.75rem; }
.faq__list { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
	display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
	padding: 1.25rem 0;
	cursor: pointer;
	font-weight: 600;
	font-size: clamp(1rem, 1.25vw, 1.125rem);
	letter-spacing: -.012em;
	list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
	content: "+";
	font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1;
	flex: 0 0 auto;
	transition: transform .24s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
	font-size: var(--fs-sm); color: var(--text-muted);
	max-width: 44rem; padding-bottom: 1.4rem;
}

/* =============================================================== BIG CTA === */
.finale { text-align: center; position: relative; overflow: hidden; }
.finale__title span { display: block; }
.finale .btn { margin-top: 2rem; }
.finale__note { margin-top: 1.1rem; font-size: var(--fs-xs); color: var(--text-faint); }

/* ================================================================ PRESS ==== */
.press { padding-block: clamp(2.5rem, 4vw, 4rem); }
.press__label { text-align: center; margin-bottom: 1.75rem; }
.press__list {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: clamp(1.75rem, 5vw, 4.5rem);
}
.press__list img { height: clamp(22px, 2.4vw, 30px); width: auto; opacity: .52; }

/* =============================================================== FOOTER ==== */
.miles-footer { background: var(--ink); color: var(--on-dark); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__top {
	display: grid; gap: 2rem;
	align-items: start;
	padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
	border-bottom: 1px solid var(--rule-dark);
}
@media (min-width: 800px) { .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 28rem); align-items: center; } }
.footer__brand { display: flex; align-items: center; gap: .55rem; }
.footer__brand .brand__word { font-size: 1.75rem; }
.footer__tagline { font-size: var(--fs-xs); color: var(--on-dark-muted); margin-top: .6rem; }

.signup__label { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); font-weight: 600; margin-bottom: .85rem; }
.signup__label svg { width: 17px; height: 17px; }
.signup__row { display: flex; align-items: center; gap: .5rem; border-bottom: 1.5px solid var(--rule-dark); padding-bottom: .55rem; }
.signup__row:focus-within { border-color: var(--lime); }
.signup__row input {
	flex: 1 1 auto; min-width: 0;
	background: transparent; border: 0; outline: none;
	font-size: var(--fs-sm); color: var(--white);
	padding: .35rem 0;
}
.signup__row input::placeholder { color: var(--on-dark-faint); }
.signup__row button {
	flex: 0 0 auto;
	display: grid; place-items: center;
	width: 34px; height: 34px; border-radius: 50%;
	background: transparent; color: var(--white);
	border: 1.5px solid var(--rule-dark);
	cursor: pointer;
	transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.signup__row button:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.signup__note { font-size: .75rem; color: var(--on-dark-faint); margin-top: .7rem; }
.signup__done { font-size: var(--fs-xs); color: var(--lime); margin-top: .7rem; }

.footer__cols {
	display: grid; gap: clamp(1.75rem, 3vw, 2.5rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-block: clamp(2.5rem, 4vw, 3.5rem);
}
@media (min-width: 640px) { .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .footer__cols { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.footer__col h3 {
	font-size: var(--fs-xs); font-weight: 700;
	letter-spacing: .02em; margin-bottom: 1rem;
}
.footer__col li + li { margin-top: .55rem; }
.footer__col a {
	font-size: var(--fs-xs); color: var(--on-dark-muted);
	transition: color .16s var(--ease);
}
.footer__col a:hover { color: var(--lime); }
.footer__tag {
	display: inline-block; margin-left: .4rem;
	background: var(--lime); color: var(--ink);
	border-radius: 3px; padding: .05rem .32rem;
	font-size: .625rem; font-weight: 700;
}

.footer__bottom {
	display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
	align-items: center; justify-content: space-between;
	border-top: 1px solid var(--rule-dark);
	padding-top: 1.75rem;
	font-size: .75rem; color: var(--on-dark-faint);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a:hover, .footer__social a:hover { color: var(--lime); }
.footer__social { display: flex; gap: 1.25rem; }

/* ========================================================== LEGAL / PAGE === */
.pagehero { background: var(--stone); padding-block: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3.5rem); position: relative; overflow: hidden; }
.pagehero .contrail { right: -20%; top: -40%; width: 62%; opacity: .9; }
.pagehero__inner { position: relative; z-index: 2; max-width: var(--maxw-narrow); }
.pagehero__meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

.prose { max-width: var(--maxw-narrow); padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -.028em; line-height: 1.15;
	margin-top: 2.75rem;
}
.prose h3 { font-size: 1.0625rem; font-weight: 700; margin-top: 1.9rem; letter-spacing: -.01em; }
.prose p, .prose li { color: color-mix(in srgb, var(--ink) 74%, transparent); }
.prose ul { list-style: none; display: grid; gap: .55rem; }
.prose ul li { position: relative; padding-left: 1.35rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--lime-deep); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { background: var(--lime); }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.prose th, .prose td { text-align: left; padding: .7rem .75rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.prose th { font-weight: 700; }
.prose__scroll { overflow-x: auto; }
.prose__note {
	background: var(--white); border-left: 3px solid var(--lime);
	border-radius: 0 var(--r-media) var(--r-media) 0;
	padding: 1.1rem 1.25rem; font-size: var(--fs-sm);
}
.legal-toc { background: var(--white); border-radius: var(--r-media); padding: 1.25rem 1.5rem; }
.legal-toc h2 { font-size: var(--fs-xs); font-family: var(--font-body); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 .85rem; }
.legal-toc ol { display: grid; gap: .4rem; counter-reset: toc; }
.legal-toc li { counter-increment: toc; font-size: var(--fs-sm); }
.legal-toc li::before { content: counter(toc) ". "; color: var(--text-faint); }
.legal-toc a:hover { text-decoration: underline; }

/* ================================================================== 404 ==== */
.nf { text-align: center; padding-block: clamp(4rem, 10vw, 9rem); position: relative; overflow: hidden; }
.nf__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 18vw, 12rem); line-height: .85; letter-spacing: -.06em; }
.nf .btn { margin-top: 2rem; }

/* ============================================================ UTILITIES ==== */
/* Scroll reveal is opt-in: the .js class is only set by the inline probe in
   the head, so with JavaScript off nothing is ever hidden. */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

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

@media (forced-colors: active) {
	.btn, .bundle, .bento__card, .stat__card { border: 1px solid; }
}

@media print {
	.topbar, .masthead, .miles-footer, .contrail, .marquee, .press, .btn { display: none !important; }
	body { background: #fff; color: #000; }
	.prose { max-width: none; }
}
