/* ============================================================
   Roamli Design Tokens — single source of truth
   Imported once in index.js; never duplicate :root elsewhere.

   To experiment with an alternative palette, copy the :root
   block below, rename it to a class (e.g. .theme-midnight),
   add that class to <html>, and all tokens cascade automatically.
   ============================================================ */

/* ── Cozy Editorial (default) ────────────────────────────── */
:root {

  /* Colors — primary */
  --rl-navy:       #15233F;   /* primary ink, on-yellow */
  --rl-navy-2:     #1E3158;   /* secondary navy, sidebar upsell */
  --rl-navy-3:     #27406F;   /* avatar fills, accent backgrounds */
  --rl-navy-deep:  #0F1A30;   /* page hero bands, deepest layer */

  /* Colors — accent */
  --rl-yellow:      #FFC93C;  /* PRIMARY brand accent — one CTA per screen */
  --rl-yellow-deep: #F2B311;  /* button hover, shadow tint */

  /* Colors — canvas */
  --rl-cream:   #FBF6EC;      /* page background */
  --rl-paper:   #FFFFFF;      /* cards, inputs */
  --rl-paper-2: #F4F0E6;      /* subtle fills, table rows, placeholders */

  /* Colors — text */
  --rl-muted:   #69728A;      /* secondary text, lede copy, labels */
  --rl-muted-2: #9AA0B0;      /* placeholder text */

  /* Colors — semantic */
  --rl-coral: #FF6A4A;        /* eyebrows, urgency, danger, 1st-place rank */
  --rl-mint:  #2FB387;        /* live status, success, cleared */

  /* Borders */
  --rl-line:      rgba(21, 35, 63, 0.12);  /* standard borders */
  --rl-line-soft: rgba(21, 35, 63, 0.07);  /* dividers, hairlines */

  /* Typography */
  --rl-display: 'Bricolage Grotesque', sans-serif;  /* headlines, rank nums, wordmark */
  --rl-ui:      'Plus Jakarta Sans', sans-serif;    /* body, buttons, labels, nav */
  --rl-mono:    'Space Mono', monospace;            /* eyebrows, chips, data, kickers */

  /* Elevation */
  --rl-shadow-card: 0 30px 60px -24px rgba(15, 26, 48, 0.35);
  --rl-shadow-soft: 0 16px 40px -22px rgba(15, 26, 48, 0.30);

  /* Interaction */
  --rl-tap-min: 44px;   /* THE touch-target floor (Apple HIG) — don't mint per-file values */

  /* FAQ help-center aliases (FAQ.css still consumes these) */
  --faq-bg: var(--rl-cream);
  --faq-surface: var(--rl-paper);
  --faq-text: var(--rl-navy);
  --faq-text-secondary: var(--rl-muted);
  --faq-text-muted: var(--rl-muted-2);
  --faq-border-hover: rgba(21, 35, 63, 0.28);
  --faq-font: var(--rl-ui);
  --faq-radius-sm: 8px;
  --faq-radius: 12px;
  --faq-radius-lg: 16px;
  --faq-radius-xl: 24px;
  --faq-shadow-xs: 0 1px 2px rgba(15, 26, 48, 0.06);
  --faq-shadow-sm: 0 1px 3px rgba(15, 26, 48, 0.08), 0 1px 2px rgba(15, 26, 48, 0.04);
  --faq-shadow-xl: 0 24px 48px rgba(15, 26, 48, 0.12);
  --faq-transition: all 0.18s ease;
}

/* ── iOS zoom-on-focus guard (global) ─────────────────────────
   Below 16px, iOS Safari zooms the page when an input gains focus and often
   leaves it zoomed/offset afterwards. One global floor instead of per-surface
   patches: !important so it also beats higher-specificity per-component sizes
   and inline styles; max() preserves anything already larger. Scoped to
   phone/tablet-portrait widths where the zoom behavior applies. */
@media (max-width: 767px) {
  input, textarea, select {
    font-size: max(16px, 1em) !important;
  }
}


/* ============================================================
   Alternative themes — swap in by adding a class to <html>
   e.g. document.documentElement.className = 'theme-midnight'
   ============================================================ */

