/** Shopify CDN: Minification failed

Line 459:0 All "@import" rules must come first

**/
/* =========================================================
   Mystery Vending – Theme Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: #fff; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 14px 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.announcement-bar__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: #c8f200;
  text-transform: uppercase;
  line-height: 1;
}

.announcement-bar__sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #c8f200;
  text-transform: uppercase;
  opacity: 0.9;
}

.announcement-bar__cta .btn {
  white-space: nowrap;
}

/* ---- Header ---- */
.site-header {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  /* header is first; announcement bar sits directly below it */
}

.site-header__spacer { /* left column — keeps logo centered */ }

.site-header__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.site-header__logo img {
  width: 295px;
  height: 61px;
  object-fit: contain;
}

.site-header__logo:hover { text-decoration: none; opacity: 0.85; }

.site-header__nav { justify-self: end; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__nav a {
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.site-header__nav a:hover { opacity: 1; text-decoration: none; }

.site-header__nav svg { width: 22px; height: 22px; fill: currentColor; }

.cart-count {
  background: #c8f200;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 20px; height: 20px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  margin-top: -10px;
  vertical-align: top;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: center;
}

.btn:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.btn--primary {
  background: #c8f200;
  border-color: #c8f200;
  color: #000;
}

.btn--primary:hover {
  background: #d6ff00;
  border-color: #d6ff00;
  color: #000;
}

.btn--full { width: 100%; }

/* ---- Page Wrapper ---- */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Collection / Product Grid ---- */
.collection-header {
  padding: 40px 0 24px;
  text-align: center;
}

.collection-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0 48px;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---- Product Card ---- */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 28px;
  text-align: center;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.product-card__link:hover { text-decoration: none; }
.product-card__link:hover .product-card__title { text-decoration: underline; }

.product-card__image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 14px;
  background: #0a0a0a;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
  text-align: center;
}

.product-card__price {
  font-size: 0.92rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}

.product-card__price s {
  color: #666;
  margin-right: 6px;
}

.product-card form { width: 100%; }

/* ---- Product Page ---- */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}

@media (max-width: 700px) {
  .product-page { grid-template-columns: 1fr; }
}

.product-page__gallery img {
  width: 100%;
  object-fit: contain;
  background: #0a0a0a;
}

.product-page__info { display: flex; flex-direction: column; gap: 16px; }

.product-page__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.product-page__price {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
}

.product-page__description {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.7;
}

.product-page__variants { display: flex; flex-direction: column; gap: 8px; }
.product-page__variants label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: #aaa; }
.product-page__variants select {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  cursor: pointer;
}

/* ---- Cart Page ---- */
.cart-page { padding: 48px 0; }
.cart-page h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.1em; margin-bottom: 32px; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px 0; border-bottom: 1px solid #1a1a1a; text-align: left; font-size: 0.88rem; }
.cart-table th { color: #888; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.cart-table__image { width: 80px; height: 80px; object-fit: contain; background: #0a0a0a; }

.qty-input {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  padding: 6px 10px;
  width: 56px;
  text-align: center;
  font-family: inherit;
  font-size: 0.9rem;
}

.cart-footer { margin-top: 32px; display: flex; justify-content: flex-end; gap: 24px; align-items: center; }
.cart-total { font-size: 1rem; }
.cart-total strong { font-size: 1.1rem; color: #c8f200; }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px 24px 24px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-copy {
  font-size: 0.75rem;
  color: #999;
  margin-top: 8px;
  text-align: right;
}

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

/* ---- Skip-to-content link (WCAG 2.4.1) ---- */
.skip-to-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  padding: 10px 16px;
  background: #c8f200;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 6px 0;
  transform: translateY(-110%);
  transition: transform .15s ease;
}
.skip-to-content:focus,
.skip-to-content:focus-visible {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: -3px;
}

