:root {
  --mk-brand: #f53003;
  --mk-brand-dark: #d42903;
  --mk-ink: #161616;
  --mk-muted: #5f5f5f;
  --mk-paper: #f6f3ef;
  --mk-white: #ffffff;
  --mk-line: #e6e1da;
  --mk-dark: #111111;
  --mk-dark-2: #1c1c1c;
  --mk-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --mk-radius: 28px;
  --mk-font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.mk-body {
  margin: 0;
  background: var(--mk-paper);
  color: var(--mk-ink);
  font-family: var(--mk-font);
  line-height: 1.6;
}

body.mk-nav-locked {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.mk-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.mk-flash {
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
}

.mk-flash--error {
  background: #c41e3a;
  color: #fff;
}

.mk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--mk-line);
  background: var(--mk-white);
  color: var(--mk-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mk-button:hover {
  transform: translateY(-2px);
  border-color: var(--mk-ink);
}

.mk-button--primary {
  border: 0;
  background: var(--mk-brand);
  color: var(--mk-white);
  box-shadow: 0 16px 40px rgba(245, 48, 3, 0.28);
}

.mk-button--primary:hover {
  background: var(--mk-brand-dark);
}

.mk-button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--mk-white);
}

.mk-button--ghost:hover {
  border-color: var(--mk-white);
}

.mk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 48, 3, 0.1);
  color: var(--mk-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-kicker--light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffb4a4;
}

.mk-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(230, 225, 218, 0.9);
  background: rgba(246, 243, 239, 0.92);
  backdrop-filter: blur(18px);
}

.mk-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.mk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.mk-brand__mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mk-nav__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--mk-line);
  background: var(--mk-white);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.mk-nav__toggle-bars {
  display: grid;
  gap: 4px;
}

.mk-nav__toggle-bars span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--mk-ink);
}

.mk-nav__panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mk-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-nav__links a,
.mk-nav__dropdown-trigger {
  color: var(--mk-muted);
}

.mk-nav__links a:hover,
.mk-nav__links a.is-active,
.mk-nav__dropdown-trigger:hover,
.mk-nav__dropdown-trigger.is-active {
  color: var(--mk-ink);
}

.mk-nav__dropdown {
  position: relative;
}

.mk-nav__dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.mk-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.mk-nav__dropdown-trigger i {
  font-size: 10px;
}

.mk-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 10px;
  border: 1px solid var(--mk-line);
  border-radius: 18px;
  background: var(--mk-white);
  box-shadow: var(--mk-shadow);
}

.mk-nav__dropdown.is-open .mk-nav__dropdown-menu,
.mk-nav__dropdown:hover .mk-nav__dropdown-menu {
  display: grid;
}

.mk-nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--mk-ink);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 14px;
}

.mk-nav__dropdown-menu a i {
  width: 16px;
  color: var(--mk-brand);
}

.mk-nav__dropdown-menu a:hover,
.mk-nav__dropdown-menu a.is-active {
  background: var(--mk-paper);
}

.mk-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 48, 3, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.06), transparent 18rem),
    var(--mk-dark);
  color: var(--mk-white);
}

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

.mk-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.mk-hero h1 span {
  color: #ff8a73;
}

.mk-hero__lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.mk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 28px;
}

.mk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mk-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.mk-hero__visual {
  position: relative;
}

.mk-hero__visual img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.mk-section {
  padding: 72px 0;
}

.mk-section--white {
  background: var(--mk-white);
}

.mk-section--dark {
  background: var(--mk-dark);
  color: var(--mk-white);
}

.mk-section__head {
  max-width: 760px;
  margin-bottom: 32px;
}

