:root {
  --mk-bg: #05080b;
  --mk-panel: #0b1117;
  --mk-panel-soft: #101820;
  --mk-white: #ffffff;
  --mk-ink: #071018;
  --mk-muted: #9caab5;
  --mk-line: rgba(255, 255, 255, 0.11);
  --mk-blue: #00a8ff;
  --mk-blue-deep: #006ea8;
  --mk-blue-soft: #bfeaff;
  --mk-font: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--mk-bg);
}

@view-transition {
  navigation: auto;
}

body.marketing-page {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--mk-bg);
  color: var(--mk-white);
  font-family: var(--mk-font);
  -webkit-font-smoothing: antialiased;
}

body.marketing-page main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  animation: mk-page-enter 520ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

body.marketing-page.is-page-leaving main,
body.marketing-page.is-page-leaving .mk-footer {
  animation: mk-page-leave 240ms cubic-bezier(0.4, 0, 1, 1) both;
  pointer-events: none;
}

@keyframes mk-page-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes mk-page-leave {
  to {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
    filter: blur(5px);
  }
}

::view-transition-old(root) {
  animation: mk-page-leave 220ms cubic-bezier(0.4, 0, 1, 1) both;
}

::view-transition-new(root) {
  animation: mk-page-enter 460ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

::view-transition-group(crizol-site-nav) {
  z-index: 1000;
}

::view-transition-old(crizol-site-nav),
::view-transition-new(crizol-site-nav) {
  animation: none;
}

.marketing-page a {
  color: inherit;
}

.marketing-page button,
.marketing-page a {
  -webkit-tap-highlight-color: transparent;
}

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

.mk-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 80px;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    background 180ms ease,
    border-color 180ms ease;
  view-transition-name: crizol-site-nav;
  will-change: transform;
}

.mk-nav.is-scrolled,
.mk-nav.is-open {
  border-bottom-color: transparent;
  background: rgba(5, 8, 11, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mk-nav.is-scroll-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(-100% - 8px), 0);
}

.mk-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.mk-nav-inner {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mk-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-decoration: none;
}

.mk-brand img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.mk-brand-copy {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: normal;
  text-transform: uppercase;
}

.mk-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mk-nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.mk-nav-links a:hover {
  color: var(--mk-white);
}

.mk-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.mk-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mk-white);
  font-family: var(--mk-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mk-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}

.mk-button.is-primary {
  border-color: #fff;
  background: #fff;
  color: #071018;
}

.mk-button.is-primary:hover {
  background: #eaf8ff;
}

.mk-button.is-blue {
  border-color: var(--mk-blue);
  background: var(--mk-blue);
  color: #00141f;
}

.mk-button.is-compact {
  min-height: 48px;
  padding: 0 18px;
}

.mk-arrow {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mk-blue);
  color: #fff;
}

.mk-arrow svg {
  width: 17px;
  height: 17px;
}

.mk-nav-actions .mk-button {
  min-width: 148px;
  min-height: 52px;
  gap: 12px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
}

.mk-nav-actions .mk-button.is-primary {
  padding-left: 24px;
  padding-right: 18px;
  color: #000;
}

.mk-nav-actions .mk-arrow {
  width: 22px;
  height: 22px;
}

.mk-nav-actions .mk-arrow svg {
  width: 15px;
  height: 15px;
}

.mk-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mk-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (max-width: 1320px) and (min-width: 1041px) {
  .mk-nav {
    padding-right: 34px;
    padding-left: 34px;
  }

  .mk-nav-inner {
    gap: 20px;
  }

  .mk-brand-copy {
    font-size: 19px;
  }

  .mk-nav-links {
    gap: 30px;
  }

  .mk-nav-links a {
    font-size: 15px;
  }

  .mk-nav-actions {
    gap: 12px;
  }

  .mk-nav-actions .mk-button {
    min-width: auto;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 15px;
  }
}

