/* AXON Cloud public marketing — axon-cloud.net */

:root {
  --mk-ink: #0c1222;
  --mk-ink-soft: #1a2336;
  --mk-paper: #f4f7fb;
  --mk-muted: #5b6b82;
  --mk-line: rgba(15, 23, 42, 0.1);
  --mk-blue: #1d4ed8;
  --mk-blue-deep: #1e3a8a;
  --mk-cyan: #0ea5e9;
  --mk-glow: rgba(14, 165, 233, 0.35);
  --mk-radius: 14px;
  --mk-display: "Syne", "Segoe UI", sans-serif;
  --mk-body: "Source Sans 3", "Segoe UI", sans-serif;
  --mk-price: "IBM Plex Sans", "Source Sans 3", "Segoe UI", sans-serif;
  --mk-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body.axon-marketing {
  margin: 0;
  color: var(--mk-ink);
  font-family: var(--mk-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background: #f5f5f7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.mk-wrap {
  width: min(100% - 2.5rem, var(--mk-max));
  margin-inline: auto;
}

/* —— Nav —— */
.mk-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  /* no backdrop-filter here — it creates a containing block and breaks the mobile drawer */
  color: var(--mk-ink);
}

.mk-nav__glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(245, 245, 247, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.mk-nav.is-scrolled .mk-nav__glass {
  border-bottom-color: var(--mk-line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.mk-nav.is-scrolled {
  color: var(--mk-ink);
}

.mk-nav.is-scrolled .mk-nav__links {
  color: var(--mk-muted);
}

.mk-nav.is-scrolled .mk-nav__cta--ghost {
  color: var(--mk-ink) !important;
  border-color: var(--mk-line);
}

.mk-nav.is-scrolled .mk-nav__toggle {
  color: var(--mk-ink);
}

.mk-nav__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.mk-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mk-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

/* Legacy plain img brand (non-live) */
.mk-brand:not(.mk-brand--live) img {
  width: 200px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

/* —— Live animated lockup —— */
.mk-brand--live {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
  padding: 0.15rem 0.35rem;
}

.mk-brand__glow,
.mk-brand__glow--b {
  position: absolute;
  inset: -30% -18%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.75;
}

.mk-brand__glow {
  background:
    radial-gradient(ellipse at 35% 50%, rgba(236, 72, 153, 0.55), transparent 58%),
    radial-gradient(ellipse at 70% 50%, rgba(56, 189, 248, 0.45), transparent 55%);
  animation: mk-brand-pulse 3.4s ease-in-out infinite;
}

.mk-brand__glow--b {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(168, 85, 247, 0.5), transparent 60%),
    radial-gradient(ellipse at 40% 70%, rgba(34, 211, 238, 0.4), transparent 55%);
  animation: mk-brand-pulse 3.4s ease-in-out infinite reverse;
  animation-delay: -1.2s;
}

@keyframes mk-brand-pulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.45;
    filter: blur(16px) hue-rotate(0deg);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
    filter: blur(22px) hue-rotate(25deg);
  }
}

.mk-brand__stage {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 0;
  overflow: hidden;
}

.mk-brand__art {
  width: 200px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: mk-brand-art 4.5s ease-in-out infinite;
}

@keyframes mk-brand-art {
  0%, 100% { filter: brightness(1) saturate(1); }
  40% { filter: brightness(1.12) saturate(1.2); }
  70% { filter: brightness(1.05) saturate(1.35) hue-rotate(-8deg); }
}

.mk-brand__shine,
.mk-brand__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.mk-brand__shine {
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 180, 255, 0.35) 48%,
    rgba(120, 230, 255, 0.4) 52%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 70%
  );
  mix-blend-mode: screen;
  animation: mk-brand-shine 3.8s ease-in-out infinite;
}

.mk-brand__scan {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 189, 248, 0.15) 45%,
    rgba(236, 72, 153, 0.2) 55%,
    transparent 100%
  );
  mix-blend-mode: color-dodge;
  animation: mk-brand-scan 5.2s linear infinite;
  opacity: 0.65;
}

@keyframes mk-brand-shine {
  0% { transform: translateX(-55%) skewX(-12deg); opacity: 0; }
  12% { opacity: 1; }
  55% { transform: translateX(55%) skewX(-12deg); opacity: 0.9; }
  100% { transform: translateX(70%) skewX(-12deg); opacity: 0; }
}

@keyframes mk-brand-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Per-glyph pulse hotspots over A-X-O-N / CLOUD */
.mk-brand__glyphs {
  position: absolute;
  inset: 8% 2% 18%;
  z-index: 3;
  pointer-events: none;
}

.mk-brand__glyphs i {
  position: absolute;
  top: 10%;
  left: var(--x, 0%);
  width: 14%;
  height: 70%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: mk-glyph-flash 3.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.28s);
}

.mk-brand__glyphs i.is-x {
  width: 18%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.7), rgba(56, 189, 248, 0.35), transparent 72%);
}

.mk-brand__glyphs i.is-cloud {
  width: 22%;
  height: 55%;
  top: 5%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.55), rgba(168, 85, 247, 0.3), transparent 70%);
}

@keyframes mk-glyph-flash {
  0%, 100% { opacity: 0; transform: scale(0.85); }
  35% { opacity: 0.55; transform: scale(1.05); }
  55% { opacity: 0.15; transform: scale(1); }
}


@media (prefers-reduced-motion: reduce) {
  .mk-brand__glow,
  .mk-brand__glow--b,
  .mk-brand__art,
  .mk-brand__shine,
  .mk-brand__scan,
  .mk-brand__glyphs i {
    animation: none !important;
  }
  .mk-brand__shine,
  .mk-brand__scan,
  .mk-brand__glyphs { display: none; }
  .mk-reel__vert {
    transition: none !important;
  }
}


.mk-nav__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
}

.mk-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mk-nav__links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
  color: var(--mk-muted);
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.mk-nav__links a:hover {
  color: var(--mk-ink);
}

.mk-nav.is-scrolled .mk-nav__links a:hover {
  color: var(--mk-ink);
}

.mk-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--mk-ink);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.mk-nav.is-scrolled .mk-nav__cta {
  background: var(--mk-ink);
  color: #fff !important;
}

.mk-nav__cta:hover {
  background: var(--mk-blue);
  color: #fff !important;
}

.mk-nav__cta--ghost {
  background: transparent;
  color: var(--mk-ink) !important;
  border: 1px solid var(--mk-line);
}

.mk-nav__cta--ghost:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--mk-ink) !important;
}

.mk-nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--mk-ink);
}

.mk-nav__dd {
  position: relative;
}

.mk-nav__dd-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.mk-nav__dd-btn:hover,
.mk-nav__dd-btn[aria-expanded="true"] {
  color: var(--mk-ink);
}

.mk-nav__dd-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  z-index: 40;
  width: min(22rem, 88vw);
  max-height: min(70vh, 28rem);
  overflow: auto;
  padding: 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--mk-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  display: grid;
  gap: 0.25rem;
}

.mk-nav__dd-panel[hidden] {
  display: none !important;
}

.mk-nav__dd-all {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mk-blue-deep) !important;
}

.mk-nav__dd-item {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.mk-nav__dd-item:hover {
  background: #f1f5f9;
}

.mk-nav__dd-item strong {
  font-size: 0.92rem;
  color: var(--mk-ink);
}

.mk-nav__dd-item span {
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--mk-muted);
}

/* —— Hero (Apple-style product) —— */
.mk-hero--product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  min-height: calc(100dvh - 64px);
  padding: 4.5rem 0 2.5rem;
  overflow: hidden;
  color: var(--mk-ink);
  background: #f5f5f7;
}

.mk-hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(29, 78, 216, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 42%, #e8eef6 100%);
  pointer-events: none;
}

.mk-hero__intro {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 46rem;
  padding-bottom: 1.75rem;
}

.mk-hero__wordmark {
  margin: 0 0 0.55rem;
  font-family: var(--mk-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--mk-ink);
  animation: mk-rise 0.85s ease both;
}

.mk-hero__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mk-blue);
  animation: mk-rise 0.85s 0.05s ease both;
}

.mk-hero__headline {
  font-family: var(--mk-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.1;
  margin: 0 auto;
  max-width: 16ch;
  color: var(--mk-muted);
  letter-spacing: -0.03em;
  animation: mk-rise 0.85s 0.1s ease both;
}

.mk-hero__sub {
  margin: 0 auto 1.75rem;
  color: var(--mk-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.5;
  max-width: 38ch;
  animation: mk-rise 0.85s 0.18s ease both;
}

.mk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  animation: mk-rise 0.85s 0.26s ease both;
}

.mk-hero__stage {
  position: relative;
  z-index: 2;
  width: min(100% - 1.5rem, 820px);
  margin: 0 auto;
  padding-bottom: 0.5rem;
  animation: mk-rise 1s 0.2s ease both;
}

.mk-mac {
  position: relative;
  width: 100%;
  margin: 0 auto;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.mk-mac__lid {
  position: relative;
  z-index: 2;
  transform-origin: center bottom;
  transform: rotateX(72deg);
  opacity: 0.7;
  filter: brightness(0.8);
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    filter 0.9s ease;
  will-change: transform;
}

.mk-mac.is-open .mk-mac__lid {
  transform: rotateX(8deg);
  opacity: 1;
  filter: none;
}

.mk-mac__bezel {
  background: linear-gradient(180deg, #2a2d33 0%, #15171c 100%);
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 -1px 0 rgba(0, 0, 0, 0.4) inset,
    0 30px 80px rgba(15, 23, 42, 0.22);
  backface-visibility: hidden;
}

.mk-mac__camera {
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4b5563, #0f172a 70%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mk-mac__screen {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #0b1220;
  aspect-ratio: 16 / 10.2;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  padding: 0;
  font: inherit;
}

.mk-mac__screen--static {
  cursor: default;
}

.mk-mac__screen:focus-visible {
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.45);
}

.mk-mac__screen img,
.mk-mac__idle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #0b1220;
  transition: transform 0.55s ease, filter 0.35s ease, opacity 0.45s ease;
}

.mk-mac.is-open:not(.is-welcome):not(.is-reeling) .mk-mac__screen:hover .mk-mac__idle-img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.mk-mac.is-welcome .mk-mac__idle-img,
.mk-mac.is-welcome .mk-mac__placeholder,
.mk-mac.is-reeling .mk-mac__idle-img,
.mk-mac.is-reeling .mk-mac__placeholder {
  opacity: 0;
}

.mk-mac__welcome {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.25rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 80% 70% at 20% 20%, rgba(14, 165, 233, 0.22), transparent 55%),
    linear-gradient(145deg, #0b1220 0%, #132038 55%, #0f172a 100%);
  color: #fff;
  text-align: left;
  pointer-events: none;
}

.mk-mac.is-welcome:not(.is-reeling) .mk-mac__welcome {
  display: flex;
}

.mk-mac__welcome-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.65rem;
}

