    /* Reset and base */
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #05070a;
      color: #d1d5db;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    /* Container max width */
    .container {
      max-width: 1200px;
      width: 100%;
      padding: 0 1.5rem;
      margin: 0 auto;
    }
    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .logo {
      font-weight: 400;
      font-size: 0.875rem;
      letter-spacing: 0.05em;
      color: #d1d5db;
    }
    nav {
      display: none;
    }
    nav a {
      font-size: 0.75rem;
      font-weight: 400;
      margin-left: 1.5rem;
      color: #d1d5db;
    }
    nav a.buy-now {
      background-color: #111418;
      padding: 0.25rem 0.75rem;
      border-radius: 0.25rem;
      display: inline-flex;
      align-items: center;
      font-size: 0.75rem;
      font-weight: 400;
      transition: background-color 0.3s ease;
    }
    nav a.buy-now:hover {
      background-color: #4b5563;
      color: #fff;
    }
    nav a.buy-now i {
      margin-left: 0.25rem;
    }
    /* Show nav on md+ */
    @media (min-width: 768px) {
      nav {
        display: flex;
        align-items: center;
      }
    }
    /* Main content */
    main {
      flex-grow: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    /* Top section */
    .top-section {
      max-width: 700px;
      text-align: center;
      margin-top: 1.5rem;
    }
    /* Avatars */
    .avatars {
      display: flex;
      margin-bottom: 0.5rem;
      justify-content: center;
      gap: -0.75rem;
    }
    .avatars img {
      width: 32px;
      height: 32px;
      border-radius: 9999px;
      border: 2px solid #05070a;
      margin-left: -0.75rem;
      object-fit: cover;
    }
    .avatars img:first-child {
      margin-left: 0;
    }
    /* Rating */
    .rating {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.75rem;
      color: #9ca3af;
      margin-bottom: 1rem;
    }
    .stars {
      color: #fbbf24;
      display: flex;
      gap: 0.125rem;
    }
    .stars i {
      font-size: 0.75rem;
    }
    .rating .score {
      font-weight: 600;
      color: #d1d5db;
      margin-left: 0.25rem;
    }
    /* Subtitle */
    .subtitle {
      font-size: 0.75rem;
      color: #6b7280;
      margin-bottom: 0.25rem;
    }
    /* Heading */
    h1 {
      font-weight: 800;
      color: #d1d5db;
      font-size: 1.875rem;
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }
    @media (min-width: 640px) {
      h1 {
        font-size: 2.25rem;
      }
    }
    @media (min-width: 768px) {
      h1 {
        font-size: 3rem;
      }
    }
    /* Description */
    .description {
      font-size: 0.75rem;
      color: #6b7280;
      max-width: 480px;
      margin: 0 auto 1.5rem;
      line-height: 1.3;
    }
    @media (min-width: 640px) {
      .description {
        font-size: 0.875rem;
      }
    }
    /* Buttons */
    .btn-group {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    button {
      cursor: pointer;
      border-radius: 0.375rem;
      font-size: 0.75rem;
      font-weight: 400;
      padding: 0.5rem 1rem;
      border: none;
      transition: background-color 0.3s ease;
      display: inline-flex;
      align-items: center;
    }
    button.explore {
      background-color: #111418;
      color: #d1d5db;
    }
    button.explore:hover {
      background-color: #4b5563;
    }
    button.launch {
      background-color: #d1d5db;
      color: #000;
    }
    button.launch:hover {
      background-color: #9ca3af;
    }
    button.launch i {
      margin-left: 0.25rem;
    }
    /* Logos section */
    .logos {
      margin-top: 2.5rem;
    max-width: 90%;
    width: 100%;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    gap: 1.5em;
    font-weight: 600;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: #4b5563;
    user-select: none;
    padding: 0 0.5rem;
    overflow: hidden;
    }
    .logos .opacity-20 {
      opacity: 0.2;
    }
    .logos .opacity-40 {
      opacity: 0.4;
    }
    .logos .opacity-60 {
      opacity: 0.6;
    }
    .logos .font-bold {
      font-weight: 700;
    }
    /* Scrolling reviews container */
    .fade-scroll {
      position: relative;
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      max-width: 900px;
      width: 100%;
      height: 300px;
      margin-top: 2.5rem;
      -ms-overflow-style: none; /* IE and Edge */
      scrollbar-width: none; /* Firefox */
    }
    .fade-scroll::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    /* Fading edges */
    .fade-scroll::before,
    .fade-scroll::after {
      content: "";
      position: absolute;
      top: 0;
      width: 4rem;
      height: 100%;
      pointer-events: none;
      z-index: 10;
    }
    .fade-scroll::before {
      left: 0;
      background: linear-gradient(to right, #05070a 0%, transparent 100%);
    }
    .fade-scroll::after {
      right: 0;
      background: linear-gradient(to left, #05070a 0%, transparent 100%);
    }
    /* Scrolling wrapper */
    .scrolling-wrapper {
      display: flex;
      width: max-content;
      animation: scroll-left 40s linear infinite;
    }
    .scrolling-wrapper:hover {
      animation-play-state: paused;
    }
    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    /* Review item */
    .review-item {
      flex: 0 0 auto;
      width: 300px;
      margin-right: 1.5rem;
      background-color: #111418;
      border-radius: 0.5rem;
      padding: 1rem;
      color: #ccc;
      font-size: 0.875rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .review-stars {
      color: #fbbf24;
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }
    .review-text {
      font-weight: 600;
      color: #e5e7eb;
      margin-bottom: 0.5rem;
      flex-grow: 1;
    }
    .review-author {
      font-size: 0.75rem;
      color: #9ca3af;
      text-align: right;
    }
    /* Responsive adjustments */
    @media (max-width: 640px) {
      .review-item {
        width: 260px;
        margin-right: 1rem;
      }
      h1 {
        font-size: 1.5rem;
      }
      .description {
        max-width: 100%;
      }
    }
    /* Features Masonry Layout */
    .features-section {
      margin-top: 3rem;
      max-width: 900px;
      width: 100%;
      column-count: 3;
      column-gap: 1.5rem;
    }
    @media (max-width: 1024px) {
      .features-section {
        column-count: 2;
      }
    }
    @media (max-width: 640px) {
      .features-section {
        column-count: 1;
      }
    }
    .feature-card {
      background-color: #111418;
      border-radius: 0.5rem;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      width: 100%;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      break-inside: avoid;
      color: #d1d5db;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      cursor: pointer;
      outline-offset: 4px;
    }
    .feature-card:focus-visible {
      outline: 2px solid #fbbf24;
      outline-offset: 4px;
    }
    .feature-icon {
      font-size: 2rem;
      color: #fbbf24;
      margin-bottom: 0.75rem;
      transition: filter 0.3s ease;
      position: relative;
      z-index: 2;
    }
    .feature-title {
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
      color: #e5e7eb;
      position: relative;
      z-index: 2;
    }
    .feature-desc {
      font-weight: 400;
      font-size: 0.875rem;
      color: #9ca3af;
      line-height: 1.3;
      position: relative;
      z-index: 2;
    }
    /* Glow effect container */
    .feature-card::before {
      content: "";
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border-radius: 0.5rem;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
  
      filter: blur(4px);
      z-index: 1;
    }
    /* Glow visible on hover/focus */
    .feature-card.glow::before {
      opacity: 1;
    }