.mk-nav.is-open .mk-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mk-nav.is-open .mk-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mk-nav.is-open .mk-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.feature-hero {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 172px 24px 0;
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 20% 2%, rgba(0, 168, 255, 0.26), transparent 31%),
    radial-gradient(circle at 88% 34%, rgba(0, 87, 138, 0.24), transparent 30%),
    #05080b;
}

.feature-hero::before {
  content: "";
  position: absolute;
  top: 150px;
  left: 50%;
  width: min(1760px, 126vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #00a8ff 8%, #bceaff 58%, #006da8 100%);
  opacity: 0.07;
  -webkit-mask: url("/logo-crizol-white.png") center / contain no-repeat;
  mask: url("/logo-crizol-white.png") center / contain no-repeat;
  filter: drop-shadow(0 0 72px rgba(0, 168, 255, 0.34));
  pointer-events: none;
}

.feature-hero-copy {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.mk-eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 168, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 168, 255, 0.08);
  color: var(--mk-blue-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-hero h1 {
  max-width: 1040px;
  margin: 26px auto 24px;
  font-size: clamp(50px, 6.3vw, 104px);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.feature-hero h1 span {
  color: var(--mk-blue-soft);
}

.feature-hero-copy > p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.feature-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.feature-proof {
  position: absolute;
  inset: 0;
  z-index: 5;
  margin: 0;
  pointer-events: none;
}

.feature-proof span {
  position: absolute;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid rgba(143, 220, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(112deg, rgba(0, 168, 255, 0.2), rgba(63, 135, 173, 0.13));
  color: rgba(220, 244, 255, 0.88);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.035), 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 32px rgba(0, 168, 255, 0.06);
  animation: feature-pill-drift 6s ease-in-out infinite;
}

.feature-proof span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.09), transparent 36%, transparent 72%, rgba(0, 168, 255, 0.07));
  pointer-events: none;
}

.feature-proof span:nth-child(1) {
  top: 500px;
  left: clamp(34px, 6.5vw, 124px);
}

.feature-proof span:nth-child(2) {
  top: 390px;
  right: clamp(34px, 6.5vw, 124px);
  animation-delay: -2s;
}

.feature-proof span:nth-child(3) {
  top: 600px;
  right: clamp(62px, 11vw, 210px);
  animation-delay: -4s;
}

.feature-proof svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--mk-blue);
  filter: drop-shadow(0 0 9px rgba(0, 168, 255, 0.58));
}

@keyframes feature-pill-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

.hero-dashboard-stage {
  --dashboard-reveal-y: 170px;
  --dashboard-reveal-scale: 0.92;
  --dashboard-reveal-opacity: 0.42;
  position: relative;
  z-index: 3;
  width: min(1480px, calc(100vw - 72px));
  margin: 62px auto 0;
  padding: clamp(8px, 1vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(20px, 2vw, 32px);
  background: #0a1015;
  box-shadow: 0 54px 130px rgba(0, 0, 0, 0.66), 0 0 82px rgba(0, 168, 255, 0.12);
  opacity: var(--dashboard-reveal-opacity);
  transform: translate3d(0, var(--dashboard-reveal-y), 0) scale(var(--dashboard-reveal-scale));
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.hero-dashboard-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 0 90px rgba(0, 168, 255, 0.16);
}

.hero-dashboard-stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 0 clamp(12px, 1.4vw, 20px) clamp(12px, 1.4vw, 20px);
  image-rendering: auto;
  backface-visibility: hidden;
}

.hero-dashboard-media {
  display: block;
}

