* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Inter', sans-serif;
    background:
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8d4e6' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E") repeat,
      linear-gradient(135deg, #fff0f5, #ffe4e1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    color: #333;
  }

  .container {
    background: #ffffffdd;
    border: 2px solid #deb2cd;
    border-radius: 20px;
    padding: 3.5em 3em;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  }

  .logo-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1em;
    border: 2px solid #deb2cd;
    border-radius: 50%;
    background: white;
  }

  h1.title {
    font-family: 'Kaushan Script', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #e897c9;
    margin-bottom: 0.3em;
  }

  .subtitle {
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    color: #a76a90;
    margin-bottom: 1.2em;
    animation: fadeSlideUp 1s ease-out 0.3s forwards;
    opacity: 0;
  }

  .tagline, .mission {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto 1.5em auto;
    max-width: 650px;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out forwards;
  }

  .tagline {
    animation-delay: 0.6s;
    color: #6d4765;
  }

  .mission {
    animation-delay: 0.9s;
    color: #5a3a55;
  }

  .cta-button {
    display: inline-block;
    margin-top: 1.5em;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.9em 1.8em;
    color: white;
    background-color: #e897c9;
    text-decoration: none;
    border-radius: 40px;
    box-shadow: 0 5px 20px rgba(232, 151, 201, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
    animation: fadeSlideUp 1s ease-out 1.2s forwards;
    opacity: 0;
  }

  .cta-button:hover {
    background-color: #d174af;
    transform: translateY(-2px);
  }

  .cta-button:active {
    transform: scale(0.98);
    background-color: #c65e9a;
  }

  footer {
    margin-top: 2em;
    font-size: 0.9rem;
    color: #a28fa2;
    text-align: center;
  }

  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }