
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: sans-serif;
    background: #0b0e11;
    color: #eaeaea;
    margin: 0;
    padding: 0;
    min-height: 100vh;
  }

  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  a { color: #818cf8; text-decoration: none; }
  a:hover { text-decoration: underline; }

  .home-content {
    max-width: 600px;
    width: 100%;
  }

  .logo { margin-bottom: 1rem; }
  .logo-img {
    width: 144px;
    height: 144px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
  }

  .cta-button {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #6366f1;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
  }
  .cta-button:hover {
    background: #4f46e5;
    transform: translateY(-1px);
  }

  /* Match swapper "panel" look */
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    max-width: 600px;
    width: 100%;
  }

  .feature {
    background: #1e293b;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
  }

  .feature-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .feature h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #eaeaea;
  }

  .feature p {
    font-size: 0.85rem;
    color: #94a3b8;
  }

  @media (max-width: 640px) {
    h1 { font-size: 2rem; }
    .features {
      grid-template-columns: 1fr;
    }
  }
