:root {
    /* Hybrid page aliases → site tokens (single source of truth). */
    --white: var(--paper, #FFFFFF);
    --ink-muted: var(--ink-faint, #555555);
    --olive: var(--gold-deep, var(--mk-muted));
    --night-text: var(--night-ink, #FFFFFF);
    --night-muted: var(--night-soft, #D0D0D0);
    --ph: #E8E8E8;
    --ph-dark: #3A3A3A;
    --ph-photo: #5A534C;
    --font-sans: var(--font-body, Inter, system-ui, sans-serif);
    --gutter: var(--page-gutter, clamp(20px, 3.2vw, 40px));
    --mk-container: var(--container);
    --mk-container-wide: var(--container-wide);
    --radius: var(--radius-s, 10px);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body.mk-hybrid-home {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
  }
  .mk-package-modal {
    font-family: var(--font-sans);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  /* Don't force link color onto buttons - that made ink/primary labels invisible. */
  body.mk-hybrid-home #mk-content a:not(.btn):not(.lx-btn) {
    color: inherit;
    text-decoration: none;
  }
  body.mk-hybrid-home #mk-content a.btn,
  body.mk-hybrid-home #mk-content a.lx-btn {
    text-decoration: none;
  }
  body.mk-hybrid-home #mk-content a.lx-btn--primary,
  body.mk-hybrid-home #mk-content a.lx-btn--ink,
  body.mk-hybrid-home #mk-content a.lx-btn--primary:hover,
  body.mk-hybrid-home #mk-content a.lx-btn--ink:hover {
    color: #FFFFFF;
  }

  .note {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    padding: 12px var(--gutter);
    text-align: center;
  }
  .note strong { color: var(--mk-dark-accent); }

  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-h, 76px);
    display: flex;
    align-items: center;
    background: rgb(255 255 255 / 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    width: var(--mk-container-wide);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1.15;
  }
  .logo-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .logo-by {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0;
  }
  .footer .logo img { width: 32px; height: 32px; }
  .footer .logo-by { color: var(--mk-dark-muted); }
  .nav-links {
    display: flex; gap: 32px; justify-content: center;
    font-size: 14px; font-weight: 500; color: var(--ink-soft);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-actions {
    display: flex; gap: 18px; justify-content: flex-end; align-items: center;
    font-size: 14px; font-weight: 500;
  }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 50px; padding: 0 24px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    transition: background .15s, border-color .15s, color .15s;
  }
  .btn--primary {
    background: var(--accent-deep, var(--mk-blue));
    color: #FFFFFF;
    border: 1px solid var(--accent-deep, var(--mk-blue));
  }
  .btn--primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
  }
  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn--ghost:hover { background: var(--ink); color: #FFFFFF; }
  .btn--soon,
  .btn--soon:hover {
    cursor: default;
    pointer-events: none;
    opacity: 0.78;
    background: transparent;
    color: inherit;
  }
  .btn--ink {
    background: var(--ink);
    color: #FFFFFF;
    border: 1px solid var(--ink);
  }
  .btn--ink:hover {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: #FFFFFF;
  }
  .btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }
  .btn--on-dark {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #fff;
  }
  .btn--on-dark:hover { background: #fff; color: var(--ink); }
  /* Win over any parent/link color inheritance */
  body.mk-hybrid-home #mk-content a.btn--primary,
  body.mk-hybrid-home #mk-content a.btn--ink,
  body.mk-hybrid-home #mk-content a.btn--on-dark { color: #FFFFFF; }
  body.mk-hybrid-home #mk-content a.btn--ghost { color: var(--ink); }
  body.mk-hybrid-home #mk-content a.btn--ghost:hover { color: #FFFFFF; }
  body.mk-hybrid-home #mk-content a.btn--primary:hover,
  body.mk-hybrid-home #mk-content a.btn--ink:hover { color: #FFFFFF; }

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

  .eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--olive); margin: 0 0 20px;
  }
  .h1 {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(3.2rem, 6.5vw, 5.25rem);
    line-height: 1; letter-spacing: -.03em; margin: 0;
  }
  .h2 {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    line-height: 1.12; letter-spacing: -.02em;
    margin: 0 0 28px;
    max-width: 22ch;
    text-wrap: balance;
  }
  .lead {
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    color: var(--ink-soft); max-width: 38rem; margin: 0;
    line-height: 1.6;
  }
  .highlight {
    display: inline-block; padding: 0 .16em;
    background: var(--accent-deep, var(--mk-blue)); color: #FFFFFF; border-radius: 5px;
    transform: rotate(-1deg);
  }
  .list { list-style: none; margin: 32px 0 0; padding: 0; }
  .list li {
    position: relative; padding: 10px 0 10px 28px;
    font-size: 1.05rem; color: var(--ink-soft);
  }
  .list li::before {
    content: ""; position: absolute; left: 0; top: 20px;
    width: 14px; height: 2px; background: var(--accent);
  }

  /* Image slots: fixed frame; image covers the slot (never grows it) */
  .ph {
    position: relative;
    overflow: hidden;
    background: var(--ph);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 320px;
  }
  .ph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ph--ui img { object-position: left top; }
  .ph--life img { object-position: center; }
  .ph--ui { background: #E8E8E8; border-color: var(--line); }
  .ph--life { background: #B7AEA3; border-color: #9A9188; }
  .ph--dark { background: var(--ph-dark); border-color: #4A4A4A; }
  .ph--life.ph--dark { background: #3F3A36; border-color: #6A635C; }
  .ph--tall { min-height: 480px; }
  .ph--sm { min-height: 200px; }
  .ph--md { min-height: 260px; }

  /* ---- Hero ---- */
  .hero {
    position: relative;
    min-height: calc(100svh - var(--header-stack, 106px));
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px var(--gutter, 24px);
    background: var(--white);
    text-align: center;
    overflow: hidden;
  }
  .hero-media,
  .hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero-media {
    z-index: 0;
    overflow: hidden;
    background: var(--white);
    transform: translateZ(0);
    contain: paint;
  }
  .hero-media .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: translateZ(0) scale(1.06);
  }
  @media (max-width: 820px) {
    .hero-media .hero-video {
      object-fit: cover;
      object-position: center;
    }
  }
  .hero-overlay {
    z-index: 1;
    background:
      linear-gradient(
        to bottom,
        rgb(12 18 20 / 0.62) 0%,
        rgb(12 18 20 / 0.48) 38%,
        rgb(12 18 20 / 0.18) 64%,
        rgb(255 255 255 / 0.72) 86%,
        #fff 100%
      );
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    width: min(880px, calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
    padding-bottom: 0;
  }
  .hero-migrate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
  }
  body.mk-hybrid-home #mk-content a.hero-migrate:not(.btn):not(.lx-btn) {
    color: var(--ink);
    background: #FFFFFF;
  }
  .hero-migrate:hover,
  .hero-migrate:focus-visible,
  body.mk-hybrid-home #mk-content a.hero-migrate:not(.btn):not(.lx-btn):hover,
  body.mk-hybrid-home #mk-content a.hero-migrate:not(.btn):not(.lx-btn):focus-visible {
    background: #FFFFFF;
    color: var(--ink);
  }
  .hero-migrate-sep { opacity: 0.4; font-weight: 400; }
  .hero .h1 {
    margin-bottom: 20px;
    margin-inline: auto;
    letter-spacing: -0.085em;
    color: #fff;
    text-shadow: 0 2px 22px rgb(0 0 0 / 0.28);
  }
  .hero .lead { margin: 0 auto; }
  .hero-line {
    display: block;
    margin: 0;
    color: rgb(255 255 255 / 0.92);
    font-weight: 650;
    font-size: 1.08rem;
    text-shadow: 0 1px 12px rgb(0 0 0 / 0.32);
  }
  .hero-ctas {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: center; margin: 32px 0 0;
  }
  body.mk-hybrid-home #mk-content .hero a.btn--ghost,
  body.mk-hybrid-home #mk-content .hero .btn--ghost {
    color: #fff;
    border-color: rgb(255 255 255 / 0.82);
    background: rgb(255 255 255 / 0.08);
  }
  body.mk-hybrid-home #mk-content .hero a.btn--ghost:hover {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
  }
  body.mk-hybrid-home #mk-content .hero .btn--soon,
  body.mk-hybrid-home #mk-content .hero .btn--soon:hover {
    color: #fff;
    background: rgb(255 255 255 / 0.08);
    border-color: rgb(255 255 255 / 0.82);
    opacity: 0.86;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-media .hero-video { display: none; }
  }
  .founder {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 15px; color: var(--ink-soft); margin: 0;
  }
  .founder .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6A635C;
    flex-shrink: 0;
    overflow: hidden;
  }
  .founder .av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* Hero product stage: flips open on scroll */
  .hero-stage {
    width: var(--mk-container-wide);
    margin: 0 auto;
    padding: 12px 0 48px;
    perspective: 2400px;
    perspective-origin: 50% 35%;
  }
  .laptop {
    --hero-tilt: 22deg;
    position: relative;
    width: 100%;
    margin: 0 auto;
    transform: rotateX(var(--hero-tilt));
    transform-origin: center bottom;
    will-change: transform;
  }
  .laptop-screen {
    position: relative;
    background: var(--white);
    border: 1px solid var(--mk-image-border);
    border-radius: 14px;
    padding: 5px;
    box-shadow:
      0 0 0 1px rgb(255 255 255 / .85) inset,
      0 1px 2px rgb(0 0 0 / .05),
      0 28px 56px -32px rgb(0 0 0 / .28);
  }
  .laptop-display {
    position: relative;
    overflow: hidden;
    background: var(--mk-soft);
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 0 0 1px rgb(0 0 0 / .06) inset;
  }
  .laptop-display img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
  }
  @media (max-width: 640px) {
    .laptop { --hero-tilt: 14deg; }
    .h1 { font-size: clamp(2.55rem, 11vw, 3.4rem); }
  }
  @media (prefers-reduced-motion: reduce) {
    .laptop { --hero-tilt: 6deg !important; }
  }

  /* ---- Voice: reviews + features slider ---- */
  .voice {
    padding: 56px 0 32px;
    background: var(--white);
    overflow-x: clip;
    max-width: 100%;
    border: 0;
  }
  .voice-title {
    margin: 0 auto 36px;
    width: var(--mk-container-wide);
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--ink);
  }
  .voice-title .voice-love {
    font-family: inherit;
    font-style: italic;
    font-weight: 500;
    color: var(--mk-blue);
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  .voice-slider {
    width: var(--mk-container-wide);
    margin-inline: auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .voice-track {
    display: flex;
    width: max-content;
    animation: voice-marquee 48s linear infinite;
    will-change: transform;
  }
  .voice:hover .voice-track,
  .voice:focus-within .voice-track {
    animation-play-state: paused;
  }
  .voice-set {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }
  .voice-card {
    flex: 0 0 320px;
    min-height: 228px;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 28px rgb(24 32 33 / 0.045);
    text-align: left;
  }
  .voice-mark {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 0.7;
    color: #C8C8C8;
    margin-bottom: 14px;
  }
  .voice-card p {
    flex: 1;
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.08rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #3A3A3A;
  }
  .voice-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }
  .voice-av {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: #ECEDEF;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .voice-av--icon {
    color: var(--ink-muted);
  }
  .voice-av svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  .voice-who strong {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 650;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .voice-who span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted);
  }
  @keyframes voice-marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .voice-track {
      animation: none;
      width: 100%;
    }
    .voice-slider {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .voice-slider::-webkit-scrollbar { display: none; }
    .voice-set[aria-hidden="true"] { display: none; }
    .voice-set { padding: 0 var(--gutter); }
  }
  .info-marquee { width: 100%; }
  .info-marquee--night { margin: 0 0 48px; }
  .info-marquee--night .points--on-night { margin-bottom: 0; }

  /* ---- Sections ---- */
  .band { padding: clamp(100px, 12vw, 160px) 0; background: var(--white); }
  #daily.band {
    padding-top: clamp(56px, 6vw, 88px);
    border-top: 0;
  }
  .band--alt { background: var(--white); border-top: 1px solid var(--line); }
  .band--night {
    background: var(--night);
    color: var(--night-text);
  }
  .band--night .eyebrow { color: #B8BE9A; }
  .band--night .h2 { color: #fff; }
  .band--night .lead { color: var(--night-muted); }
  .band--night .list li { color: var(--night-muted); }
  .band--night .list li::before { background: var(--accent); }

  .split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
  }
  .split--flip { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .split--flip .copy { order: 2; }

  .section-head {
    text-align: center;
    margin-bottom: 64px;
  }
  .section-head .h2 {
    margin-inline: auto;
    margin-bottom: 24px;
  }
  .section-head .lead { margin-inline: auto; }

  /* Large product + complementary overlap */
  .media-stack {
    position: relative;
    padding-bottom: 36px;
    overflow: hidden;
    max-width: 100%;
  }
  .media-chip {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(44%, 300px);
    z-index: 2;
  }
  .media-chip--left {
    right: auto;
    left: 0;
  }
  .media-chip--wide {
    width: min(46%, 320px);
  }
  .media-chip--wide .ph.ph--sm {
    min-height: 0;
    height: auto;
  }
  .media-chip--wide .ph img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .media-chip .ph {
    min-height: 210px;
    border: 3px solid var(--white);
    box-shadow: 0 22px 50px -18px rgb(0 0 0 / .45);
  }
  .band--night .media-chip .ph {
    border-color: var(--night);
    box-shadow: 0 22px 50px -18px rgb(0 0 0 / .65);
  }
  .media-caption {
    margin: 14px 4px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    max-width: 36ch;
  }
  .band--night .media-caption { color: #A8A8A8; }

  /* Feature slider: text + media swap, controls under copy */
  .feature-slider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
  }
  .feature-slider--flip {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
  .feature-slider--flip .feature-slider-media { order: 1; }
  .feature-slider--flip .feature-slider-copy { order: 2; }
  .feature-slider-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .feature-slider-text,
  .feature-slider-media {
    display: grid;
  }
  .feature-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .feature-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .feature-slider-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
    margin-top: 36px;
  }
  .feature-slider-tabs {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .feature-slider-tabs button {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-muted);
    cursor: pointer;
  }
  .feature-slider-tabs button[aria-selected="true"] {
    color: var(--ink);
    font-weight: 650;
  }
  .feature-slider-tabs button:hover { color: var(--ink); }
  .feature-slider-tabs .sep {
    color: var(--line-strong);
    font-weight: 400;
    user-select: none;
  }
  .feature-slider-arrows {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .feature-slider-arrows button {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    font: inherit;
    font-size: 20px;
    line-height: 1;
    color: var(--ink-soft);
    cursor: pointer;
  }
  .feature-slider-arrows button:hover { color: var(--accent); }
  @media (max-width: 980px) {
    .feature-slider,
    .feature-slider--flip {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .feature-slider-copy,
    .feature-slider--flip .feature-slider-copy { order: 1; }
    .feature-slider-media,
    .feature-slider--flip .feature-slider-media { order: 2; }
  }
  @media (prefers-reduced-motion: reduce) {
    .feature-slide { transition: none; }
  }

  .points {
    list-style: none; margin: 40px 0 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  }
  .points li {
    font-size: 1.05rem; color: var(--ink-soft);
    padding-left: 16px; border-left: 2px solid var(--accent);
  }
  .points--on-night {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 28px 36px;
    margin: 0 auto 48px;
    max-width: none;
    width: fit-content;
  }
  .points--on-night li {
    color: var(--night-muted);
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 0.98rem;
  }
  /* Money band: invoice-word ring around the content, no live text layout */
  #finance.band--night {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  #finance.band--night::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../images/hybrid/ui/money-ledger.png");
    background-repeat: repeat;
    background-size: 920px 56px;
    transform: translateZ(0);
  }
  #finance .eyebrow { color: var(--mk-dark-accent); }
  #finance .wrap--wide {
    position: relative;
    z-index: 1;
    background: var(--night);
    box-shadow: 0 0 88px 72px var(--night);
  }
  #finance .section-head { margin-bottom: 40px; }
  .money-shot {
    position: relative;
    width: min(1020px, 100%);
    margin: 0 auto;
  }
  .money-shot img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: var(--radius-s, 10px);
    box-shadow: 0 1px 0 rgb(255 255 255 / 0.14);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
  }

  /* Feature preview links: flat, icon + label, no cards */
  .feature-preview {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .feature-preview li { margin: 0; min-width: 0; }
  .feature-preview a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 28px 20px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transition: background .15s, color .15s;
  }
  .feature-preview li:nth-child(3n) a { border-right: 0; }
  .feature-preview a:hover {
    background: var(--ink);
    color: #fff;
  }
  /* Beat #mk-content a { color: inherit } so labels stay readable on ink hover */
  body.mk-hybrid-home #mk-content .feature-preview a:hover,
  body.mk-hybrid-home #mk-content .feature-preview a:hover .fp-label,
  body.mk-hybrid-home #mk-content .feature-preview a:hover .fp-arrow {
    color: #fff;
  }
  .feature-preview a:hover .lx-mega-icon {
    color: #fff;
  }
  .feature-preview a:hover .fp-arrow { opacity: 1; transform: translateX(0); }
  .feature-preview .lx-mega-icon {
    flex-shrink: 0;
  }
  .fp-label {
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.25;
  }
  .fp-arrow {
    font-size: 1.1rem;
    opacity: .35;
    transform: translateX(-4px);
    transition: opacity .15s, transform .15s;
  }
  .feature-preview-foot {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .feature-preview-foot a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
  }
  .feature-preview-foot a:hover { color: var(--accent); border-color: var(--accent); }
  #toolkit .feature-preview {
    grid-template-columns: repeat(4, 1fr);
  }
  #toolkit .feature-preview li:nth-child(3n) a { border-right: 1px solid var(--line); }
  #toolkit .feature-preview li:nth-child(4n) a { border-right: 0; }

  .own-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .own-col {
    padding: 22px 20px;
    border-radius: 14px;
    background: #F5F5F5;
  }
  .own-col h3 {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .own-col--muted h3 { color: var(--ink-muted); }
  .own-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .own-col li {
    position: relative;
    padding: 7px 0 7px 18px;
    font-size: .95rem;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .own-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 2px;
    background: var(--accent);
  }
  .own-col--muted li { color: var(--ink-muted); }
  .own-col--muted li::before { background: var(--line-strong); }

  .pricing-top {
    text-align: center;
    margin-bottom: 40px;
  }
  .pricing-top .eyebrow {
    color: var(--mk-dark-accent);
  }
  .pricing-top .h2 {
    margin: 0 auto 16px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
  }
  .pricing-top .lead {
    margin: 0 auto 28px;
    color: var(--night-muted);
    max-width: 42ch;
  }

  .billing-toggle {
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .billing-toggle-track {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    background: #333333;
    border: 1px solid #4A4A4A;
    border-radius: 999px;
  }
  .billing-toggle-track button {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--night-muted);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .billing-toggle-track button[aria-pressed="true"] {
    background: #fff;
    color: var(--ink);
  }
  .billing-save {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
  }
  .billing-toggle-track button[aria-pressed="true"] .billing-save {
    background: var(--accent);
    color: #fff;
  }
  .billing-toggle-track button[aria-pressed="false"] .billing-save {
    background: var(--mk-dark-line);
    color: var(--mk-dark-muted);
  }

  .pricing-swipe-hint {
    display: none;
    margin: 0 0 14px;
    text-align: center;
    color: var(--night-muted, #9A9A9A);
    font-size: 0.82rem;
  }
  .pricing-plans-block .billing-toggle { margin-bottom: 8px; }
  .plans {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 18px;
    align-items: center;
    padding-block: 36px;
  }
  .mk-package-modal {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    background: #1A1A1A;
  }
  .mk-package-modal .pricing-plans-block,
  .mk-package-modal .plans {
    background: transparent;
  }
  .mk-package-modal .plans {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-block: 36px;
    align-items: center;
    grid-template-columns: 1fr 1.18fr 1fr;
  }
  .mk-package-modal .plan--featured {
    margin-block: -36px;
    z-index: 1;
    padding: 64px 30px 60px;
  }
  .mk-package-modal .billing-toggle {
    position: relative;
    z-index: 3;
    margin: 0 0 20px;
  }
  .plan {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    color: var(--ink);
    border: 0;
    border-radius: 28px;
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    box-shadow:
      0 4px 10px #00000022,
      0 18px 36px #00000040,
      0 40px 72px #0000002E;
  }
  .plan--featured {
    padding: 64px 30px 60px;
    margin-block: -36px;
    box-shadow:
      0 6px 14px #00000028,
      0 24px 48px #0000004D,
      0 52px 90px #00000038;
    z-index: 1;
  }
  .plan .tag {
    position: absolute;
    /* Overhang 1px so subpixel AA does not leave a white seam on the card corner. */
    top: -1px;
    right: -1px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    max-width: 58%;
    margin: 0;
    padding: 13px 17px 12px 18px;
    border-radius: 0 29px 0 18px;
    background: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: right;
    color: #fff;
    box-shadow: -6px 8px 18px #00000033;
  }
  .plan--featured .tag {
    background: var(--accent-deep);
    box-shadow: -6px 8px 18px #2449E840;
  }
  .plan--soft .tag {
    background: var(--olive);
    box-shadow: -6px 8px 18px #62696840;
  }
  .plan h3 {
    margin: 0 0 18px;
    padding-right: min(48%, 140px);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.2;
  }
  .plan-topline { display: contents; }
  .price {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: -.03em;
    color: var(--ink);
    line-height: 1.1;
  }
  .plan--featured .price { color: var(--accent-deep); font-size: 2.05rem; }
  .price span {
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink-muted);
  }
  .price-billed {
    margin: 0 0 14px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink-muted);
  }
  .plan-desc {
    margin: 0 0 22px;
    color: var(--ink-muted);
    font-size: .94rem;
    line-height: 1.5;
    min-height: 2.85em;
  }
  .plan ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .plan li {
    position: relative;
    font-size: .92rem;
    color: var(--ink-soft);
    padding: 0 0 0 26px;
    line-height: 1.4;
  }
  .plan li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.28em;
    width: 16px;
    height: 16px;
    background: center / 16px 16px no-repeat
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l3 3 6.6-6.6' stroke='%236B8F5E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
  .plan .btn {
    width: 100%;
    margin-top: auto;
    border-radius: var(--radius-s, 10px);
    min-height: 48px;
  }

  .faq-stack { max-width: 720px; margin-inline: auto; }
  #faq details {
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }
  #faq details:last-child { border-bottom: 0; }
  #faq summary {
    cursor: pointer; font-weight: 650; font-size: 1.08rem;
    list-style: none; display: flex; justify-content: space-between; gap: 16px;
  }
  #faq summary::-webkit-details-marker { display: none; }
  #faq summary::after { content: "+"; color: var(--ink-muted); font-weight: 400; }
  #faq details[open] summary::after { content: "-"; }
  #faq details p { margin: 16px 0 0; color: var(--ink-soft); max-width: 58ch; }

  /* Closing CTA lives in site.css (.lx-final) - shared site-wide.
     Keep FAQ band bottom tight; CTA bridge margin handles the overlap. */
  #faq.band {
    padding-bottom: clamp(16px, 2.5vw, 28px);
  }

  .footer {
    position: relative;
    z-index: 1;
    background: var(--night); color: var(--night-muted);
    padding: calc(var(--final-half) + 48px) 0 40px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
    margin-bottom: 48px;
  }
  .footer h4 {
    color: #fff; margin: 0 0 16px; font-size: 12px;
    letter-spacing: .08em; text-transform: uppercase;
  }
  .footer ul { list-style: none; margin: 0; padding: 0; }
  .footer li { margin: 0 0 10px; }
  .footer a:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid var(--night-line);
    padding-top: 24px; color: #9A9A9A;
  }

  @media (max-width: 980px) {
    .nav-inner { grid-template-columns: 1fr auto; }
    .nav-links { display: none; }
    .split, .split--flip, .points, .footer-grid {
      grid-template-columns: 1fr;
    }
    .split,
    .split--flip {
      gap: 36px;
    }
    /* Copy always above media on stacked splits */
    .split .copy,
    .split--flip .copy { order: 1; }
    .split .media-stack,
    .split--flip .media-stack,
    .split > .ph,
    .split--flip > .ph { order: 2; }
    .pricing-swipe-hint { display: block; }
    .plans {
      display: flex;
      grid-template-columns: none;
      align-items: stretch;
      gap: 14px;
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding-block: 0;
      padding-inline: calc((100vw - min(86vw, 360px)) / 2);
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: calc((100vw - min(86vw, 360px)) / 2);
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
    }
    .plans::-webkit-scrollbar { display: none; }
    /* Modal: no 100vw breakout (dialog is already full viewport). */
    .mk-package-modal .plans {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding-block: 0;
      padding-inline: clamp(16px, 4vw, 24px);
      scroll-padding-inline: clamp(16px, 4vw, 24px);
      align-items: stretch;
      grid-template-columns: none;
      background-color: #1A1A1A;
    }
    .mk-package-modal .pricing-plans-block {
      background-color: #1A1A1A;
    }
    .mk-package-modal .plan--featured {
      margin-block: 0;
      padding: 32px 24px 28px;
    }
    .mk-package-modal .billing-toggle {
      position: relative;
      z-index: 3;
      margin-bottom: 24px;
    }
    .plan {
      flex: 0 0 min(86vw, 360px);
      width: min(86vw, 360px);
      max-width: min(86vw, 360px);
      scroll-snap-align: center;
      scroll-snap-stop: always;
      margin-block: 0;
    }
    .plan--featured {
      margin-block: 0;
      padding: 32px 24px 28px;
    }
    .plan-desc { min-height: 0; }
    .plan h3 { padding-right: 0; }
    .feature-preview,
    #toolkit .feature-preview { grid-template-columns: repeat(4, 1fr); }
    .feature-preview li:nth-child(3n) a { border-right: 1px solid var(--line); }
    .feature-preview li:nth-child(4n) a { border-right: 0; }
    #toolkit .feature-preview li:nth-child(3n) a { border-right: 1px solid var(--line); }
    #toolkit .feature-preview li:nth-child(4n) a { border-right: 0; }
    #toolkit .feature-preview a { padding: 22px 12px; }
    .media-chip {
      position: static;
      width: min(72%, 280px);
      margin: -40px 0 0 auto;
    }
    .media-chip--wide {
      width: min(70%, 320px);
    }
    .media-chip--left { margin: -40px auto 0 0; }
    .media-stack { padding-bottom: 0; }
    .ph--tall { min-height: 280px; }
    .h2 { max-width: none; }
    .section-head { margin-bottom: 40px; }
    .band { padding: clamp(72px, 12vw, 120px) 0; }
    .feature-slider-controls {
      margin-top: 28px;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .feature-slider-tabs {
      flex-wrap: wrap;
      row-gap: 8px;
      column-gap: 12px;
    }
    .feature-slider-tabs button { font-size: 14px; }
    .billing-toggle { margin-top: 28px; }
    .billing-toggle-track {
      width: 100%;
      max-width: 360px;
    }
    .billing-toggle-track button {
      flex: 1 1 auto;
      justify-content: center;
      padding: 0 12px;
      font-size: 13px;
    }
    .pricing-top .h2 { font-size: clamp(2rem, 8vw, 2.8rem); }

    .voice {
      padding: 40px 0 28px;
    }
    .voice-title { margin-bottom: 28px; }
    .voice-card {
      flex-basis: 280px;
      min-height: 212px;
      padding: 22px 20px 18px;
    }
    .voice-card p { font-size: 1.08rem; }

    /* Mobile info marquees (money points) */
    .info-marquee {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }
    .info-marquee--night { margin: 0 0 40px; }
    .info-marquee.is-marquee ul {
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      width: max-content;
      max-width: none;
      margin: 0;
      gap: 0;
      animation: info-marquee 32s linear infinite;
    }
    .info-marquee.is-marquee .points--on-night {
      flex-direction: row;
      flex-wrap: nowrap;
      width: max-content;
      max-width: none;
      margin: 0;
      gap: 0;
    }
    .info-marquee.is-marquee .points--on-night li {
      flex: 0 0 auto;
      white-space: nowrap;
      margin: 0;
      padding: 0 28px;
      border-left: 0;
      border-right: 1px solid var(--night-line);
    }
  }
  @keyframes info-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (max-width: 980px) and (prefers-reduced-motion: reduce) {
    .info-marquee.is-marquee ul {
      animation: none;
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .info-marquee.is-marquee ul::-webkit-scrollbar { display: none; }
  }
  @media (max-width: 980px) {
    .footer {
      padding: calc(var(--final-half) + 16px) 0 36px;
    }
  }
  @media (max-width: 640px) {
    #faq.band {
      padding-bottom: 0;
    }
    .footer {
      padding: calc(var(--final-half) + 12px) 0 32px;
    }
    .hero-ctas {
      width: 100%;
      flex-wrap: nowrap;
      gap: 10px;
    }
    .hero-migrate {
      font-size: 12px;
      margin-bottom: 18px;
      padding: 9px 16px;
      max-width: 100%;
    }
    .hero-ctas .btn {
      flex: 1 1 0;
      width: auto;
      min-width: 0;
      padding: 0 12px;
      font-size: 14px;
      white-space: nowrap;
    }
    .feature-preview,
    #toolkit .feature-preview { grid-template-columns: repeat(2, 1fr); }
    .feature-preview a,
    #toolkit .feature-preview a { padding: 22px 16px; }
    .feature-preview li:nth-child(2n) a,
    #toolkit .feature-preview li:nth-child(2n) a { border-right: 0; }
    .feature-preview li:nth-child(odd) a,
    #toolkit .feature-preview li:nth-child(odd) a { border-right: 1px solid var(--line); }
    #toolkit .feature-preview > li:nth-child(n+5) { display: none; }
    .ph--tall { min-height: 220px; }
    #finance .wrap--wide {
      box-shadow: 0 0 56px 48px var(--night);
    }
    .footer-grid { gap: 28px; margin-bottom: 32px; }
    .info-marquee.is-marquee ul { animation-duration: 28s; }
  }