/*
.theme-midnight {
  --rl-navy:       #0D0D1A;
  --rl-navy-2:     #14142B;
  --rl-navy-3:     #1E1E3F;
  --rl-navy-deep:  #060610;
  --rl-yellow:      #7B61FF;
  --rl-yellow-deep: #6247E8;
  --rl-cream:   #0F0F1E;
  --rl-paper:   #16162A;
  --rl-paper-2: #1C1C35;
  --rl-muted:   #8B8BA7;
  --rl-muted-2: #5E5E7A;
  --rl-coral: #FF4D6D;
  --rl-mint:  #00D68F;
  --rl-line:      rgba(255, 255, 255, 0.08);
  --rl-line-soft: rgba(255, 255, 255, 0.04);
  --rl-shadow-card: 0 30px 60px -24px rgba(0, 0, 0, 0.60);
  --rl-shadow-soft: 0 16px 40px -22px rgba(0, 0, 0, 0.50);
}

.theme-forest {
  --rl-navy:       #1A2E1A;
  --rl-navy-2:     #243824;
  --rl-navy-3:     #2F4A2F;
  --rl-navy-deep:  #0F1F0F;
  --rl-yellow:      #F5C842;
  --rl-yellow-deep: #E0B230;
  --rl-cream:   #F4F7EF;
  --rl-paper:   #FFFFFF;
  --rl-paper-2: #EBF0E4;
  --rl-muted:   #5A6B52;
  --rl-muted-2: #8A9E80;
  --rl-coral: #E8603C;
  --rl-mint:  #2DA06B;
  --rl-line:      rgba(26, 46, 26, 0.12);
  --rl-line-soft: rgba(26, 46, 26, 0.07);
  --rl-shadow-card: 0 30px 60px -24px rgba(15, 30, 15, 0.32);
  --rl-shadow-soft: 0 16px 40px -22px rgba(15, 30, 15, 0.26);
}
*/

/* ============================================================
   Roamli marketing site — shared chrome + primitives.
   scripts/build-marketing.js prepends src/styles/theme.css (the
   rl-* token :root) and appends marketing/styles/pages/*.css,
   emitting one build/marketing.css. Page-specific styles belong
   in styles/pages/<page>.css with an mk-<page>- class prefix.
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--rl-cream);
  color: var(--rl-navy);
  font-family: var(--rl-ui);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ── Wordmark ── */
.rl-wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--rl-display); font-weight: 700; font-size: 23px;
  letter-spacing: -0.03em; color: var(--rl-navy); text-decoration: none;
}
.rl-wordmark img { width: 28px; height: 28px; object-fit: contain; }

/* ── Sticky nav ── */
.rl-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; border-bottom: 1px solid var(--rl-line-soft);
  position: sticky; top: 0;
  background: rgba(251, 246, 236, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 20;
}
.rl-nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 600; font-family: var(--rl-ui);
}
/* :not(.rl-btn) — in the static nav "Get started" is an <a class="rl-btn…">;
   without the guard this rule's background/padding reset outranks .rl-btn-pri
   and strips the yellow pill (unlike the SPA nav, where it's a <button>). */
.rl-nav-links a:not(.rl-btn), .rl-nav-link {
  opacity: 0.75; transition: opacity 0.15s; text-decoration: none;
  color: var(--rl-navy); background: none; border: none; cursor: pointer;
  font-family: var(--rl-ui); font-size: 14px; font-weight: 600; padding: 0;
}
.rl-nav-links a:not(.rl-btn):hover, .rl-nav-link:hover { opacity: 1; }
.rl-nav-active { opacity: 1 !important; position: relative; }
.rl-nav-active::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--rl-yellow); border-radius: 2px;
}

.rl-hamburger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 1.5px solid var(--rl-line); border-radius: 11px; background: var(--rl-paper);
  align-items: center; justify-content: center; cursor: pointer; padding: 0;
}
.rl-hamburger span { width: 18px; height: 2px; background: var(--rl-navy); border-radius: 2px; display: block; }

@media (max-width: 820px) {
  .rl-nav { padding: 16px 20px; }
  .rl-nav-links { display: none; }
  .rl-hamburger { display: flex; }
}

/* ── Mobile drawer ── */
.rl-drawer-overlay {
  position: fixed; inset: 0; background: rgba(15, 26, 48, 0.45); z-index: 30;
  backdrop-filter: blur(3px);
}
.rl-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 84vw);
  background: var(--rl-cream); z-index: 31; padding: 22px 22px 32px;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(15, 26, 48, 0.18);
}
.rl-drawer[hidden], .rl-drawer-overlay[hidden] { display: none; }
.rl-drawer-head { display: flex; align-items: center; justify-content: space-between; }
.rl-drawer-close {
  width: 40px; height: 40px; border: 1.5px solid var(--rl-line); border-radius: 11px;
  background: var(--rl-paper); color: var(--rl-navy); font-size: 15px; cursor: pointer;
}
.rl-drawer-links { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; flex: 1; }
.rl-drawer-links a {
  color: var(--rl-navy); text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 12px 6px; border-bottom: 1px solid var(--rl-line-soft);
}
.rl-drawer-actions { display: flex; flex-direction: column; gap: 12px; }

