* {
  box-sizing: border-box;
}

:root {
  --navy: #0c1b36;
  --navy-2: #122d50;
  --blue: #1974c9;
  --blue-dark: #1166b8;
  --green: #52b92f;
  --teal: #0da8a5;
  --teal-dark: #078f8d;
  --muted: #687a94;
  --line: #dce6f1;
  --left-bg: #f3f8fd;
  --white: #ffffff;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 58px);
}

.panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vw, 88px);
}

.panel-on {
  background:
    radial-gradient(circle at 3% 12%, rgba(25, 116, 201, .07), transparent 24%),
    radial-gradient(circle at 85% 95%, rgba(25, 116, 201, .055), transparent 26%),
    var(--left-bg);
  border-right: 1px solid #d8e5f2;
}

.panel-company {
  background:
    radial-gradient(circle at 100% 10%, rgba(13, 168, 165, .10), transparent 26%),
    radial-gradient(circle at 90% 85%, rgba(13, 168, 165, .07), transparent 30%),
    #fff;
}

.on-content,
.company-content {
  width: min(100%, 650px);
}

.on-logo {
  display: flex;
  align-items: center;
  font-size: clamp(30px, 2.65vw, 44px);
  line-height: .95;
  letter-spacing: -0.055em;
  white-space: nowrap;
  margin-bottom: clamp(42px, 6vh, 72px);
  font-weight: 400;
}

.on-mark {
  width: 1.10em;
  height: 1.10em;
  margin-right: .28em;
  object-fit: contain;
  flex: 0 0 auto;
}
.on-wordmark { display: inline; }

.on-blue { color: var(--blue); }
.on-green { color: var(--green); }
.on-pl { color: #ff6b00; }

h1 {
  margin: 0;
  font-size: clamp(30px, 2.5vw, 43px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 450;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  margin-top: 8px;
  font-weight: 800;
}

.lead {
  margin: 30px 0 28px;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.55;
}

.levels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}

.levels span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e4ebf3;
  box-shadow: 0 6px 18px rgba(19, 55, 92, .05);
  border-radius: 999px;
  padding: 11px 17px;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.levels span::before {
  content: "•";
  color: #5b9ee2;
  font-size: 18px;
  line-height: 1;
}

.cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 64px;
  padding: 17px 28px;
  border-radius: 18px;
  font-weight: 800;
  font-size: clamp(17px, 1.25vw, 21px);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-on {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0d65d2);
  box-shadow: 0 14px 32px rgba(25, 116, 201, .22);
}

.cta-on:hover {
  box-shadow: 0 17px 38px rgba(25, 116, 201, .30);
}

.arrow {
  font-size: 30px;
  line-height: 1;
}

.company-content {
  text-align: center;
}

.mk-logo {
  display: block;
  width: clamp(150px, 17vw, 245px);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 26px rgba(12, 56, 68, .10));
}

.company-content h2 {
  margin: 0;
  font-size: clamp(27px, 2.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 850;
}

.company-tagline {
  margin: 14px 0 18px;
  font-size: clamp(17px, 1.25vw, 21px);
  color: #304660;
}

.divider {
  width: 118px;
  height: 3px;
  margin: 22px auto 24px;
  background: var(--teal);
  border-radius: 99px;
}

.contact {
  width: min(100%, 470px);
  margin: 0 auto 28px;
  text-align: left;
}

.contact h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.contact address {
  font-style: normal;
}

.contact p {
  margin: 10px 0;
  font-size: 17px;
  line-height: 1.45;
}

.contact dl {
  margin: 14px 0;
}

.contact dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  margin: 8px 0;
  font-size: 17px;
}

.contact dt {
  font-weight: 800;
}

.contact dd {
  margin: 0;
}

.cta-company {
  width: min(100%, 510px);
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #07958f);
  box-shadow: 0 14px 30px rgba(13, 168, 165, .20);
}

.cta-company:hover {
  box-shadow: 0 17px 36px rgba(13, 168, 165, .28);
}

.external {
  font-size: 26px;
}

.site-footer {
  min-height: 58px;
  background: linear-gradient(90deg, #091b31, #112d4c);
  color: rgba(255, 255, 255, .91);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 28px;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
}

.footer-sep {
  opacity: .5;
}

@media (max-width: 980px) {
  .landing {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
    padding: 56px 28px;
  }

  .panel-on {
    border-right: 0;
    border-bottom: 1px solid #d8e5f2;
  }

  .on-logo {
    white-space: normal;
    font-size: clamp(30px, 7vw, 44px);
    margin-bottom: 42px;
  }

  .on-content,
  .company-content {
    width: min(100%, 720px);
  }
}

@media (max-width: 560px) {
  .panel {
    padding: 42px 20px;
  }

  .on-logo {
    font-size: 30px;
  }

  h1 {
    font-size: 29px;
  }

  .lead {
    font-size: 18px;
  }

  .levels {
    gap: 9px;
  }

  .levels span {
    padding: 9px 13px;
    font-size: 13px;
  }

  .cta {
    width: 100%;
    min-height: 60px;
    padding: 15px 18px;
    font-size: 16px;
  }

  .company-content h2 {
    font-size: 28px;
  }

  .contact p,
  .contact dl div {
    font-size: 16px;
  }

  .site-footer {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}

/* Home left brand lockup — same hierarchy as /panel */
.on-brand{display:flex;flex-direction:column;align-items:flex-start;margin:0 0 42px}
.on-brand-mark{display:block;width:82px;height:82px;object-fit:contain;margin:0 0 24px}
.on-brand-wordmark{display:block;white-space:nowrap;font-size:clamp(48px,4.2vw,64px);line-height:1;letter-spacing:-.055em;font-weight:400}
.on-brand-wordmark .on-pl{color:#252a31}
@media(max-width:980px){.on-brand{align-items:center}.on-brand-wordmark{font-size:clamp(42px,8vw,62px)}}
@media(max-width:560px){.on-brand-mark{width:68px;height:68px;margin-bottom:18px}.on-brand-wordmark{font-size:clamp(32px,9vw,44px)}}

/* Home left column — typography matched to /panel */
.on-brand-wordmark{font-size:clamp(48px,4.2vw,58px)}
.panel-on h1{font-size:23px;line-height:1.45;letter-spacing:0;font-weight:400}
.panel-on h1 strong{margin-top:6px;font-weight:800}
.panel-on .lead{margin:28px 0 22px;max-width:610px;color:var(--muted);font-size:16px;line-height:1.55}
.panel-on .levels{gap:9px;margin:0 0 36px}
.panel-on .levels span{padding:9px 12px;font-size:13px;font-weight:800;color:#36516f;box-shadow:0 5px 16px rgba(27,59,100,.06)}
.panel-on .levels span::before{margin-right:0;color:#7aaee4;font-size:13px}
.panel-on .levels span:first-child::before{content:""}
@media(max-width:560px){.panel-on h1{font-size:22px}.panel-on .lead{font-size:16px}}