/* WP chrome */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   Hybrid homepage + theme header/footer
   -------------------------------------------------------------------------- */
body.mk-hybrid-home #mk-content {
  display: block;
  background: #fff;
  overflow-x: clip;
  max-width: 100%;
}
body.mk-hybrid-home .band,
body.mk-hybrid-home .hero,
body.mk-hybrid-home .hero-stage,
body.mk-hybrid-home .wrap,
body.mk-hybrid-home .wrap--wide {
  max-width: 100%;
}
body.mk-hybrid-home .mk-header {
  z-index: 100;
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--line, #D6D6D6);
}
body.mk-hybrid-home .mk-header.is-scrolled {
  background: #FFFFFF;
}
body.mk-hybrid-home .mk-sheet {
  z-index: 200;
}
/* Sheet: hybrid FAQ summary styles must never leak (already #faq-scoped).
   Keep sheet above sticky CTA and page content. */
body.mk-hybrid-home .mk-sheet .lx-sheet-features > summary::after,
body.mk-hybrid-home .mk-sheet .lx-sheet-cat > summary::after {
  content: none;
}
body.mk-hybrid-home.mk-sheet-open .mk-sticky-cta {
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 980px) {
  body.mk-hybrid-home .hero-stage {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--page-gutter, 20px);
    box-sizing: border-box;
  }
  body.mk-hybrid-home .wrap,
  body.mk-hybrid-home .wrap--wide {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--page-gutter, 20px);
    box-sizing: border-box;
  }
  /* Side-slide reveals expand scroll width on mobile - use vertical only */
  html.hx-motion body.mk-hybrid-home [data-reveal="left"],
  html.hx-motion body.mk-hybrid-home [data-reveal="right"] {
    transform: translate3d(0, 36px, 0);
  }
}
@media (max-width: 640px) {
  body.mk-hybrid-home .lx-footer .lx-footer-grid {
    gap: 32px;
  }
  body.mk-hybrid-home .lx-footer .lx-footer-nav {
    width: 100%;
    gap: clamp(18px, 5vw, 32px);
  }
  body.mk-hybrid-home .mk-sticky-cta {
    /* Keep sticky CTA above footer seam, below sheet */
    z-index: 90;
  }
}
/* ---- Homepage pricing: dark band, centered copy, even cards ---- */
#pricing.band {
  background: var(--night);
  color: var(--night-text);
}
#pricing .pricing-flat-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-align: center;
}
#pricing .pricing-flat-head .eyebrow {
  color: var(--mk-dark-accent);
  margin-bottom: 12px;
}
#pricing .pricing-flat-head .h2 {
  margin: 0 auto;
  max-width: 12ch;
  color: var(--night-text);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}
