:root {
  --orange: #ff4f00;
  --white: #f4f2ef;
  --muted: #aaa7a3;
  --line: #292929;
  --page-width: 75vw;
}

* { box-sizing: border-box; }
html { background: #050505; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #050505;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mk-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 12px 16px;
  transform: translateY(-160%);
  border: 1px solid var(--orange);
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.mk-skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.mk-footer-channel-pending {
  cursor: default;
  opacity: .72;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.mk-container {
  width: var(--page-width);
  margin-inline: auto;
}

.mk-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: var(--page-width);
  height: 108px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 0;
  background: rgba(5, 5, 5, .70);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.mk-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 40px;
}
.mk-logo {
  width: clamp(210px, 14vw, 278px);
  transform: translateX(10px);
}
.mk-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}
.mk-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3vw, 60px);
}
.mk-nav a,
.mk-head-cta {
  font-size: clamp(10px, .72vw, 14px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mk-nav a:hover { color: var(--orange); }
.mk-head-cta {
  width: clamp(210px, 14.5vw, 286px);
  height: 54px;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid var(--orange);
  color: var(--orange);
  text-shadow: -1px -1px 0 rgba(0,0,0,.95), 1px -1px 0 rgba(0,0,0,.95), -1px 1px 0 rgba(0,0,0,.95), 1px 1px 0 rgba(0,0,0,.95), 0 0 8px rgba(0,0,0,.96), 0 0 14px rgba(255,79,0,.24);
  box-shadow:
    0 16px 32px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -2px 0 rgba(0,0,0,.36);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}
.mk-head-cta:hover {
  background: var(--orange);
  color: #fff;
  box-shadow:
    0 24px 48px rgba(0,0,0,.6),
    0 0 44px rgba(255,79,0,.34),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -2px 0 rgba(117,31,0,.52);
  transform: translateY(-1px);
}
.mk-head-cta:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(0,0,0,.58),
    inset 0 2px 4px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.mk-head-cta span,
.mk-btn span {
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.95),
    1px -1px 0 rgba(0,0,0,.95),
    -1px 1px 0 rgba(0,0,0,.95),
    1px 1px 0 rgba(0,0,0,.95),
    0 0 8px rgba(0,0,0,.96),
    0 0 14px rgba(255,79,0,.24);
}

.mk-head-cta,
.mk-btn,
.mk-head-cta span,
.mk-btn span,
.mk-email button {
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.98),
    1px -1px 0 rgba(0,0,0,.98),
    -1px 1px 0 rgba(0,0,0,.98),
    1px 1px 0 rgba(0,0,0,.98),
    0 -1px 0 rgba(0,0,0,.98),
    0 1px 0 rgba(0,0,0,.98),
    -1px 0 0 rgba(0,0,0,.98),
    1px 0 0 rgba(0,0,0,.98),
    0 0 10px rgba(0,0,0,1),
    0 0 16px rgba(255,79,0,.26);
}