/* ---- Focus-visible outlines (WCAG 2.4.7) ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
  outline: 2px solid #c8f200;
  outline-offset: 2px;
}
body.mk-page-body a:focus-visible,
body.mk-page-body button:focus-visible,
body.mk-page-body input:focus-visible,
body.mk-page-body select:focus-visible,
body.mk-page-body textarea:focus-visible {
  outline-color: var(--mk-blue);
}
/* don't show focus on programmatic main focus (skip-link target) */
main:focus,
main:focus-visible { outline: none; }

/* Fade-in on scroll */
.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================================
   MARKETING PAGES (Bars + Referrals)
   Figma design tokens scoped to these pages only.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Silkscreen:wght@700&display=swap');

body.mk-page-body {
  --mk-bg: #0A0A0A;
  --mk-blue: #00CDFF;
  --mk-green: #03FF00;
  --mk-pink: #FF0077;
  --mk-purple: #9420FF;
  --mk-purple-grad-start: #8500FF;
  --mk-border: #262626;
  --mk-input-border: #3A3A3A;
  --mk-white: #FFFFFF;
  --mk-secondary: rgba(255,255,255,0.78);
  --mk-tertiary: rgba(255,255,255,0.65);
  --mk-header-bg: rgba(10,10,10,0.92);
  --mk-display: 'Anton', 'Acier BAT', sans-serif; /* TODO: license Acier BAT */
  --mk-body: 'Inter', sans-serif;
  --mk-pixel: 'Silkscreen', monospace;
  background: var(--mk-bg) !important;
  color: var(--mk-white) !important;
  scroll-behavior: smooth;
}

body.mk-page-body main {
  background: var(--mk-bg);
  color: var(--mk-white);
}

/* ---- Marketing Layout ---- */
body.mk-page-body { background: var(--mk-bg); }
body.mk-page-body .mk-main {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 200px 24px 60px 292px; /* leave 268px for sticky TOC + 24px gap */
  min-height: 100vh;
  box-sizing: border-box;
}
.mk-main > * { max-width: 1085px; } /* keeps content within ~1155px including padding */

@media (max-width: 1100px) {
  body.mk-page-body .mk-main { padding: 140px 24px 60px; }
  .mk-main > * { max-width: none; }
}
@media (max-width: 768px) {
  body.mk-page-body .mk-main { padding: 100px 16px 40px; }
}

/* ---- Marketing Header ---- */
.mk-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--mk-header-bg, rgba(10,10,10,0.92));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mk-border);
  height: 92px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.mk-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.mk-logo:hover { text-decoration: none; }
.mk-logo__primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27.84px;
  line-height: 25px;
  letter-spacing: 3.16px;
  color: var(--mk-white);
}
.mk-logo__secondary {
  font-family: 'Silkscreen', monospace;
  font-size: 11.39px;
  line-height: 17px;
  letter-spacing: 3.8px;
  color: var(--mk-white);
  opacity: 0.9;
  text-transform: uppercase;
}
.mk-nav { display: flex; gap: 37px; align-items: center; }
.mk-nav a {
  font-family: var(--mk-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mk-tertiary);
  text-decoration: none;
  transition: color .2s;
}
.mk-nav a.active { color: var(--mk-white); }
.mk-nav a:hover { color: var(--mk-white); text-decoration: none; }
.mk-menu-btn { display: none; width: 32px; height: 32px; background: none; border: none; padding: 0; cursor: pointer; margin-left: auto; }
.mk-menu-btn svg { width: 100%; height: 100%; stroke: var(--mk-white); }

.mk-mobile-nav {
  position: fixed;
  inset: 92px 0 0 0;
  background: var(--mk-bg);
  z-index: 99;
  padding: 32px;
  transform: translateY(-110%);
  transition: transform .3s;
  border-top: 1px solid var(--mk-border);
}
.mk-mobile-nav.open { transform: translateY(0); }
.mk-mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--mk-body);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--mk-border);
  color: var(--mk-white);
  text-decoration: none;
}