#pricing .pricing-flat-head .lead {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--night-muted);
}
#pricing .billing-toggle {
  justify-content: center;
  margin: 0 0 32px;
}
#pricing .billing-toggle-track {
  background: #333333;
  border: 1px solid var(--mk-dark-line);
}
#pricing .billing-toggle-track button {
  color: var(--night-muted);
}
#pricing .billing-toggle-track button[aria-pressed="true"] {
  background: var(--mk-white);
  color: var(--ink);
  box-shadow: none;
}
#pricing .plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding-block: 0;
  overflow: hidden;
  background: var(--mk-blue);
  border: 0;
  border-radius: 12px;
}
#pricing .plans--three {
  grid-template-columns: 1fr 1fr 1fr;
}
#pricing .plan-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
}
#pricing .plan-actions .btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}
#pricing .plan {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 36px 32px 32px;
  min-height: 100%;
  text-align: center;
}
#pricing .plan--featured {
  margin-block: 0;
  padding: 36px 32px 32px;
  background: var(--mk-blue);
  border: 0;
  box-shadow: none;
  z-index: auto;
  color: #fff;
  align-self: stretch;
  min-height: 100%;
}
#pricing .plan--soft {
  background: var(--mk-white);
}
#pricing .plan--soft .price {
  white-space: normal;
}
#pricing .plan .tag {
  position: static;
  display: block;
  max-width: none;
  margin: 0 0 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mk-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  box-shadow: none;
}
#pricing .plan--featured .tag {
  background: transparent;
  color: rgb(255 255 255 / 0.72);
  box-shadow: none;
}
#pricing .plan-topline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  text-align: center;
}
#pricing .plan h3 {
  margin: 0;
  padding-right: 0;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
