/* =========================
   Logo
========================= */

/* Default */
.logo img {
  height: 30px !important;
  width: auto;
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo img {
    height: 30px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .logo img {
    height: 24px !important;
  }
}


/* =========================
   Navigation
========================= */

.nav a {
  font-size: 14px;        
  font-weight: 400;       
  color: var(--muted);
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.nav a:not(:first-child) {
  margin-left: 28px;     
}

.nav a:hover {
  color: var(--text);
}


/* =========================
   Products Wrapper
========================= */

.products {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 640px) {

  .nav a {
    font-size: 12.5px;        
    font-weight: 400;       
    color: var(--muted);
    letter-spacing: 0;
    transition: color 0.2s ease;
  }
}

/* =========================
   Product Card
========================= */

.product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  background: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
}



/* Left content */
.product-content {
  max-width: 78%;
}

.product-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.product-top h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}

.product-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6f6f6f;
  margin: 0;
}


/* =========================
   Status Badge
========================= */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 10px;        /* reduced */
  border-radius: 999px;

  font-size: 12px;          /* slightly smaller */
  font-weight: 500;
}

/* Live */
.status-badge.live {
  background: #eaeaea;      /* darker than before */
  color: #2f2f2f;
}

.status-badge.live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

/* Coming Soon */
.status-badge.muted {
  background: #efefef;      /* slightly darker */
  color: #7a7a7a;           /* stronger contrast */
}

/* =========================
   Arrow Circle
========================= */

.product-arrow {
  width: 52px;
  height: 52px;

  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #6f6f6f;
}


/* Muted Cards */
.muted-card {
  background: #fafafa;
}


/* =========================
   Mobile
========================= */

@media (max-width: 640px) {

  .product-card {
    padding: 20px;
    border-radius: 18px;
  }

  .product-top {
    gap: 10px;
    margin-bottom: 10px;
  }

  .product-top h3 {
    font-size: 15px;
    font-weight: 600;
  }

  .product-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .status-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  .status-badge .dot {
    width: 6px;
    height: 6px;
  }

  .product-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
#products .products-heading {
    text-align: center;
  }
}

/* =========================
   Quiet lists
========================= */

.quiet-list {
  margin: 20px 0 32px;
  padding-left: 20px;
  list-style-type: disc;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.quiet-list li {
  margin-bottom: 12px;
}

.quiet-list li::marker {
  color: rgba(0,0,0,0.2);
}

@media (max-width: 640px) {
  .quiet-list {
    font-size: 15px;
  }

}

/* =========================
   Hero Actions
========================= */

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

/* Button */
.btn-primary {
  background: #0d0d0d;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-block;
}

/* Secondary link */
.link-secondary {
padding: 13px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
}

/* =========================
   Desktop Layout
========================= */

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
  }

  .link-secondary {
    font-size: 16px;
  }

  
}