/* Outer Card Style Data */
body {
    margin: 0;
    font-family: Arial, sans-seriff;
    color: #fff;
    background: #0a1522;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  h1 {
    padding-bottom: 0.15em;
  }
  
  /* Title Style Data */
  .title {
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #6ed6ff; /* fallback if clip not supported */
    text-wrap: balance;
    position: relative;
    background-size: 200% auto;
    transition: background-position 0.8s ease;
  }
  .title-wrap { /*Wraps H1 and Taglines together */
    display: flex;
    flex-direction: column;
    align-items: center; /* lock tagline under text width */
    text-align: center;
  }
  .title.consulting{
    background: linear-gradient(90deg,#6ed6ff, #3ac8ff);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .title.development {
    background: linear-gradient(90deg, #3ac8ff, #7a4dff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: background-position 1s ease;
    background-size: 200% auto; /* makes room to slide */
    background-position: left center; /* start position */
  }
  
  /* Subtext and Tagline Style */
  .tag {
    margin: 0.4rem 0 0.15rem; /* a little breathing room above */
    font-size: clamp(0.8rem, 1.3vw, 1.2rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
  }
  .sub {
    margin-top: 0.35rem; /* space below tagline */
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    color: #cfe5f5;
    opacity: 0.9;
  }
  .tag,
  .sub {
    width: 100%;
    text-align: center;
  }
  
  /* Logo Style */
  .logo{
    width: clamp(120px, 20vw, 200px);
    height: auto;
    display: block;
    margin-bottom: clamp(.75rem, 2vw, 1.25rem);
  }
  .logo.consulting {
    filter: drop-shadow(0 0 12px rgba(110,214,255,0.28));
    transition: filter 0.35s ease, transform 0.35s ease;
  }
  .logo.development {
    filter: drop-shadow(0 0 18px rgba(122,77,255,0.40));
    transition: filter 0.35s ease, transform 0.35s ease;
  }