/* ---- Marketing Footer ---- */
.mk-footer {
  border-top: 1px solid var(--mk-border);
  padding: 48px 32px;
  background: var(--mk-bg);
}
.mk-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.mk-footer__nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.mk-footer__nav a {
  font-family: var(--mk-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mk-secondary);
  text-decoration: none;
}
.mk-footer__nav a:hover { color: var(--mk-white); }
.mk-footer__copy {
  font-family: var(--mk-body);
  font-size: 12px;
  color: var(--mk-tertiary);
  margin: 0;
}

/* ---- Marketing TOC (left sticky nav) ---- */
.mk-toc {
  position: fixed;
  left: max(24px, calc((100vw - 1440px) / 2 + 24px));
  top: 180px;
  width: 220px;
  padding: 20px;
  z-index: 50;
}
.mk-toc__list { list-style: none; display: flex; flex-direction: column; gap: 4px; padding: 0; margin: 0; }
.mk-toc__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  font-family: var(--mk-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a8a8a8;
  text-decoration: none;
  transition: color .2s;
}
.mk-toc__item::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--mk-input-border);
  transition: width .2s, background .2s;
}
.mk-toc__item:hover { color: var(--mk-white); }
.mk-toc__item--active { color: var(--mk-white); }
.mk-toc__item--active::before { width: 22px; background: var(--mk-blue); }
.mk-toc__cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  border: 1px solid var(--mk-blue);
  background: rgba(0,205,255,0.08);
  border-radius: 6px;
  font-family: var(--mk-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mk-blue);
  text-decoration: none;
}
.mk-toc__cta:hover { background: rgba(0,205,255,0.18); text-decoration: none; }

@media (max-width: 1100px) {
  .mk-toc { display: none; }
  .mk-nav { display: none; }
  .mk-menu-btn { display: block; }
}
@media (max-width: 768px) {
  .mk-header { padding: 0 16px; }
}

/* ---- Marketing Typography ---- */
.mk-hairline {
  font-family: var(--mk-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mk-tertiary);
  margin: 0;
}
.mk-hairline--cyan { color: var(--mk-blue); }
.mk-hairline--secondary { color: var(--mk-secondary); }

.mk-h1, .mk-h2, .mk-h3, .mk-h4 {
  font-family: var(--mk-display);
  font-weight: 400;
  color: var(--mk-white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0;
}
.mk-h1 { font-size: 80px; line-height: 70px; letter-spacing: 1px; }
.mk-h2 { font-size: 60px; line-height: 60px; }
.mk-h3 { font-size: 40px; line-height: 60px; letter-spacing: 0.4px; }
.mk-h4 { font-size: 22px; line-height: 28px; letter-spacing: 1.2px; }

.mk-h1 .accent, .mk-h2 .accent, .mk-h3 .accent,
.mk-h1 strong, .mk-h2 strong, .mk-h3 strong { color: var(--mk-blue); font-weight: inherit; }
.mk-h1 .dollar, .mk-h2 .dollar, .mk-h3 .dollar,
.mk-h1 em, .mk-h2 em, .mk-h3 em {
  font-family: var(--mk-body);
  font-weight: 700;
  font-size: 0.75em;
  font-style: normal;
}

.mk-subheader { font-weight: 600; font-size: 20px; line-height: 32.5px; color: var(--mk-white); margin: 0; }
.mk-subheader-md { font-weight: 500; font-size: 18px; line-height: 32.5px; color: var(--mk-secondary); margin: 0; }
.mk-body { font-size: 16px; line-height: 26px; color: var(--mk-secondary); margin: 0; }
.mk-small { font-size: 14px; line-height: 26px; color: var(--mk-tertiary); margin: 0; }

.mk-section {
  padding: 80px 0;
}
.mk-section + .mk-section { border-top: 1px solid var(--mk-border); }

.mk-section-head { margin-bottom: 40px; }
.mk-section-head .mk-hairline { margin-bottom: 24px; }
.mk-section-head h2 { margin-bottom: 32px; }
.mk-section-head p { max-width: 760px; }

/* ---- Marketing Buttons ---- */
.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--mk-blue);
  color: var(--mk-bg);
  font-family: var(--mk-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.mk-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,205,255,0.25); text-decoration: none; color: var(--mk-bg); }