.hero-dashboard-browser {
  height: clamp(30px, 2.35vw, 40px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(12px, 1.4vw, 20px) clamp(12px, 1.4vw, 20px) 0 0;
  background: #10171d;
}

.hero-dashboard-browser span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.hero-dashboard-browser span:first-child { background: #ff5f57; }
.hero-dashboard-browser span:nth-child(2) { background: #febc2e; }
.hero-dashboard-browser span:nth-child(3) { background: #28c840; }

.hero-dashboard-browser strong {
  margin-left: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.capabilities {
  position: relative;
  z-index: 5;
  margin-top: -150px;
  padding: 96px clamp(20px, 5vw, 88px) 120px;
  border-radius: 0;
  background: linear-gradient(180deg, #05080b 0, #08050d 230px, #08050d 100%);
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 190px;
  background: radial-gradient(circle at 50% -20%, rgba(0, 168, 255, 0.08), transparent 58%);
  pointer-events: none;
}

.capabilities .section-shell {
  position: relative;
  z-index: 1;
}

.section-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.section-heading-row h2,
.detail-heading h2,
.comparison-heading h2,
.features-faq h2 {
  max-width: 870px;
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.section-heading-row h2 span,
.detail-heading h2 span,
.comparison-heading h2 span,
.features-faq h2 span {
  color: #c8edff;
}

.capability-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.capability-arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.capability-arrow:hover {
  transform: translateY(-2px);
  background: var(--mk-blue-deep);
}

.capability-arrow svg {
  width: 22px;
  height: 22px;
}

.capability-stage {
  position: relative;
  min-height: 430px;
}

.capability-stage::before,
.capability-stage::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: -18px;
  height: 100%;
  border-radius: 34px;
  background: #1c2025;
  opacity: 0.65;
}

.capability-stage::after {
  left: 6%;
  right: 6%;
  bottom: -34px;
  z-index: -1;
  background: #111419;
  opacity: 0.75;
}

.capability-slide {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: clamp(26px, 3vw, 48px);
  border-radius: 34px;
  background: #f6f7f8;
  color: #0d1116;
  opacity: 0;
  transform: translateX(34px) scale(0.985);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.capability-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.capability-slide h3 {
  margin: 0 0 28px;
  font-size: clamp(28px, 2.7vw, 44px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(8, 20, 29, 0.06);
  border-radius: 24px;
  background: #fff;
}

.capability-icon,
.detail-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 168, 255, 0.19);
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.07);
  color: var(--mk-blue-deep);
}

.capability-icon svg,
.detail-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card h4 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.18;
}

.capability-card p {
  margin: 0;
  color: #57616a;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
}

.capability-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 54px;
}

.capability-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.capability-dot.is-active {
  width: 28px;
  background: var(--mk-blue);
}

.feature-details {
  padding: 120px clamp(20px, 5vw, 88px);
  background: #fff;
  color: var(--mk-ink);
}

.detail-heading {
  max-width: 920px;
  margin-bottom: 68px;
}

.detail-heading .mk-eyebrow,
.comparison-heading .mk-eyebrow,
.features-faq .mk-eyebrow {
  border-color: rgba(0, 110, 168, 0.18);
  background: rgba(0, 168, 255, 0.07);
  color: #006da8;
}

.detail-heading h2 span,
.features-faq h2 span {
  color: #0079b8;
}

.detail-list {
  display: grid;
  gap: 24px;
}

.detail-row {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
  padding: clamp(34px, 5vw, 76px);
  border: 1px solid rgba(0, 71, 110, 0.09);
  border-radius: 36px;
  background: #f5f8fa;
  overflow: hidden;
}

.detail-row:nth-child(even) {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
}

.detail-row:nth-child(even) .detail-copy {
  order: 2;
}

.detail-copy .detail-icon {
  margin-bottom: 24px;
}

.detail-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.detail-copy p {
  margin: 0;
  color: #586670;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 570;
  line-height: 1.55;
}

.detail-checks {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #26343d;
  font-size: 15px;
  font-weight: 800;
}

.detail-checks li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #071018;
  color: var(--mk-blue);
  font-size: 13px;
}

.detail-media {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.detail-media::before {
  content: "";
  position: absolute;
  inset: 8% 2% 2%;
  border-radius: 34px;
  background: #071018;
  box-shadow: 0 34px 80px rgba(0, 25, 40, 0.18);
  transform: rotate(-2deg);
}

.detail-row:nth-child(even) .detail-media::before {
  transform: rotate(2deg);
}

.detail-media img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(780px, 112%);
  height: auto;
  max-height: 430px;
  object-fit: cover;
  object-position: top left;
  border: 10px solid #0c151c;
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 24, 38, 0.28);
  transform: rotate(2deg);
}

.detail-row:nth-child(even) .detail-media img {
  transform: rotate(-2deg);
}

.detail-dashboard-carousel {
  min-height: 460px;
  isolation: isolate;
}

.detail-dashboard-carousel::before {
  content: none;
}

.detail-dashboard-viewport {
  position: relative;
  z-index: 2;
  width: min(780px, 112%);
  height: 430px;
}

.detail-dashboard-slide {
  position: absolute;
  inset: 0 0 48px;
  display: grid;
  margin: 0;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.detail-dashboard-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.detail-dashboard-carousel .detail-dashboard-image {
  position: relative;
  inset: auto;
  display: block;
  object-position: top center;
}

.detail-dashboard-carousel .detail-dashboard-image--desktop {
  width: min(100%, 720px);
  height: auto;
  max-height: none;
  border: 0;
  border-radius: 16px;
  object-fit: initial;
  box-shadow: 0 36px 78px rgba(0, 24, 38, 0.27);
  transform: none !important;
}

.detail-dashboard-slide--mobile {
  padding: 4px 0 0;
}

.detail-dashboard-mobile-crop {
  position: relative;
  width: auto;
  height: 100%;
  aspect-ratio: 739 / 1474;
  max-width: min(56%, 310px);
  max-height: 372px;
  overflow: hidden;
  border: 7px solid #0c151c;
  border-radius: 20px;
  background: #080a0d;
  box-shadow: 0 32px 72px rgba(0, 24, 38, 0.3);
}

.detail-dashboard-carousel .detail-dashboard-mobile-crop .detail-dashboard-image--mobile {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  border: 0;
  border-radius: 0;
  object-fit: initial;
  box-shadow: none;
  transform: translateY(-7.875%) !important;
}

.detail-dashboard-carousel .detail-dashboard-image--mobile {
  transform: none !important;
}

.detail-dashboard-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.detail-dashboard-controls button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #66737c;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(0, 30, 48, 0.08);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.detail-dashboard-controls button:hover {
  transform: translateY(-1px);
}

.detail-dashboard-controls button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8c1c7;
}

