@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');
@import url('./command-centre.css');
@import url('./inner.css');

:root {
  color-scheme: light;

  /* Executive Luxury OS™ */
  --graphite: #111315;
  --red: #C1121F;
  --red-dark: #9A0E19;
  --red-soft: #FEF2F3;
  --red-glow: rgba(193, 18, 31, 0.16);

  --ink: #1A1A1A;
  --ink-soft: #18181B;
  --muted: #71717A;
  --muted-light: #A1A1AA;

  --surface: #FFFFFF;
  --page: #FFFFFF;
  --page-2: #FAFAFA;
  --page-muted: #F4F4F5;
  --line: rgba(26, 26, 26, 0.08);
  --line-strong: rgba(26, 26, 26, 0.12);

  --success: #16A34A;
  --success-soft: #F0FDF4;
  --warn: #D97706;
  --gold: #CA8A04;
  --indigo: #3730A3;
  --violet: #7C3AED;
  --platinum: #E4E4E7;
  --warn-soft: #FFFBEB;
  --danger: #EF4444;
  --danger-soft: #FEF2F2;

  --font-display: 'General Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Sans', system-ui, sans-serif;
  --font: var(--font-body);
  --text-base: 18px;

  /* Layout */
  --max-width: 90rem;
  --read-width: 47.5rem;
  --nav-h: 4.25rem;

  /* Spacing */
  --section-gap: clamp(5rem, 10vw, 10rem);
  --section-inner: clamp(3rem, 6vw, 5rem);
  --card-gap: 2rem;
  --card-pad: 2.5rem;

  /* Radius & elevation */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-btn: 16px;
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.04), 0 1px 2px rgba(26, 26, 26, 0.03);
  --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.08);
  --shadow-lift: 0 12px 40px rgba(26, 26, 26, 0.1);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--text-base);
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  background: var(--page);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-image: none;
}

h1, h2, h3, h4, h5, h6,
.mk-section-title,
.mk-page-hero h1,
.mk-btn-xl,
.mk-nav__brand,
.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p, li, label, input, select, textarea, .mk-section-lede {
  font-family: var(--font-body);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@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;
  }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* SEO & mobile-friendly — skip link, readable forms, touch targets */
.mk-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--graphite);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: top 0.2s var(--ease);
}

.mk-skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]),
  select,
  textarea {
    font-size: 1rem;
  }

  .mk-nav__logo {
    max-width: min(10rem, 58vw);
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .hp-nav__actions .hp-nav__btn {
    min-height: 2.75rem;
    padding: 0 0.85rem;
    font-size: 0.875rem;
  }
}

#main-content:focus {
  outline: none;
}

/* ─── Navigation ─── */
.mk-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
}

.mk-nav__bar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-sm), 0 0 0 1px var(--line);
}

.mk-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mk-nav__brand span { color: var(--red); font-weight: 700; }

.mk-nav__logo {
  display: block;
  width: auto;
  height: 3.6rem;
  max-width: min(18rem, 67.2vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.hp-footer .mk-nav__logo {
  height: 4rem;
  max-width: 20rem;
}

.vc-panel__brand .mk-nav__logo {
  height: 3.2rem;
  max-width: 16rem;
  margin-bottom: 1rem;
}

.mk-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.mk-nav__toggle svg { width: 1.25rem; height: 1.25rem; }

.mk-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
}

.mk-nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.mk-nav__links a:hover {
  color: var(--ink);
  background: rgba(15, 20, 25, 0.04);
}

.mk-nav__links a.is-active {
  color: var(--ink);
  background: rgba(15, 20, 25, 0.06);
}

.mk-nav__cta {
  background: var(--ink) !important;
  color: #fff !important;
  margin-left: 0.25rem;
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.2);
}

.mk-nav__cta:hover {
  background: var(--ink-soft) !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mk-nav { padding: 0.5rem 0.75rem; }
  .mk-nav__bar { border-radius: var(--radius); padding: 0.65rem 1rem; }
  .mk-nav__toggle { display: inline-flex; }

  .mk-nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .mk-nav__links.is-open { display: flex; }
  .mk-nav__links a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .mk-nav__cta { margin-left: 0; text-align: center; }
  .mk-nav { position: relative; }
}

/* ─── Layout ─── */
.mk-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.mk-section {
  padding: var(--section-gap) 0;
}

.mk-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.mk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(177, 18, 38, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.mk-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.mk-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  font-family: var(--font-display);
}

.mk-section-lede {
  margin: 0 0 2.5rem;
  max-width: var(--read-width);
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.mk-text-center { text-align: center; }
.mk-text-center .mk-section-lede { margin-left: auto; margin-right: auto; }
.mk-cta-row--center { justify-content: center; }

/* ─── Hero (home) ─── */
.mk-hero {
  display: grid;
  gap: 2.5rem 4rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 960px) {
  .mk-hero { grid-template-columns: 1.05fr 0.95fr; }
}

.mk-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-family: var(--font-display);
}

.mk-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.mk-hero__sub {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: var(--read-width);
}

/* ─── Page hero (inner pages) ─── */
.mk-page-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
  position: relative;
}

.mk-page-hero::after {
  content: '';
  position: absolute;
  inset: -2rem -1.5rem auto;
  height: 280px;
  background: radial-gradient(ellipse 70% 80% at 30% 0%, rgba(196, 0, 43, 0.06), transparent);
  pointer-events: none;
  z-index: -1;
}

.mk-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  letter-spacing: -0.04em;
}

.mk-page-hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

/* ─── Buttons ─── */
.mk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mk-btn-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.mk-btn-xl--solid {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.mk-btn-xl--solid:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  color: #fff;
}

.mk-btn-xl--outline {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}