/* ── Buttons ── */
.rl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--rl-ui); font-weight: 700; font-size: 15px; border: none;
  border-radius: 13px; cursor: pointer; height: 52px; padding: 0 22px;
  white-space: nowrap; text-decoration: none; line-height: 1;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.15s, border-color 0.15s;
}
.rl-btn:active { transform: translateY(1px); }
.rl-btn-pri {
  background: var(--rl-yellow); color: var(--rl-navy);
  box-shadow: 0 10px 22px -10px rgba(242, 179, 17, 0.75);
}
.rl-btn-pri:hover { background: var(--rl-yellow-deep); }
.rl-btn-ghost {
  background: var(--rl-cream); color: var(--rl-navy);
  border: 1.5px solid var(--rl-line);
}
.rl-btn-ghost:hover { border-color: var(--rl-navy); background: rgba(21, 35, 63, 0.03); }
.rl-btn-sm { height: 42px; font-size: 13.5px; border-radius: 11px; padding: 0 18px; }
.rl-btn-full { width: 100%; }
.rl-btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* On-dark variants for navy bands */
.mk-on-dark .rl-btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35);
}
.mk-on-dark .rl-btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

/* ── Type primitives ── */
.rl-eyebrow {
  font-family: var(--rl-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rl-coral);
}
.rl-highlight {
  background: linear-gradient(transparent 64%, var(--rl-yellow) 64% 92%, transparent 92%);
}
.rl-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--rl-mono); font-size: 12px; letter-spacing: 0.04em; font-weight: 700;
  padding: 7px 12px; border-radius: 999px; white-space: nowrap;
}

/* ── Forms ── */
.rl-field { display: flex; flex-direction: column; gap: 7px; }
.rl-field label {
  font-size: 12.5px; font-weight: 700; color: var(--rl-muted);
  font-family: var(--rl-ui); letter-spacing: 0.01em;
}
.rl-input, .rl-textarea {
  border-radius: 13px; border: 1.5px solid var(--rl-line);
  background: var(--rl-paper); font-family: var(--rl-ui);
  font-size: 15px; color: var(--rl-navy); width: 100%; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.rl-input { height: 52px; padding: 0 16px; }
.rl-textarea { min-height: 130px; padding: 14px 16px; resize: vertical; }
.rl-input::placeholder, .rl-textarea::placeholder { color: var(--rl-muted-2); }
.rl-input:focus, .rl-textarea:focus {
  border-color: var(--rl-yellow); box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.22);
}
.rl-input.is-invalid, .rl-textarea.is-invalid { border-color: var(--rl-coral); }
.rl-form { display: flex; flex-direction: column; gap: 14px; }
/* Honeypot field — visually removed, still submittable by bots */
.mk-hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.mk-form-note { font-size: 13px; color: var(--rl-muted); line-height: 1.5; }
.mk-form-success {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(47, 179, 135, 0.1); border: 1px solid rgba(47, 179, 135, 0.35);
  color: var(--rl-navy); border-radius: 16px; padding: 16px 18px; font-size: 14.5px;
  line-height: 1.5;
}
.mk-form-error {
  background: rgba(255, 106, 74, 0.08); border: 1px solid rgba(255, 106, 74, 0.4);
  color: var(--rl-navy); border-radius: 16px; padding: 14px 18px; font-size: 14px;
}

/* ── Page scaffolding ── */
.mk-main { flex: 1; width: 100%; }
.mk-wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.mk-wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

.mk-hero { text-align: center; max-width: 760px; margin: 0 auto; padding: 64px 40px 8px; }
.mk-hero .rl-eyebrow { display: block; }
.mk-h1 {
  font-family: var(--rl-display); font-weight: 700;
  font-size: clamp(38px, 5vw, 58px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--rl-navy); margin: 20px 0 0;
}
.mk-lede {
  font-family: var(--rl-ui); font-size: 17.5px; color: var(--rl-muted);
  line-height: 1.55; margin-top: 16px;
}
.mk-hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