.mk-mac__welcome-title {
  font-family: var(--mk-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.mk-mac__welcome-body {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.88);
  max-width: 32ch;
}

/* —— Intro reel on Mac screen + dive-into-product —— */
.mk-reel {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  overflow: hidden;
  background: #05080f;
  color: #fff;
  pointer-events: auto;
}

.mk-mac.is-reeling .mk-reel {
  display: block;
}

.mk-reel__shots {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.mk-reel.has-shot .mk-reel__shots {
  opacity: 1;
}

.mk-reel__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0b1220;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.55s ease, transform 0.9s ease;
  filter: brightness(0.55) saturate(1.05);
}

.mk-reel__shot.is-on {
  opacity: 1;
  transform: scale(1);
}

.mk-reel__glow {
  position: absolute;
  inset: -20%;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 40% at 50% 35%, rgba(14, 165, 233, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(59, 130, 246, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.mk-reel[data-phase="brand"] .mk-reel__glow,
.mk-reel[data-phase="feat"] .mk-reel__glow,
.mk-reel[data-phase="finale"] .mk-reel__glow {
  opacity: 1;
}

.mk-reel.has-shot .mk-reel__glow {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.72) 45%, rgba(2, 6, 23, 0.92) 100%),
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(14, 165, 233, 0.18), transparent 60%);
}

.mk-reel.has-shot .mk-reel__shot.is-on {
  filter: brightness(0.42) saturate(1.05) contrast(1.05);
}

.mk-reel__scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3.5vw, 2.2rem);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.97);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.45s;
  pointer-events: none;
}

.mk-reel__scene.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.mk-reel__scene--boot,
.mk-reel__scene--brand,
.mk-reel__scene--login {
  background: #f4f7fb;
}