.mk-btn-xl--outline:hover {
  border-color: var(--ink);
  background: var(--page-muted);
  transform: translateY(-3px);
  color: var(--ink);
}

/* Outline CTAs on dark surfaces — transparent fill, light label */
:is(.hp-chapter--dark, .hp-final-cta, .mk-final, [class$="-final"]) .mk-btn-xl--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

:is(.hp-chapter--dark, .hp-final-cta, .mk-final, [class$="-final"]) .mk-btn-xl--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.mk-btn-xl--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 24px rgba(15, 20, 25, 0.25);
}

.mk-btn-xl--dark:hover {
  background: var(--ink-soft);
  color: #fff;
  transform: translateY(-2px);
}

.mk-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── Product preview ─── */
.mk-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.mk-preview::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  pointer-events: none;
}

.mk-preview__bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-preview__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mk-preview__dot:first-child { background: #ff5f57; }
.mk-preview__dot:nth-child(2) { background: #febc2e; }
.mk-preview__dot:nth-child(3) { background: #28c840; }

.mk-preview__body--hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--ink-soft);
}

.mk-preview__hero-img {
  width: auto;
  max-width: min(20rem, 88%);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.08);
}

/* ─── Trust band ─── */
.mk-trust {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.mk-trust .mk-muted {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

.mk-trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.mk-trust__logo-pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s, border-color 0.2s;
}

.mk-trust__logo-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.mk-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .mk-metrics { grid-template-columns: 1fr; text-align: center; }
}

.mk-metric strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.mk-metric span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Cards ─── */
.mk-grid-cards {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
}

.mk-card {
  padding: var(--card-pad);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.mk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.mk-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  color: var(--red);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.mk-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.mk-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Benefits ─── */
.mk-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .mk-benefits--grid { grid-template-columns: 1fr 1fr; max-width: none; }
}

.mk-benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.mk-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M4.5 8.5L2 6l1-1 1.5 1.5L9 2l1 1z'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ─── Steps ─── */
.mk-steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  counter-reset: step;
}

.mk-step-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.mk-step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

.mk-step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.mk-step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mk-step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Pricing ─── */
.mk-pricing {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  align-items: start;
}

.mk-price-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.mk-price-card:hover { transform: translateY(-3px); }

.mk-price-card--accent {
  border-color: var(--red);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: none;
}

.mk-price-card--accent:hover { transform: translateY(-4px); }

.mk-price-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.mk-price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mk-price-card__price {
  margin: 1.25rem 0 0;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ─── FAQ ─── */
.mk-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 0.65rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.mk-faq details[open] {
  border-color: rgba(196, 0, 43, 0.2);
}

.mk-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.15rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.mk-faq summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}

.mk-faq details[open] summary::after { content: '−'; color: var(--red); }

.mk-faq p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Quotes ─── */
.mk-quote-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.mk-quote {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.mk-quote::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: var(--red-soft);
  font-family: Georgia, serif;
}

.mk-quote blockquote {
  margin: 0 0 1rem;
  padding-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

.mk-quote figcaption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* ─── Final CTA ─── */
.mk-final {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.mk-final::before {
  content: none;
}

.mk-final > * { position: relative; }

.mk-final h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
}

.mk-final .mk-section-lede {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  margin-right: auto;
}

.mk-final .mk-btn-xl--solid {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mk-final .mk-btn-xl--solid:hover {
  background: var(--red-soft);
  color: var(--red);
}

.mk-final .mk-btn-xl--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.mk-final .mk-btn-xl--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── Industries ─── */
.mk-industries {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.mk-industry {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.mk-industry:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 0, 43, 0.2);
}

.mk-industry h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.mk-industry p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Forms ─── */
.mk-form-panel {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.mk-form-panel .mk-section-title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.mk-form .mk-field { margin-bottom: 1rem; }

.mk-field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
}

.mk-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.mk-field input,
.mk-field select,
.mk-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--page);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.mk-field input:focus,
.mk-field select:focus,
.mk-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.mk-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px var(--red-glow);
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ─── Split layout ─── */
.mk-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 860px) {
  .mk-split { grid-template-columns: 1fr 1fr; }
}

/* ─── Value strip ─── */
.mk-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.mk-value-strip span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ─── Footer ─── */
.mk-footer {
  margin-top: 2rem;
  padding: 4rem 1.5rem 2.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.mk-footer__top {
  max-width: 1180px;
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-footer__brand {
  max-width: 20rem;
}

.mk-footer__brand .mk-nav__brand {
  color: #fff;
  margin-bottom: 0.75rem;
}

.mk-footer__brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.mk-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.mk-footer h3 {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.mk-footer ul { list-style: none; margin: 0; padding: 0; }
.mk-footer li { margin-bottom: 0.5rem; }

.mk-footer a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.mk-footer a:hover { color: #fff; }

.mk-footer__copy {
  max-width: 1180px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.mk-muted-mini { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); }
.mk-footer .mk-muted-mini { color: rgba(255, 255, 255, 0.45); }

/* ─── Design system utilities (v3) ─── */
.ds-band-muted { background: var(--page-muted); }
.ds-display { font-family: var(--font-display); }
.ds-body { font-family: var(--font-body); }

.hp-main [class*="-hero-title"],
.hp-main .hp-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 0.95;
  color: var(--ink);
}

.hp-main [class*="-hero-sub"],
.hp-main [class*="-hero-tagline"] {
  font-family: var(--font-display);
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hp-main [class*="-final"],
.mk-final {
  background: var(--graphite) !important;
  background-image: none !important;
}

.hp-main [class*="-band--calm"],
[class*="-band--calm"] {
  background: var(--page-muted) !important;
  background-image: none !important;
}

.mk-section--surface {
  background: var(--surface);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 800px) {
  .mk-section--surface {
    margin-left: 0;
    margin-right: 0;
  }
}
