:root{
    --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  
    /* Palette tuned to sketches */
    --bg: #f7fbff;
    --grid: rgba(37, 99, 235, .08);
    --text: #0b1220;
    --muted: #6b7280;
    --muted2: #94a3b8;
    --card: #ffffff;
  
    --blue: #2563eb;
    --blue2:#1d4ed8;
    --blue-ink:#ffffff;
  
    --line: rgba(15, 23, 42, 0.10);
    --soft: rgba(15, 23, 42, 0.06);
  
    --shadow-1: 0 10px 24px rgba(15, 23, 42, .06);
    --shadow-2: 0 22px 60px rgba(37, 99, 235, .18);
    --shadow-hero: 0 40px 110px rgba(37, 99, 235, .22);
  
    --r-12: .75rem;
    --r-16: 1rem;
    --r-20: 1.25rem;
    --r-24: 1.5rem;
    --r-28: 1.75rem;
    --r-32: 2rem;
    --r-pill: 999px;
  
    --container: 74rem;
    --gutter: clamp(1rem, 3.2vw, 2.25rem);
  
    --h1: clamp(2.4rem, 3.6vw, 3.4rem);
    --h2: clamp(2.1rem, 3vw, 3.1rem);
    --h3: clamp(1.1rem, 1.7vw, 1.35rem);
    --p:  clamp(1rem, 1.15vw, 1.05rem);
  
    --focus: 0 0 0 .22rem rgba(37, 99, 235, .28);
  }
  
  *{
    box-sizing: border-box;
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  .mf_tag_html,
  .mf_tag_body{
    height:100%;
  }
  
  .mf_tag_body{
    position: relative;
    margin:0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    overflow-x:hidden;
  }
  
  /* Grid background like sketch */
  .mf_tag_body::before{
    content:"";
    position: absolute;
    inset: 0;
    pointer-events:none;
    background:
      linear-gradient(to right, var(--grid) 1px, transparent 1px),
      linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
    background-size: 5rem 5rem;
    opacity: .85;
    mask-image: radial-gradient(circle at 50% 12%, #000 0 48%, transparent 74%);
    z-index: -1;
  }
  
  .mf_tag_a{
    color:inherit;
    text-decoration:none;
  }
  
  .mf_tag_button,
  .mf_tag_input,
  .mf_tag_select{
    font: inherit;
  }
  
  .mf_container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  
  .mf_material_symbols_outlined{
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0,'wght' 550,'GRAD' 0,'opsz' 24;
    font-size: 1.25em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    font-weight: 100;
  }
  
  .sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
  }
  
  /* Shared */
  .mf_eyebrow{
    text-transform: uppercase;
    font-size: .9rem;
    font-weight: 500;
    color: var(--blue);
  }
  
  .muted{
    color: var(--muted);
  }
  
  .mf_center{
    text-align:center;
  }
  
  /* Buttons */
  .mf_btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.55rem;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: .50rem 1.8rem;
    font-weight: 500;
    font-size: 0.88em;
    cursor:pointer;
    transition:
      transform .12s ease,
      background .12s ease,
      box-shadow .12s ease,
      border-color .12s ease;
    user-select:none;
  }
  
  .mf_btn:focus-visible{
    outline:none;
    box-shadow: var(--focus);
  }
  
  .mf_btn_primary{
    background: var(--blue);
    color: var(--blue-ink);
    box-shadow: 0 14px 26px rgba(37,99,235,.22);
  }
  
  .mf_btn_primary:hover{
    color: var(--blue);
    background-color:#EFF3FB;
  }
  
  .mf_btn_soft{
    background: transparent;
    color: var(--blue);
    padding:0.5em;
  }
  
  .mf_btn_soft:hover{
    border-color: rgba(37,99,235,.22);
    transform: translateY(-1px);
  }
  
  /* Generic card */
  .mf_card{
    background: var(--card);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: var(--shadow-1);
    border-radius: var(--r-24);
  }
  
  /* Asset placeholder */
  .mf_asset_placeholder{
    border: 2px dashed rgba(37,99,235,.35);
    background: rgba(255,255,255,.7);
    border-radius: var(--r-24);
    display:grid;
    place-items:center;
    text-align:center;
    padding: 1rem;
    color: rgba(37,99,235,.9);
    font-weight: 800;
  }
  
  .mf_asset_placeholder .mf_tag_small{
    display:block;
    margin-top:.25rem;
    color: rgba(100,116,139,.95);
    font-weight: 600;
  }
  