#pricing .plan .price,
#pricing .plan--featured .price {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
#pricing .plan--featured h3,
#pricing .plan--featured .price {
  color: #fff;
}
#pricing .plan--featured .price span,
#pricing .plan--featured .price-billed,
#pricing .plan--featured .plan-desc,
#pricing .plan--featured li {
  color: rgb(255 255 255 / 0.82);
}
#pricing .plan .price span {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--mk-muted);
}
body.mk-hybrid-home #mk-content #pricing .plan--featured .price span {
  color: #fff;
}
#pricing .plan .price-billed {
  margin: 12px 0 0;
  font-size: 0.88rem;
  font-weight: 400;
  text-align: center;
}
#pricing .plan-desc {
  margin: 20px 0 0;
  min-height: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}
#pricing .plan ul {
  width: min(100%, 16.5rem);
  border-top: 1px solid var(--mk-line);
  margin: 28px auto;
  padding-top: 24px;
  gap: 16px;
  align-items: stretch;
}
#pricing .plan--featured ul {
  border-top-color: rgb(255 255 255 / 0.22);
}
#pricing .plan li {
  width: 100%;
  margin-inline: 0;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}
#pricing .plan li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l3 3 6.6-6.6' stroke='%23626968' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#pricing .plan--featured li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l3 3 6.6-6.6' stroke='%23FFFFFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
body.mk-hybrid-home #mk-content #pricing .plan--featured a.btn--primary {
  background: #fff;
  border-color: #fff;
  color: var(--mk-blue);
}
body.mk-hybrid-home #mk-content #pricing .plan--featured a.btn--primary:hover {
  background: var(--mk-white);
  border-color: var(--mk-white);
  color: var(--mk-blue-dark);
}
body.mk-hybrid-home #mk-content .btn--soon,
body.mk-hybrid-home #mk-content .btn--soon:hover {
  pointer-events: none;
  cursor: default;
  opacity: 0.78;
}
body.mk-hybrid-home #mk-content #pricing .plan--featured a.btn--ghost {
  background: transparent;
  border-color: rgb(255 255 255 / 0.45);
  color: #fff;
}
body.mk-hybrid-home #mk-content #pricing .plan--featured a.btn--ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--mk-blue);
}
#pricing .plan .btn {
  border-radius: var(--radius-s, 10px);
}
#pricing .plan .btn--ghost {
  background: var(--mk-white);
  border-color: var(--mk-line);
  color: var(--ink);
}
#pricing .plan .btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
#pricing .pricing-setup-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 16px 22px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius-l, 20px);
  background: rgb(255 255 255 / 0.04);
  text-align: center;
}
#pricing .pricing-setup-bar p {
  margin: 0;
  color: var(--night-muted);
  font-size: 0.95rem;
}
#pricing .pricing-setup-bar a {
  flex: 0 0 auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--night-text);
  text-decoration: none;
}
#pricing .pricing-setup-bar a:hover {
  color: var(--mk-dark-accent);
}
#pricing .pricing-fine {
  margin: 18px 0 0;
  text-align: center;
  color: var(--night-muted);
  font-size: 0.78rem;
}
#compare-plans.band {
  background: var(--white);
  color: var(--ink);
  padding-top: clamp(72px, 8vw, 110px);
}
body.mk-pricing-page #pricing.band {
  padding-bottom: clamp(72px, 8vw, 110px);
}
#compare-plans .pricing-free-pro-head {
  display: grid;
  justify-items: center;
  gap: 0;
  margin: 0 0 22px;
  text-align: center;
}
#compare-plans .pricing-free-pro-head .h2 {
  margin: 0 auto;
  max-width: none;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 600;
}
#compare-plans .pricing-free-pro-hint {
  display: none;
  margin: 0 0 12px;
  text-align: center;
  color: var(--mk-muted);
  font-size: 0.82rem;
}
#compare-plans .pricing-free-pro-wrap {
  overflow: auto;
  border: 1px solid var(--mk-line);
  border-radius: 0;
  background: var(--mk-white);
  box-shadow: none;
}
#compare-plans .pricing-free-pro-wrap:focus-visible {
  outline: 2px solid var(--mk-blue);
  outline-offset: 3px;
}
#compare-plans .pricing-free-pro-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--mk-white);
}
#compare-plans .pricing-free-pro-table th,
#compare-plans .pricing-free-pro-table td {
  padding: 14px 16px;
  border: 1px solid var(--mk-line);
  text-align: center;
  vertical-align: middle;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
  background: var(--mk-white);
}
#compare-plans .pricing-free-pro-table thead th {
  padding: 18px 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: bottom;
}
#compare-plans .pricing-fp-name {
  display: block;
}
#compare-plans .pricing-fp-blurb,
#compare-plans .pricing-fp-price {
  display: block;
  margin-top: 4px;
  color: var(--mk-muted);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}
