* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    min-height: 100vh;
  }
  
  .gonka-hero {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 70px 14px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gonka-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url('https://gonka.ai/images/landing.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateX(-187.5px) translateY(-142.02px);
    z-index: -1;
    pointer-events: none;
  }
  
  @media (min-width: 768px) {
    .gonka-hero {
      padding-top: 0;
    }
    
    .gonka-hero::before {
      top: 0;
      transform: translateX(-640px) translateY(-120px);
    }
  }
  
  .gonka-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 14px;
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .gonka-inner {
      padding: 0 32px;
    }
  }
  
  .gonka-hero h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.96px;
    line-height: 48px;
    margin-bottom: 10px;
    color: #000;
  }
  
  .gonka-hero .tagline {
    font-size: 22px;
    color: #737373;
    letter-spacing: -0.88px;
    line-height: 22px;
    margin-top: 22px;
    margin-bottom: 50px;
  }
  
  .gonka-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .gonka-cards a {
    text-decoration: none;
    color: #4f46e5;
    display: block;
    cursor: pointer;
  }
  
  .gonka-cards a:hover {
    color: #14b8a6;
  }
  
  .gonka-cards .interact-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background: white;
    width: 320px;
    height: 144px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }
  
  .gonka-cards .interact-button:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  
  .gonka-cards .interact-button span {
    font-size: 18px;
    font-weight: 600;
    color: #6366f1;
    letter-spacing: -0.18px;
    line-height: 19.8px;
    display: block;
  }
  
  .gonka-cards .interact-button small {
    font-size: 15px;
    color: #737373;
    letter-spacing: -0.15px;
    line-height: 16.5px;
    opacity: 0.75;
    display: block;
    text-align: left;
    padding-right: 20px;
  }
  