.mk-btn--ghost { background: transparent; color: var(--mk-white); padding-left: 0; padding-right: 0; }
.mk-btn--ghost:hover { color: var(--mk-white); box-shadow: none; transform: none; }
.mk-btn--ghost::after { content: '→'; margin-left: 12px; color: var(--mk-white); }

/* ---- HERO (shared base) ---- */
.mk-hero { position: relative; padding-bottom: 60px; border-bottom: 1px solid var(--mk-border); }
.mk-hero__title { margin-top: 42px; max-width: 760px; }
.mk-hero__copy { margin-top: 30px; max-width: 758px; }
.mk-hero__copy .mk-subheader { margin-bottom: 6px; }
.mk-hero__cta { margin-top: 32px; }

.mk-hero__side {
  position: absolute; right: 0; top: 0; width: 192px;
}
.mk-hero__side img { width: 100%; height: auto; }

.mk-hero__mosaic {
  position: absolute; right: -24px; top: -33px;
  display: grid; grid-template-columns: repeat(3, 118px);
  gap: 4px; width: 360px; height: 510px;
}
.mk-hero__mosaic img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
}

.mk-stats {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--mk-border);
  display: flex;
  gap: 55px;
  flex-wrap: wrap;
}
.mk-stat__num {
  font-weight: 600; font-size: 35px; line-height: 1.1;
  letter-spacing: 0.99px; color: var(--mk-blue);
  margin-bottom: 8px;
}
.mk-stat__num--green { color: var(--mk-green); }
.mk-stat__num--white { color: var(--mk-white); }
.mk-stat__label {
  font-size: 16px; line-height: 32.5px; color: var(--mk-secondary);
}