.mk-section__head h2,
.mk-page-hero h1,
.mk-feature-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.mk-feature-hero__tagline {
  margin-top: 12px;
  color: var(--mk-ink);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.mk-section__head p,
.mk-page-hero p,
.mk-feature-hero__lead {
  margin-top: 14px;
  color: var(--mk-muted);
  font-size: 17px;
  line-height: 1.7;
}

.mk-section--dark .mk-section__head p {
  color: rgba(255, 255, 255, 0.68);
}

.mk-grid-3,
.mk-grid-2,
.mk-types,
.mk-workflow,
.mk-highlights {
  display: grid;
  gap: 16px;
}

.mk-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.mk-types {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-workflow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: mk-step;
}

.mk-card,
.mk-type,
.mk-step,
.mk-highlight {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: var(--mk-white);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.mk-card:hover,
.mk-type:hover {
  border-color: rgba(245, 48, 3, 0.35);
  transform: translateY(-3px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mk-card__icon,
.mk-type i,
.mk-highlight i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(245, 48, 3, 0.1);
  color: var(--mk-brand);
}

.mk-card h3,
.mk-type h3,
.mk-step h3,
.mk-highlight h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.mk-card p,
.mk-type p,
.mk-step p,
.mk-highlight p,
.mk-checks li,
.mk-prose p,
.mk-related a p {
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mk-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--mk-brand);
  font-size: 13px;
  font-weight: 800;
}

.mk-step {
  background: linear-gradient(180deg, var(--mk-white), #fbfaf8);
  counter-increment: mk-step;
}

.mk-step::before {
  content: counter(mk-step, decimal-leading-zero);
  display: block;
  margin-bottom: 22px;
  color: var(--mk-brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mk-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.mk-panel {
  padding: 32px;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(245, 48, 3, 0.08), rgba(17, 17, 17, 0.03)),
    var(--mk-white);
  border: 1px solid rgba(245, 48, 3, 0.12);
}

.mk-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.mk-panel > p {
  color: var(--mk-muted);
  line-height: 1.75;
}

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

.mk-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mk-checks i {
  color: #16a34a;
  margin-top: 3px;
}

.mk-stack {
  display: grid;
  gap: 14px;
}

.mk-stack article {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--mk-line);
  border-radius: 24px;
  background: var(--mk-white);
}

.mk-stack i {
  color: var(--mk-brand);
  font-size: 20px;
  margin-top: 2px;
}

.mk-hero__origin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.mk-hero__origin i {
  color: #ff8a73;
}

.mk-origin {
  max-width: 760px;
  padding: 40px 36px;
  border: 1px solid var(--mk-line);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(245, 48, 3, 0.08), rgba(17, 17, 17, 0.03)),
    var(--mk-white);
}

.mk-origin h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.mk-origin p {
  color: var(--mk-muted);
  font-size: 17px;
  line-height: 1.7;
}

.mk-origin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mk-origin-card {
  padding: 24px;
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: var(--mk-white);
}

.mk-origin-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.mk-origin-card p {
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mk-origin-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--mk-brand);
  font-size: 13px;
  font-weight: 800;
}

.mk-origin-card a:hover {
  text-decoration: underline;
}

.mk-faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.mk-faq__item {
  padding: 8px 22px 16px;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  background: var(--mk-white);
}

.mk-faq__item summary {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
}

.mk-faq__item summary::-webkit-details-marker {
  display: none;
}

.mk-faq__item p {
  margin: 0 0 8px;
  color: var(--mk-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mk-faq__item a {
  color: var(--mk-brand);
  font-weight: 800;
}

.mk-faq--page {
  max-width: 860px;
}

.mk-cta {
  padding: 48px 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at right, rgba(245, 48, 3, 0.18), transparent 18rem),
    var(--mk-dark);
  color: var(--mk-white);
  text-align: center;
}

.mk-cta h2 {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.mk-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.7);
}

.mk-cta .mk-actions {
  justify-content: center;
  margin: 0;
}

.mk-page-hero,
.mk-feature-hero {
  padding: 56px 0 24px;
}

.mk-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--mk-muted);
  font-size: 13px;
  font-weight: 700;
}

.mk-breadcrumb a:hover {
  color: var(--mk-brand);
}

.mk-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 28px;
  padding-bottom: 72px;
  align-items: start;
}

.mk-prose,
.mk-aside {
  padding: 28px;
  border: 1px solid var(--mk-line);
  border-radius: 32px;
  background: var(--mk-white);
}

.mk-prose h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.mk-prose section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--mk-line);
}

.mk-points {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.mk-points li {
  position: relative;
  padding-left: 18px;
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.6;
}

.mk-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--mk-brand);
}

.mk-aside h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

.mk-related {
  display: grid;
  gap: 10px;
}

.mk-related a {
  display: block;
  padding: 14px;
  border: 1px solid var(--mk-line);
  border-radius: 18px;
}

.mk-related a:hover {
  border-color: rgba(245, 48, 3, 0.35);
}

.mk-related strong {
  display: block;
  margin-bottom: 4px;
}

.mk-aside__cta {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: var(--mk-paper);
}

.mk-aside__cta .mk-button {
  width: 100%;
}