#compare-plans .pricing-fp-price {
  font-weight: 500;
  color: var(--ink);
}
#compare-plans .pricing-fp-feature {
  width: 28%;
  text-align: left;
  font-weight: 500;
}
#compare-plans .pricing-free-pro-table thead .pricing-fp-feature {
  color: var(--mk-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: bottom;
}
#compare-plans .pricing-free-pro-table .is-pro {
  background: var(--mk-white);
}
#compare-plans .pricing-free-pro-table .is-complete {
  background: var(--mk-blue);
  color: #fff;
  border-color: rgb(255 255 255 / 0.16);
}
#compare-plans .pricing-free-pro-table thead .is-complete .pricing-fp-blurb,
#compare-plans .pricing-free-pro-table thead .is-complete .pricing-fp-price {
  color: rgb(255 255 255 / 0.78);
}
#compare-plans .pricing-free-pro-table .is-them {
  background: var(--mk-white);
}
#compare-plans .pricing-free-pro-table .is-complete .pricing-fp-y,
#compare-plans .pricing-free-pro-table .is-complete .pricing-fp-p,
#compare-plans .pricing-free-pro-table .is-complete .pricing-fp-n {
  color: #fff;
}
#compare-plans .pricing-fp-y {
  color: var(--mk-blue);
  font-size: 1.1rem;
  font-weight: 600;
}
#compare-plans .pricing-fp-p {
  color: var(--mk-muted);
  font-size: 1.15rem;
  font-weight: 500;
}
#compare-plans .pricing-fp-n {
  color: var(--mk-muted);
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 1100px) {
  #pricing .plans,
  #pricing .plans--three {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  #compare-plans .pricing-free-pro-hint { display: block; }
  #compare-plans .pricing-free-pro-head .h2 { max-width: none; }
  #pricing .pricing-flat-head .h2 { max-width: none; }
  #pricing .plans,
  #pricing .plans--three {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    scroll-snap-type: none;
  }
  #pricing .plan,
  #pricing .plan--featured {
    flex: none;
    width: auto;
    max-width: none;
    margin-block: 0;
    padding: 32px 24px 28px;
    border-radius: 0;
  }
}

/* ---- Scroll reveal (hybrid homepage only; no layout change) ---- */
@media (prefers-reduced-motion: no-preference) {
  html.hx-motion body.mk-hybrid-home [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
      opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-i, 0) * 90ms);
    will-change: opacity, transform;
  }
  html.hx-motion body.mk-hybrid-home [data-reveal="left"] {
    transform: translate3d(-40px, 16px, 0);
  }
  html.hx-motion body.mk-hybrid-home [data-reveal="right"] {
    transform: translate3d(40px, 16px, 0);
  }
  html.hx-motion body.mk-hybrid-home [data-reveal="scale"] {
    transform: translate3d(0, 28px, 0) scale(0.97);
  }
  html.hx-motion body.mk-hybrid-home [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
  /* Preserve footer-bridge offset on the closing CTA card */
  html.hx-motion body.mk-hybrid-home .lx-final-card[data-reveal],
  html.hx-motion body.mk-hybrid-home .lx-final-card[data-reveal].is-in {
    opacity: 1;
    transform: translateY(-50%) !important;
  }
}