.mk-hero {
  position: relative;
  width: var(--page-width);
  min-height: clamp(550px, 36.5vw, 680px);
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
  background-color: #070707;
  background-image: url("assets/mockup-hero.jpg?v=125");
  background-position: right center;
  background-size: auto 112%;
  background-repeat: no-repeat;
}
.mk-battery-badge {
  position: absolute;
  z-index: 1;
  top: 29.4%;
  left: 72.5%;
  width: clamp(118px, 9.3vw, 180px);
  height: clamp(34px, 2.7vw, 52px);
  display: flex;
  align-items: center;
  gap: clamp(3px, .3vw, 6px);
  padding: 0 clamp(6px, .5vw, 10px);
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 2px;
  background: rgba(5,5,5,.82);
  color: #eee;
  font-family: Arial, sans-serif;
  font-style: normal;
  transform: rotate(-1deg);
  box-shadow: inset 0 0 10px #000;
}
.mk-battery-badge b {
  padding: 2px 3px;
  background: #f2f2ef;
  color: #d32117;
  font-size: clamp(9px, .72vw, 14px);
  line-height: 1;
}
.mk-battery-badge span {
  color: #e52d20;
  font-size: clamp(7px, .55vw, 11px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.04em;
}
.mk-battery-badge em {
  color: #ddd;
  font-size: clamp(6px, .48vw, 9px);
  font-weight: 700;
  white-space: nowrap;
}
.mk-hero-inner {
  min-height: inherit;
  display: flex;
  align-items: flex-start;
}
.mk-hero-copy {
  width: 48%;
  padding-top: 48px;
}
.mk-label {
  margin: 0 0 28px;
  color: var(--orange);
  font-size: clamp(11px, .78vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mk-hero h1 {
  margin: 0 0 32px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(68px, 5.45vw, 108px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.mk-hero h1 span {
  display: block;
  width: 123%;
  white-space: nowrap;
  transform: scaleX(.81);
  transform-origin: left center;
}
.mk-hero-text {
  margin: 0;
  color: #b8b5b1;
  font-size: clamp(16px, 1.08vw, 21px);
  line-height: 1.55;
}
.mk-actions {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}
.mk-btn {
  width: clamp(210px, 15vw, 300px);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border: 1px solid var(--orange);
  font-size: clamp(11px, .78vw, 15px);
  font-weight: 700;
  text-shadow: -1px -1px 0 rgba(0,0,0,.95), 1px -1px 0 rgba(0,0,0,.95), -1px 1px 0 rgba(0,0,0,.95), 1px 1px 0 rgba(0,0,0,.95), 0 0 8px rgba(0,0,0,.96), 0 0 14px rgba(255,79,0,.24);
  text-transform: uppercase;
  box-shadow:
    0 16px 32px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -2px 0 rgba(0,0,0,.36);
  transition: filter .18s ease, box-shadow .18s ease, transform .18s ease;
}
.mk-btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow:
    0 20px 40px rgba(0,0,0,.52),
    0 0 40px rgba(255,79,0,.24),
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 -2px 0 rgba(117,31,0,.5);
}
.mk-btn-dark { background: #070707; }
.mk-btn:hover {
  filter: brightness(1.12);
  box-shadow:
    0 24px 48px rgba(0,0,0,.6),
    0 0 44px rgba(255,79,0,.3),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -2px 0 rgba(0,0,0,.44);
  transform: translateY(-1px);
}
.mk-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(0,0,0,.58),
    inset 0 2px 4px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.mk-mini-proof {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}
.mk-mini-proof article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 0 24px;
  border-left: 1px solid #303030;
}
.mk-mini-proof article:first-child { padding-left: 0; border-left: 0; }
.mk-mini-proof svg { width: 38px; }
.mk-mini-proof strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.mk-mini-proof span {
  display: block;
  color: #9b9894;
  font-size: clamp(9px, .63vw, 12px);
  line-height: 1.5;
}

.mk-stats {
  width: var(--page-width);
  height: 126px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, #242424, #151515 55%, #252525);
}
.mk-stats-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.mk-stats article {
  height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #555;
}
.mk-stats article:first-child { border-left: 0; }
.mk-stats strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 2.4vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-stats span {
  margin-top: 10px;
  font-size: clamp(9px, .67vw, 13px);
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.mk-rating-stat b {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: clamp(17px, 1.35vw, 26px);
  letter-spacing: .06em;
  line-height: 1;
}
.mk-us-flag {
  position: relative;
  width: clamp(42px, 3vw, 60px);
  aspect-ratio: 1.55 / 1;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: repeating-linear-gradient(
    to bottom,
    #e7473c 0 7.7%,
    #f5f4ef 7.7% 15.4%
  );
}
.mk-us-flag::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 44%;
  height: 54%;
  background:
    radial-gradient(circle, #fff 0 1px, transparent 1.3px) 0 0 / 7px 7px,
    #27477b;
}

.mk-products {
  width: var(--page-width);
  margin-inline: auto;
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--line);
}
.mk-products .mk-label { margin-bottom: 14px; }
.mk-products h2,
.mk-process h2,
.mk-signup h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 3.15vw, 62px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 14px;
}
.mk-product-image {
  aspect-ratio: 1.52 / 1;
  display: block;
  overflow: hidden;
  background: #111;
}
.mk-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.mk-product-image:hover img { transform: scale(1.025); }
.mk-product-copy {
  width: fit-content;
  min-width: 72%;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}
.mk-product-grid h3 {
  margin: 12px 0 6px;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mk-product-grid p {
  min-height: 52px;
  margin: 0;
  color: #a9a6a2;
  font-size: clamp(12px, .86vw, 16px);
  line-height: 1.5;
}
.mk-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  color: var(--orange);
  font-size: clamp(10px, .72vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
}
.mk-link span { font-size: 22px; }

.mk-process {
  width: var(--page-width);
  height: clamp(330px, 22.5vw, 395px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 50% 50%;
  border-bottom: 1px solid var(--line);
}
.mk-process-copy {
  padding: 34px 36px 26px 0;
}
.mk-process .mk-label { margin-bottom: 17px; }
.mk-process h2 { font-size: clamp(40px, 3vw, 59px); white-space: nowrap; }
.mk-process-copy > p:not(.mk-label) {
  margin: 9px 0 20px;
  color: #aaa7a3;
  font-size: clamp(12px, .83vw, 16px);
  line-height: 1.5;
}
.mk-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.mk-steps li { position: relative; text-align: center; }
.mk-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--orange);
}
.mk-steps svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  color: #ddd;
}
.mk-steps strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-steps span {
  display: block;
  margin-top: 7px;
  color: #aaa7a3;
  font-size: clamp(9px, .6vw, 12px);
  line-height: 1.35;
}
.mk-process-image {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.mk-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-features {
  width: var(--page-width);
  min-height: 126px;
  margin-inline: auto;
  border-bottom: 1px solid #373737;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,.015) 2px 3px),
    linear-gradient(100deg, #252525, #161616, #282828);
}
.mk-features-grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.mk-features article {
  min-height: 74px;
  display: grid;
  grid-template-columns: 52px auto;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-left: 1px solid #555;
}
.mk-features article:first-child { border-left: 0; }
.mk-features svg { width: 52px; color: #ddd; }
.mk-features strong {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(10px, .7vw, 14px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mk-features span {
  display: block;
  color: #b5b1ad;
  font-size: clamp(10px, .67vw, 13px);
  line-height: 1.5;
}

.mk-signup {
  width: var(--page-width);
  min-height: 190px;
  margin: 26px auto 18px;
  padding: 28px 42px;
  display: grid;
  grid-template-columns: minmax(0, 51fr) minmax(0, 49fr);
  align-items: center;
  gap: 40px;
  border: 1px solid #6c2c10;
  background:
    linear-gradient(90deg, rgba(8,8,8,.83), rgba(8,8,8,.97)),
    url("assets/mockup-tool-rack.jpg?v=79") center / cover;
}
.mk-signup-form { min-width: 0; }
.mk-signup .mk-label { margin-bottom: 14px; }
.mk-signup h2 { font-size: clamp(39px, 3vw, 58px); white-space: nowrap; }
.mk-signup p:not(.mk-label) {
  margin: 8px 0 0;
  color: #aaa7a3;
  font-size: clamp(12px, .8vw, 16px);
  line-height: 1.5;
}
.mk-email {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr 83px;
  align-items: center;
  border: 1px solid #555;
  background: #141414;
}
.mk-email input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 24px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: clamp(12px, .85vw, 16px);
}
.mk-email input::placeholder { color: #aaa; opacity: 1; }
.mk-email button {
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: var(--orange);
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  box-shadow:
    0 16px 32px rgba(0,0,0,.48),
    0 0 36px rgba(255,79,0,.2),
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -2px 0 rgba(117,31,0,.5);
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.95),
    1px -1px 0 rgba(0,0,0,.95),
    -1px 1px 0 rgba(0,0,0,.95),
    1px 1px 0 rgba(0,0,0,.95),
    0 0 8px rgba(0,0,0,.96),
    0 0 14px rgba(255,79,0,.24);
}
.mk-email button:hover {
  filter: brightness(1.12);
  box-shadow:
    0 24px 48px rgba(0,0,0,.6),
    0 0 44px rgba(255,79,0,.3),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -2px 0 rgba(117,31,0,.52);
}
.mk-botcheck {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.mk-signup-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding-left: 2px;
  color: #aaa;
  font-size: clamp(8px, .58vw, 11px);
  line-height: 1.35;
}
.mk-signup-consent input {
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--orange);
}
.mk-signup-consent a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mk-signup-checks {
  display: flex;
  gap: clamp(18px, 2vw, 36px);
  margin-top: 16px;
}
.mk-signup-checks span {
  position: relative;
  padding-left: 25px;
  color: #bbb;
  font-size: clamp(9px, .65vw, 13px);
}
.mk-signup-checks span::before {
  content: "✓";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 10px;
}

.mk-footer {
  width: var(--page-width);
  margin-inline: auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}
.mk-footer .mk-container {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 22px clamp(32px, 4vw, 70px);
}
.mk-footer-brand { min-width: 0; }
.mk-footer-brand > img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}
.mk-footer p { margin: 8px 0 0; color: #777; font-size: 11px; }
.mk-footer-sitemap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #aaa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mk-footer-sitemap span { color: var(--orange); font-size: 13px; }
.mk-footer-sitemap:hover { color: #fff; }
.mk-footer nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 11px 20px;
  flex-wrap: wrap;
}
.mk-footer nav a { font-size: 9px; font-weight: 700; text-transform: uppercase; }
.mk-footer-channels {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.mk-footer-channel {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .025);
  color: #aaa;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.mk-footer-channel:hover {
  border-color: var(--orange);
  background: rgba(255, 79, 0, .07);
  color: #fff;
}
.mk-footer-channel > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.mk-footer-channel small {
  color: #666;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 rgba(0,0,0,.95), 1px -1px 0 rgba(0,0,0,.95), -1px 1px 0 rgba(0,0,0,.95), 1px 1px 0 rgba(0,0,0,.95), 0 0 8px rgba(0,0,0,.96), 0 0 12px rgba(255,79,0,.22);
}
.mk-footer-channel strong {
  overflow: hidden;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mk-channel-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  text-shadow: -1px -1px 0 rgba(0,0,0,.95), 1px -1px 0 rgba(0,0,0,.95), -1px 1px 0 rgba(0,0,0,.95), 1px 1px 0 rgba(0,0,0,.95), 0 0 8px rgba(0,0,0,.96), 0 0 14px rgba(255,79,0,.28);
  filter: drop-shadow(1px 0 0 rgba(0,0,0,.85)) drop-shadow(-1px 0 0 rgba(0,0,0,.85)) drop-shadow(0 1px 0 rgba(0,0,0,.85)) drop-shadow(0 -1px 0 rgba(0,0,0,.85));
}
.mk-channel-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.mk-footer-shopify .mk-channel-icon img {
  width: 20px;
  height: 20px;
  opacity: .78;
}
.mk-channel-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mk-channel-icon-orange { color: var(--orange); }
.mk-footer-contact strong {
  font-size: 9px;
  letter-spacing: -.04em;
}

.mk-footer-channel small,
.mk-footer-channel strong,
.mk-channel-icon {
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.98),
    1px -1px 0 rgba(0,0,0,.98),
    -1px 1px 0 rgba(0,0,0,.98),
    1px 1px 0 rgba(0,0,0,.98),
    0 -1px 0 rgba(0,0,0,.98),
    0 1px 0 rgba(0,0,0,.98),
    -1px 0 0 rgba(0,0,0,.98),
    1px 0 0 rgba(0,0,0,.98),
    0 0 10px rgba(0,0,0,1),
    0 0 16px rgba(255,79,0,.24);
}

.mk-channel-icon {
  filter:
    drop-shadow(1px 0 0 rgba(0,0,0,.92))
    drop-shadow(-1px 0 0 rgba(0,0,0,.92))
    drop-shadow(0 1px 0 rgba(0,0,0,.92))
    drop-shadow(0 -1px 0 rgba(0,0,0,.92));
}
.mk-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 2px;
}
.mk-footer-meta p { margin: 0; }
.mk-footer-meta > span {
  color: #777;
  font-size: 10px;
}

.mk-directory {
  width: var(--page-width);
  margin: 34px auto 28px;
  padding: clamp(38px, 4vw, 68px);
  border: 1px solid rgba(255, 79, 0, .32);
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 79, 0, .13), transparent 34%),
    linear-gradient(135deg, #111, #070707 64%);
}
.mk-directory-intro {
  max-width: 760px;
  margin-bottom: 38px;
}
.mk-directory-intro h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(58px, 5.2vw, 92px);
  font-weight: 400;
  line-height: .94;
  text-transform: uppercase;
}
.mk-directory-intro > p:not(.mk-label) {
  max-width: 650px;
  margin: 20px 0 0;
  color: #aaa7a3;
  font-size: clamp(14px, .95vw, 18px);
  line-height: 1.6;
}
.mk-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mk-directory-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .025);
}
.mk-directory-card h2 {
  margin: 0 0 17px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mk-directory-links {
  display: grid;
  gap: 2px;
}
.mk-directory-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 39px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #aaa;
  font-size: 11px;
  font-weight: 600;
}
.mk-directory-links a:last-child { border-bottom: 0; }
.mk-directory-links a::after {
  content: "\2192";
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 15px;
}
.mk-directory-links a:hover { color: #fff; }
.mk-directory-card-wide { grid-column: span 2; }
.mk-directory-card-wide .mk-directory-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.mk-about-hero,
.mk-about-story,
.mk-about-quality,
.mk-about-mission,
.mk-about-cta {
  width: var(--page-width);
  margin-inline: auto;
}
.mk-about-hero {
  min-height: 540px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
  border: 1px solid rgba(255, 79, 0, .35);
  background: linear-gradient(135deg, #111, #050505 70%);
}
.mk-about-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 4.2vw, 72px);
}
.mk-about-hero h1,
.mk-about-story h2,
.mk-about-quality h2,
.mk-about-mission h2,
.mk-about-cta h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: .96;
  text-transform: uppercase;
}
.mk-about-hero h1 { font-size: clamp(62px, 5.1vw, 92px); }
.mk-about-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: #aaa7a3;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.55;
}
.mk-about-actions { display: flex; gap: 14px; margin-top: 28px; }
.mk-founder-standard {
  max-width: 560px;
  margin: 34px 0 0;
  padding: 18px 20px;
  border-left: 2px solid var(--orange);
  background: rgba(255, 255, 255, .035);
}
.mk-founder-standard span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mk-founder-standard p {
  margin: 7px 0 0;
  color: #ddd;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(20px, 1.55vw, 29px);
  line-height: 1.08;
  text-transform: uppercase;
}
.mk-about-hero-image { position: relative; min-width: 0; }
.mk-about-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, transparent 35%), linear-gradient(0deg, rgba(0,0,0,.3), transparent 45%);
}
.mk-about-hero-image > img { width: 100%; height: 100%; object-fit: cover; }
.mk-about-hero-image > div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}
.mk-about-hero-image > div span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(5,5,5,.72);
  color: #ddd;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mk-about-proof {
  width: var(--page-width);
  margin: 0 auto;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  background: linear-gradient(90deg, #242424, #141414, #242424);
}
.mk-about-proof .mk-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mk-about-proof article {
  min-height: 90px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #555;
}
.mk-about-proof article:first-child { border-left: 0; }
.mk-about-proof strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.mk-about-proof span { margin-top: 3px; color: #aaa; font-size: 10px; }
.mk-about-story {
  margin-top: 30px;
  padding: clamp(40px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: clamp(36px, 5vw, 82px);
  border: 1px solid rgba(255, 79, 0, .28);
  background: radial-gradient(circle at 0 0, rgba(255,79,0,.1), transparent 30%), #090909;
}
.mk-about-story h2,
.mk-about-quality h2,
.mk-about-mission h2 { font-size: clamp(48px, 4vw, 72px); }
.mk-about-story-copy > p:not(.mk-label),
.mk-about-mission-copy > p:not(.mk-label) {
  margin: 19px 0 0;
  color: #aaa7a3;
  font-size: clamp(13px, .88vw, 17px);
  line-height: 1.72;
}
.mk-about-standards { display: grid; align-content: start; gap: 12px; }
.mk-about-standards article {
  min-height: 145px;
  padding: 22px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
}
.mk-about-standards img { width: 50px; height: 50px; object-fit: contain; }
.mk-about-standards div { display: grid; gap: 8px; }
.mk-about-standards strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-about-standards span { color: #aaa; font-size: 11px; line-height: 1.55; }
.mk-about-quality {
  margin-top: 30px;
  padding: clamp(40px, 4vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mk-about-section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}
.mk-about-section-heading > p:not(.mk-label) {
  max-width: 700px;
  margin: 16px 0 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}
.mk-about-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mk-about-quality-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(145deg, #151515, #090909);
}
.mk-about-quality-grid article > span {
  color: var(--orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
}
.mk-about-quality-grid h3 {
  margin: 28px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-about-quality-grid p { margin: 12px 0 0; color: #aaa; font-size: 11px; line-height: 1.6; }
.mk-about-mission {
  min-height: 480px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 48% 52%;
  border: 1px solid rgba(255,79,0,.28);
  background: #090909;
}
.mk-about-mission-image { min-width: 0; overflow: hidden; }
.mk-about-mission-image img { width: 100%; height: 100%; object-fit: cover; }
.mk-about-mission-copy { padding: clamp(40px, 4vw, 66px); }
.mk-about-signature { margin-top: 30px; display: grid; width: fit-content; }
.mk-about-signature > span {
  color: var(--orange);
  font-family: "Oooh Baby", cursive;
  font-size: 35px;
  line-height: 1;
  transform: rotate(-3deg);
}
.mk-about-signature strong { margin-top: 8px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.mk-about-signature small { margin-top: 3px; color: #777; font-size: 9px; text-transform: uppercase; }
.mk-about-cta {
  margin: 26px auto 18px;
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border: 1px solid #6c2c10;
  background:
    linear-gradient(90deg, rgba(8,8,8,.86), rgba(8,8,8,.96)),
    url("assets/mockup-tool-rack.jpg?v=79") center / cover;
}
.mk-about-cta h2 { font-size: clamp(43px, 3.3vw, 62px); }
.mk-about-cta p:not(.mk-label) { max-width: 620px; margin: 9px 0 0; color: #aaa; font-size: 13px; line-height: 1.55; }
.mk-about-cta-actions { display: flex; gap: 12px; }

.mk-review-hero,
.mk-review-section,
.mk-review-commitment,
.mk-faq-hero,
.mk-faq-directory,
.mk-faq-cta {
  width: var(--page-width);
  margin-inline: auto;
}
.mk-review-hero,
.mk-faq-hero {
  min-height: 520px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border: 1px solid rgba(255,79,0,.35);
  background: linear-gradient(135deg, #111, #050505 70%);
}
.mk-review-hero-copy,
.mk-faq-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 4.2vw, 72px);
}
.mk-review-hero h1,
.mk-faq-hero h1,
.mk-review-section h2,
.mk-review-commitment h2,
.mk-faq-directory h2,
.mk-faq-cta h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: .96;
  text-transform: uppercase;
}
.mk-review-hero h1,
.mk-faq-hero h1 { font-size: clamp(60px, 4.8vw, 88px); }
.mk-review-hero-copy > p:not(.mk-label),
.mk-faq-hero-copy > p:not(.mk-label) {
  max-width: 590px;
  margin: 22px 0 28px;
  color: #aaa7a3;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.55;
}
.mk-review-hero-image,
.mk-faq-hero-image {
  position: relative;
  min-width: 0;
}
.mk-review-hero-image::after,
.mk-faq-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, transparent 30%), linear-gradient(0deg, rgba(0,0,0,.25), transparent 45%);
}
.mk-review-hero-image > img,
.mk-faq-hero-image > img { width: 100%; height: 100%; object-fit: cover; }
.mk-review-quote {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  max-width: 330px;
  padding: 17px 20px;
  border-left: 2px solid var(--orange);
  background: rgba(5,5,5,.82);
}
.mk-review-quote span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mk-review-quote strong {
  display: block;
  margin-top: 5px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}
.mk-review-proof,
.mk-faq-proof {
  width: var(--page-width);
  margin: 0 auto;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  background: linear-gradient(90deg, #242424, #141414, #242424);
}
.mk-review-proof .mk-container,
.mk-faq-proof .mk-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mk-review-proof article,
.mk-faq-proof article {
  min-height: 90px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #555;
}
.mk-review-proof article:first-child,
.mk-faq-proof article:first-child { border-left: 0; }
.mk-review-proof strong,
.mk-faq-proof strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-review-proof span,
.mk-faq-proof span { margin-top: 3px; color: #aaa; font-size: 10px; }

.mk-review-section {
  margin-top: 30px;
  padding: clamp(40px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  gap: clamp(40px, 5vw, 80px);
  border: 1px solid rgba(255,79,0,.28);
  background: radial-gradient(circle at 0 0, rgba(255,79,0,.1), transparent 30%), #090909;
}
.mk-review-section h2,
.mk-review-commitment h2,
.mk-faq-directory h2,
.mk-faq-cta h2 { font-size: clamp(48px, 4vw, 72px); }
.mk-review-intro > p:not(.mk-label) {
  margin: 18px 0 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.68;
}
.mk-review-points { display: grid; gap: 10px; margin-top: 30px; }
.mk-review-points article {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mk-review-points article > span {
  color: var(--orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
}
.mk-review-points strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-review-points p { margin: 3px 0 0; color: #888; font-size: 10px; line-height: 1.45; }
.mk-review-form {
  padding: clamp(24px, 2.5vw, 40px);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, #151515, #080808);
}
.mk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mk-review-form label { display: grid; gap: 8px; }
.mk-review-form label > span:first-child {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mk-review-form input:not([type="checkbox"]),
.mk-review-form select,
.mk-review-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #3a3a3a;
  outline: 0;
  background: #171717;
  color: #eee;
  font: inherit;
  font-size: 13px;
}
.mk-review-form input:not([type="checkbox"]),
.mk-review-form select { height: 52px; padding: 0 15px; }
.mk-review-form textarea { min-height: 150px; padding: 15px; resize: vertical; }
.mk-review-form input:focus,
.mk-review-form select:focus,
.mk-review-form textarea:focus { border-color: var(--orange); }
.mk-review-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px !important;
  color: #999;
  font-size: 9px;
  line-height: 1.5;
}
.mk-review-consent input { margin: 2px 0 0; accent-color: var(--orange); }
.mk-review-consent a { color: var(--orange); text-decoration: underline; }
.mk-review-submit {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  cursor: pointer;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.mk-review-submit:hover { filter: brightness(1.1); }
.mk-review-note { margin: 0; color: #777; font-size: 9px; line-height: 1.5; }
.mk-review-note strong { color: #aaa; }
.mk-review-commitment {
  margin: 26px auto 18px;
  padding: clamp(34px, 3.5vw, 54px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  border: 1px solid #6c2c10;
  background:
    linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.97)),
    url("assets/mockup-tool-rack.jpg?v=79") center / cover;
}
.mk-review-commitment > div:last-child p {
  margin: 0 0 16px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.7;
}

.mk-faq-directory {
  margin-top: 30px;
  padding: clamp(38px, 4vw, 62px);
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: clamp(44px, 6vw, 90px);
  border: 1px solid rgba(255,79,0,.25);
  background: radial-gradient(circle at 0 0, rgba(255,79,0,.08), transparent 27%), #090909;
}
.mk-faq-directory + .mk-faq-directory { margin-top: 18px; }
.mk-faq-heading > p:not(.mk-label) { margin: 15px 0 0; color: #999; font-size: 13px; line-height: 1.6; }
.mk-faq-grid { display: grid; align-content: start; gap: 9px; }
.mk-faq-grid details {
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(135deg, #151515, #0b0b0b);
}
.mk-faq-grid summary {
  min-height: 58px;
  padding: 17px 52px 17px 19px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.mk-faq-grid summary::-webkit-details-marker { display: none; }
.mk-faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 19px;
  color: var(--orange);
  font-size: 22px;
  font-weight: 400;
}
.mk-faq-grid details[open] summary::after { content: "\2212"; }
.mk-faq-grid details[open] summary { border-bottom: 1px solid rgba(255,255,255,.1); }
.mk-faq-grid details p { margin: 0; padding: 17px 19px 20px; color: #aaa; font-size: 11px; line-height: 1.65; }
.mk-faq-cta {
  margin: 26px auto 18px;
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border: 1px solid #6c2c10;
  background:
    linear-gradient(90deg, rgba(8,8,8,.86), rgba(8,8,8,.96)),
    url("assets/mockup-tool-rack.jpg?v=79") center / cover;
}
.mk-faq-cta p:not(.mk-label) { max-width: 700px; margin: 10px 0 0; color: #aaa; font-size: 13px; line-height: 1.55; }

.mk-product-hero,
.mk-product-purchase,
.mk-product-details,
.mk-product-gallery,
.mk-product-before-order,
.mk-product-cta {
  width: var(--page-width);
  margin-inline: auto;
}
.mk-product-hero {
  min-height: 610px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
  border: 1px solid rgba(255,79,0,.38);
  background: linear-gradient(135deg, #111, #050505 72%);
}
.mk-product-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 4.2vw, 72px);
}
.mk-product-hero h1,
.mk-product-purchase h2,
.mk-product-details h2,
.mk-product-gallery h2,
.mk-product-before-order h2,
.mk-product-cta h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}
.mk-product-hero h1 { font-size: clamp(70px, 5.5vw, 102px); }
.mk-product-lead {
  max-width: 570px;
  margin: 22px 0 0;
  color: #aaa7a3;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.55;
}
.mk-product-highlights {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.mk-product-highlights li {
  position: relative;
  padding-left: 24px;
  color: #ddd;
  font-size: 11px;
  font-weight: 600;
}
.mk-product-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
}
.mk-product-fit-note {
  max-width: 560px;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #777;
  font-size: 9px;
  line-height: 1.5;
}
.mk-product-hero-image { position: relative; min-width: 0; }
.mk-product-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, transparent 28%), linear-gradient(0deg, rgba(0,0,0,.2), transparent 45%);
}
.mk-product-hero-image > img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.mk-product-hero-stamp {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 16px 19px;
  border-left: 2px solid var(--orange);
  background: rgba(5,5,5,.84);
}
.mk-product-hero-stamp span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mk-product-hero-stamp strong {
  display: block;
  margin-top: 5px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-product-proof {
  width: var(--page-width);
  margin: 0 auto;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  background: linear-gradient(90deg, #242424, #141414, #242424);
}
.mk-product-proof .mk-container { display: grid; grid-template-columns: repeat(4, 1fr); }
.mk-product-proof article {
  min-height: 92px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #555;
}
.mk-product-proof article:first-child { border-left: 0; }
.mk-product-proof strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-product-proof span { margin-top: 3px; color: #aaa; font-size: 10px; }
.mk-product-purchase {
  margin-top: 30px;
  padding: clamp(40px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
  gap: clamp(42px, 6vw, 96px);
  border: 1px solid rgba(255,79,0,.3);
  background: radial-gradient(circle at 0 0, rgba(255,79,0,.11), transparent 30%), #090909;
}
.mk-product-purchase h2,
.mk-product-details h2,
.mk-product-gallery h2,
.mk-product-before-order h2,
.mk-product-cta h2 { font-size: clamp(50px, 4.1vw, 76px); }
.mk-product-purchase-copy > p:not(.mk-label),
.mk-product-details-copy > p:not(.mk-label),
.mk-product-gallery-copy > p:not(.mk-label) {
  margin: 18px 0 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.68;
}
.mk-product-trust { display: grid; gap: 8px; margin-top: 28px; }
.mk-product-trust article {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mk-product-trust article > span {
  color: var(--orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
}
.mk-product-trust strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-product-trust p { margin: 3px 0 0; color: #888; font-size: 10px; line-height: 1.5; }
.mk-product-trust a { color: var(--orange); }
.mk-stripe-panel {
  min-width: 0;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, #171717, #080808);
  box-shadow: 0 22px 60px rgba(0,0,0,.3);
}
.mk-stripe-panel-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mk-stripe-panel-heading span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mk-stripe-panel-heading strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-stripe-button-wrap {
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #0d0d0d;
}
.mk-stripe-button-wrap stripe-buy-button { width: 100%; }
.mk-stripe-panel > p { margin: 16px 0 0; color: #777; font-size: 9px; line-height: 1.5; text-align: center; }
.mk-product-details,
.mk-product-gallery {
  min-height: 510px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 53% 47%;
  overflow: hidden;
  border: 1px solid rgba(255,79,0,.25);
  background: #090909;
}
.mk-product-details-image,
.mk-product-gallery-image { min-width: 0; }
.mk-product-details-image img,
.mk-product-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.mk-product-details-copy,
.mk-product-gallery-copy { padding: clamp(40px, 4vw, 66px); }
.mk-product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.mk-product-detail-grid article {
  min-height: 98px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
}
.mk-product-detail-grid strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-product-detail-grid span { display: block; margin-top: 6px; color: #888; font-size: 10px; line-height: 1.45; }
.mk-product-gallery { grid-template-columns: 42% 58%; }
.mk-product-gallery-image { order: 2; }
.mk-product-gallery-image img { object-fit: contain; padding: 30px; background: radial-gradient(circle, rgba(255,79,0,.12), transparent 60%); }
.mk-product-before-order {
  margin-top: 30px;
  padding: clamp(38px, 4vw, 62px);
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(40px, 6vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mk-product-checklist { display: grid; gap: 8px; }
.mk-product-checklist article {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mk-product-checklist article > span { color: var(--orange); font-family: "Bebas Neue", Impact, sans-serif; font-size: 23px; }
.mk-product-checklist p { margin: 0; color: #aaa; font-size: 12px; line-height: 1.55; }
.mk-product-support-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mk-product-support-links a {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.11);
  color: #aaa;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.mk-product-support-links a span { color: var(--orange); }
.mk-product-support-links a:hover { border-color: var(--orange); color: #fff; }
.mk-product-cta {
  margin: 26px auto 18px;
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border: 1px solid #6c2c10;
  background:
    linear-gradient(90deg, rgba(8,8,8,.84), rgba(8,8,8,.96)),
    url("assets/mockup-battery-storage.jpg?v=77") center / cover;
}

@media (max-width: 1180px) {
  .mk-header-inner { grid-template-columns: 210px 1fr auto; gap: 20px; }
  .mk-nav { gap: 20px; }
  .mk-hero-copy { width: 52%; padding-top: 44px; }
  .mk-mini-proof article { padding: 0 13px; }
  .mk-process-copy { padding-left: 5vw; }
  .mk-features article { padding-inline: 20px; }
  .mk-footer-channels { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  :root { --page-width: 90vw; }
  .mk-header { height: auto; }
  .mk-header-inner {
    padding: 16px 0;
    grid-template-columns: 1fr auto;
  }
  .mk-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 5px 0 2px;
  }
  .mk-hero {
    min-height: 900px;
    background-position: 64% top;
    background-size: auto 470px;
  }
  .mk-battery-badge { display: none; }
  .mk-hero-inner { align-items: flex-start; }
  .mk-hero-copy { width: 100%; padding-top: 510px; }
  .mk-hero h1 { font-size: clamp(58px, 10vw, 82px); }
  .mk-product-grid { grid-template-columns: 1fr; gap: 34px; }
  .mk-product-image { aspect-ratio: 1.65 / 1; }
  .mk-process { grid-template-columns: 1fr; }
  .mk-process-copy { padding: 48px 5vw; }
  .mk-process { height: auto; }
  .mk-process-image { height: 430px; }
  .mk-features-grid { grid-template-columns: repeat(2, 1fr); padding: 26px 0; }
  .mk-features article { padding: 25px; border-top: 1px solid #555; }
  .mk-features article:nth-child(odd) { border-left: 0; }
  .mk-signup { grid-template-columns: 1fr; }
  .mk-directory-grid { grid-template-columns: 1fr 1fr; }
  .mk-directory-card-wide { grid-column: 1 / -1; }
  .mk-about-hero,
  .mk-about-story,
  .mk-about-mission { grid-template-columns: 1fr; }
  .mk-about-hero-image { min-height: 420px; }
  .mk-about-proof .mk-container,
  .mk-about-quality-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-about-mission-image { min-height: 400px; }
  .mk-about-cta { grid-template-columns: 1fr; }
  .mk-review-hero,
  .mk-faq-hero,
  .mk-review-section,
  .mk-review-commitment,
  .mk-faq-directory { grid-template-columns: 1fr; }
  .mk-review-hero-image,
  .mk-faq-hero-image { min-height: 420px; }
  .mk-review-proof .mk-container,
  .mk-faq-proof .mk-container { grid-template-columns: repeat(2, 1fr); }
  .mk-faq-cta { grid-template-columns: 1fr; }
  .mk-product-hero,
  .mk-product-purchase,
  .mk-product-details,
  .mk-product-gallery,
  .mk-product-before-order { grid-template-columns: 1fr; }
  .mk-product-hero-image { min-height: 480px; }
  .mk-product-proof .mk-container { grid-template-columns: repeat(2, 1fr); }
  .mk-product-details-image,
  .mk-product-gallery-image { min-height: 420px; }
  .mk-product-gallery-image { order: initial; }
  .mk-product-cta { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --page-width: calc(100vw - 28px); }
  .mk-header-inner { grid-template-columns: 1fr; }
  .mk-logo { width: 185px; }
  .mk-head-cta { display: none; }
  .mk-nav { gap: 22px; }
  .mk-nav a { font-size: 10px; }
  .mk-hero {
    min-height: 990px;
    background-position: 64% top;
    background-size: auto 350px;
  }
  .mk-hero-copy { padding-top: 385px; }
  .mk-label { margin-bottom: 18px; }
  .mk-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 11.5vw, 49px);
    line-height: .96;
    white-space: normal;
  }
  .mk-hero h1 span {
    width: 100%;
    white-space: normal;
    transform: none;
  }
  .mk-hero-text br { display: none; }
  .mk-actions { display: grid; gap: 12px; }
  .mk-btn { width: 100%; }
  .mk-mini-proof { grid-template-columns: 1fr; gap: 18px; margin: 34px 0; }
  .mk-mini-proof article { padding: 0; border: 0; }
  .mk-stats { height: auto; }
  .mk-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }
  .mk-stats article { height: 110px; border-bottom: 1px solid #555; }
  .mk-stats article:nth-child(odd) { border-left: 0; }
  .mk-stats article:nth-child(n+3) { border-bottom: 0; }
  .mk-products { padding: 38px 0; }
  .mk-products h2, .mk-process h2, .mk-signup h2 { font-size: 42px; }
  .mk-product-image { aspect-ratio: 1.25 / 1; }
  .mk-product-grid p { min-height: auto; }
  .mk-process h2, .mk-signup h2 { white-space: normal; }
  .mk-steps { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .mk-steps li::after { display: none; }
  .mk-process-image { height: 310px; }
  .mk-features-grid { grid-template-columns: 1fr; }
  .mk-features article { border-left: 0; }
  .mk-signup { padding: 30px 24px; }
  .mk-email { height: 58px; grid-template-columns: 1fr 58px; }
  .mk-signup-checks { flex-wrap: wrap; }
  .mk-footer {
    max-width: calc(100vw - 28px);
  }
  .mk-footer .mk-container {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .mk-footer nav { justify-content: flex-start; }
  .mk-footer .mk-footer-nav { grid-template-columns: 1fr; }
  .mk-footer .mk-footer-channels { grid-template-columns: 1fr; }
  .mk-footer-contact { grid-column: auto; }
  .mk-footer-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .mk-directory { padding: 30px 24px; }
  .mk-directory-grid { grid-template-columns: 1fr; }
  .mk-directory-card-wide { grid-column: auto; }
  .mk-directory-card-wide .mk-directory-links { grid-template-columns: 1fr; }
  .mk-about-hero-copy,
  .mk-about-story,
  .mk-about-quality,
  .mk-about-mission-copy { padding: 30px 24px; }
  .mk-about-actions,
  .mk-about-cta-actions { display: grid; }
  .mk-about-proof .mk-container,
  .mk-about-quality-grid { grid-template-columns: 1fr; }
  .mk-about-proof article { border-left: 0; border-top: 1px solid #555; }
  .mk-about-proof article:first-child { border-top: 0; }
  .mk-about-hero-image,
  .mk-about-mission-image { min-height: 300px; }
  .mk-about-cta { padding: 28px 24px; }
  .mk-review-hero-copy,
  .mk-faq-hero-copy,
  .mk-review-section,
  .mk-review-commitment,
  .mk-faq-directory,
  .mk-faq-cta { padding: 30px 24px; }
  .mk-review-proof .mk-container,
  .mk-faq-proof .mk-container,
  .mk-form-grid { grid-template-columns: 1fr; }
  .mk-review-proof article,
  .mk-faq-proof article { border-left: 0; border-top: 1px solid #555; }
  .mk-review-proof article:first-child,
  .mk-faq-proof article:first-child { border-top: 0; }
  .mk-review-hero-image,
  .mk-faq-hero-image { min-height: 300px; }
  .mk-product-hero-copy,
  .mk-product-purchase,
  .mk-product-details-copy,
  .mk-product-gallery-copy,
  .mk-product-before-order,
  .mk-product-cta { padding: 30px 24px; }
  .mk-product-proof .mk-container,
  .mk-product-detail-grid,
  .mk-product-support-links { grid-template-columns: 1fr; }
  .mk-product-proof article { border-left: 0; border-top: 1px solid #555; }
  .mk-product-proof article:first-child { border-top: 0; }
  .mk-product-hero-image,
  .mk-product-details-image,
  .mk-product-gallery-image { min-height: 300px; }
}

/* V100 compact checkout and full-theme supporting pages */
.mk-checkout-page {
  width: var(--page-width);
  margin: 26px auto 22px;
}
.mk-compact-checkout {
  min-height: 690px;
  display: grid;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  border: 1px solid rgba(255, 79, 0, .35);
  background: #090909;
}
.mk-checkout-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.mk-checkout-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, #090909), linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 50%);
  pointer-events: none;
}
.mk-checkout-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.mk-checkout-copy {
  padding: clamp(38px, 3.2vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-checkout-copy .mk-label { margin-bottom: 14px; }
.mk-checkout-copy h1,
.mk-waitlist h1,
.mk-order-hero h1,
.mk-policy-hero h1,
.mk-confirmation h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(64px, 5vw, 94px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.mk-checkout-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.mk-checkout-facts {
  display: grid;
  gap: 10px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}
.mk-checkout-facts li {
  position: relative;
  padding-left: 23px;
  color: #ddd;
  font-size: 11px;
  font-weight: 600;
}
.mk-checkout-facts li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
}
.mk-checkout-fit {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-left: 2px solid var(--orange);
  background: rgba(255, 255, 255, .035);
  color: #aaa;
  font-size: 10px;
  line-height: 1.5;
}
.mk-checkout-purchase {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 79, 0, .34);
  background: linear-gradient(145deg, #171717, #0b0b0b);
}
.mk-checkout-purchase-title {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mk-checkout-purchase-title strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-checkout-purchase-title span {
  color: #777;
  font-size: 9px;
  text-transform: uppercase;
}
.mk-checkout-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}
.mk-checkout-button stripe-buy-button {
  width: min(100%, 390px);
  display: block;
  transform: translateX(50px);
}
.mk-checkout-purchase > p {
  margin: 13px 0 0;
  color: #777;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}
.mk-checkout-purchase > p strong {
  color: #aaa;
  font-weight: 700;
  text-transform: uppercase;
}
.mk-checkout-purchase > p a,
.mk-form-note a {
  color: var(--orange);
  text-decoration: underline;
}
.mk-checkout-links {
  margin: 10px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.mk-checkout-links a {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .11);
  color: #aaa;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.mk-checkout-links a:hover { border-color: var(--orange); color: #fff; }
.mk-checkout-links span { color: var(--orange); }

.mk-waitlist,
.mk-order-hero,
.mk-print-request,
.mk-policy-accordion {
  width: var(--page-width);
  margin-inline: auto;
}
.mk-waitlist {
  min-height: 650px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  border: 1px solid rgba(255, 79, 0, .32);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, .82), rgba(6, 6, 6, .98) 64%),
    url("assets/reference-process-print.jpg?v=77") center / cover;
}
.mk-waitlist-copy {
  padding: clamp(48px, 5vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-waitlist-copy > p:not(.mk-label),
.mk-order-hero-copy > p:not(.mk-label),
.mk-policy-hero > p:not(.mk-label),
.mk-confirmation > p:not(.mk-label) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.mk-waitlist-benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.mk-waitlist-benefits article {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.mk-waitlist-benefits article:first-child { padding-left: 0; border-left: 0; }
.mk-waitlist-benefits strong,
.mk-page-proof strong,
.mk-confirmation-grid strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-waitlist-benefits span,
.mk-page-proof span,
.mk-confirmation-grid span {
  display: block;
  margin-top: 5px;
  color: #858585;
  font-size: 10px;
  line-height: 1.5;
}

.mk-theme-form {
  display: grid;
  gap: 17px;
  padding: clamp(34px, 4vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 5, 5, .88);
}
.mk-form-label,
.mk-theme-form label > span:first-child {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mk-theme-form h2,
.mk-print-request h2,
.mk-policy-accordion h2 {
  margin: 0 0 6px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(44px, 3.6vw, 68px);
  font-weight: 400;
  line-height: .94;
  text-transform: uppercase;
}
.mk-theme-form label { display: grid; gap: 8px; }
.mk-theme-form input,
.mk-theme-form select,
.mk-theme-form textarea {
  width: 100%;
  border: 1px solid #333;
  border-radius: 0;
  outline: 0;
  background: #141414;
  color: #eee;
  font: 500 13px/1.4 Inter, Arial, sans-serif;
}
.mk-theme-form input,
.mk-theme-form select { height: 52px; padding: 0 15px; }
.mk-theme-form textarea { min-height: 145px; padding: 15px; resize: vertical; }
.mk-theme-form input:focus,
.mk-theme-form select:focus,
.mk-theme-form textarea:focus { border-color: var(--orange); }
.mk-theme-form .mk-form-consent {
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 10px;
}
.mk-theme-form .mk-form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}
.mk-theme-form .mk-form-consent span {
  color: #999;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.mk-form-consent a,
.mk-policy-card a,
.mk-accordion-list a { color: var(--orange); text-decoration: underline; }
.mk-form-submit {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font: 700 11px/1 Inter, Arial, sans-serif;
  text-transform: uppercase;
}
.mk-form-submit:hover { background: #ff6a25; }
.mk-form-note { margin: 0; color: #777; font-size: 9px; line-height: 1.5; }
.mk-botcheck,
.mk-honeypot { position: absolute !important; left: -10000px !important; }

.mk-page-proof {
  width: var(--page-width);
  margin: 10px auto 0;
  background: linear-gradient(90deg, #292929, #121212);
}
.mk-page-proof .mk-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mk-page-proof article {
  min-height: 116px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #565656;
}
.mk-page-proof article:first-child { border-left: 0; }

.mk-order-hero {
  min-height: 610px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 44% 56%;
  border: 1px solid rgba(255, 79, 0, .32);
  background: #080808;
}
.mk-order-hero-copy {
  padding: clamp(44px, 4vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-order-hero .mk-actions { margin-top: 32px; }
.mk-order-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.mk-order-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent 58%);
}
.mk-order-product-card img { width: 100%; height: 100%; object-fit: cover; }
.mk-order-product-card > div {
  position: absolute;
  z-index: 1;
  left: 38px;
  right: 38px;
  bottom: 34px;
}
.mk-order-product-card h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}
.mk-order-product-card > div > span {
  display: block;
  margin-top: 15px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.mk-print-request {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #090909;
}
.mk-print-request-copy { padding: clamp(42px, 4vw, 68px); }
.mk-print-request-copy > p:not(.mk-label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.mk-print-request-copy ol { margin: 34px 0 0; padding: 0; list-style: none; }
.mk-print-request-copy li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.mk-print-request-copy li > span {
  color: var(--orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
}
.mk-print-request-copy li strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mk-print-request-copy li p { margin: 5px 0 0; color: #858585; font-size: 10px; line-height: 1.5; }
.mk-print-request-copy .mk-actions { margin-top: 26px; }
.mk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.mk-policy-hero,
.mk-confirmation {
  width: var(--page-width);
  margin: 26px auto 0;
  padding: clamp(48px, 5vw, 84px);
  border: 1px solid rgba(255, 79, 0, .32);
}
.mk-policy-hero {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, .96) 31%, rgba(7, 7, 7, .74) 52%, rgba(7, 7, 7, .08) 100%),
    var(--policy-hero-image) center / cover no-repeat;
}
.mk-confirmation {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .88), rgba(7, 7, 7, .98)),
    url("assets/mockup-mounting.jpg?v=77") center / cover;
}
.mk-policy-hero > * {
  position: relative;
  z-index: 1;
}
.mk-policy-hero h1,
.mk-policy-hero > p:not(.mk-label),
.mk-policy-hero .mk-actions {
  max-width: 660px;
}
.mk-policy-hero > span {
  display: inline-block;
  margin-top: 26px;
  padding: 9px 12px;
  border: 1px solid #333;
  color: #888;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.mk-policy-card {
  width: var(--page-width);
  margin: 10px auto 28px;
  padding: clamp(40px, 5vw, 78px);
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(145deg, #111, #080808);
}
.mk-policy-card h2 {
  margin: 38px 0 12px;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(28px, 2.3vw, 42px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.mk-policy-card h2:first-child { margin-top: 0; }
.mk-policy-card p,
.mk-policy-card li {
  color: #aaa;
  font-size: 12px;
  line-height: 1.75;
}
.mk-policy-card ul { margin: 14px 0; padding-left: 20px; }
.mk-policy-card li + li { margin-top: 5px; }

.mk-policy-accordion {
  margin-top: 10px;
  margin-bottom: 28px;
  padding: clamp(40px, 5vw, 76px);
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(44px, 6vw, 90px);
  border: 1px solid rgba(255, 255, 255, .1);
  background: #090909;
}
.mk-policy-intro > p:not(.mk-label) {
  margin: 20px 0 0;
  color: #888;
  font-size: 12px;
  line-height: 1.65;
}
.mk-accordion-list { display: grid; align-content: start; }
.mk-accordion-list details { border-top: 1px solid rgba(255, 255, 255, .13); }
.mk-accordion-list details:last-child { border-bottom: 1px solid rgba(255, 255, 255, .13); }
.mk-accordion-list summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.mk-accordion-list summary::-webkit-details-marker { display: none; }
.mk-accordion-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--orange);
}
.mk-accordion-list details[open] summary::after { content: "\2212"; }
.mk-accordion-list details p {
  margin: 0 0 16px;
  color: #999;
  font-size: 11px;
  line-height: 1.7;
}

.mk-confirmation {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mk-confirmation-grid {
  max-width: 900px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.mk-confirmation-grid article {
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, .13);
}
.mk-confirmation-grid article:first-child { border-left: 0; padding-left: 0; }
.mk-confirmation .mk-actions { margin-top: 32px; }

@media (max-width: 1050px) {
  .mk-compact-checkout,
  .mk-waitlist,
  .mk-order-hero,
  .mk-print-request,
  .mk-policy-accordion { grid-template-columns: 1fr; }
  .mk-checkout-media,
  .mk-order-product-card { min-height: 470px; }
  .mk-theme-form { border-top: 1px solid rgba(255, 255, 255, .1); border-left: 0; }
  .mk-page-proof .mk-container { grid-template-columns: repeat(2, 1fr); }
  .mk-policy-intro { max-width: 600px; }
}

@media (max-width: 640px) {
  .mk-checkout-page { margin-top: 14px; }
  .mk-checkout-media,
  .mk-order-product-card { min-height: 330px; }
  .mk-checkout-copy,
  .mk-waitlist-copy,
  .mk-order-hero-copy,
  .mk-theme-form,
  .mk-print-request-copy,
  .mk-policy-hero,
  .mk-policy-card,
  .mk-policy-accordion,
  .mk-confirmation { padding: 30px 24px; }
  .mk-checkout-copy h1,
  .mk-waitlist h1,
  .mk-order-hero h1,
  .mk-policy-hero h1,
  .mk-confirmation h1 { font-size: 50px; }
  .mk-checkout-links,
  .mk-waitlist-benefits,
  .mk-page-proof .mk-container,
  .mk-form-grid,
  .mk-confirmation-grid { grid-template-columns: 1fr; }
  .mk-waitlist-benefits article,
  .mk-confirmation-grid article {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }
  .mk-page-proof article { border-top: 1px solid #565656; border-left: 0; }
  .mk-page-proof article:first-child { border-top: 0; }
  .mk-checkout-button stripe-buy-button { transform: none; }
}
