/* RESET */
html, body {
    margin: 0;
    padding: 0;
    background: #05070d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    overflow-x: hidden;
    height: 100%;
}
  
/* HERO (iOS SAFE HEIGHT FIX) */
.hero {
    height: 100vh;
    height: 100dvh; /* iOS modern fix */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
  
/* CANVAS BACKGROUND */
canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block; /* important for iOS rendering */
    z-index: 0;
}
  
/* CONTENT */
.content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: clamp(16px, 4vw, 24px);
}
  
/* TITLE */
.content h1 {
    font-size: 3rem;
    margin-bottom: 10px;

    /* background: linear-gradient(90deg, #1a2cff, #4472C4, #00c6ff); */
    background: #4472C4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 20px rgba(0, 198, 255, 0.25);
}
  
/* SUBTITLE */
.content h2 {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 20px;
}
  
/* TEXT */
.content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.7;
}
  
/* MOBILE */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.2rem;
    }

    .content h2 {
        font-size: 1.1rem;
    }

    .content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.8rem;
    }

    .content h2 {
        font-size: 1rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}
  