:root {
    --black: #1B1B1B;
    --dark: #222222;
    --white: #FFFFFF;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    background: var(--white);
    color: var(--black);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  .wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .wrap > * {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  .wrap > *:nth-child(1) { animation-delay: 0.05s; }
  .wrap > *:nth-child(2) { animation-delay: 0.1s; }
  .wrap > *:nth-child(3) { animation-delay: 0.15s; }
  .wrap > *:nth-child(4) { animation-delay: 0.2s; }
  
  
  .brand {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 3.4rem);
    letter-spacing: 0.18em;
  }
  
  .slogan {
    margin: 0;
    font-size: 1.05rem;
  }
  
  .text {
    margin: 28px 0 0 0;
    max-width: 520px;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  .status {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.6;
  }

  .icon {
    width: 200px;
    margin: 12px 0 6px 0;
    opacity: 0;
    animation: iconFade 0.9s ease-out forwards;
    animation-delay: 0.15s;
  }  

  .panel {
    margin-top: 18px;
    padding: 28px 26px;
    background: var(--dark);
    color: var(--white);
    max-width: 540px;
  }  
  
  .panel .text {
    margin-top: 0;
  }
  
  .panel .status {
    margin-top: 24px;
    opacity: 0.7;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes iconFade {
    from {
      opacity: 0;
      transform: scale(0.96);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 480px) {

    .brand {
      font-size: 2.2rem;
      letter-spacing: 0.14em;
    }
  
    .icon {
      width: 72px;
    }
  
    .slogan {
      font-size: 0.95rem;
    }
  
    .panel {
      padding: 24px 20px;
      max-width: 100%;
    }
  
    .text {
      font-size: 0.95rem;
    }
  
  }
  
  
  
  