.mk-aside__cta p {
  margin: 0 0 14px;
  color: var(--mk-muted);
  font-size: 14px;
}

.mk-contact {
  padding: 40px 0 72px;
}

.mk-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 20px;
  align-items: start;
}

.mk-contact__card {
  padding: 24px;
  border: 1px solid var(--mk-line);
  border-radius: 28px;
  background: var(--mk-white);
}

.mk-contact__card h2 {
  margin-bottom: 16px;
  font-size: 20px;
}

.mk-contact__company,
.mk-contact__note p {
  color: var(--mk-muted);
  line-height: 1.7;
}

.mk-contact__note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--mk-brand);
  border-radius: 0 16px 16px 0;
  background: #fff8f5;
}

.mk-contact__note h3 {
  margin-bottom: 4px;
  font-size: 14px;
}

.mk-contact__note a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mk-contact__note a:hover {
  color: var(--mk-brand);
}

.mk-success {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  background: #f0fdf4;
  color: #166534;
  font-size: 14px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__field,
.contact-form__submit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field--full,
.contact-form__submit {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d3cb;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--mk-ink);
  font: inherit;
  background: var(--mk-white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(245, 48, 3, 0.16);
  border-color: var(--mk-brand);
}

.contact-form__hint {
  color: var(--mk-muted);
  font-size: 12px;
}

.contact-form__error {
  color: #c41e3a;
  font-size: 12px;
  font-weight: 700;
}

.contact-form__submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  background: var(--mk-brand);
  color: var(--mk-white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-form__submit:hover {
  background: var(--mk-brand-dark);
}

.legal-page {
  padding: 40px 0 72px;
}

.legal-page__container {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-page__card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--mk-line);
  border-radius: 32px;
  background: var(--mk-white);
}

.legal-page__eyebrow {
  margin-bottom: 10px;
  color: var(--mk-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-page h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-page__updated {
  margin: 12px 0 28px;
  color: var(--mk-muted);
  font-size: 14px;
  font-weight: 600;
}

.legal-page section + section {
  margin-top: 28px;
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.legal-page p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.legal-page p + p {
  margin-top: 12px;
}

.mk-footer {
  padding: 56px 0 28px;
  background: var(--mk-dark);
  color: rgba(255, 255, 255, 0.72);
}

.mk-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.mk-footer h2 {
  margin-bottom: 14px;
  color: var(--mk-white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.mk-brand--footer {
  margin-bottom: 14px;
  color: var(--mk-white);
}

.mk-footer__brand p {
  margin: 0 0 18px;
  max-width: 320px;
}

.mk-footer__origin {
  color: #ffb4a4;
  font-weight: 700;
}

.mk-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-footer-links a {
  color: #ffb4a4;
}

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

@media (max-width: 980px) {
  .mk-hero__grid,
  .mk-split,
  .mk-feature-layout,
  .mk-contact__grid,
  .mk-footer__grid {
    grid-template-columns: 1fr;
  }

  .mk-grid-3,
  .mk-types,
  .mk-workflow,
  .mk-highlights,
  .mk-origin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .mk-nav__toggle {
    display: inline-flex;
  }

  .mk-nav__panel {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 12px 16px 24px;
    border-bottom: 1px solid var(--mk-line);
    background: var(--mk-paper);
    box-shadow: var(--mk-shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .mk-nav.is-open .mk-nav__panel {
    display: flex;
  }

  .mk-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .mk-nav__links > a,
  .mk-nav__cta {
    padding: 12px 8px;
  }

  .mk-nav__dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
    display: none;
  }

  .mk-nav__dropdown.is-open .mk-nav__dropdown-menu,
  .mk-nav__dropdown:hover .mk-nav__dropdown-menu {
    display: none;
  }

  .mk-nav__dropdown.is-open .mk-nav__dropdown-menu {
    display: grid;
  }
}

@media (max-width: 640px) {
  .mk-hero {
    padding: 42px 0 40px;
  }

  .mk-grid-3,
  .mk-grid-2,
  .mk-types,
  .mk-workflow,
  .mk-highlights,
  .mk-origin-grid {
    grid-template-columns: 1fr;
  }

  .mk-actions,
  .mk-button,
  .contact-form,
  .contact-form__submit {
    width: 100%;
  }

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

  .mk-panel,
  .mk-cta,
  .mk-origin,
  .mk-prose,
  .mk-aside {
    padding: 22px;
  }
}