.detail-dashboard-controls button.is-active {
  border-color: rgba(0, 168, 255, 0.34);
  background: #fff;
  color: #071018;
}

.detail-dashboard-controls button.is-active span {
  background: var(--mk-blue);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.1);
}

.detail-merchant-media::before {
  display: none;
}

.detail-merchant-crop {
  position: relative;
  z-index: 2;
  width: min(560px, 94%);
  aspect-ratio: 1.08;
  overflow: hidden;
  border: 10px solid #0c151c;
  border-radius: 24px;
  background: #101317;
  box-shadow: 0 40px 90px rgba(0, 24, 38, 0.28);
  transform: rotate(1deg);
}

.detail-media .detail-merchant-crop .detail-merchant-image {
  position: absolute;
  top: -37%;
  right: -1%;
  width: auto;
  max-width: none;
  height: 141%;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: initial;
  transform: none !important;
}

.comparison {
  padding: 120px clamp(20px, 5vw, 88px) 140px;
  background: #08050d;
}

.comparison-heading {
  max-width: 1040px;
  margin: 0 auto 58px;
  text-align: center;
}

.comparison-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.comparison-heading p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.comparison-table {
  width: min(1380px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-row > div {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px clamp(18px, 2.8vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 750;
  text-align: center;
}

.comparison-row > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-row > div:first-child {
  justify-content: flex-start;
  text-align: left;
}

.comparison-row:last-child > div {
  border-bottom: 0;
}

.comparison-row > div:nth-child(2) {
  background: rgba(0, 168, 255, 0.12);
  color: #e5f7ff;
}

.comparison-row > div:nth-child(2)::before {
  content: "✓";
  margin-right: 12px;
  color: var(--mk-blue);
  font-size: 18px;
}

.comparison-row > div:nth-child(3) {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-row.is-head > div {
  min-height: 104px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.comparison-row.is-head > div:nth-child(2)::before {
  display: none;
}

.comparison-row.is-head > div:nth-child(2) {
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.features-faq {
  padding: 96px 6vw 120px;
  background: #fff;
  color: var(--mk-ink);
}

.features-faq-header {
  width: min(1100px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.features-faq .mk-eyebrow {
  min-height: 0;
  display: inline-block;
  margin: 0 0 28px;
  padding: 10px 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 168, 255, 0.08);
  color: #0086cc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: normal;
}

.features-faq h2 {
  max-width: none;
  margin: 0;
  color: #0b0910;
  font-size: clamp(34px, 4.4vw, 61.2px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.features-faq h2 span {
  color: #0086cc;
  font-weight: 500;
  white-space: nowrap;
}

.features-faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-faq details {
  overflow: hidden;
  border: 1px solid rgba(11, 9, 16, 0.15);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(11, 9, 16, 0.05), 0 4px 14px rgba(11, 9, 16, 0.05);
  transition: box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.features-faq details[open] {
  box-shadow: 0 8px 32px rgba(11, 9, 16, 0.08);
}

.features-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  list-style: none;
  color: #0b0910;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
}

.features-faq summary::-webkit-details-marker {
  display: none;
}

.features-faq summary::marker {
  content: "";
}

.faq-plus {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(11, 9, 16, 0.06);
  color: #0b0910;
  transition: background 350ms cubic-bezier(0.22, 1, 0.36, 1), color 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: currentColor;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 250ms ease;
}

.faq-plus::before {
  width: 14px;
  height: 2px;
}

.faq-plus::after {
  width: 2px;
  height: 14px;
}

.features-faq details[open] .faq-plus {
  transform: rotate(180deg);
  background: var(--mk-blue);
  color: #fff;
}

.features-faq details[open] .faq-plus::after {
  opacity: 0;
  transform: scaleY(0);
}

.faq-answer {
  padding: 0 30px 28px;
  color: rgba(11, 9, 16, 0.66);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

.mk-footer {
  position: relative;
  padding: 92px clamp(20px, 5vw, 88px) 36px;
  overflow: hidden;
  background: transparent;
}

/* Sem brilho proprio atras do footer: na home o fundo e chapado e o card
   apenas flutua. Qualquer glow aqui vira uma faixa que so existe no rodape. */
.mk-footer-reflection { display: none; }

.mk-footer-card {
  position: relative;
  z-index: 2;
  width: min(1620px, 88vw);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 34px 90px rgba(0, 0, 0, 0.32);
}

.mk-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mk-footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.mk-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: clamp(34px, 5vw, 86px);
}

.mk-footer-brand img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.mk-footer-brand h3 {
  margin: 16px 0 12px;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-footer-brand p,
.mk-footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.6;
}

.mk-footer-column h3 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mk-footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.mk-footer-column a:hover {
  color: var(--mk-blue-soft);
}

.mk-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .mk-nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .mk-menu-toggle {
    display: flex;
  }

  .mk-nav-links,
  .mk-nav-actions {
    display: none;
  }

  .mk-nav.is-open .mk-nav-links,
  .mk-nav.is-open .mk-nav-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    display: flex;
    border: 1px solid var(--mk-line);
    background: #05080b;
  }

  .mk-nav.is-open .mk-nav-links {
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border-radius: 22px 22px 0 0;
    border-bottom: 0;
  }

  .mk-nav.is-open .mk-nav-links a {
    display: block;
    padding: 13px 10px;
  }

  .mk-nav.is-open .mk-nav-actions {
    top: 274px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 18px 18px;
    border-radius: 0 0 22px 22px;
  }

  .mk-nav.is-open .mk-nav-actions .mk-button {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    white-space: nowrap;
  }

  .feature-proof {
    position: relative;
    inset: auto;
    width: min(720px, 100%);
    height: 176px;
    margin: 34px auto -2px;
  }

  .feature-proof span {
    min-height: 52px;
    padding: 0 21px;
    font-size: 14px;
  }

  .feature-proof span:nth-child(1) {
    top: 0;
    left: 2%;
  }

  .feature-proof span:nth-child(2) {
    top: 62px;
    right: 1%;
  }

  .feature-proof span:nth-child(3) {
    top: 124px;
    right: auto;
    left: 14%;
  }

  .hero-dashboard-stage {
    width: min(520px, calc(100vw - 42px));
    margin-top: 28px;
    padding: 6px;
    border-radius: 28px;
    transform-origin: 50% 100%;
  }

  .hero-dashboard-browser {
    display: none;
  }

  .hero-dashboard-stage img {
    aspect-ratio: 390 / 625;
    border-radius: 22px;
    object-position: top center;
  }

  .capabilities {
    margin-top: -105px;
    padding-top: 82px;
    padding-bottom: 96px;
  }

  .capability-stage {
    display: grid;
    min-height: 0;
  }

  .capability-slide {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
  }

  .capability-pagination {
    margin-top: 38px;
  }

  .capability-icon {
    grid-row: span 2;
    margin: 0;
  }

  .detail-row,
  .detail-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .detail-row:nth-child(even) .detail-copy {
    order: initial;
  }

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

@media (max-width: 720px) {
  .feature-hero,
  .capabilities,
  .feature-details,
  .comparison,
  .features-faq,
  .mk-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .feature-hero-copy,
  .section-shell,
  .section-heading-row,
  .detail-heading,
  .detail-row,
  .detail-copy,
  .detail-media,
  .comparison-heading,
  .features-faq-header,
  .mk-footer-card {
    min-width: 0;
    max-width: 100%;
  }

  .mk-eyebrow {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .mk-nav {
    padding: 19px 22px;
  }

  .mk-brand {
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
  }

  .mk-brand img {
    height: 46px;
  }

  .mk-brand-copy {
    width: auto;
    max-width: none;
    font-size: clamp(16px, 5vw, 20px);
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
  }

  .mk-nav-inner {
    min-height: 46px;
  }

  .mk-menu-toggle {
    position: absolute;
    top: 17px;
    right: 22px;
    width: 50px;
    height: 50px;
  }

  .mk-nav.is-open .mk-nav-actions {
    top: 274px;
  }

  .feature-hero {
    padding-top: 138px;
  }

  .feature-hero::before {
    top: 150px;
    width: min(980px, 230vw);
    opacity: 0.055;
  }

  .feature-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .feature-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .feature-hero-actions .mk-button {
    width: min(310px, 100%);
  }

  .feature-proof {
    width: 100%;
    height: 152px;
    margin-top: 28px;
  }

  .feature-proof span {
    min-height: 44px;
    gap: 10px;
    padding: 0 15px;
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .feature-proof svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .feature-proof span:nth-child(1) {
    top: 0;
    left: -6px;
  }

  .feature-proof span:nth-child(2) {
    top: 54px;
    right: -8px;
  }

  .feature-proof span:nth-child(3) {
    top: 108px;
    left: 7%;
  }

  .hero-dashboard-stage {
    margin-top: 22px;
    width: calc(100vw - 36px);
    padding: 6px;
    border-radius: 26px;
    transform-origin: 50% 100%;
  }

  .hero-dashboard-browser {
    display: none;
  }

  .hero-dashboard-stage img {
    aspect-ratio: 390 / 625;
    border-radius: 20px;
    object-position: top center;
  }

  .capabilities {
    margin-top: -64px;
    padding-top: 76px;
    padding-bottom: 64px;
    border-radius: 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .capability-controls {
    align-self: flex-end;
  }

  .capability-stage {
    min-height: 0;
  }

  .capability-slide {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .capability-slide h3 {
    margin-bottom: 20px;
  }

  .capability-grid {
    gap: 12px;
  }

  .capability-card {
    padding: 15px;
    column-gap: 14px;
    border-radius: 18px;
  }

  .capability-icon {
    width: 44px;
    height: 44px;
  }

  .capability-pagination {
    margin-top: 38px;
  }

  .feature-details,
  .comparison {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .detail-row {
    min-height: 0;
    padding: 28px 20px 34px;
    border-radius: 26px;
  }

  .detail-media {
    min-height: 245px;
  }

  .detail-media img {
    width: 108%;
    max-height: 280px;
    border-width: 7px;
  }

  .detail-dashboard-carousel {
    min-height: 330px;
  }

  .detail-dashboard-viewport {
    width: 108%;
    height: 318px;
  }

  .detail-dashboard-slide {
    bottom: 46px;
  }

  .detail-dashboard-carousel .detail-dashboard-image--desktop {
    width: 100%;
    max-height: none;
    transform: none !important;
  }

  .detail-dashboard-mobile-crop {
    height: 258px;
    max-width: 62%;
    max-height: 258px;
    border-width: 6px;
  }

  .detail-dashboard-controls button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 10px;
  }

  .detail-merchant-media {
    min-height: 340px;
  }

  .detail-merchant-crop {
    width: min(440px, 98%);
    border-width: 7px;
    border-radius: 19px;
  }

  .detail-media .detail-merchant-crop .detail-merchant-image {
    top: -37%;
    right: -1%;
    width: auto;
    height: 141%;
    max-height: none;
    border-width: 0;
  }

  .comparison-table {
    overflow-x: auto;
    border-radius: 22px;
  }

  .comparison-row {
    min-width: 720px;
  }

  .features-faq {
    padding: 64px 6vw 80px;
  }

  .features-faq-header {
    margin-bottom: 36px;
  }

  .features-faq summary {
    gap: 16px;
    padding: 20px 22px;
    font-size: 16px;
  }

  .faq-plus {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .faq-plus::before {
    width: 12px;
  }

  .faq-plus::after {
    height: 12px;
  }

  .faq-answer {
    padding: 0 22px 22px;
    font-size: 15px;
  }

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

  .mk-footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.marketing-page main,
  body.marketing-page.is-page-leaving main,
  body.marketing-page.is-page-leaving .mk-footer,
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Comparativos responsivos: no celular, a tabela larga vira o mesmo card com
   setas usado na pagina de planos. O desktop continua usando a tabela inteira. */
.compare-cards {
  display: none;
  width: min(100%, 620px);
  margin: 0 auto;
}

.compare-cards-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.compare-cards-plan {
  min-width: 0;
  flex: 1;
  color: var(--mk-white);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.compare-nav {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 160ms ease;
}

.compare-nav:hover {
  border-color: rgba(0, 168, 255, 0.42);
  background: rgba(0, 168, 255, 0.12);
}

.compare-nav:active { transform: scale(0.94); }
.compare-nav:focus-visible { outline: 2px solid var(--mk-blue); outline-offset: 3px; }
.compare-nav svg { width: 18px; height: 18px; }

.compare-cards-body {
  margin: 0;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  list-style: none;
}

.compare-cards-body li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.compare-cards-body li:last-child { border-bottom: 0; }

.compare-cards-body .rotulo,
.compare-cards-body .valor {
  min-width: 0;
  overflow-wrap: anywhere;
}

.compare-cards-body .rotulo {
  flex: 1 1 43%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.35;
}

.compare-cards-body .valor {
  flex: 1 1 57%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.compare-check {
  flex: 0 0 auto;
  color: var(--mk-blue);
  font-size: 20px;
  line-height: 1;
}

.compare-cards-body li.is-fora .rotulo,
.compare-cards-body li.is-fora .valor {
  color: rgba(255, 255, 255, 0.34);
}

.compare-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.compare-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 200ms ease, width 200ms ease;
}

.compare-dots span.is-on {
  width: 20px;
  border-radius: 999px;
  background: var(--mk-blue);
}

@media (max-width: 760px) {
  .plan-compare,
  .comparison-table {
    display: none;
  }

  .compare-cards { display: block; }

  .comparison-heading {
    margin-bottom: 38px;
  }

  .compare-cards.is-routine-comparison .compare-cards-plan {
    font-size: 20px;
  }
}