.mk-section { padding: 72px 0; }
.mk-section-tight { padding: 48px 0; }
.mk-section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.mk-h2 {
  font-family: var(--rl-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--rl-navy); margin: 14px 0 0;
}
.mk-h3 {
  font-family: var(--rl-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.015em; color: var(--rl-navy); margin: 0;
}
.mk-body { font-size: 15.5px; color: var(--rl-muted); line-height: 1.6; margin: 10px 0 0; }

/* Grids + cards */
.mk-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mk-card {
  background: var(--rl-paper); border: 1px solid var(--rl-line);
  border-radius: 24px; padding: 30px; box-shadow: var(--rl-shadow-soft);
}
.mk-card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 201, 60, 0.18); color: var(--rl-navy); margin-bottom: 18px;
}
.mk-card-icon svg { width: 22px; height: 22px; }

/* Numbered steps */
.mk-step-num {
  font-family: var(--rl-display); font-weight: 700; font-size: 40px;
  color: var(--rl-coral); line-height: 1;
}

/* Full-width navy CTA band */
.mk-cta-band { background: var(--rl-navy-deep); padding: 72px 0; }
.mk-cta-band .mk-h2, .mk-cta-band .mk-lede-dark { color: #fff; }
.mk-lede-dark { font-size: 17px; color: rgba(255, 255, 255, 0.72); line-height: 1.55; margin-top: 14px; }
.mk-cta-band-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 40px; }

/* ── Longform prose (legal, blog bodies) ── */
.mk-prose { font-size: 16px; line-height: 1.7; color: var(--rl-navy); }
.mk-prose h1 {
  font-family: var(--rl-display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(32px, 4vw, 44px); line-height: 1.05; margin: 0 0 10px;
}
.mk-prose h2 {
  font-family: var(--rl-display); font-weight: 700; letter-spacing: -0.015em;
  font-size: 26px; margin: 40px 0 12px;
}
.mk-prose h3 { font-family: var(--rl-ui); font-weight: 800; font-size: 18px; margin: 28px 0 8px; }
.mk-prose p { margin: 0 0 16px; }
.mk-prose ul, .mk-prose ol { padding-left: 24px; margin: 0 0 16px; }
.mk-prose li { margin-bottom: 8px; }
.mk-prose a { color: var(--rl-navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--rl-yellow); text-decoration-thickness: 2px; }
.mk-prose img { border-radius: 16px; margin: 8px 0 16px; }
.mk-prose blockquote {
  margin: 24px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--rl-yellow);
  color: var(--rl-muted); font-size: 17px;
}
.mk-prose-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--rl-mono); font-size: 12.5px; color: var(--rl-muted);
  letter-spacing: 0.04em; margin-bottom: 26px;
}

.mk-article { padding: 56px 0 72px; }

