/*┌────────────────────────────────────────────────────┐
  │ KRAFT STEAM Elements                               │
  │ COPYRIGHT (c) 2026 Pedro Luis Barrio. BITaMinD R+D │
  │ ALL RIGHTS RESERVED.                               │
  └────────────────────────────────────────────────────┘ */

  html {
    font-size   : 10px;
  }
  
  body {
    background  : var(--bg);
    transition  : background-color 0.3s ease, color 0.3s ease;
    color       : var(--text);
    font-family : var(--font);
    font-size   : 1.3rem;
    min-height  : 100vh;
    display     : grid;
    grid-template-columns: 30rem 1fr;    grid-template-rows: auto 1fr;
  }

  header h1 {
    font-size     : 1.6rem;
    font-weight   : 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color         : var(--accent);
  }
  header span {
    font-size     : 1.2rem;
    color         : var(--muted);
  }
  
 .section-label {
    font-size     : 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color         : var(--muted);
    
  }
  
  .hint {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 8px 0 0;
  }
  
  @media (max-width: 768px) {
     html           { font-size: 8px;}
     .section-label { margin-bottom : 0.5rem;}
  }