.mk-reel__scene--login {
  background:
    radial-gradient(ellipse 70% 55% at 50% 28%, rgba(37, 99, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #eef2f7 0%, #f4f7fb 100%);
  padding: clamp(0.85rem, 3vw, 1.6rem);
}

.mk-reel__login {
  width: min(92%, 320px);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(12px);
}

.mk-reel__scene--login.is-on .mk-reel__login {
  animation: mk-reel-rise 0.5s 0.1s ease both;
}

.mk-reel__login-logo {
  display: none;
}

.mk-brand--reel {
  display: inline-flex;
  pointer-events: none;
  text-decoration: none;
}

.mk-reel__login-brand {
  margin: 0 auto 0.45rem;
  justify-content: center;
}

.mk-reel__login-brand .mk-brand__art {
  width: min(100%, 260px);
  max-height: 64px;
}

.mk-reel__brand-live {
  margin: 0 auto;
  justify-content: center;
  transform: scale(1.15);
}

.mk-reel__brand-live .mk-brand__art {
  width: min(86vw, 360px);
  max-height: 96px;
}

.mk-reel__scene--brand.is-on .mk-reel__brand-live {
  animation: mk-reel-pop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mk-reel__scene--brand {
  background:
    radial-gradient(ellipse 65% 50% at 50% 42%, rgba(37, 99, 235, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 55%, rgba(14, 165, 233, 0.1), transparent 60%),
    #f4f7fb;
}

.mk-reel__scene--verts {
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(0.8rem, 3%, 1.4rem);
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(37, 99, 235, 0.1), transparent 60%),
    #f4f7fb;
}

.mk-reel__verts-kicker {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
  opacity: 0;
}

.mk-reel__scene--verts.is-on .mk-reel__verts-kicker {
  animation: mk-reel-rise 0.45s ease both;
}

.mk-reel__verts {
  position: relative;
  width: min(92%, 520px);
  height: min(58%, 280px);
  perspective: 900px;
  transform-style: preserve-3d;
}

.mk-reel__vert {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  opacity: 0;
  transform: translateX(42%) rotateY(-28deg) scale(0.82);
  filter: blur(2px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  pointer-events: none;
}

.mk-reel__vert.is-prev {
  opacity: 0.28;
  transform: translateX(-38%) rotateY(24deg) scale(0.78);
  filter: blur(1.5px);
  z-index: 1;
}

.mk-reel__vert.is-next {
  opacity: 0.28;
  transform: translateX(38%) rotateY(-24deg) scale(0.78);
  filter: blur(1.5px);
  z-index: 1;
}

.mk-reel__vert.is-on {
  opacity: 1;
  transform: translateX(0) rotateY(0deg) scale(1);
  filter: none;
  z-index: 3;
}

.mk-reel__vert-frame {
  width: 100%;
  height: 78%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px rgba(56, 189, 248, 0.18);
  background: #020617;
}

.mk-reel__vert-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mk-reel__vert-name {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f8fafc;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.mk-reel__verts-hook {
  margin: 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #94a3b8;
  opacity: 0;
}

.mk-reel__scene--verts.is-on .mk-reel__verts-hook {
  animation: mk-reel-rise 0.5s 0.15s ease both;
}

.mk-reel[data-phase="verts"] .mk-reel__glow {
  opacity: 0.55;
}

.mk-reel__login-tag {
  margin: 0 0 0.2rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.mk-reel__field {
  display: grid;
  gap: 0.22rem;
  text-align: left;
}

.mk-reel__field > span {
  font-size: 0.7rem;
  font-weight: 650;
  color: #64748b;
}

.mk-reel__field-box {
  display: flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88rem;
  color: #0f172a;
}

.mk-reel__field-box.is-focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}

.mk-reel__caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: #2563eb;
  opacity: 0;
}

.mk-reel__field-box.is-focus .mk-reel__caret {
  opacity: 1;
  animation: mk-reel-caret 0.85s steps(1) infinite;
}

.mk-reel__login-btn {
  margin-top: 0.2rem;
  text-align: center;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  background: #2563eb;
  opacity: 0.5;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.mk-reel__login-btn.is-ready {
  opacity: 1;
  transform: scale(1);
}

.mk-reel__login-btn.is-press {
  transform: scale(0.96);
}

.mk-reel__login-status {
  margin: 0;
  min-height: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 650;
  color: #166534;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mk-reel__login-status.is-on {
  opacity: 1;
}

.mk-reel__scene--feat {
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 4%, 2rem);
  background: rgba(244, 247, 251, 0.92);
}

.mk-reel__feat-card {
  width: min(92%, 420px);
  padding: clamp(1rem, 3vw, 1.45rem) clamp(1rem, 3.2vw, 1.6rem);
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.mk-reel__scene--finale {
  background: linear-gradient(180deg, #eef2f7 0%, #f4f7fb 100%);
}

.mk-reel__scene--boot .mk-reel__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.8);
  animation: mk-reel-pulse 1.1s ease-in-out infinite;
}

.mk-reel__logo,
.mk-reel__brand,
.mk-reel__brand-sub {
  display: none;
}

.mk-reel__feat-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
  opacity: 0;
}

.mk-reel__feat-title {
  margin: 0 0 0.55rem;
  font-family: var(--mk-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.6vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f172a;
  opacity: 0;
}

.mk-reel__feat-body {
  margin: 0 auto;
  max-width: 30ch;
  color: #475569;
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  line-height: 1.45;
  font-weight: 650;
  opacity: 0;
}

.mk-reel__scene--feat.is-on .mk-reel__feat-kicker {
  animation: mk-reel-rise 0.4s ease both;
}

.mk-reel__scene--feat.is-on .mk-reel__feat-title {
  animation: mk-reel-pop 0.55s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mk-reel__scene--feat.is-on .mk-reel__feat-body {
  animation: mk-reel-rise 0.5s 0.16s ease both;
}

.mk-reel__dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.15rem;
}

.mk-reel__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}

.mk-reel__dots span.is-on {
  background: #7dd3fc;
  transform: scale(1.25);
}

.mk-reel__letters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
  margin-bottom: 1.1rem;
  font-family: var(--mk-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.mk-reel__letters-line {
  display: flex;
  gap: clamp(0.2rem, 1.2vw, 0.55rem);
}

.mk-reel__letters-line--cloud {
  font-size: 0.52em;
  letter-spacing: 0.14em;
  gap: clamp(0.12rem, 0.8vw, 0.35rem);
  color: rgba(226, 232, 240, 0.92);
}

.mk-reel__letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(42px) rotateX(55deg) scale(0.7);
  filter: blur(6px);
  text-shadow: 0 0 0 transparent;
}

.mk-reel__letters-line:first-child span:nth-child(2) {
  background: linear-gradient(135deg, #f0abfc 0%, #c026d3 40%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.55));
}

.mk-reel__letters-line:first-child span:not(:nth-child(2)) {
  background: linear-gradient(180deg, #f8fafc 0%, #7dd3fc 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mk-reel__letters-line--cloud span {
  background: linear-gradient(90deg, #67e8f9, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mk-reel__scene--finale.is-assembling .mk-reel__letters span {
  animation: mk-reel-letter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mk-reel__scene--finale.is-assembling .mk-reel__letters-line:first-child span:nth-child(1) { animation-delay: 0.02s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line:first-child span:nth-child(2) { animation-delay: 0.1s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line:first-child span:nth-child(3) { animation-delay: 0.18s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line:first-child span:nth-child(4) { animation-delay: 0.26s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line--cloud span:nth-child(1) { animation-delay: 0.38s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line--cloud span:nth-child(2) { animation-delay: 0.46s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line--cloud span:nth-child(3) { animation-delay: 0.54s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line--cloud span:nth-child(4) { animation-delay: 0.62s; }
.mk-reel__scene--finale.is-assembling .mk-reel__letters-line--cloud span:nth-child(5) { animation-delay: 0.7s; }

.mk-reel__slogan {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.55);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, color 0.9s ease, transform 0.7s ease, text-shadow 0.9s ease;
}

.mk-reel__scene--finale.is-lit .mk-reel__slogan {
  opacity: 1;
  color: #f8fafc;
  transform: translateY(0);
  text-shadow:
    0 0 18px rgba(125, 211, 252, 0.55),
    0 0 40px rgba(59, 130, 246, 0.35);
}

.mk-reel__skip {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(248, 250, 252, 0.9);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.mk-reel__skip:hover {
  background: rgba(15, 23, 42, 0.8);
}

.mk-mac.is-reeling .mk-mac__screen {
  cursor: default;
}

/* Zoom into the Mac screen like entering the product */
body.mk-diving {
  overflow: hidden;
}

body.mk-diving .mk-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.mk-hero.is-diving {
  z-index: 80;
}

.mk-hero.is-diving .mk-hero__atmosphere {
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(14, 165, 233, 0.22), transparent 55%),
    #020617;
  transition: background 0.8s ease;
}

.mk-hero.is-diving .mk-hero__intro,
.mk-hero.is-diving .mk-mac__hint,
.mk-hero.is-diving .mk-enter,
.mk-hero.is-diving .mk-spot-link {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.45s ease;
}

.mk-hero.is-diving .mk-hero__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding: 0;
}

.mk-hero.is-diving .mk-mac {
  width: min(92vw, 980px);
  transition:
    width 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-mac.is-immersed {
  transform: scale(1.16) translateY(0);
}

.mk-mac.is-immersed .mk-mac__lid {
  transform: rotateX(0deg) !important;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-mac.is-immersed .mk-mac__bezel {
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  transition: border-radius 0.8s ease, padding 0.8s ease, box-shadow 0.8s ease;
}

.mk-mac.is-immersed .mk-mac__camera,
.mk-mac.is-immersed .mk-mac__base-block,
.mk-mac.is-immersed .mk-mac__shadow {
  opacity: 0;
  transition: opacity 0.55s ease;
}

.mk-mac.is-immersed .mk-mac__screen {
  border-radius: 6px;
}

.mk-hero.is-dive-exit .mk-mac,
.mk-mac.is-immersed {
  will-change: transform;
}

.mk-hero.is-dive-exit .mk-mac {
  transform: scale(1) translateY(0);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-hero.is-dive-exit .mk-mac__camera,
.mk-hero.is-dive-exit .mk-mac__base-block,
.mk-hero.is-dive-exit .mk-mac__shadow {
  opacity: 1;
  transition: opacity 0.7s ease;
}

.mk-hero.is-dive-exit .mk-mac__lid {
  transform: rotateX(8deg) !important;
}

.mk-hero.is-dive-exit .mk-hero__atmosphere {
  transition: background 0.8s ease;
}

@keyframes mk-reel-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.55); opacity: 1; }
}

@keyframes mk-reel-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mk-reel-pop {
  0% { opacity: 0; transform: translateY(22px) scale(0.94); }
  70% { opacity: 1; transform: translateY(-2px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mk-reel-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes mk-reel-letter {
  0% {
    opacity: 0;
    transform: translateY(48px) rotateX(60deg) scale(0.65);
    filter: blur(8px);
  }
  70% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
    text-shadow: 0 0 22px rgba(125, 211, 252, 0.45);
  }
}

@media (max-width: 720px) {
  .mk-mac.is-immersed {
    transform: scale(1.08) translateY(0);
  }

  .mk-reel__feat-card {
    width: min(96%, 360px);
    padding: 0.95rem 1rem;
  }
}

.mk-mac__cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mk-ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0.92;
  pointer-events: none;
  transition: opacity 0.35s ease;
  white-space: nowrap;
  z-index: 2;
}

.mk-mac.is-welcome .mk-mac__cta,
.mk-mac.is-reeling .mk-mac__cta {
  opacity: 0;
}

.mk-mac__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: #64748b;
  font-family: var(--mk-display);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mk-mac__base-block {
  position: relative;
  z-index: 1;
}

.mk-mac__chin {
  height: 10px;
  background: linear-gradient(180deg, #1f2329, #121418);
  border-radius: 0 0 2px 2px;
}

.mk-mac__base {
  position: relative;
  height: 14px;
  margin: 0 -1.2%;
  background: linear-gradient(180deg, #c5c8ce 0%, #aeb2b9 45%, #9aa0a8 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.35) inset;
}

.mk-mac__notch {
  display: block;
  width: min(28%, 180px);
  height: 5px;
  margin: 0 auto;
  background: linear-gradient(180deg, #8b919a, #6f757e);
  border-radius: 0 0 6px 6px;
}

.mk-mac__shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -28px;
  height: 48px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.28), transparent 70%);
  filter: blur(4px);
  z-index: 0;
  opacity: 0.35;
  transform: scaleX(0.72);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.mk-mac.is-open .mk-mac__shadow {
  opacity: 1;
  transform: scaleX(1);
}

.mk-mac__hint,
.mk-mac__scroll-cue {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--mk-muted);
  letter-spacing: 0.02em;
}

.mk-mac__hint {
  opacity: 0;
  transition: opacity 0.5s ease 1.1s;
}

.mk-mac.is-open + .mk-mac__hint {
  opacity: 1;
}

.mk-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem auto 0;
  padding: 0.85rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--mk-ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mk-enter:hover {
  transform: translateY(-1px);
  background: var(--mk-blue-deep);
}

body.mk-presenting .mk-enter {
  display: none;
}

.mk-spot-link {
  display: inline-flex;
  margin: 0.85rem auto 0;
  color: var(--mk-muted);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.mk-spot-link:hover {
  color: var(--mk-blue);
}

body.mk-presenting .mk-spot-link {
  display: none;
}

.mk-hero__stage {
  text-align: center;
}

.mk-mac__scroll-cue {
  opacity: 0;
  animation: mk-pulse-cue 2.2s ease infinite;
}

body.mk-presenting .mk-mac__scroll-cue:not([hidden]) {
  opacity: 1;
}

@keyframes mk-pulse-cue {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}

@keyframes mk-rise {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

/* —— Scroll story (Apple-style) —— */
.mk-story {
  position: relative;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.mk-story__track {
  height: 320vh;
  position: relative;
}

.mk-story__sticky {
  position: sticky;
  top: 4.5rem;
  height: calc(100vh - 4.5rem);
  height: calc(100dvh - 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: min(100% - 2.5rem, 1120px);
  margin: 0 auto;
  padding: 1rem 0 2rem;
  overflow: hidden;
}

.mk-story__copy {
  position: relative;
  z-index: 2;
  max-width: 28rem;
}

.mk-story__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-story__slides {
  position: relative;
  min-height: 11rem;
}

.mk-story__slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.mk-story__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.mk-story__slide h2 {
  font-family: var(--mk-display);
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
}

.mk-story__slide p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 34ch;
}

.mk-story__chips {
  margin-top: 1.75rem;
}

.mk-story__device {
  --story-yaw: -8deg;
  --story-pitch: 6deg;
  --story-roll: 0deg;
  position: relative;
  perspective: 1800px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mk-mac--story {
  width: min(100%, 620px);
  transform:
    rotateY(var(--story-yaw))
    rotateX(var(--story-pitch))
    rotateZ(var(--story-roll))
    scale(var(--story-scale, 1));
  transform-style: preserve-3d;
  will-change: transform;
  transition: none;
}

.mk-mac--story .mk-mac__lid {
  transform: rotateX(6deg);
  opacity: 1;
  filter: none;
  transition: none;
}

.mk-mac--story .mk-mac__shadow {
  opacity: 0.9;
  transform: scaleX(1) translateZ(-40px);
}

.mk-mac__screen--static {
  position: relative;
}

.mk-story__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0b1220;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mk-story__frame.is-active {
  opacity: 1;
  position: relative;
}

.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mk-btn:hover {
  transform: translateY(-1px);
}

.mk-btn--primary {
  background: var(--mk-ink);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.mk-btn--primary:hover {
  background: var(--mk-blue-deep);
}

.mk-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #e2e8f0;
}

.mk-btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}

.mk-btn--quiet {
  background: transparent;
  border-color: var(--mk-line);
  color: var(--mk-ink);
}

.mk-btn--quiet:hover {
  border-color: var(--mk-ink);
  background: rgba(15, 23, 42, 0.03);
}

.mk-btn--dark {
  background: var(--mk-ink);
  color: #fff;
}

.mk-btn--outline {
  background: transparent;
  border-color: var(--mk-line);
  color: var(--mk-ink);
}

/* —— Sections —— */
.mk-section {
  padding: 4.5rem 0;
}

.mk-section--ink {
  background: var(--mk-ink);
  color: #e8eef8;
}

.mk-section--ink .mk-muted {
  color: #94a3b8;
}

.mk-section__head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.mk-section__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-section__eyebrow--light {
  color: #7dd3fc;
}

.mk-section__head h2 {
  font-family: var(--mk-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.mk-section__head--xl {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.mk-section__head--xl h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.035em;
}

.mk-muted {
  color: var(--mk-muted);
  margin: 0;
}

/* —— Value strip —— */
.mk-section--tight {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.mk-section--bridge {
  margin-top: -1.5rem;
  position: relative;
  z-index: 3;
}

.mk-section--about {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  background: #fff;
}

.mk-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.mk-about__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-about__copy h2 {
  font-family: var(--mk-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.95rem;
}

.mk-about__lead {
  margin: 0 0 1.45rem;
  color: var(--mk-muted);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 40ch;
}

.mk-about__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mk-about__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mk-ink);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mk-chip__mark {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mk-cyan), var(--mk-blue));
  flex-shrink: 0;
}

.mk-about__visual {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.mk-device-frame {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #0b1220;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  aspect-ratio: 16 / 10;
}

.mk-device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mk-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  position: relative;
  z-index: 2;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.mk-value {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.4rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mk-value:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.mk-value:last-child {
  border-right: 1px solid rgba(15, 23, 42, 0.07);
}

.mk-value__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.95rem;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(14, 165, 233, 0.2), rgba(29, 78, 216, 0.35));
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.12);
}

.mk-value h3 {
  font-family: var(--mk-display);
  font-size: 1.08rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.mk-value p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

/* —— Modules —— */
.mk-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.mk-module {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8rem) 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--mk-line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mk-module:hover,
.mk-module:focus-visible {
  background: #f8fbff;
  border-color: rgba(29, 78, 216, 0.22);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.mk-module__label {
  font-family: var(--mk-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.mk-module p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.mk-module__hint {
  color: var(--mk-blue);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.mk-modules--pro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mk-module--pro {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  min-height: 8.5rem;
  align-content: start;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.mk-module--pro .mk-module__label {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.mk-module--pro p {
  font-size: 0.98rem;
  line-height: 1.45;
}

.mk-module--pro .mk-module__hint {
  margin-top: auto;
}

.mk-verts--pro {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.mk-vert--pro {
  min-height: 16rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-vert--pro .mk-vert__body {
  padding: 1.4rem 1.35rem 1.25rem;
}

.mk-vert--pro h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.mk-ra--pro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background:
    radial-gradient(1000px 480px at 15% -10%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(800px 420px at 90% 20%, rgba(29, 78, 216, 0.22), transparent 50%),
    linear-gradient(165deg, #070b14 0%, #10182a 48%, #152038 100%);
}

.mk-ra--pro .mk-ra__intro h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.04em;
}

.mk-ra--pro .mk-ra__tagline {
  font-size: 1.25rem;
  max-width: 34rem;
}

.mk-ra--pro .mk-ra__price-card {
  border-radius: 22px;
  padding: 1.6rem 1.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.mk-ra--pro .mk-ra__price strong {
  font-size: 3rem;
}

/* —— Verticals —— */
.mk-verts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mk-vert {
  position: relative;
  padding: 0;
  border-radius: var(--mk-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  width: 100%;
  min-height: 11.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mk-vert--visual {
  min-height: 14.5rem;
}

.mk-vert__media {
  position: absolute;
  inset: 0;
  background-image: var(--mk-vert-img);
  background-size: cover;
  background-position: center top;
  transform: scale(1.03);
  transition: transform 0.45s ease;
  opacity: 0.45;
}

.mk-vert__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.2) 0%, rgba(7, 11, 20, 0.92) 72%);
}

.mk-vert__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.25rem;
}

.mk-vert:hover,
.mk-vert:focus-visible {
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(14, 165, 233, 0.06);
  transform: translateY(-3px);
  outline: none;
}

.mk-vert--visual:hover .mk-vert__media,
.mk-vert--visual:focus-visible .mk-vert__media {
  transform: scale(1.08);
  opacity: 0.58;
}

.mk-vert h3 {
  font-family: var(--mk-display);
  font-size: 1.12rem;
  margin: 0 0 0.45rem;
}

.mk-vert p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.92rem;
  flex: 1;
}

.mk-vert .mk-module__hint {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
}

/* —— Pogled: laptop showcase —— */
.mk-section--look {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(14, 165, 233, 0.07), transparent 55%),
    #f5f5f7;
  padding-top: 4.5rem;
  padding-bottom: 0;
}

.mk-look-track {
  height: 260vh;
  position: relative;
}

.mk-look--story {
  position: sticky;
  top: 4.5rem;
  height: calc(100vh - 4.5rem);
  height: calc(100dvh - 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  width: min(100% - 2.5rem, 1120px);
  margin: 0 auto;
  padding: 1rem 0 2rem;
  overflow: hidden;
}

.mk-look__copy {
  max-width: 26rem;
}

.mk-look__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-look__slides {
  position: relative;
  min-height: 9rem;
  margin-bottom: 1.25rem;
}

.mk-look__slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.mk-look__slide.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mk-look__slide h3 {
  font-family: var(--mk-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}

.mk-look__slide p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 32ch;
}

.mk-look__device {
  --look-yaw: -6deg;
  --look-pitch: 5deg;
  perspective: 1800px;
  display: flex;
  justify-content: center;
}

.mk-mac--look {
  width: min(100%, 640px);
  transform: rotateY(var(--look-yaw)) rotateX(var(--look-pitch));
  transform-style: preserve-3d;
  will-change: transform;
}

.mk-mac--look .mk-mac__lid {
  transform: rotateX(6deg);
  opacity: 1;
  filter: none;
  transition: none;
}

.mk-look__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0b1220;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mk-look__frame.is-active {
  opacity: 1;
  position: relative;
}

.mk-look__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mk-look__thumb {
  width: 64px;
  height: 42px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #0b1220;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mk-look__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mk-look__thumb:hover {
  opacity: 0.85;
}

.mk-look__thumb.is-active {
  opacity: 1;
  border-color: var(--mk-blue);
}

/* —— Pricing builder —— */
.mk-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 1.25rem;
  align-items: start;
}

.mk-build {
  position: sticky;
  top: 5.5rem;
  padding: 1.35rem 1.3rem;
  border-radius: 20px;
  background: #0c1222;
  color: #f8fafc;
  box-shadow: 0 22px 48px rgba(12, 18, 34, 0.2);
}

.mk-build__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.mk-build h3 {
  margin: 0 0 0.85rem;
  font-family: var(--mk-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.mk-build__empty {
  margin: 0;
  color: rgba(226, 232, 240, 0.65);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mk-build__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.mk-build__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.45rem;
  align-items: start;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.mk-build__list em {
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  color: #e2e8f0;
}

.mk-build__rm {
  border: 0;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.15rem;
}

.mk-build__rm:hover {
  color: #fff;
}

.mk-build__totals {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-build__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.mk-build__row strong {
  font-family: var(--mk-price);
  font-size: 1.15rem;
}

.mk-build__note {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.9);
}

.mk-build .mk-btn--primary {
  background: #fff;
  color: #0c1222;
}

.mk-build__clear {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mk-btn--build {
  background: var(--mk-ink);
  color: #fff;
  border: 1px solid transparent;
}

.mk-btn--build.is-on,
.mk-price.is-selected .mk-btn--build,
.mk-addon-card.is-selected .mk-btn--build {
  background: #dc2626;
  color: #fff;
}

.mk-btn--sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.mk-price.is-selected {
  outline: 2px solid rgba(29, 78, 216, 0.45);
  outline-offset: 2px;
}

.mk-price-board--pro .mk-price--hot.is-selected {
  outline-color: rgba(125, 211, 252, 0.55);
}

.mk-addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.mk-addon-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.mk-addon-card.is-hot {
  border-color: rgba(29, 78, 216, 0.28);
}

.mk-addon-card.is-selected {
  outline: 2px solid rgba(29, 78, 216, 0.4);
  outline-offset: 2px;
}

.mk-addon-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.mk-addon-card__top code {
  font-size: 0.75rem;
  color: var(--mk-muted);
}

.mk-addon-card__bill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-addon-card h4 {
  margin: 0;
  font-family: var(--mk-display);
  font-size: 1.05rem;
}

.mk-addon-card p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.mk-addon-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.65rem;
}

.mk-addon-card__price {
  margin: 0 !important;
  color: var(--mk-ink) !important;
  font-size: 0.95rem !important;
}

.mk-addon-card__price small {
  color: var(--mk-muted);
  margin-left: 0.2rem;
}

/* legacy shots kept for safety */
.mk-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mk-shot {
  border-radius: var(--mk-radius);
  overflow: hidden;
  border: 1px solid var(--mk-line);
  background: #fff;
}

.mk-shot__frame {
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.mk-shot__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-shot__meta {
  padding: 0.85rem 1rem 1.1rem;
}

/* —— Pricing —— */
.mk-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.mk-price-board {
  display: grid;
  grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  min-width: 0;
}

.mk-price-board--pro {
  gap: 1.5rem;
  padding: 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.mk-price-board--pro .mk-price-nav {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.25rem;
  gap: 0.35rem;
}

.mk-price-board--pro .mk-price-nav__btn {
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.mk-price-board--pro .mk-price-nav__btn.is-active {
  background: #0c1222;
  border-color: #0c1222;
  color: #fff;
  transform: none;
  box-shadow: 0 12px 28px rgba(12, 18, 34, 0.22);
}

.mk-price-board--pro .mk-price-nav__btn.is-active span,
.mk-price-board--pro .mk-price-nav__btn.is-active em {
  color: rgba(255, 255, 255, 0.72);
}

.mk-price-board--pro .mk-price-panel__intro {
  background: transparent;
  border: 0;
  padding: 0.25rem 0.35rem 1.15rem;
  box-shadow: none;
}

.mk-price-board--pro .mk-price-panel__intro h3 {
  font-family: var(--mk-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}

.mk-price-board--pro .mk-price {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 1.45rem 1.35rem 1.3rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mk-price-board--pro .mk-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(29, 78, 216, 0.2);
}

.mk-price-board--pro .mk-price--hot {
  background: linear-gradient(180deg, #0c1222 0%, #152038 100%);
  color: #f8fafc;
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(12, 18, 34, 0.28);
}

.mk-price-board--pro .mk-price--hot h3 {
  color: #ffffff;
}

.mk-price-board--pro .mk-price--hot .mk-price__tag,
.mk-price-board--pro .mk-price--hot .mk-price__note,
.mk-price-board--pro .mk-price--hot li {
  color: rgba(226, 232, 240, 0.78);
}

.mk-price-board--pro .mk-price--hot .mk-price__amount,
.mk-price-board--pro .mk-price--hot .mk-price__amount .mk-price__num,
.mk-price-board--pro .mk-price--hot .mk-price__amount .mk-price__cur {
  color: #ffffff !important;
}

.mk-price-board--pro .mk-price--hot .mk-price__amount small {
  color: rgba(226, 232, 240, 0.78) !important;
}

.mk-price-board--pro .mk-price--hot .mk-btn--outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.mk-price-board--pro .mk-price--hot .mk-btn--dark {
  background: #fff;
  color: #0c1222;
}

.mk-price-board--pro .mk-price__amount,
.mk-price-board--pro .mk-price__amount .mk-price__num,
.mk-price-board--pro .mk-price__amount .mk-price__cur {
  color: var(--mk-ink);
}

.mk-price-board--pro .mk-price__num {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.mk-price-board--pro .mk-price__actions {
  margin-top: auto;
  padding-top: 1.1rem;
}

.mk-price-nav {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.85rem;
  border-radius: var(--mk-radius);
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.mk-price-nav__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mk-muted);
}

.mk-price-nav__btn {
  display: grid;
  gap: 0.2rem;
  text-align: left;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mk-price-nav__btn strong {
  font-family: var(--mk-display);
  font-size: 0.98rem;
}

.mk-price-nav__btn span {
  font-size: 0.82rem;
  color: var(--mk-muted);
  line-height: 1.35;
}

.mk-price-nav__btn em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b45309;
}

.mk-price-nav__btn em.is-core {
  color: #1d4ed8;
}

.mk-price-nav__btn em.is-full {
  color: #047857;
}

.mk-price-nav__btn:hover {
  background: #f8fafc;
  border-color: var(--mk-line);
}

.mk-price-nav__btn.is-active {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0.1));
  border-color: rgba(29, 78, 216, 0.28);
  transform: translateX(2px);
}

.mk-price-panel {
  animation: mk-fade 0.35s ease;
}

.mk-price-panel__intro {
  margin-bottom: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--mk-radius);
  background: #fff;
  border: 1px solid var(--mk-line);
}

.mk-price-panel__intro h3 {
  margin: 0 0 0.45rem;
  font-family: var(--mk-display);
  font-size: 1.45rem;
}

.mk-price-panel__intro > p {
  margin: 0;
  color: var(--mk-muted);
}

.mk-price-panel__note {
  margin: 0.75rem 0 0 !important;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(29, 78, 216, 0.06);
  color: var(--mk-ink-soft) !important;
  font-size: 0.92rem;
  font-weight: 600;
}

.mk-price-panel__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.mk-price-panel__bullets li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
}

.mk-price {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.25rem 1.35rem;
  border-radius: var(--mk-radius);
  border: 1px solid var(--mk-line);
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.mk-price--hot {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--mk-cyan), var(--mk-blue)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 48px rgba(29, 78, 216, 0.12);
  transform: translateY(-6px);
}

.mk-price--hot:hover {
  transform: translateY(-8px);
}

.mk-price__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mk-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.mk-price h3 {
  font-family: var(--mk-display);
  margin: 0.2rem 0 0.2rem;
  font-size: 1.25rem;
}

.mk-price__tag {
  color: var(--mk-muted);
  font-size: 0.88rem;
  margin: 0 0 1rem;
}

.mk-price__amount {
  font-family: var(--mk-price);
  font-weight: 600;
  font-size: 1.85rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  margin: 0 0 0.15rem;
  color: var(--mk-ink);
  line-height: 1.15;
}

.mk-price__amount .mk-price__num {
  font-weight: 700;
}

.mk-price__amount .mk-price__cur {
  font-size: 1.05rem;
  font-weight: 600;
  margin-left: 0.15rem;
  color: var(--mk-ink-soft);
}

.mk-price__amount small {
  display: inline;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mk-muted);
  margin-left: 0.2rem;
}

.mk-price__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.mk-price__note {
  font-size: 0.78rem;
  color: var(--mk-muted);
  margin: 0 0 0.35rem;
}

.mk-price__anchor {
  font-size: 0.72rem;
  color: #92400e;
  margin: 0 0 1rem;
  font-weight: 600;
}

.mk-ra__anchor,
.mk-addon-card__anchor {
  display: block;
  font-size: 0.72rem;
  color: #92400e;
  margin: 0.35rem 0 0;
  font-weight: 600;
}

.mk-price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.mk-price li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.15rem;
  font-size: 0.92rem;
  color: #334155;
}

.mk-price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mk-cyan);
}

.mk-price .mk-btn {
  width: 100%;
}

.mk-price-footnote {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--mk-muted);
  text-align: center;
}

.mk-addons {
  margin-top: 2.75rem;
}

.mk-addons__head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.mk-addons__head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--mk-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--mk-ink);
}

.mk-addons__table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(15, 35, 65, 0.1);
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 35, 65, 0.06);
}

.mk-addons__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

.mk-addons__table thead th {
  text-align: left;
  padding: 0.85rem 1rem;
  background: #1a3a5c;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mk-addons__table tbody td {
  padding: 0.78rem 1rem;
  border-top: 1px solid rgba(15, 35, 65, 0.07);
  color: var(--mk-ink);
  vertical-align: middle;
}

.mk-addons__table tbody tr:nth-child(even) {
  background: #f4f7fb;
}

.mk-addons__table tbody tr:hover {
  background: #eaf1f8;
}

.mk-addons__row--hot {
  background: #eef6ff !important;
}

.mk-addons__blurb {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--mk-muted);
  line-height: 1.35;
  max-width: 36rem;
}

.mk-addons__table code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a3a5c;
  background: rgba(26, 58, 92, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.mk-addons__price {
  font-family: var(--mk-price);
  font-weight: 700;
  white-space: nowrap;
}

.mk-addons__price small {
  font-weight: 500;
  color: var(--mk-muted);
  margin-left: 0.15rem;
}

.mk-addons__from {
  font-weight: 500;
  color: var(--mk-muted);
  margin-right: 0.2rem;
}

/* —— Rate Analyst product band —— */
.mk-ra {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
}

.mk-ra .mk-muted {
  color: #94a3b8;
}

.mk-ra__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.mk-ra__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.mk-ra__intro h2 {
  margin: 0 0 0.65rem;
  font-family: var(--mk-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #f8fafc;
}

.mk-ra__tagline {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #cbd5e1;
  max-width: 38rem;
}

.mk-ra__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.mk-ra .mk-btn--primary {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.mk-ra .mk-btn--primary:hover {
  background: #e2e8f0;
}

.mk-ra .mk-btn--ghost:hover {
  background: rgba(248, 250, 252, 0.08);
}

.mk-ra__price-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  background: rgba(15, 23, 42, 0.55);
}

.mk-ra__price-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.mk-ra__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--mk-price);
}

.mk-ra__price strong {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f8fafc;
}

.mk-ra__price span {
  color: #94a3b8;
  font-size: 1rem;
}

.mk-ra__price-note,
.mk-ra__price-hint {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.45;
}

.mk-ra__price-hint code {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.mk-ra__why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.mk-ra__why article {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.35);
}

.mk-ra__why h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #f8fafc;
}

.mk-ra__why p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.5;
  font-size: 0.95rem;
}

.mk-ra__block {
  margin-top: 1.75rem;
}

.mk-ra__block h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #f8fafc;
}

.mk-ra__modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.mk-ra__modules article {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.mk-ra__modules h4 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #f1f5f9;
}

.mk-ra__modules p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.45;
}

.mk-ra__autos {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
}

.mk-ra__autos li {
  position: relative;
  padding-left: 1.1rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.4;
}

.mk-ra__autos li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #38bdf8;
}

@media (max-width: 900px) {
  .mk-ra__top,
  .mk-ra__why,
  .mk-ra__modules,
  .mk-ra__autos {
    grid-template-columns: 1fr;
  }
}

/* —— Steps —— */
.mk-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.mk-step {
  position: relative;
  padding: 1.25rem 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--mk-line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.mk-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--mk-cyan), var(--mk-blue));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.mk-step h3 {
  font-family: var(--mk-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.mk-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--mk-muted);
  line-height: 1.45;
}

.mk-section--soft {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(14, 165, 233, 0.06), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, var(--mk-paper) 100%);
}

.mk-section--pricing {
  background:
    radial-gradient(ellipse 55% 40% at 80% 0%, rgba(29, 78, 216, 0.07), transparent 55%),
    linear-gradient(180deg, #f5f5f7 0%, #eef2f7 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mk-section--contact {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14, 165, 233, 0.08), transparent 55%),
    #e8eef6;
}

.mk-section__head--flush {
  margin-bottom: 0;
}

/* —— Contact —— */
.mk-intent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.mk-intent__btn {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--mk-line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-intent__btn strong {
  font-family: var(--mk-display);
  font-size: 1.05rem;
}

.mk-intent__btn span {
  color: var(--mk-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.mk-intent__btn:hover {
  border-color: color-mix(in srgb, var(--mk-blue) 45%, var(--mk-line));
  transform: translateY(-1px);
}

.mk-intent__btn.is-active {
  border-color: var(--mk-blue);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mk-blue) 16%, transparent), 0 14px 28px rgba(29, 78, 216, 0.08);
}

.mk-contact__lead {
  margin: 0 0 0.65rem;
  color: var(--mk-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.mk-contact {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.mk-contact__aside {
  padding: 1.35rem 1.4rem;
  border-radius: calc(var(--mk-radius) + 4px);
  border: 1px solid var(--mk-line);
  background:
    radial-gradient(520px 220px at 0% 0%, color-mix(in srgb, var(--mk-cyan) 12%, transparent), transparent 60%),
    #fff;
}

.mk-contact__sales {
  display: inline-block;
  margin: 0 0 1.25rem;
  font-family: var(--mk-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mk-blue-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mk-contact__sales:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mk-contact__steps {
  margin: 0 0 1.35rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--mk-blue) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--mk-blue) 14%, var(--mk-line));
}

.mk-contact__steps h3 {
  margin: 0 0 0.65rem;
  font-family: var(--mk-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.mk-contact__steps ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--mk-ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mk-contact__steps li + li {
  margin-top: 0.35rem;
}

.mk-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mk-contact__list li {
  margin: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--mk-muted);
}

.mk-contact__list a {
  color: var(--mk-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mk-form {
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: calc(var(--mk-radius) + 6px);
  padding: 1.55rem 1.55rem 1.35rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.07);
}

.mk-form__head {
  margin: 0 0 1.15rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--mk-line);
}

.mk-form__head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--mk-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.mk-form__head p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mk-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.mk-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mk-field--full {
  grid-column: 1 / -1;
}

.mk-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mk-muted);
}

.mk-field input,
.mk-field select,
.mk-field textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: var(--mk-ink);
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mk-field input:focus,
.mk-field select:focus,
.mk-field textarea:focus {
  outline: none;
  border-color: var(--mk-blue);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mk-blue) 16%, transparent);
}

.mk-field textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.45;
}

.mk-form__actions {
  gap: 0.55rem;
}

.mk-btn--block {
  width: 100%;
}

.mk-form__privacy {
  margin: 0;
  text-align: center;
  color: var(--mk-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mk-form__errors {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem 0.75rem 1.4rem;
  border-radius: 10px;
  background: #fef2f2;
  color: #991b1b;
  list-style: disc;
  font-size: 0.92rem;
}

.mk-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.mk-alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.mk-alert--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.mk-alert--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.mk-form__errors {
  color: #b91c1c;
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
}

/* —— Footer —— */
.mk-footer {
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid var(--mk-line);
  color: var(--mk-muted);
  font-size: 0.9rem;
  background: #0b1220;
  color: #94a3b8;
}

.mk-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.mk-footer a {
  color: #e2e8f0;
}

.mk-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.mk-footer strong {
  font-family: var(--mk-display);
  color: #f8fafc;
}

.mk-footer__logo {
  width: 168px;
  height: auto;
  display: block;
  margin: 0 0 0.75rem;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1);
}

/* —— Reveal on scroll —— */
.mk-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.mk-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Side drawer —— */
.mk-drawer-root[hidden] {
  display: none !important;
}

.mk-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.mk-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.48);
  backdrop-filter: blur(3px);
  border: 0;
  cursor: pointer;
  animation: mk-fade 0.25s ease;
}

.mk-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #fff;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-drawer-root.is-open .mk-drawer {
  transform: translateX(0);
}

.mk-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: 1px solid var(--mk-line);
}

.mk-drawer__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mk-cyan);
}

.mk-drawer__head h2 {
  font-family: var(--mk-display);
  font-size: 1.55rem;
  margin: 0;
  line-height: 1.15;
}

.mk-drawer__close {
  border: 0;
  background: #eef2f7;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--mk-ink);
  flex-shrink: 0;
}

.mk-drawer__close:hover {
  background: #e2e8f0;
}

.mk-drawer__body {
  padding: 1.25rem 1.35rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.mk-drawer__img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.45rem;
  border: 1px solid var(--mk-line);
  background: #0f172a;
  aspect-ratio: 16 / 10;
}

.mk-drawer__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mk-drawer__img-cap {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--mk-muted);
  font-style: italic;
}

.mk-drawer__img--empty {
  display: grid;
  place-items: center;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.mk-price__visual {
  margin: -1.45rem -1.35rem 1rem;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.mk-price__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.mk-price:hover .mk-price__visual img,
.mk-price:focus-within .mk-price__visual img {
  transform: scale(1.04);
}

.mk-price:has(.mk-price__visual) .mk-price__badge {
  top: 0.75rem;
  left: 0.85rem;
  transform: none;
}

.mk-price-board--pro .mk-price--hot .mk-price__visual {
  opacity: 0.92;
}

.mk-drawer__body > p {
  margin: 0 0 1rem;
  color: #334155;
}

.mk-drawer__meta {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #334155;
}

.mk-drawer__meta strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mk-muted);
  margin-bottom: 0.2rem;
}

.mk-drawer__price {
  font-family: var(--mk-price);
  font-weight: 700;
  font-size: 1.65rem;
  font-variant-numeric: tabular-nums;
  margin: 0 0 1rem;
}

.mk-drawer__list {
  margin: 0 0 1.35rem;
  padding: 0 0 0 1.1rem;
  color: #334155;
}

.mk-drawer__list li {
  margin: 0.35rem 0;
}

.mk-drawer__why {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
}

.mk-drawer__why article {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--mk-line);
}

.mk-drawer__why h4,
.mk-drawer__mods h3,
.mk-drawer__autos h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--mk-ink);
}