/* ── Blog index ── */
.mk-blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.mk-post-card {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 20px;
  overflow: hidden; box-shadow: var(--rl-shadow-soft); text-decoration: none;
  display: flex; flex-direction: column; transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.mk-post-card:hover { transform: translateY(-3px); box-shadow: var(--rl-shadow-card); }
.mk-post-card-img { aspect-ratio: 16 / 9; background: var(--rl-paper-2); object-fit: cover; width: 100%; }
.mk-post-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mk-post-card-title {
  font-family: var(--rl-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.015em; color: var(--rl-navy); line-height: 1.2; margin: 0;
}
.mk-post-card-desc { font-size: 14px; color: var(--rl-muted); line-height: 1.55; margin: 0; flex: 1; }
.mk-post-card-date {
  font-family: var(--rl-mono); font-size: 12px; color: var(--rl-muted-2);
  letter-spacing: 0.04em;
}

/* ── Footer ── */
.mk-footer { background: var(--rl-navy-deep); color: #fff; margin-top: 72px; }
.mk-footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 56px 40px 40px;
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px;
}
.mk-footer .rl-wordmark { color: #fff; }
.mk-footer-tag {
  font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6;
  margin: 16px 0 20px; max-width: 300px;
}
.mk-footer-social { display: flex; gap: 14px; }
.mk-footer-social a {
  width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.75);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.mk-footer-social a:hover { border-color: #fff; color: #fff; }
.mk-footer-social svg { width: 18px; height: 18px; }
.mk-footer-col { display: flex; flex-direction: column; gap: 11px; }
.mk-footer-head {
  font-family: var(--rl-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 6px;
}
.mk-footer-col a {
  color: rgba(255, 255, 255, 0.78); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.15s;
}
.mk-footer-col a:hover { color: #fff; }
.mk-footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 40px;
}
.mk-footer-copy {
  display: block; max-width: 1240px; margin: 0 auto;
  font-family: var(--rl-mono); font-size: 12px; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .mk-footer-inner { grid-template-columns: 1fr 1fr; }
  .mk-footer-brand { grid-column: 1 / -1; }
  .mk-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .mk-wrap, .mk-wrap-narrow { padding: 0 20px; }
  .mk-hero { padding: 40px 20px 4px; }
  .mk-section { padding: 52px 0; }
  .mk-grid-2, .mk-grid-3 { grid-template-columns: 1fr; }
  .mk-card { padding: 24px; border-radius: 20px; }
  .mk-hero-cta .rl-btn { flex: 1; }
  .mk-footer-inner { padding: 44px 20px 32px; gap: 28px; }
  .mk-footer-base { padding: 18px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mk-post-card, .rl-btn { transition: none; }
}

/* ── Consent banner ─────────────────────────────────────────
   Non-blocking bar pinned to the bottom: it never traps focus or covers the
   page, because a cookie notice should not stand between a visitor and the
   content. Cream card on the cream page reads as a raised surface via the
   hairline + card shadow, matching .mk-card. */
.mk-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0 20px calc(20px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.mk-consent-card {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--rl-paper);
  border: 1px solid var(--rl-line);
  border-radius: 20px;
  box-shadow: var(--rl-shadow-card);
  padding: 18px 22px;
  transform: translateY(14px);
  opacity: 0;
  transition: transform .28s cubic-bezier(0.34, 1.3, 0.64, 1), opacity .22s ease;
}

.mk-consent.is-in .mk-consent-card {
  transform: translateY(0);
  opacity: 1;
}

.mk-consent-copy {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--rl-ui);
  font-size: 14px;
  line-height: 1.55;
  color: var(--rl-muted);
}

.mk-consent-copy a {
  color: var(--rl-navy);
  text-decoration: underline;
  white-space: nowrap;
}

.mk-consent-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 640px) {
  .mk-consent { padding: 0 14px calc(14px + env(safe-area-inset-bottom, 0px)); }
  .mk-consent-card {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }
  .mk-consent-actions { gap: 8px; }
  .mk-consent-actions .rl-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-consent-card { transition: none; transform: none; opacity: 1; }
}

/* ── pages/contact-us.css ── */
/* /contact-us — mk-contact- prefix */

.mk-contact-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px;
  align-items: start;
}

.mk-contact-routes { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.mk-contact-route {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 20px;
  padding: 20px 22px; text-decoration: none; box-shadow: var(--rl-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.mk-contact-route:hover { transform: translateY(-2px); box-shadow: var(--rl-shadow-card); }
.mk-contact-route-icon {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(21, 35, 63, 0.06); color: var(--rl-navy);
}
.mk-contact-route-icon svg { width: 19px; height: 19px; }
.mk-contact-route-body { flex: 1; min-width: 0; }
.mk-contact-route-title {
  display: block; font-family: var(--rl-display); font-weight: 700;
  font-size: 17px; letter-spacing: -0.01em; color: var(--rl-navy);
}
.mk-contact-route-desc {
  display: block; font-size: 13.5px; color: var(--rl-muted);
  line-height: 1.5; margin-top: 4px;
}
.mk-contact-route-arrow { align-self: center; color: var(--rl-muted-2); flex: none; }
.mk-contact-route-arrow svg { width: 16px; height: 16px; display: block; }

.mk-contact-card {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 24px;
  padding: 34px; box-shadow: var(--rl-shadow-card);
}
.mk-contact-card h2 {
  font-family: var(--rl-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.02em; color: var(--rl-navy); margin: 0; line-height: 1.1;
}
.mk-contact-card-lede {
  font-size: 14.5px; color: var(--rl-muted); line-height: 1.5;
  margin: 9px 0 22px;
}
.mk-contact-card .mk-form-error { margin-bottom: 16px; }

/* Experience-type pills (radio group, no native select) */
.mk-contact-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mk-contact-pill { position: relative; }
.mk-contact-pill input { position: absolute; opacity: 0; pointer-events: none; }
.mk-contact-pill span {
  display: inline-flex; align-items: center; padding: 9px 15px; border-radius: 999px;
  border: 1.5px solid var(--rl-line); background: var(--rl-paper);
  font-family: var(--rl-ui); font-size: 13.5px; font-weight: 600; color: var(--rl-navy);
  cursor: pointer; user-select: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.mk-contact-pill span:hover { border-color: var(--rl-navy); }
.mk-contact-pill input:checked + span {
  background: var(--rl-navy); border-color: var(--rl-navy); color: #fff;
}
.mk-contact-pill input:focus-visible + span {
  border-color: var(--rl-yellow); box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.22);
}

@media (max-width: 980px) {
  .mk-contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .mk-contact-card { padding: 26px 22px; border-radius: 20px; }
}

/* ── pages/customers-lock-chicago.css ── */
/* /customers/lock-chicago — mk-lock- prefix */

/* Stat strip */
.mk-lock-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 920px; margin: 0 auto;
}
.mk-lock-stat {
  background: var(--rl-paper); border: 1px solid var(--rl-line);
  border-radius: 20px; padding: 26px 28px; box-shadow: var(--rl-shadow-soft);
}
.mk-lock-stat-num {
  display: block; font-family: var(--rl-mono); font-weight: 700;
  font-size: 36px; line-height: 1; color: var(--rl-navy);
}
.mk-lock-stat-label {
  display: block; margin-top: 10px; font-size: 14px;
  color: var(--rl-muted); line-height: 1.45;
}

/* Narrative blocks */
.mk-lock-story { padding-top: 24px; }
.mk-lock-block { margin-top: 52px; }
.mk-lock-block:first-child { margin-top: 0; }
.mk-lock-block .mk-h2 { margin-top: 12px; }
.mk-lock-block p {
  font-size: 16.5px; line-height: 1.7; color: var(--rl-navy); margin: 16px 0 0;
}

/* Paper band: built for attractions */
.mk-lock-attractions {
  background: var(--rl-paper);
  border-top: 1px solid var(--rl-line-soft);
  border-bottom: 1px solid var(--rl-line-soft);
}

@media (max-width: 820px) {
  .mk-lock-stats { grid-template-columns: 1fr; gap: 16px; }
  .mk-lock-block { margin-top: 42px; }
}

/* ── pages/demo.css ── */
/* /demo — mk-demo- prefix */

.mk-demo-facts {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 26px;
}
.mk-demo-fact {
  display: inline-flex; align-items: center;
  font-family: var(--rl-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--rl-muted);
  background: var(--rl-paper); border: 1px solid var(--rl-line);
  padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}

/* ── pages/how-it-works.css ── */
/* /how-it-works — mk-hiw- prefix */

.mk-hiw-steps .mk-step-num { margin-bottom: 14px; }

.mk-hiw-noapp { background: var(--rl-paper); border-top: 1px solid var(--rl-line-soft); border-bottom: 1px solid var(--rl-line-soft); }
.mk-hiw-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }

.mk-hiw-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.mk-hiw-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--rl-navy); }
.mk-hiw-list li::before {
  content: "";
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  background: rgba(255, 201, 60, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315233F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.mk-hiw-panel { display: flex; justify-content: center; }
.mk-hiw-board {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 20px;
  padding: 22px 24px; width: 100%; max-width: 400px; box-shadow: var(--rl-shadow-card);
}
.mk-hiw-board-title {
  font-family: var(--rl-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rl-muted); margin-bottom: 8px;
}
.mk-hiw-rank {
  display: flex; align-items: center; gap: 14px; padding: 12px 0;
  border-top: 1px solid var(--rl-line-soft);
}
.mk-hiw-rank:first-of-type { border-top: none; }
.mk-hiw-pos { font-family: var(--rl-display); font-weight: 700; font-size: 17px; width: 22px; color: var(--rl-navy); flex: none; }
.mk-hiw-pos.first { color: var(--rl-coral); }
.mk-hiw-av {
  width: 34px; height: 34px; border-radius: 10px; display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--rl-mono); font-weight: 700; font-size: 12px; color: #fff; flex: none;
}
.mk-hiw-name { font-weight: 700; font-size: 14.5px; flex: 1; color: var(--rl-navy); }
.mk-hiw-pts { font-family: var(--rl-mono); font-weight: 700; font-size: 13px; color: var(--rl-muted); white-space: nowrap; }

@media (max-width: 820px) {
  .mk-hiw-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── pages/report-a-challenge.css ── */
/* /report-a-challenge — mk-report- prefix */

.mk-report-card {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 24px;
  padding: 34px; box-shadow: var(--rl-shadow-soft); margin-top: 44px;
}
.mk-report-card-title {
  font-family: var(--rl-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.02em; color: var(--rl-navy); margin: 0 0 20px; line-height: 1.1;
}
.mk-report-card .mk-form-error { margin-bottom: 16px; }

.mk-report-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.mk-report-subhead {
  font-family: var(--rl-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rl-muted); margin: 10px 0 0;
}

@media (max-width: 600px) {
  .mk-report-card { padding: 26px 20px; border-radius: 20px; }
  .mk-report-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ── pages/scavenger-hunts.css ── */
/* /scavenger-hunts — mk-sh- prefix */

.mk-sh-steps .mk-step-num { margin-bottom: 14px; }

/* Paper band: "skip the app store" split */
.mk-sh-noapp {
  background: var(--rl-paper);
  border-top: 1px solid var(--rl-line-soft);
  border-bottom: 1px solid var(--rl-line-soft);
}
.mk-sh-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }

.mk-sh-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.mk-sh-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--rl-navy); }
.mk-sh-list li::before {
  content: "";
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  background: rgba(255, 201, 60, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315233F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Decorative join-an-event mock */
.mk-sh-panel { display: flex; justify-content: center; }
.mk-sh-join {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 20px;
  padding: 26px; width: 100%; max-width: 380px; box-shadow: var(--rl-shadow-card);
  display: flex; flex-direction: column; gap: 10px;
}
.mk-sh-join-title {
  font-family: var(--rl-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.015em; color: var(--rl-navy); margin-bottom: 8px;
}
.mk-sh-join-label {
  font-family: var(--rl-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rl-muted);
}
.mk-sh-join-code {
  height: 52px; border: 1.5px solid var(--rl-line); border-radius: 13px;
  background: var(--rl-paper-2); display: flex; align-items: center; padding: 0 16px;
  font-family: var(--rl-mono); font-weight: 700; font-size: 16px;
  letter-spacing: 0.12em; color: var(--rl-navy);
}
.mk-sh-join-btn {
  height: 48px; border-radius: 13px; background: var(--rl-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 14.5px; margin-top: 4px;
}
.mk-sh-join-btn svg { width: 17px; height: 17px; }

/* Where-to-play link cards */
.mk-sh-dest {
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.mk-sh-dest:hover { transform: translateY(-3px); box-shadow: var(--rl-shadow-card); }
.mk-sh-dest .mk-body { flex: 1; }
.mk-sh-dest-go {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; color: var(--rl-navy);
}
.mk-sh-dest-go svg { width: 17px; height: 17px; }

/* For-creators chips + CTA */
.mk-sh-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.mk-sh-chips .rl-chip {
  background: var(--rl-paper); border: 1px solid var(--rl-line); color: var(--rl-muted);
}
.mk-sh-create-cta { display: flex; justify-content: center; }

@media (max-width: 820px) {
  .mk-sh-split { grid-template-columns: 1fr; gap: 32px; }
}

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

/* ── pages/solutions-campuses.css ── */
/* /solutions/campuses — mk-cmp- prefix */

.mk-cmp-band {
  background: var(--rl-paper);
  border-top: 1px solid var(--rl-line-soft);
  border-bottom: 1px solid var(--rl-line-soft);
}

.mk-cmp-uses { gap: 20px 32px; }
.mk-cmp-use { display: flex; align-items: flex-start; gap: 18px; padding: 10px 0; }
.mk-cmp-use-icon {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 201, 60, 0.18); color: var(--rl-navy);
}
.mk-cmp-use-icon svg { width: 22px; height: 22px; }
.mk-cmp-use .mk-h3 { font-size: 19px; }
.mk-cmp-use .mk-body { margin-top: 6px; font-size: 14.5px; }

@media (max-width: 820px) {
  .mk-cmp-use { padding: 4px 0; }
}

/* ── pages/solutions-destinations.css ── */
/* /solutions/destinations — mk-dst- prefix */

.mk-dst-band {
  background: var(--rl-paper);
  border-top: 1px solid var(--rl-line-soft);
  border-bottom: 1px solid var(--rl-line-soft);
}
.mk-dst-split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}

.mk-dst-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.mk-dst-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--rl-navy); }
.mk-dst-list li::before {
  content: "";
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  background: rgba(255, 201, 60, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315233F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Season-analytics mock readout */
.mk-dst-panel { display: flex; justify-content: center; }
.mk-dst-stats {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 20px;
  padding: 22px 24px; width: 100%; max-width: 400px; box-shadow: var(--rl-shadow-card);
}
.mk-dst-stats-title {
  font-family: var(--rl-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rl-muted); margin-bottom: 8px;
}
.mk-dst-stat {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0; border-top: 1px solid var(--rl-line-soft);
}
.mk-dst-stat:first-of-type { border-top: none; }
.mk-dst-stat-label { font-size: 14px; font-weight: 600; color: var(--rl-muted); }
.mk-dst-stat-val {
  font-family: var(--rl-mono); font-weight: 700; font-size: 14px;
  color: var(--rl-navy); white-space: nowrap;
}

@media (max-width: 820px) {
  .mk-dst-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── pages/solutions-teams-and-events.css ── */
/* /solutions/teams-and-events — mk-tev- prefix */

.mk-tev-steps .mk-step-num { margin-bottom: 14px; }

.mk-tev-sponsor {
  background: var(--rl-paper);
  border-top: 1px solid var(--rl-line-soft);
  border-bottom: 1px solid var(--rl-line-soft);
}
.mk-tev-split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}

.mk-tev-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.mk-tev-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--rl-navy); }
.mk-tev-list li::before {
  content: "";
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  background: rgba(255, 201, 60, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315233F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Sponsored-challenge mock card */
.mk-tev-panel { display: flex; justify-content: center; }
.mk-tev-spon-card {
  background: var(--rl-paper); border: 1px solid var(--rl-line); border-radius: 20px;
  padding: 24px 26px; width: 100%; max-width: 400px; box-shadow: var(--rl-shadow-card);
}
.mk-tev-spon-tag {
  display: inline-block; font-family: var(--rl-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rl-muted); background: var(--rl-paper-2);
  padding: 6px 11px; border-radius: 999px;
}
.mk-tev-spon-title {
  font-family: var(--rl-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.015em; color: var(--rl-navy); line-height: 1.2;
  margin-top: 14px;
}
.mk-tev-spon-body { font-size: 14px; color: var(--rl-muted); line-height: 1.55; margin-top: 8px; }
.mk-tev-spon-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--rl-line-soft); margin-top: 16px; padding-top: 14px;
}
.mk-tev-spon-brand { font-size: 13.5px; font-weight: 700; color: var(--rl-navy); }
.mk-tev-spon-pts {
  font-family: var(--rl-mono); font-weight: 700; font-size: 13px;
  color: var(--rl-muted); white-space: nowrap;
}

@media (max-width: 820px) {
  .mk-tev-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── pages/solutions.css ── */
/* /solutions — mk-sol- prefix */

.mk-sol-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 20px;
}
.mk-sol-card {
  background: var(--rl-paper); border: 1px solid var(--rl-line);
  border-radius: 20px; padding: 26px; box-shadow: var(--rl-shadow-soft);
}
.mk-sol-card .mk-card-icon { margin-bottom: 16px; }
.mk-sol-card .mk-h3 { font-size: 19px; }
.mk-sol-card .mk-body { font-size: 14.5px; }

/* "Every event ships with the full kit" band */
.mk-sol-includes {
  background: var(--rl-paper);
  border-top: 1px solid var(--rl-line-soft);
  border-bottom: 1px solid var(--rl-line-soft);
}
.mk-sol-kit {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px 36px; max-width: 1040px; margin: 0 auto;
}
.mk-sol-kit-item { display: flex; align-items: flex-start; gap: 14px; }
.mk-sol-kit-icon {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 201, 60, 0.18); color: var(--rl-navy);
}
.mk-sol-kit-icon svg { width: 18px; height: 18px; }
.mk-sol-kit-item strong { display: block; font-size: 15px; color: var(--rl-navy); }
.mk-sol-kit-item p { margin: 3px 0 0; font-size: 14px; color: var(--rl-muted); line-height: 1.5; }

/* Service levels */
.mk-sol-ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mk-sol-way { border-top: 1px solid var(--rl-line); padding-top: 20px; }
.mk-sol-way .mk-h3 { font-size: 19px; }

/* Deep-dive link cards */
.mk-sol-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mk-sol-link {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--rl-paper); border: 1px solid var(--rl-line);
  border-radius: 20px; padding: 24px 28px; box-shadow: var(--rl-shadow-soft);
  text-decoration: none; transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.mk-sol-link:hover { transform: translateY(-3px); box-shadow: var(--rl-shadow-card); }
.mk-sol-link .mk-h3 { font-size: 19px; }
.mk-sol-link .mk-body { margin-top: 6px; font-size: 14px; }
.mk-sol-link-arrow {
  width: 22px; height: 22px; flex: none; color: var(--rl-navy);
  transition: transform 0.15s ease;
}
.mk-sol-link:hover .mk-sol-link-arrow { transform: translateX(3px); }

@media (max-width: 980px) {
  .mk-sol-kit { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .mk-sol-card { padding: 22px; }
  .mk-sol-kit { grid-template-columns: 1fr; gap: 22px; }
  .mk-sol-ways { grid-template-columns: 1fr; gap: 24px; }
  .mk-sol-links { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .mk-sol-link, .mk-sol-link-arrow { transition: none; }
}
