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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body { background: var(--mvk-bg); color: var(--mvk-text); font-family: var(--mvk-body);
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4 { font-family: var(--mvk-display); letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 var(--mvk-s3); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.mvk-h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 var(--mvk-s4); }
a { color: var(--mvk-mint); }
a:hover { color: var(--mvk-cyan); }

img, svg { max-width: 100%; height: auto; }

/* The browser's own [hidden] rule is display:none at the lowest possible
   specificity, so any element given an explicit display — a flex button, a grid
   panel — ignores it and stays on screen. That is how a "Withdraw entry" button
   appeared to someone with no entry. One rule, applied everywhere, rather than a
   list of the selectors we have been caught by so far. */
[hidden] { display: none !important; }

:focus-visible { outline: 2px solid var(--mvk-cyan); outline-offset: 3px; border-radius: 6px; }

.mvk-container { width: 100%; max-width: var(--mvk-container); margin: 0 auto; padding: 0 var(--mvk-s5); }
.mvk-main { display: block; min-height: 50vh; }
.mvk-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.mvk-skip { position: absolute; left: -9999px; top: 0; z-index: 400; padding: 12px 20px;
  background: var(--mvk-mint); color: #04120c; border-radius: 0 0 12px 0; font-weight: 600; }
.mvk-skip:focus { left: 0; }

.mvk-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mvk-mint); margin: 0 0 var(--mvk-s3); font-weight: 600; }
.mvk-lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--mvk-muted); max-width: 62ch; }
.mvk-lead--tight { margin-bottom: var(--mvk-s6); }
.mvk-alarm { color: var(--mvk-red); font-weight: 600; }

.mvk-section { padding: var(--mvk-s8) 0; }
.mvk-section--panel { background: var(--mvk-bg-2); border-block: 1px solid var(--mvk-line); }