.mk-drawer__why p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--mk-muted);
  line-height: 1.4;
}

.mk-drawer__mods {
  margin: 0 0 1.15rem;
}

.mk-drawer__mods #mk-drawer-mods-grid {
  display: grid;
  gap: 0.55rem;
}

.mk-drawer__mods article {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--mk-line);
  background: #fff;
}

.mk-drawer__mods h4 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.mk-drawer__mods p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mk-muted);
  line-height: 1.4;
}

.mk-drawer__autos {
  margin: 0 0 1.25rem;
}

.mk-drawer__autos ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.mk-drawer__autos li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.4;
}

.mk-drawer__autos li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #0ea5e9;
}

.mk-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@keyframes mk-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.mk-drawer-open {
  overflow: hidden;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .mk-about {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .mk-about__visual {
    order: -1;
    min-height: 180px;
  }

  .mk-values {
    grid-template-columns: 1fr;
  }

  .mk-value {
    border-right: 1px solid rgba(15, 23, 42, 0.07);
  }

  .mk-value:last-child {
    border-right: 1px solid rgba(15, 23, 42, 0.07);
  }

  .mk-verts,
  .mk-shots {
    grid-template-columns: 1fr 1fr;
  }

  .mk-price-board {
    grid-template-columns: 1fr;
  }

  .mk-price-board--pro {
    padding: 0.85rem;
  }

  .mk-price-layout {
    grid-template-columns: 1fr;
  }

  .mk-build {
    position: static;
    order: -1;
  }

  .mk-look-track {
    height: auto;
  }

  .mk-look--story {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0 3rem;
  }

  .mk-look__slides {
    min-height: 0;
  }

  .mk-look__slide {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .mk-look__slide.is-active {
    display: block;
  }

  .mk-look__device {
    order: -1;
  }

  .mk-mac--look {
    width: min(100%, 420px);
    margin: 0 auto;
    transform: rotateY(-8deg) rotateX(3deg) !important;
  }

  .mk-mac--look {
    transform: rotateY(-4deg) rotateX(2deg);
  }

  .mk-modules--pro,
  .mk-verts--pro {
    grid-template-columns: 1fr;
  }

  .mk-look__thumb {
    width: 64px;
    height: 42px;
  }

  .mk-price-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-prices {
    grid-template-columns: 1fr 1fr;
  }

  .mk-price--hot {
    transform: none;
  }

  .mk-steps {
    grid-template-columns: 1fr 1fr;
  }

  .mk-intent {
    grid-template-columns: 1fr;
  }

  .mk-contact {
    grid-template-columns: 1fr;
  }
}

/* Side drawer menu: phone + tablet — horizontal links get cramped */
@media (max-width: 1100px) {
  .mk-nav__inner {
    gap: 0.5rem;
  }

  .mk-nav__end {
    flex: 0 0 auto;
    gap: 0.35rem;
    min-width: 0;
    margin-left: auto;
  }

  .mk-nav__actions {
    display: none !important;
  }

  .mk-nav__toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    z-index: 3;
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: 1px solid var(--mk-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1;
    color: var(--mk-ink);
    -webkit-tap-highlight-color: transparent;
  }

  .mk-brand {
    min-width: 0;
    max-width: calc(100% - 3.5rem);
  }

  .mk-brand__art,
  .mk-brand:not(.mk-brand--live) img {
    width: min(148px, 42vw);
    max-height: 44px;
  }

  .mk-brand__glow,
  .mk-brand__glow--b {
    inset: -40% -22%;
    filter: blur(14px);
  }

  .mk-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    /* Must stay BELOW .mk-nav (z-index 40). The drawer lives inside .mk-nav's
       stacking context — a higher backdrop steals all taps on iOS. */
    z-index: 35;
    background: rgba(15, 23, 42, 0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mk-menu-backdrop.is-open,
  .mk-menu-backdrop:not([hidden]) {
    display: block;
  }

  body.mk-menu-open {
    overflow: hidden;
  }

  /* Keep sticky nav (and its fixed drawer) above the dimmer while open */
  body.mk-menu-open .mk-nav {
    z-index: 70;
  }

  /* Off-canvas drawer — fixed to viewport (glass blur is on a sibling layer) */
  .mk-nav__links {
    display: flex !important;
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 320px);
    max-width: 320px;
    height: 100dvh;
    margin: 0;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #fff;
    border: 0;
    border-left: 1px solid var(--mk-line);
    padding: 1.15rem 1.15rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    z-index: 2;
    transform: translate3d(105%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -18px 0 40px rgba(15, 23, 42, 0.16);
    color: var(--mk-muted);
  }

  .mk-nav__links.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .mk-nav__drawer-title {
    display: block !important;
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mk-muted);
  }

  .mk-nav__drawer-cta {
    display: flex !important;
    margin-top: 1rem;
    justify-content: center !important;
    padding: 0.85rem 1rem !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--mk-ink);
    color: #fff !important;
  }

  .mk-nav__drawer-cta::after {
    display: none;
  }

  .mk-nav__mobile-only {
    display: flex !important;
  }

  .mk-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.15rem;
    border-bottom: 1px solid var(--mk-line);
    color: var(--mk-ink);
    font-weight: 600;
    font-size: 1rem;
    white-space: normal;
  }

  .mk-nav__links a::after {
    content: '›';
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .mk-nav__links a.is-active {
    color: var(--mk-blue);
  }

  .mk-nav__dd {
    border-bottom: 1px solid var(--mk-line);
    padding: 0.35rem 0 0.65rem;
  }

  .mk-nav__dd-btn {
    width: 100%;
    text-align: left;
    padding: 0.45rem 0;
    font-weight: 650;
  }

  .mk-nav__dd-panel {
    position: static;
    width: 100%;
    max-height: none;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem;
    background: transparent;
  }

  .mk-nav__dd-panel[hidden] {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .mk-wrap {
    width: min(100% - 1.5rem, var(--mk-max));
  }

  .mk-form {
    padding: 1.15rem 1rem 1.1rem;
    border-radius: 16px;
  }

  .mk-form__actions .mk-btn,
  .mk-form__actions button[type="submit"] {
    width: 100%;
  }

  .mk-price-nav {
    grid-template-columns: 1fr;
  }

  .mk-prices {
    grid-template-columns: 1fr;
  }

  /* Mac CTA: below screen, never over the screenshot */
  .mk-mac__cta {
    display: none !important;
  }

  .mk-enter {
    display: inline-flex;
    position: relative;
    z-index: 2;
    margin-top: 1.15rem;
  }

  .mk-mac__hint {
    margin-top: 0.65rem;
  }

  .mk-seo-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Copy + CTAs first; image below — no button over photo */
  .mk-seo-hero__visual {
    order: 2;
  }

  .mk-seo-hero__copy {
    order: 1;
  }

  .mk-seo-actions {
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
  }

  .mk-seo-actions .mk-btn {
    width: 100%;
  }

  .mk-seo-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .mk-seo-card em {
    font-style: normal;
    color: #94a3b8;
    font-size: 1.1rem;
  }

  .mk-seo-card span {
    grid-column: 1 / -1;
  }

  .mk-values,
  .mk-modules,
  .mk-verts,
  .mk-shots,
  .mk-prices,
  .mk-steps,
  .mk-form__grid {
    grid-template-columns: 1fr;
  }

  .mk-value {
    border-right: 0;
    border-bottom: 1px solid var(--mk-line);
  }

  .mk-value:last-child {
    border-bottom: 0;
  }

  .mk-module {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .mk-modules {
    grid-template-columns: 1fr;
  }

  .mk-module {
    grid-template-columns: 1fr auto;
  }

  .mk-module p {
    grid-column: 1 / -1;
  }

  .mk-drawer {
    width: 100%;
  }

  .mk-hero--product {
    padding-top: 4rem;
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
  }

  .mk-mac.is-open .mk-mac__lid {
    transform: rotateX(4deg);
  }

  .mk-mac__bezel {
    border-radius: 10px 10px 0 0;
    padding: 7px 7px 6px;
  }

  .mk-mac__cta {
    font-size: 0.75rem;
    bottom: 10px;
  }

  .mk-story__track {
    height: auto;
  }

  .mk-story__sticky {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2.5rem;
  }

  .mk-story__slides {
    min-height: 0;
  }

  .mk-story__slide {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 1.75rem;
  }

  .mk-story__slide:last-child {
    margin-bottom: 0;
  }

  .mk-story__device {
    order: -1;
  }

  .mk-mac--story {
    width: min(100%, 420px);
    margin: 0 auto;
    transform: rotateY(-12deg) rotateX(4deg) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-hero__wordmark,
  .mk-hero__kicker,
  .mk-hero__headline,
  .mk-hero__sub,
  .mk-hero__actions,
  .mk-hero__stage {
    animation: none !important;
  }

  .mk-mac__lid {
    transition: none !important;
    transform: rotateX(8deg) !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .mk-mac__shadow {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mk-mac__hint {
    opacity: 1 !important;
    transition: none !important;
  }

  .mk-mac__scroll-cue {
    animation: none !important;
  }

  .mk-mac--story {
    transition: none !important;
  }

  .mk-reel__scene,
  .mk-reel__logo,
  .mk-reel__brand,
  .mk-reel__brand-sub,
  .mk-reel__feat-kicker,
  .mk-reel__feat-title,
  .mk-reel__feat-body,
  .mk-reel__letters span,
  .mk-reel__slogan,
  .mk-reel__pulse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    visibility: visible !important;
  }

  .mk-reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— SEO landing pages —— */
/* Desktop-only: hide drawer chrome (must not override the mobile media query above) */
@media (min-width: 1101px) {
  .mk-nav__drawer-title,
  .mk-nav__drawer-cta,
  .mk-nav__mobile-only {
    display: none;
  }

  .mk-menu-backdrop {
    display: none !important;
  }
}

.mk-seo-body {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  max-width: 48ch;
}

.mk-seo-body p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.mk-seo-card {
  position: relative;
}

.mk-seo-card em {
  display: none;
}


.mk-seo-page {
  padding-top: 1rem;
}

.mk-seo-hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(14, 165, 233, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.mk-seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.mk-seo-hero__copy {
  min-width: 0;
}

.mk-seo-hero__visual {
  min-width: 0;
}

.mk-seo-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-seo-hero h1 {
  font-family: var(--mk-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.mk-seo-lead {
  margin: 0 0 1.35rem;
  color: var(--mk-muted);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 40ch;
}

.mk-seo-bullets {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mk-seo-bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--mk-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.mk-seo-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mk-cyan), var(--mk-blue));
}

.mk-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mk-seo-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  background: #0b1220;
  aspect-ratio: 16 / 10;
}

.mk-seo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.mk-seo-more {
  padding: 2.5rem 0 4rem;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.mk-seo-more__label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mk-muted);
}

.mk-seo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.mk-seo-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-seo-card:hover {
  border-color: rgba(29, 78, 216, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mk-seo-card strong {
  font-family: var(--mk-display);
  font-size: 1.02rem;
}

.mk-seo-card span {
  color: var(--mk-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.mk-seo-foot {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #f5f5f7;
}

.mk-seo-foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: var(--mk-muted);
  font-size: 0.9rem;
}

.mk-seo-foot a {
  color: var(--mk-ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .mk-seo-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .mk-seo-hero__visual {
    order: 2;
  }

  .mk-seo-hero__copy {
    order: 1;
  }

  .mk-seo-hero {
    padding: 2rem 0 2.25rem;
  }

  .mk-seo-actions {
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .mk-seo-actions .mk-btn {
    width: 100%;
    justify-content: center;
  }

  .mk-seo-card em {
    display: inline;
    grid-row: 1;
    grid-column: 2;
  }
}

/* —— Social spot / cinematic film (/spot) —— */
.mk-spot {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #030712;
  color: #f8fafc;
  overflow: hidden;
}

.mk-spot__stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.mk-spot__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(14, 165, 233, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 20%, rgba(37, 99, 235, 0.12), transparent 55%),
    linear-gradient(180deg, #020617 0%, #0b1220 55%, #020617 100%);
}

.mk-spot__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: mk-spot-drift 12s ease-in-out infinite alternate;
}

.mk-spot__orb--a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 10%;
  background: rgba(14, 165, 233, 0.35);
}

.mk-spot__orb--b {
  width: 36vw;
  height: 36vw;
  right: -6%;
  bottom: 5%;
  background: rgba(59, 130, 246, 0.28);
  animation-delay: -4s;
}

.mk-spot__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  opacity: 0.45;
}

.mk-spot__chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.85), transparent);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mk-spot.is-clean .mk-spot__chrome,
.mk-spot.is-clean .mk-spot__skip,
.mk-spot.is-clean .mk-spot__play-tip {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.mk-spot__brand img {
  width: 132px;
  height: auto;
  border-radius: 8px;
  background: #000;
}

.mk-spot__chrome-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mk-spot__btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.mk-spot__btn:hover {
  background: rgba(30, 41, 59, 0.85);
}

.mk-spot__btn--ghost {
  background: transparent;
}

.mk-spot__btn--solid {
  background: #f8fafc;
  color: #0f172a;
  border-color: transparent;
}

.mk-spot__btn--solid:hover {
  background: #e2e8f0;
}

.mk-spot__playgate {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem;
}

.mk-spot__play {
  position: relative;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #38bdf8, #2563eb);
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 20px 50px rgba(37, 99, 235, 0.45);
  transition: transform 0.25s ease;
}

.mk-spot__play:hover {
  transform: scale(1.06);
}

.mk-spot__play-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.45);
  animation: mk-spot-ring 2.2s ease-out infinite;
}

.mk-spot__play-icon {
  position: relative;
  font-size: 1.45rem;
  margin-left: 4px;
}

.mk-spot__play-label {
  margin: 1.25rem 0 0.4rem;
  font-family: var(--mk-display);
  font-weight: 750;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: -0.03em;
}

.mk-spot__play-tip {
  margin: 0;
  max-width: 42ch;
  margin-inline: auto;
  color: rgba(186, 230, 253, 0.75);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mk-spot__film {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem 3rem;
}

.mk-spot__device {
  position: relative;
  width: min(72vw, 860px);
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    filter 0.9s ease;
  transform: translate3d(0, 0, 0) scale(1);
}

.mk-spot__device.is-push {
  transform: translate3d(0, -4%, 0) scale(1.08);
}

.mk-spot__device.is-side {
  transform: translate3d(-18%, 0, 0) scale(0.92);
}

.mk-spot__device.is-back {
  transform: translate3d(0, 8%, 0) scale(0.72);
  opacity: 0.35;
  filter: blur(1px);
}

.mk-mac--spot {
  width: 100%;
}

.mk-mac--spot .mk-mac__lid {
  transform: rotateX(78deg);
  opacity: 0.55;
  filter: brightness(0.65);
  transition:
    transform 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease,
    filter 1s ease;
}

.mk-mac--spot.is-open .mk-mac__lid {
  transform: rotateX(6deg);
  opacity: 1;
  filter: none;
}

.mk-spot__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #020617;
  overflow: hidden;
}

.mk-spot__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.2s ease;
  background: #0b1220;
}

.mk-spot__shot.is-on {
  opacity: 1;
  transform: scale(1);
}

.mk-spot__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #020617;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0s linear 0.65s;
  z-index: 2;
}

.mk-spot__scene.is-on {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.mk-spot__scene--dim {
  background: transparent;
  pointer-events: none;
}

.mk-spot__scene--dim.is-on {
  opacity: 0;
  visibility: hidden;
}

.mk-spot__scene--verts {
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(56, 189, 248, 0.14), transparent 60%),
    #020617;
  padding: 1rem;
}

.mk-spot__verts {
  width: min(92%, 560px);
  height: min(70%, 320px);
}

.mk-spot__pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 28px rgba(125, 211, 252, 0.85);
  animation: mk-reel-pulse 1.35s ease-in-out infinite;
}

.mk-spot__logo {
  width: min(48%, 200px);
  border-radius: 10px;
  background: #000;
  margin-bottom: 0.85rem;
  animation: mk-reel-rise 0.9s ease both;
}

.mk-spot__brand-name {
  margin: 0;
  font-family: var(--mk-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: -0.04em;
  animation: mk-reel-rise 0.85s 0.2s ease both;
}

.mk-spot__copy {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%) translateY(18px);
  width: min(92vw, 720px);
  text-align: center;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-spot__device.is-side ~ .mk-spot__copy {
  left: auto;
  right: 6%;
  transform: translateX(0) translateY(18px);
  text-align: left;
  width: min(38vw, 420px);
  bottom: 28%;
}

.mk-spot__device.is-side ~ .mk-spot__copy.is-in {
  transform: translateX(0) translateY(0);
}

.mk-spot__copy.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mk-spot__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.mk-spot__title {
  margin: 0 0 0.55rem;
  font-family: var(--mk-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.mk-spot__body {
  margin: 0 auto;
  max-width: 36ch;
  color: rgba(226, 232, 240, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.4;
}

.mk-spot__device.is-side ~ .mk-spot__copy .mk-spot__body {
  margin: 0;
}

.mk-spot__finale {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.mk-spot__finale.is-show {
  opacity: 1;
}

.mk-spot__letters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  font-family: var(--mk-display);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 9rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin-bottom: 1.1rem;
}

.mk-spot__letters-line {
  display: flex;
  gap: clamp(0.15rem, 1.4vw, 0.7rem);
}

.mk-spot__letters-line--cloud {
  font-size: 0.48em;
  letter-spacing: 0.16em;
  gap: clamp(0.1rem, 1vw, 0.4rem);
  color: rgba(226, 232, 240, 0.92);
}

.mk-spot__letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(70px) rotateX(70deg) scale(0.55);
  filter: blur(10px);
}

.mk-spot__letters.is-assembling span {
  animation: mk-spot-letter 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mk-spot__letters.is-assembling .mk-spot__letters-line:first-child span:nth-child(1) { animation-delay: 0.04s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line:first-child span:nth-child(2) { animation-delay: 0.16s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line:first-child span:nth-child(3) { animation-delay: 0.28s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line:first-child span:nth-child(4) { animation-delay: 0.4s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line--cloud span:nth-child(1) { animation-delay: 0.56s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line--cloud span:nth-child(2) { animation-delay: 0.66s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line--cloud span:nth-child(3) { animation-delay: 0.76s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line--cloud span:nth-child(4) { animation-delay: 0.86s; }
.mk-spot__letters.is-assembling .mk-spot__letters-line--cloud span:nth-child(5) { animation-delay: 0.96s; }

.mk-spot__slogan {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2.6vw, 1.85rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, color 1.1s ease, transform 0.9s ease, text-shadow 1.1s ease;
}

.mk-spot__slogan.is-lit,
.mk-spot__finale.is-lit .mk-spot__slogan {
  opacity: 1;
  color: #f8fafc;
  transform: translateY(0);
  text-shadow:
    0 0 22px rgba(125, 211, 252, 0.55),
    0 0 48px rgba(37, 99, 235, 0.4);
}

.mk-spot__url {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: #7dd3fc;
  opacity: 0;
  transition: opacity 0.8s ease 0.25s;
}

.mk-spot__finale.is-lit .mk-spot__url {
  opacity: 1;
}

.mk-spot__skip {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

@keyframes mk-spot-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes mk-spot-ring {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes mk-spot-letter {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateX(75deg) scale(0.5);
    filter: blur(12px);
  }
  65% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
    text-shadow: 0 0 28px rgba(125, 211, 252, 0.5);
  }
}

@media (max-width: 900px) {
  .mk-spot__device {
    width: min(92vw, 560px);
  }

  .mk-spot__device.is-side {
    transform: translate3d(0, -6%, 0) scale(0.94);
  }

  .mk-spot__device.is-side ~ .mk-spot__copy {
    left: 50%;
    right: auto;
    bottom: 6%;
    width: min(92vw, 520px);
    text-align: center;
    transform: translateX(-50%) translateY(18px);
  }

  .mk-spot__device.is-side ~ .mk-spot__copy.is-in {
    transform: translateX(-50%) translateY(0);
  }

  .mk-spot__device.is-side ~ .mk-spot__copy .mk-spot__body {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-spot__orb,
  .mk-spot__play-ring,
  .mk-spot__pulse,
  .mk-spot__letters span,
  .mk-mac--spot .mk-mac__lid {
    animation: none !important;
    transition: none !important;
  }
}

/* —— Promotions / offers (Support Desk editable) —— */
.mk-section--promos {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.mk-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.mk-promo-card {
  background: linear-gradient(160deg, #0f172a 0%, #111827 100%);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mk-promo-card__media {
  aspect-ratio: 16 / 9;
  background: #020617;
}
.mk-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mk-promo-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.mk-promo-card__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b1220;
  background: #67e8f9;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.mk-promo-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #f8fafc;
}
.mk-promo-card p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.45;
  white-space: pre-wrap;
}
.mk-promo-card__until {
  font-size: 0.85rem !important;
  color: #7dd3fc !important;
}
.mk-promo-card .mk-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Legal footer (home) */
.mk-foot {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: #070b14;
  padding: 2.5rem 0 3rem;
  margin-top: 0;
}
.mk-foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
.mk-foot__brand strong {
  display: block;
  font-family: Syne, system-ui, sans-serif;
  font-size: 1.05rem;
  color: #f8fafc;
  margin-bottom: 0.35rem;
}
.mk-foot__brand p {
  margin: 0;
  color: #64748b;
  font-size: 0.85rem;
}
.mk-foot__imprint {
  margin-top: 0.75rem !important;
  max-width: 36rem;
  font-size: 0.8rem !important;
  line-height: 1.5;
  color: #64748b !important;
}
.mk-foot__imprint a {
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mk-foot__imprint a:hover {
  color: #7dd3fc;
}
.mk-foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  max-width: 52rem;
}
.mk-foot__nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
}
.mk-foot__nav a:hover {
  color: #7dd3fc;
}