/* ---- GRADIENT STATS ---- */
.mk-grad-stats { display: flex; gap: 70px; flex-wrap: wrap; margin-top: 16px; }
.mk-grad-stat { display: flex; gap: 32px; align-items: stretch; min-height: 166px; }
.mk-grad-stat__bar { width: 7px; border-radius: 4px; flex-shrink: 0; }
.mk-grad-stat--green .mk-grad-stat__bar { background: linear-gradient(180deg, #03FF00 0%, #1DA01C 100%); }
.mk-grad-stat--pink .mk-grad-stat__bar { background: linear-gradient(180deg, #8500FF 0%, #FF0077 100%); }
.mk-grad-stat--blue .mk-grad-stat__bar { background: linear-gradient(180deg, #00CDFF 0%, #247B97 100%); }
.mk-grad-stat__body { display: flex; flex-direction: column; gap: 16px; padding: 32px 0 24px; max-width: 290px; }
.mk-grad-stat__num {
  font-weight: 600; font-size: 50px; line-height: 28px;
  letter-spacing: 1.2px; color: var(--mk-green);
}
.mk-grad-stat--pink .mk-grad-stat__num { color: var(--mk-pink); }
.mk-grad-stat--blue .mk-grad-stat__num { color: var(--mk-blue); }
.mk-grad-stat__head {
  font-family: var(--mk-body);
  font-weight: 600; font-size: 18px; line-height: 28px; color: var(--mk-white);
  margin: 0;
}
.mk-grad-stat__sub {
  font-family: var(--mk-body);
  font-weight: 500; font-size: 16px; line-height: 20px; color: var(--mk-tertiary);
  margin: 0;
}

/* ---- SOCIAL PROOF (Bars layout) ---- */
.mk-social-proof__head {
  display: flex; gap: 136px; align-items: flex-start;
  margin-bottom: 82px; flex-wrap: wrap;
}
.mk-social-proof__head-text { flex: 1; min-width: 300px; max-width: 583px; }
.mk-social-proof__head-text h2 { margin: 24px 0; }

.mk-stat-card {
  flex: 0 0 358px;
  padding: 20px;
  background: linear-gradient(155deg, rgba(0,205,255,0.08) 0%, rgba(36,123,151,0.04) 100%);
  border-radius: 12px;
}
.mk-stat-card__num {
  font-weight: 600; font-size: 60px; line-height: 56.87px;
  letter-spacing: 1px; color: var(--mk-blue); margin-bottom: 24px;
}
.mk-stat-card__label {
  font-family: var(--mk-body);
  font-weight: 600; font-size: 15px; line-height: 24px; color: var(--mk-white);
  margin: 0;
}

/* ---- SOCIAL GRID (Bars: 4 cards) ---- */
.mk-social-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.mk-social-card {
  aspect-ratio: 244/460; border-radius: 7px; overflow: hidden;
  position: relative; background: #1a1a1a;
}
.mk-social-card img { width: 100%; height: 100%; object-fit: cover; }
.mk-social-card__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.95) 100%);
}
.mk-social-card__icon {
  position: absolute; top: 6px; right: 6px;
  width: 32px; height: 32px; opacity: 0.9; color: var(--mk-white);
}
.mk-social-card__count {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 7px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.45px; color: var(--mk-white);
}
.mk-social-card__count svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- VIDEO SECTION ---- */
.mk-video-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.mk-video-text { max-width: 430px; }
.mk-video-text .mk-hairline { margin-bottom: 24px; }
.mk-video-text h2 { margin-bottom: 24px; }
.mk-video-wrap {
  aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  position: relative; background: #111; cursor: pointer;
}
.mk-video-wrap img, .mk-video-wrap iframe {
  width: 100%; height: 100%; object-fit: cover; border: 0;
}
.mk-video-wrap__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(0,0,0,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mk-video-wrap__play svg { width: 32px; height: 32px; fill: var(--mk-white); margin-left: 4px; }

/* ---- PROCESS STEPS ---- */
.mk-process { text-align: center; }
.mk-process__head { margin: 0 auto 60px; max-width: 636px; }
.mk-process__head h2 { margin-top: 32px; }
.mk-process__steps {
  display: grid;
  grid-template-columns: repeat(var(--mk-step-cols, 4), 1fr);
  gap: 50px; margin-bottom: 60px; text-align: left;
}
.mk-step__num {
  font-weight: 600; font-size: 45px; line-height: 56.87px;
  letter-spacing: 1px; color: var(--mk-blue); margin-bottom: 4px;
}
.mk-step__title {
  font-family: var(--mk-display); font-size: 22px; line-height: 24px;
  font-weight: 400;
  color: var(--mk-white); text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: 1.2px;
}
.mk-step__copy {
  font-family: var(--mk-body);
  font-size: 14px; line-height: 26px; color: var(--mk-tertiary);
  margin: 0;
}

/* ---- GRADIENT CARDS (Why It Works in bars) ---- */
.mk-grad-cards {
  display: grid; grid-template-columns: repeat(var(--mk-card-cols, 2), 1fr); gap: 18px;
}
.mk-grad-card {
  border: 1px solid var(--mk-border);
  border-radius: 14px; overflow: hidden;
}
.mk-grad-card::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, var(--mk-purple-grad-start), var(--mk-pink));
}
.mk-grad-card__body { padding: 20px; }
.mk-grad-card h4 { margin-bottom: 16px; }
.mk-grad-card h4 .grad-eq {
  background: linear-gradient(90deg, var(--mk-purple-grad-start), var(--mk-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mk-grad-card p {
  font-family: var(--mk-body);
  font-size: 14px; line-height: 26px; color: var(--mk-secondary); margin: 0;
}

.mk-why-works {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start;
}
.mk-why-works__head { max-width: 491px; }
.mk-why-works__head .mk-hairline { margin-bottom: 24px; }
.mk-why-works__head h2 { margin-bottom: 24px; }

/* ---- AUDIENCE CARDS (Referral) ---- */
.mk-audience-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ---- SOCIAL PROOF (Referral side layout) ---- */
.mk-social-proof-side {
  display: grid; grid-template-columns: 418px 1fr;
  gap: 16px; align-items: center;
}
.mk-social-proof-side__stat {
  padding: 30px; border-radius: 12px;
  background: linear-gradient(150deg, rgba(0,205,255,0.08) 0%, rgba(36,123,151,0.04) 100%);
  text-align: center;
}
.mk-social-proof-side__num {
  font-weight: 600; font-size: 60px; line-height: 56.87px;
  letter-spacing: 1px; color: var(--mk-blue); margin-bottom: 24px;
}
.mk-social-proof-side__label {
  font-family: var(--mk-body);
  font-weight: 600; font-size: 15px; line-height: 24px; color: var(--mk-white); margin: 0;
}
.mk-social-proof-side__text { padding-left: 100px; max-width: 600px; }

/* ---- PITCH QUOTE ---- */
.mk-pitch { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mk-pitch__text { max-width: 500px; }
.mk-pitch__text .mk-hairline { margin-bottom: 24px; }
.mk-pitch__text h2 { margin-bottom: 24px; }
.mk-pitch__cta-line {
  margin-top: 40px;
  font-family: var(--mk-display); font-size: 22px; line-height: 45px;
  text-transform: uppercase; color: var(--mk-white);
}
.mk-pitch__quote {
  background: linear-gradient(143deg, rgba(133,0,255,0.08) 0%, rgba(255,0,119,0.04) 100%);
  border-radius: 14px; padding: 40px; text-align: center; position: relative;
}
.mk-pitch__quote-label {
  font-family: var(--mk-display); font-size: 20px; line-height: 45px;
  text-transform: uppercase; color: var(--mk-purple); margin-bottom: 24px;
}
.mk-pitch__quote-mark {
  font-family: var(--mk-display); font-size: 50px; line-height: 30px;
  color: var(--mk-purple);
}
.mk-pitch__quote-mark--right { text-align: right; }
.mk-pitch__quote-body {
  font-family: var(--mk-body);
  font-size: 18px; line-height: 40px; color: var(--mk-white);
  text-align: center; margin: 12px 0;
}

/* ---- PAYOUT ---- */
.mk-payout {
  display: grid; grid-template-columns: 1fr 418px;
  gap: 60px; align-items: start;
}
.mk-payout__text .mk-hairline { margin-bottom: 24px; }
.mk-payout__text h2 { margin-bottom: 32px; }
.mk-payout__list { list-style: none; display: flex; flex-direction: column; gap: 24px; max-width: 400px; padding: 0; }
.mk-payout__list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-family: var(--mk-body);
  font-size: 16px; line-height: 19.5px; color: var(--mk-secondary);
}
.mk-payout__list li::before {
  content: ''; display: block;
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--mk-green); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%230A0A0A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}
.mk-payout__card {
  padding: 40px 30px; border-radius: 12px;
  background: linear-gradient(149deg, rgba(3,255,0,0.08) 0%, rgba(29,160,28,0.04) 100%);
  text-align: left;
}
.mk-payout__amount {
  font-weight: 600; font-size: 60px; line-height: 56.87px;
  letter-spacing: 1px; color: var(--mk-green); margin-bottom: 24px;
}
.mk-payout__label {
  font-family: var(--mk-body);
  font-weight: 600; font-size: 14px; line-height: 18px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--mk-green); margin: 0;
}

/* ---- LEAD FORM ---- */
.mk-form-section .mk-hairline { color: var(--mk-blue); margin-bottom: 24px; }
.mk-form-section h2 { margin-bottom: 24px; max-width: 680px; }
.mk-form-section .mk-subheader-md { max-width: 550px; margin-bottom: 32px; }
.mk-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 50px; max-width: 1100px;
}
.mk-form__col-head {
  font-family: var(--mk-body);
  font-weight: 600; font-size: 12px; line-height: 18px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mk-blue);
}
.mk-form__field { display: flex; flex-direction: column; gap: 8px; }
.mk-form__field--full { grid-column: 1 / -1; }
.mk-form__label {
  font-family: var(--mk-body);
  font-weight: 600; font-size: 11px; line-height: 16.5px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--mk-secondary);
}
.mk-form__input {
  background: var(--mk-bg);
  border: 1px solid var(--mk-input-border);
  border-radius: 8px; padding: 14px 16px;
  color: var(--mk-white); font-family: inherit;
  font-size: 15px; line-height: 1.4;
  transition: border-color .2s;
}
.mk-form__input::placeholder { color: rgba(255,255,255,0.55); }
.mk-form__input:focus { outline: none; border-color: var(--mk-blue); }
.mk-form__submit { width: 100%; max-width: 364px; margin-top: 16px; }
.mk-form__status { grid-column: 1 / -1; min-height: 24px; margin-top: 8px; font-size: 14px; }
.mk-form__status--success { color: var(--mk-green); }
.mk-form__status--error { color: var(--mk-pink); }

