html {
  scroll-behavior: smooth;
}

body.mk-theme-shell {
  min-width: 320px;
  color: var(--mk-text);
  background:
    linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px),
    var(--mk-gradient-dark);
  background-size: 44px 44px, 44px 44px, auto;
  font-family: var(--mk-font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

.mk-theme-shell *,
.mk-theme-shell *::before,
.mk-theme-shell *::after {
  box-sizing: border-box;
}

.mk-theme-shell a {
  color: inherit;
}

.mk-theme-shell img,
.mk-theme-shell video,
.mk-theme-shell svg {
  max-width: 100%;
  height: auto;
}

.mk-container,
.mk-container-wide,
.mk-wrap {
  width: min(100% - 32px, var(--mk-container));
  margin-inline: auto;
}

.mk-container-wide {
  width: min(100% - 32px, var(--mk-container-wide));
}

.mk-section {
  position: relative;
  padding: var(--mk-section-y) 0;
}

.mk-section-tight {
  padding: clamp(42px, 6vw, 84px) 0;
}

.mk-section-header {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 58px);
  text-align: center;
}

.mk-section-header.align-left {
  margin-inline: 0;
  text-align: left;
}

.mk-eyebrow,
.mk-glass-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--mk-border-soft);
  border-radius: var(--mk-radius-pill);
  color: var(--mk-text-soft);
  background: var(--mk-glass-soft);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.mk-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--mk-gradient-trading);
  box-shadow: 0 0 22px rgba(20, 241, 149, .45);
}

.mk-theme-shell h1,
.mk-theme-shell h2,
.mk-theme-shell h3,
.mk-theme-shell h4 {
  color: var(--mk-text);
  font-family: var(--mk-font-heading);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.mk-theme-shell h1 {
  margin: 18px 0 20px;
  font-size: clamp(2.5rem, 7vw, 6.25rem);
}

.mk-theme-shell h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.mk-theme-shell h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.mk-theme-shell p {
  color: var(--mk-text-soft);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.72;
}

.mk-theme-shell .mk-section-header p,
.mk-theme-shell .mk-hero-copy p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--mk-text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.mk-disclaimer,
.mk-risk-line {
  color: var(--mk-text-muted);
  font-size: .95rem;
}

.mk-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-theme-shell :focus-visible {
  outline: 2px solid var(--mk-cyan);
  outline-offset: 3px;
}

.mk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.mk-reveal.is-visible,
.no-js .mk-reveal {
  opacity: 1;
  transform: none;
}

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

  .mk-theme-shell *,
  .mk-theme-shell *::before,
  .mk-theme-shell *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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