/* ---- FAQ ---- */
.mk-faq__head { text-align: center; margin-bottom: 48px; }
.mk-faq__head .mk-hairline { color: var(--mk-blue); margin-bottom: 24px; }
.mk-faq__head h2 { margin-bottom: 24px; }
.mk-faq__head p { max-width: 680px; margin: 0 auto; }
.mk-faq__list { max-width: 980px; margin: 0 auto; padding: 0 90px; }
.mk-faq__item { border-bottom: 1px solid var(--mk-border); }
.mk-faq__item:last-child { border-bottom: none; }
.mk-faq__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-family: var(--mk-body);
  font-weight: 600; font-size: 18px; line-height: 25.5px; color: var(--mk-white);
  text-align: left;
  background: none; border: none; cursor: pointer;
}
.mk-faq__plus {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--mk-input-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #B0B0B0; font-size: 16px; font-weight: 600;
  transition: transform .2s, background .2s, color .2s;
}
.mk-faq__item.open .mk-faq__plus {
  transform: rotate(45deg);
  background: var(--mk-blue); color: var(--mk-bg); border-color: var(--mk-blue);
}
.mk-faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mk-faq__answer-inner {
  padding: 0 0 24px;
  font-family: var(--mk-body);
  font-size: 16px; line-height: 26px; color: var(--mk-secondary);
}
.mk-faq__item.open .mk-faq__answer { max-height: 600px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  body.mk-page-body .mk-hero__side,
  body.mk-page-body .mk-hero__mosaic { display: none; }
  .mk-social-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-video-section { grid-template-columns: 1fr; }
  .mk-why-works { grid-template-columns: 1fr; gap: 40px; }
  .mk-process__steps { grid-template-columns: repeat(2, 1fr); }
  .mk-form { grid-template-columns: 1fr; gap: 24px; }
  .mk-audience-cards { grid-template-columns: 1fr 1fr; }
  .mk-social-proof-side { grid-template-columns: 1fr; gap: 40px; }
  .mk-social-proof-side__text { padding-left: 0; }
  .mk-pitch { grid-template-columns: 1fr; }
  .mk-payout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mk-h1 { font-size: 56px; line-height: 51.52px; letter-spacing: 0; }
  .mk-h2 { font-size: 44px; line-height: 45px; }
  .mk-h3 { font-size: 30px; line-height: 45px; }
  .mk-hairline { font-size: 12px; color: var(--mk-secondary); }
  .mk-stats { gap: 32px; flex-direction: column; align-items: flex-start; }
  .mk-stat__label { line-height: 20px; max-width: 246px; }
  .mk-grad-stats { gap: 50px; flex-direction: column; }
  .mk-social-proof__head { gap: 30px; flex-direction: column; }
  .mk-stat-card { flex: 1 0 100%; }
  .mk-social-grid { grid-template-columns: 1fr; }
  .mk-grad-cards { grid-template-columns: 1fr; }
  .mk-audience-cards { grid-template-columns: 1fr; gap: 24px; }
  .mk-process__steps { grid-template-columns: 1fr; gap: 20px; }
  .mk-pitch__quote { padding: 24px 16px; }
  .mk-pitch__quote-body { font-size: 16px; line-height: 32px; }
  .mk-faq__list { padding: 0; }
  .mk-faq__btn { font-size: 15px; }
}
